Skip to content

Commit

Permalink
Use a new CI image (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
yforster authored Oct 5, 2023
1 parent 856f0dc commit 4056b05
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
opam_file:
- 'coq-certicoq.opam'
image:
- 'mattam82/coq:8.17--ocaml-4.13.1--clang-11--compcert-3.12--extlib-0.11.8--equations-1.3'
# - 'mattam82/coq:8.17--ocaml-4.13.1--clang-11--compcert-3.12--extlib-0.11.8--equations-1.3' # comment back in if MetaCoq commit changes
- 'yforster/coq:8.17.0--clang-11--compcert-3.12--extlib-0.11.8--equations-1.3--elpi.1.17.1-metacoq-8.17.dev.e0794e3'
fail-fast: false # don't stop jobs if one fails
steps:
- uses: actions/checkout@v2
Expand All @@ -29,13 +30,13 @@ jobs:
with:
custom_image: ${{ matrix.image }}
opam_file: ${{ matrix.opam_file }}
before_install: |
startGroup "fix permission issues"
sudo chown -R coq:coq .
endGroup
startGroup "opam pin"
opam pin -n -y submodules/metacoq
endGroup
# before_install: | # comment back in if MetaCoq commit changes
# startGroup "fix permission issues"
# sudo chown -R coq:coq .
# endGroup
# startGroup "opam pin"
# opam pin -n -y submodules/metacoq
# endGroup
before_script: |
startGroup "fix permission issues"
sudo chown -R coq:coq .
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/certicoqc/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CCOMPILER = clang # ccomp # gcc takes ages
CCOMPILER := $(shell { command -v clang-11 || command -v clang; } 2>/dev/null)

-include ../../Makefile.conf

Expand Down
2 changes: 1 addition & 1 deletion bootstrap/certicoqchk/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CCOMPILER = clang # ccomp # gcc
CCOMPILER := $(shell { command -v clang-11 || command -v clang; } 2>/dev/null)

-include ../../Makefile.conf

Expand Down
1 change: 1 addition & 0 deletions coq-certicoq.opam
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
opam-version: "2.0"
version: "dev+8.17"
maintainer: "The CertiCoq Team"
homepage: "https://certicoq.org/"
dev-repo: "git+https://github.com/CertiCoq/certicoq"
Expand Down

0 comments on commit 4056b05

Please sign in to comment.