-
Notifications
You must be signed in to change notification settings - Fork 63
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
Heapster: remove generated coq files #1427
Changes from 13 commits
d91ecb1
43ea0e0
c643446
aa8b69b
cf91a94
e2ca0c1
6446d0e
f95fbcd
57e3388
4e6c6a6
f596dcf
f4928d3
c3d3051
3e877d0
820f0cf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -173,7 +173,7 @@ jobs: | |
name: "saw-${{ runner.os }}-${{ matrix.ghc }}" | ||
path: "dist/bin/saw" | ||
|
||
ocaml-tests: | ||
heapster-tests: | ||
needs: [build] | ||
strategy: | ||
fail-fast: false | ||
|
@@ -193,6 +193,15 @@ jobs: | |
name: "${{ runner.os }}-bins" | ||
path: dist/bin | ||
|
||
- name: Update PATH to include sAW | ||
shell: bash | ||
run: | | ||
chmod +x dist/bin/* | ||
echo $GITHUB_WORKSPACE/dist/bin >> $GITHUB_PATH | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, there is some duplication of concerns here, because I was trying to get it to work. I'll fix some of that now... |
||
echo "PATH=$GITHUB_PATH" | ||
echo "Contents of $GITHUB_WORKSPACE/dist/bin:" | ||
ls $GITHUB_WORKSPACE/dist/bin | ||
|
||
- uses: ocaml/setup-ocaml@v2 | ||
with: | ||
ocaml-compiler: 4.09.x # coq-bits claims to support < 4.10 only | ||
|
@@ -201,11 +210,16 @@ jobs: | |
|
||
- run: opam install --unlock-base -y coq=8.12.2 coq-bits=1.0.0 | ||
|
||
# FIXME: the following builds the Coq libraries for the SAW core | ||
# to Coq translator; if we do other Coq tests, this should become | ||
# its own build artifact, to avoid downloading it twice | ||
- working-directory: saw-core-coq/coq | ||
run: PATH="$PWD/dist/bin:$PATH" opam exec -- make -j | ||
shell: bash | ||
run: PATH="$GITHUB_WORKSPACE/dist/bin:$PATH" opam exec -- make -j | ||
|
||
- working-directory: heapster-saw/examples | ||
run: PATH="$PWD/dist/bin:$PATH" opam exec -- make -j | ||
shell: bash | ||
run: PATH="$GITHUB_WORKSPACE/dist/bin:$PATH" opam exec -- make -j | ||
|
||
saw-remote-api-tests: | ||
runs-on: ${{ matrix.os }} | ||
|
@@ -496,7 +510,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
needs: | ||
- build | ||
- ocaml-tests | ||
- heapster-tests | ||
- saw-remote-api-tests | ||
- cabal-test | ||
- build-push-image | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
Makefile.coq* | ||
.Makefile.coq* | ||
*_gen.v |
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doh! Thanks for the catch!