From ccc5ddf98c7be3c93853223915da29fe2d931f91 Mon Sep 17 00:00:00 2001 From: Ralf Jung <jung@mpi-sws.org> Date: Tue, 19 Jan 2021 10:17:42 +0100 Subject: [PATCH] reject warnings on Coq 8.13 --- .gitlab-ci.yml | 1 + Makefile.coq.local | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a8dd19317..67f2c0994 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 diff --git a/Makefile.coq.local b/Makefile.coq.local index 2e0ca1e6d..e34123a32 100644 --- a/Makefile.coq.local +++ b/Makefile.coq.local @@ -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 -- GitLab