Merge pull request #212 from impermeable/9.1-update #761
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: Build | |
| on: [push, workflow_dispatch] | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up git repository | |
| uses: actions/checkout@v3 | |
| - name: Build plugin | |
| uses: coq-community/docker-coq-action@v1 | |
| with: | |
| custom_image: 'rocq/rocq-prover:9.1-ocaml-4.14-flambda' | |
| opam_file: 'coq-waterproof.opam' | |
| before_script: | | |
| startGroup "Install dependencies" | |
| sudo apt-get -y -q install binutils make csh g++ sed gawk autoconf automake autotools-dev | |
| endGroup |