We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7de5773 commit c9f47b6Copy full SHA for c9f47b6
.github/workflows/build-test.yml
@@ -113,3 +113,12 @@ jobs:
113
cd build
114
ctest -j 4 --output-on-failure -T test -C ${BUILD_TYPE:-RelWithDebInfo}
115
ZONE_KERNEL=fallback ctest -j 4 --output-on-failure -T test -C ${BUILD_TYPE:-RelWithDebInfo}
116
+ - name: 'Build simdzone with configure + make'
117
+ if: runner.os != 'Windows' || matrix.generator == 'MinGW Makefiles'
118
+ id: test_autoconf
119
+ shell: bash
120
+ run: |
121
+ set -e -x
122
+ autoreconf -i
123
+ ./configure
124
+ make -j 2
0 commit comments