CI: run boost unit tests on a release build only

The debug CI build is consistently the last CI job to finish, usually behind even the Windows and Mac jobs.
This commit is contained in:
Charles Dang 2025-03-02 10:01:03 -05:00
parent ec765138ac
commit caa5683818

View File

@ -156,7 +156,7 @@ jobs:
if: success() || steps.build.outcome == 'success'
run: ./utils/CI/mp_test_executor.sh
- name: Run unit tests
if: success() || steps.build.outcome == 'success'
if: matrix.cc == 'clang' && (success() || steps.build.outcome == 'success')
run: ./run_boost_tests
steam-runtime: