Skip to content

Commit

Permalink
[CI] [Alpine] Use dev version of Coq
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGross committed Dec 23, 2023
1 parent 8174c27 commit a8f3f03
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/coq-alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,22 @@ jobs:
branch: ${{ matrix.alpine }}
extra-repositories: https://dl-cdn.alpinelinux.org/alpine/edge/testing
packages: git make jq gcc musl-dev python3 ocaml ocaml-findlib ghc cabal coq ocaml-zarith bash
# next two steps as per https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/57766#note_365103
- name: Download development Coq
shell: alpine.sh {0}
run: |
mkdir -p MR
wget 'https://gitlab.alpinelinux.org/JasonGross/aports/-/jobs/1222367/artifacts/download?file_type=archive' -O MR.zip
unzip MR.zip -d MR
ls -la MR
find MR
- name: Set up development Coq
shell: alpine.sh --root {0}
run: |
mv MR/keys/*.pub /etc/apk/keys/
printf "\n%s\n" "$(cd MR/packages && pwd)" >> /etc/apk/repositories
apk update
apk add coq --no-confirm --reinstall
- name: chroot build params
shell: alpine.sh {0}
run: etc/ci/describe-system-config.sh
Expand Down

0 comments on commit a8f3f03

Please sign in to comment.