Skip to content

Commit

Permalink
Merge pull request #923 from KhronosGroup/steffen/stop_building_test_…
Browse files Browse the repository at this point in the history
…all_in_ci

In our CI testing, the system is running out of disk space while building the `test_all` executable. That said, the resulting executable is reundant, as it is a combined executable of all the other test category executables produced. This commit changes the target built by CI to `test_conformance` which only builds the test category executables.
  • Loading branch information
steffenlarsen authored Aug 8, 2024
2 parents b15d028 + 7e75a34 commit 02c2252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cts_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
working-directory: ${{ env.container-workspace }}/build
run: |
TS_BEFORE=$(date +%s)
cmake --build . --target test_all --parallel ${{ env.parallel-build-jobs }}
cmake --build . --target test_conformance --parallel ${{ env.parallel-build-jobs }}
TS_AFTER=$(date +%s)
ELAPSED=$(($TS_AFTER - $TS_BEFORE))
sort --numeric-sort --reverse --output=build_times.log build_times.log
Expand Down

0 comments on commit 02c2252

Please sign in to comment.