Skip to content

Commit

Permalink
[INFRA] Do not use TDL in header tests
Browse files Browse the repository at this point in the history
TDL includes are a superset of the no-TDL includes
  • Loading branch information
eseiler committed Feb 2, 2024
1 parent 518c1bb commit e677732
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci_misc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,12 @@ jobs:
cd sharg-build
cmake ../sharg/test/${{ matrix.build }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
-DCMAKE_CXX_FLAGS="${{ matrix.cxx_flags }}" \
-DSHARG_VERBOSE_TESTS=OFF
-DSHARG_VERBOSE_TESTS=OFF \
${{ contains(matrix.name, 'Header') && '-DSHARG_NO_TDL=ON' || '' }}
case "${{ matrix.build }}" in
snippet) make -j2 gtest_build yaml-cpp;;
header) make -j2 gtest_build gbenchmark_build yaml-cpp;;
header) make -j2 gtest_build gbenchmark_build;;
esac
- name: Build tests
Expand Down

0 comments on commit e677732

Please sign in to comment.