Support camlp5 8.04.0 #18
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: Build PR | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'README.md' | |
| branches: | |
| - 'master' | |
| env: | |
| OPAMCONFIRMLEVEL: unsafe-yes | |
| GT_WITH_DOCS: yes | |
| OPAMROOT: /home/opam/.opam | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| containers: [ 'zanuda414' ] | |
| runs-on: ubuntu-latest | |
| container: | |
| image: kakadu18/ocaml:${{ matrix.containers }} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.containers }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 2 | |
| - run: opam --version | |
| - run: opam update | |
| - run: sudo apt-get update | |
| - run: opam pin add bisect_ppx https://github.com/Kakadu/bisect_ppx_ng.git\#Hacking4.14 | |
| - run: opam install . --deps-only --with-test --with-doc | |
| - run: opam exec -- dune build @check --profile=release | |
| - run: opam exec -- dune test --profile=release | |
| - name: Installing using Opam | |
| run: | | |
| opam exec -- dune build @install | |
| opam exec -- dune install | |
| - name: List files | |
| run: opam show --list-files GT | |
| - run: make coverage | |
| # TODO: coverage |