Adapt to rocq-prover/rocq#21767 (qglobal is not qvar) #84
Workflow file for this run
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: Docker CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - '**' | |
| workflow_dispatch: {} # enables the “Run workflow” button | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| image: | |
| - 'rocq/rocq-prover:dev' | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| ref: ${{ github.ref }} | |
| - uses: rocq-community/docker-coq-action@v1 | |
| with: | |
| custom_image: ${{ matrix.image }} | |
| custom_script: | | |
| {{before_install}} | |
| startGroup "Build coq-hammer-tactics dependencies" | |
| opam pin add -n -y -k path coq-hammer-tactics . | |
| opam update -y | |
| opam install -y -j $(nproc) coq-hammer-tactics --deps-only | |
| endGroup | |
| startGroup "Build coq-hammer-tactics" | |
| opam install -y -v -j $(nproc) coq-hammer-tactics --with-test | |
| opam list | |
| endGroup | |
| startGroup "Build coq-hammer dependencies" | |
| opam pin add -n -y -k path coq-hammer . | |
| opam update -y | |
| opam install -y -j $(nproc) coq-hammer --deps-only | |
| endGroup | |
| startGroup "Build coq-hammer" | |
| opam install -y -v -j $(nproc) coq-hammer --with-test | |
| opam list | |
| endGroup | |
| startGroup "Uninstallation test" | |
| opam remove -y coq-hammer | |
| opam remove -y coq-hammer-tactics | |
| endGroup |