Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #533

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/coq-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ jobs:
- coq-vst
- coq-vst-32
steps:
- uses: actions/checkout@v2
- name: Checkout submodules
uses: textbook/[email protected]
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- uses: coq-community/docker-coq-action@v1
with:
opam_file: ${{ matrix.opam_name }}.opam
Expand Down
10 changes: 5 additions & 5 deletions coq-vst-32.opam
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ dev-repo: "git+https://github.com/PrincetonUniversity/VST.git"
bug-reports: "https://github.com/PrincetonUniversity/VST/issues"
license: "https://raw.githubusercontent.com/PrincetonUniversity/VST/master/LICENSE"
build: [
[make "BITSIZE=32" "depend"]
[make "BITSIZE=32" "-j%{jobs}%" "msl" "sepcomp" "veric" "floyd"]
[make "COMPCERT=bundled" "BITSIZE=32" "depend"]
[make "COMPCERT=bundled" "BITSIZE=32" "-j%{jobs}%" "msl" "sepcomp" "veric" "floyd"]
]
run-test: [make "BITSIZE=32" "-j%{jobs}%" "progs" "sha-hmac" "mailbox"]
run-test: [make "COMPCERT=bundled" "BITSIZE=32" "-j%{jobs}%" "progs" "sha-hmac" "mailbox"]
install: [
make "BITSIZE=32" "install"
make "COMPCERT=bundled" "BITSIZE=32" "install"
]
depends: [
"coq" {>= "8.11.0"}
"coq-compcert-32" {= "3.9"}
"coq-flocq" {>= "3.1.0" & < "4.0.0"} | "coq-flocq3" { = "dev"}
]
synopsis: "Verified Software Toolchain"
description:
Expand Down
10 changes: 5 additions & 5 deletions coq-vst.opam
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ dev-repo: "git+https://github.com/PrincetonUniversity/VST.git"
bug-reports: "https://github.com/PrincetonUniversity/VST/issues"
license: "https://raw.githubusercontent.com/PrincetonUniversity/VST/master/LICENSE"
build: [
[make "BITSIZE=64" "depend"]
[make "BITSIZE=64" "-j%{jobs}%" "msl" "sepcomp" "veric" "floyd"]
[make "COMPCERT=bundled" "BITSIZE=64" "depend"]
[make "COMPCERT=bundled" "BITSIZE=64" "-j%{jobs}%" "msl" "sepcomp" "veric" "floyd"]
]
run-test: [make "BITSIZE=64" "-j%{jobs}%" "progs"]
run-test: [make "COMPCERT=bundled" "BITSIZE=64" "-j%{jobs}%" "progs"]
install: [
make "BITSIZE=64" "install"
make "COMPCERT=bundled" "BITSIZE=64" "install"
]
depends: [
"coq" {>= "8.11.0"}
"coq-compcert" {= "3.9"}
"coq-flocq" {>= "3.1.0" & < "4.0.0"} | "coq-flocq3" { = "dev"}
]
synopsis: "Verified Software Toolchain"
description:
Expand Down