revert to using old version of modrat to avoid 32-bit problems #66
This file contains hidden or 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] | |
| 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 |