Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ repos:
CMakeLists_standalone[.]txt$|
meta[.]yaml$
- repo: https://github.com/rapidsai/dependency-file-generator
rev: v1.19.2
rev: v1.20.0
hooks:
- id: rapids-dependency-file-generator
args: ["--clean"]
args: ["--clean", "--warn-all", "--strict"]
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.11.0.1
hooks:
Expand Down
7 changes: 0 additions & 7 deletions ci/build_java.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,6 @@ set -u

rapids-print-env

EXITCODE=0
trap "EXITCODE=1" ERR
set +e

rapids-logger "Run Java build"

bash ./build.sh "${EXTRA_BUILD_ARGS[@]}"

rapids-logger "Build script exiting with value: $EXITCODE"
exit ${EXITCODE}
7 changes: 0 additions & 7 deletions ci/test_java.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@

set -euo pipefail

EXITCODE=0
trap "EXITCODE=1" ERR
set +e

rapids-logger "Check GPU usage"
nvidia-smi

Expand All @@ -15,6 +11,3 @@ rapids-logger "Run Java build and tests"
# TODO: switch to installing pre-built artifacts instead of rebuilding in test jobs
# ref: https://github.com/rapidsai/cuvs/issues/868
ci/build_java.sh --run-java-tests

rapids-logger "Test script exiting with value: $EXITCODE"
exit ${EXITCODE}