Skip to content

Commit

Permalink
Fixes to GitHub action for compile-only tests
Browse files Browse the repository at this point in the history
.github/workflows/gcclassic-compile-tests.yml
- Changed build_type to just use Debug (since the ITs require debug)
- Now use $HOME/compile-tests as the integration test folder
- Display the results.compile.log after the job finishes

Signed-off-by: Bob Yantosca <[email protected]>
  • Loading branch information
yantosca committed Mar 22, 2024
1 parent 53d908a commit cb5db03
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/gcclassic-compile-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
build_type: [Debug, Release]
build_type: [Debug]
env:
CXX: g++
CC: gcc
Expand All @@ -30,4 +30,5 @@ jobs:
run: |
git submodule update --init --recursive
cd test/integration/GCClassic
./integrationTest.sh -d /GCC_it -t compile
./integrationTest.sh -d $HOME/compile-tests -t compile
cat $HOME/compile-tests/logs/results.compile.log

0 comments on commit cb5db03

Please sign in to comment.