BSD targets: use cc instead of gcc as the default prepro/asm/linker
#70
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: Oldest | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| workflow_dispatch: | |
| jobs: | |
| oldest: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| target: [aarch64, arm, ppc, riscv, x86_32, x86_64] | |
| env: | |
| target: ${{ matrix.target }} | |
| os: linux | |
| jobs: 4 | |
| opamroot: /home/coq/.opam | |
| configopts: -ignore-coq-version | |
| container: | |
| image: coqorg/coq:8.15 | |
| options: --user root | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: OPAM dependencies | |
| run: tools/runner.sh opam_install menhir=20200624 | |
| - name: Configure | |
| run: tools/runner.sh configure | |
| - name: Build | |
| run: tools/runner.sh build_ccomp |