Skip to content

Commit

Permalink
Merge pull request #9 from Timothy-Liuxf/master
Browse files Browse the repository at this point in the history
ci(test): 👷 add GNU Autotools test in CI
  • Loading branch information
Timothy-Liuxf authored Feb 1, 2023
2 parents 42401b2 + 82b4dc2 commit da4f1ba
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
extensions: 'c,h,C,H,cpp,hpp,cc,hh,c++,h++,cxx,hxx,i,ixx,ipp,i++'
clangFormatVersion: 14
inplace: False
- name: Build examples
- name: Build examples with CMake
run: |
mkdir build
pushd build
Expand All @@ -35,6 +35,17 @@ jobs:
- name: Run tests
run: |
python3 ./test/test.py
- name: Clean CMake build files
run: |
rm -rf build
- name: Build examples with GNU Autotools
run: |
autoreconf -i
./configure
make -j$(nproc)
- name: Run tests
run: |
python3 ./test/test.py
test-on-windows:
runs-on: windows-latest
Expand Down

0 comments on commit da4f1ba

Please sign in to comment.