Skip to content

Commit c9f47b6

Browse files
committed
Test autoconf and make in GitHub Actions
1 parent 7de5773 commit c9f47b6

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/build-test.yml

+9
Original file line numberDiff line numberDiff line change
@@ -113,3 +113,12 @@ jobs:
113113
cd build
114114
ctest -j 4 --output-on-failure -T test -C ${BUILD_TYPE:-RelWithDebInfo}
115115
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

Comments
 (0)