Skip to content
Snippets Groups Projects
Commit 92a20eb0 authored by Ralf Jung's avatar Ralf Jung
Browse files

update build system; support Coq 8.7

parent 64ec23fe
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ variables: ...@@ -13,7 +13,7 @@ variables:
# build # build
- 'time make -k -j$CPU_CORES TIMED=y 2>&1 | tee build-log.txt' - 'time make -k -j$CPU_CORES TIMED=y 2>&1 | tee build-log.txt'
- 'if fgrep Axiom build-log.txt >/dev/null; then exit 1; fi' - 'if fgrep Axiom build-log.txt >/dev/null; then exit 1; fi'
- 'cat build-log.txt | egrep "[a-zA-Z0-9_/-]+ \(user: [0-9]" | tee build-time.txt' - 'cat build-log.txt | egrep "[a-zA-Z0-9_/-]+ \((real|user): [0-9]" | tee build-time.txt'
- 'if test -n "$VALIDATE" && (( RANDOM % 10 == 0 )); then make validate; fi' - 'if test -n "$VALIDATE" && (( RANDOM % 10 == 0 )); then make validate; fi'
cache: cache:
key: "coq.$COQ_VERSION-ssr.$SSR_VERSION" key: "coq.$COQ_VERSION-ssr.$SSR_VERSION"
...@@ -23,12 +23,18 @@ variables: ...@@ -23,12 +23,18 @@ variables:
- master - master
- /^ci/ - /^ci/
iratomic-coq8.6.1: build-coq8.7:
<<: *template
variables:
COQ_VERSION: "8.7.dev"
SSR_VERSION: "dev"
build-coq8.6.1:
<<: *template <<: *template
variables: variables:
COQ_VERSION: "8.6.1" COQ_VERSION: "8.6.1"
SSR_VERSION: "1.6.1" SSR_VERSION: "1.6.1"
VALIDATE: 1 VALIDATE: "1"
artifacts: artifacts:
paths: paths:
- build-time.txt - build-time.txt
......
...@@ -19,17 +19,16 @@ ...@@ -19,17 +19,16 @@
next next
} }
# Patch vio2vo to (a) run "make quick" with the same number of jobs, ensuring # Add new target quick2vo to (a) run "make quick" with the same number of jobs, ensuring
# that the .vio files are up-to-date, and (b) only schedule vio2vo for those # that the .vio files are up-to-date, and (b) only schedule vio2vo for those
# files where the .vo is *older* than the .vio. # files where the .vo is *older* than the .vio.
/^vio2vo:/ { /^vio2vo:/ {
print "vio2vo:"; print "quick2vo:";
print "\t@make -j $(J) quick" print "\t@make -j $(J) quick"
print "\t@VIOFILES=$$(for file in $(VOFILES:%.vo=%.vio); do vofile=\"$$(echo \"$$file\" | sed \"s/\\.vio/.vo/\")\"; if [ \"$$vofile\" -ot \"$$file\" -o ! -e \"$$vofile\" ]; then echo -n \"$$file \"; fi; done); \\" print "\t@VIOFILES=$$(for vofile in $(VOFILES); do viofile=\"$$(echo \"$$vofile\" | sed \"s/\\.vo/.vio/\")\"; if [ \"$$vofile\" -ot \"$$viofile\" -o ! -e \"$$vofile\" ]; then echo -n \"$$viofile \"; fi; done); \\"
print "\t echo \"VIO2VO: $$VIOFILES\"; \\" print "\t echo \"VIO2VO: $$VIOFILES\"; \\"
print "\t if [ -n \"$$VIOFILES\" ]; then $(COQC) $(COQDEBUG) $(COQFLAGS) -schedule-vio2vo $(J) $$VIOFILES; fi" print "\t if [ -n \"$$VIOFILES\" ]; then $(TIMER) $(COQC) $(COQDEBUG) $(COQFLAGS) -schedule-vio2vo $(J) $$VIOFILES; fi"
getline; print ".PHONY: quick2vo"
next
} }
# This forwards all unchanged lines # This forwards all unchanged lines
......
...@@ -9,5 +9,5 @@ build: [make "-j%{jobs}%"] ...@@ -9,5 +9,5 @@ build: [make "-j%{jobs}%"]
install: [make "install"] install: [make "install"]
remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/iris_atomic" ] remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/iris_atomic" ]
depends: [ depends: [
"coq-iris" { (= "dev.2017-09-21.3") | (= "dev") } "coq-iris" { (= "dev.2017-09-27.1") | (= "dev") }
] ]
...@@ -47,7 +47,7 @@ Section proofs. ...@@ -47,7 +47,7 @@ Section proofs.
Lemma new_bag_spec: Lemma new_bag_spec:
{{{ True }}} new_stack #() {{{ s, RET #s; bag_inv s }}}. {{{ True }}} new_stack #() {{{ s, RET #s; bag_inv s }}}.
Proof. Proof.
iIntros (Φ) "HΦ". iApply wp_fupd. iIntros (Φ) "_ HΦ". iApply wp_fupd.
wp_seq. wp_bind (ref NONE)%E. wp_alloc l as "Hl". wp_seq. wp_bind (ref NONE)%E. wp_alloc l as "Hl".
wp_alloc s as "Hs". wp_alloc s as "Hs".
iAssert (( xs, is_bag_R N R xs s))%I with "[-HΦ]" as "Hxs". iAssert (( xs, is_bag_R N R xs s))%I with "[-HΦ]" as "Hxs".
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment