avoid the identifier minor (problems under clang) #39
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: conda C/C++ CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| name: ${{ matrix.os }} with ${{ matrix.mpfp }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: ["macos-latest"] | |
| mpfp: [enable-mpfp] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: conda-incubator/setup-miniconda@v2 | |
| with: | |
| miniforge-version: latest | |
| mamba-version: "*" | |
| activate-environment: eclib-deps | |
| - name: configure | |
| shell: bash -el {0} | |
| run: | | |
| mamba install pari ntl libflint compilers automake autoconf m4 libtool | |
| conda activate eclib-deps | |
| echo PATH=$PATH | |
| ./autogen.sh | |
| ./configure --with-boost="no" --with-flint --disable-allprogs --${{ matrix.mpfp }} | |
| - name: make | |
| shell: bash -el {0} | |
| run: make | |
| - name: make check | |
| shell: bash -el {0} | |
| run: make check |