Merge pull request #227 from SkySkimmer/ltac2-scoped-notations #784
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:dev-ocaml-4.14.2-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 |