Skip to content

Commit

Permalink
#1920: CI: NOMERGE: limit to just one example
Browse files Browse the repository at this point in the history
  • Loading branch information
lifflander committed Sep 26, 2022
1 parent b01c568 commit 4235113
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macosx-clang-mpich.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
- name: Build
shell: bash
run: |
PATH=~/.mpich/bin:$PATH ci/build_cpp.sh $(pwd) $(pwd)/build
PATH=~/.mpich/bin:$PATH ci/build_cpp.sh $(pwd) $(pwd)/build hello_world
- name: Test
shell: bash
run: |
PATH=~/.mpich/bin:$PATH ci/test_cpp.sh $(pwd) $(pwd)/build
PATH=~/.mpich/bin:$PATH ci/test_cpp.sh $(pwd) $(pwd)/build hello_world
3 changes: 2 additions & 1 deletion ci/test_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ export VT_BUILD=${build_dir}/vt
pushd "$VT_BUILD"

# Don't run performance tests here (use label 'unit_test' or 'example')
ctest --output-on-failure -L 'unit_test|example' | tee cmake-output.log
# ctest --output-on-failure -L 'unit_test|example' | tee cmake-output.log
ctest --output-on-failure -R hello_world_2

if test "${CODE_COVERAGE:-0}" -eq 1
then
Expand Down

0 comments on commit 4235113

Please sign in to comment.