Skip to content

Commit

Permalink
Use newly built CI images with CUDA 11.8 (#311)
Browse files Browse the repository at this point in the history
* Use newly built CI images with CUDA 11.8
* Use the version of gcov installed via conda

Authors:
  - David Gardner (https://github.com/dagardner-nv)

Approvers:
  - Christopher Harris (https://github.com/cwharris)

URL: #311
  • Loading branch information
dagardner-nv authored Apr 11, 2023
1 parent a4c1f3b commit c3f67c0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
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
2 changes: 1 addition & 1 deletion external/utilities

0 comments on commit c3f67c0

Please sign in to comment.