Update to latest rocq #115
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/logsem/iris-tutorial/debian-ocaml-5.5-x86-64 | |
| options: --user opam | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build project | |
| shell: bash -l {0} | |
| run: | | |
| # Fix for git ownership issues in containers | |
| git config --global --add safe.directory /__w/iris-tutorial/iris-tutorial | |
| # No need to export HOME=/root, we are opam | |
| eval $(opam env) | |
| make ci -j2 |