Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use newly built CI images with CUDA 11.8 #311

Merged
merged 9 commits into from
Apr 11, 2023
1 change: 1 addition & 0 deletions .github/workflows/ci_pipe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ jobs:
NVIDIA_VISIBLE_DEVICES: ${{ env.NVIDIA_VISIBLE_DEVICES }}
PARALLEL_LEVEL: '10'
image: ${{ inputs.test_container }}
options: "--cap-add=sys_nice --cap-add=sys_ptrace"
strategy:
fail-fast: true

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:
with:
run_check: ${{ startsWith(github.ref_name, 'pull-request/') }}
run_package_conda: ${{ !startsWith(github.ref_name, 'pull-request/') }}
container: nvcr.io/ea-nvidia-morpheus/morpheus:mrc-ci-driver-230315
test_container: nvcr.io/ea-nvidia-morpheus/morpheus:mrc-ci-test-230315
container: nvcr.io/ea-nvidia-morpheus/morpheus:mrc-ci-driver-230410
test_container: nvcr.io/ea-nvidia-morpheus/morpheus:mrc-ci-test-230410
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
CONDA_TOKEN: ${{ secrets.CONDA_TOKEN }}
Expand Down
9 changes: 5 additions & 4 deletions ci/scripts/github/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,14 @@ sccache --version

if [[ "${BUILD_CC}" == "gcc" ]]; then
rapids-logger "Building with GCC"
gcc --version
g++ --version
x86_64-conda-linux-gnu-cc --version
x86_64-conda-linux-gnu-c++ --version
CMAKE_FLAGS="${CMAKE_BUILD_ALL_FEATURES} ${CMAKE_CACHE_FLAGS}"
elif [[ "${BUILD_CC}" == "gcc-coverage" ]]; then
rapids-logger "Building with GCC with gcov profile '-g -fprofile-arcs -ftest-coverage"
gcc --version
g++ --version
x86_64-conda-linux-gnu-cc --version
x86_64-conda-linux-gnu-c++ --version
x86_64-conda-linux-gnu-gcov --version
CMAKE_FLAGS="${CMAKE_BUILD_ALL_FEATURES} ${CMAKE_BUILD_WITH_CODECOV} ${CMAKE_CACHE_FLAGS}"
else
rapids-logger "Building with Clang"
Expand Down