Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Lennard Gäher
Iris
Commits
ccc5ddf9
Commit
ccc5ddf9
authored
Jan 19, 2021
by
Ralf Jung
Browse files
reject warnings on Coq 8.13
parent
37945115
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
ccc5ddf9
...
...
@@ -36,6 +36,7 @@ build-coq.8.13.0:
<<
:
*template
variables
:
OPAM_PINS
:
"
coq
version
8.13.0"
DENY_WARNINGS
:
"
1"
build-coq.8.12.2
:
<<
:
*template
...
...
Makefile.coq.local
View file @
ccc5ddf9
...
...
@@ -15,7 +15,7 @@ test: $(TESTFILES:.v=.vo)
# Make sure everything imports the options, and all Instance/Argument/Hint are qualified.
$(HIDE)for
FILE
in
$(VFILES);
do
\
if ! fgrep -q 'From iris.prelude Require Import options.' "$$FILE"; then echo "ERROR
:
$$FILE does not import 'options'."; echo; exit 1; fi ;
\
if egrep '^
\s
*(Instance|Arguments|Hint (Extern|Constructors|Resolve|Immediate|Mode|Opaque|Transparent|Unfold))
\s
' "$$FILE"; then echo "ERROR: $$FILE contains unqualified 'Instance'/'Arguments'/'Hint'."; echo; exit 1; fi
\
if egrep '^
\s
*(Instance|Arguments|
Remove|
Hint (Extern|Constructors|Resolve|Immediate|Mode|Opaque|Transparent|Unfold))
\s
' "$$FILE"; then echo "ERROR: $$FILE contains unqualified 'Instance'/'Arguments'/'Hint'."; echo; exit 1; fi
\
done
.PHONY
:
test
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment