upped version to 20240408 #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C/C++ CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
cc: [gcc, clang] | |
mpfp: [enable-mpfp, disable-mpfp] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: configure | |
run: | | |
sudo apt-get install libpari-dev pari-gp2c libntl-dev libflint-dev | |
./autogen.sh | |
./configure --with-boost="no" --with-flint --disable-allprogs --${{ matrix.mpfp }} | |
env: | |
CC: ${{ matrix.cc }} | |
- name: make | |
run: make | |
- name: make check | |
run: make check |