[CI] Remove coq-bignums before CI #208
Workflow file for this run
This file contains 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
# Beware not to destroy this file when regenerating it from meta.yml | |
name: Docker CI | |
on: | |
# schedule: | |
# - cron: '0 4 * * *' | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build: | |
# the OS must be GNU/Linux to be able to use the docker-coq-action | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
image: | |
- 'coqorg/coq:dev' | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: coq-community/docker-coq-action@v1 | |
with: | |
opam_file: 'coq-bignums.opam' | |
custom_image: ${{ matrix.image }} | |
custom_script: | | |
startGroup Print opam config | |
opam config list; opam repo list; opam list | |
echo NJOBS=${NJOBS} | |
endGroup | |
startGroup Build coq-bignums | |
opam remove -y coq-bignums # remove coq-bignums already in image | |
opam pin add -n -y -k path coq-bignums . | |
opam install -y -v -j ${NJOBS} coq-bignums | |
opam list | |
endGroup | |
startGroup Test coq-bignums | |
git config --global --add safe.directory /github/workspace # to avoid git clean below complaining | |
git clean -dxf . | |
make -j ${NJOBS} -C tests | |
endGroup | |
startGroup Uninstallation test | |
opam remove -y coq-bignums | |
endGroup | |
# See also: | |
# https://github.com/coq-community/docker-coq-action#readme | |
# https://github.com/erikmd/docker-coq-github-action-demo |