Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
AVA
FloVer
Commits
bc362cfc
Commit
bc362cfc
authored
Apr 25, 2018
by
Heiko Becker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update coq to 8.8
parent
cffe703c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
3 deletions
+21
-3
Dockerfile
Dockerfile
+9
-2
coq/configure_coq.sh
coq/configure_coq.sh
+1
-0
scripts/ci-coq.sh
scripts/ci-coq.sh
+11
-1
No files found.
Dockerfile
View file @
bc362cfc
...
...
@@ -15,8 +15,15 @@ RUN opam init --comp=4.05.0 --auto-setup && \
# Install coq and dependencies
RUN
opam repo add coq-released https://coq.inria.fr/opam/released
&&
\
opam update
&&
\
opam
install
coq.8.7.2 coq-flocq
opam update
#Install coq 8.7.2 in a switch
RUN
opam switch
-A
4.05.0 coq8.7.2
RUN
opam
install
coq.8.7.2 coq-flocq
#Install coq 8.8 in a switch
RUN
opam switch
-A
4.05.0 coq8.8
RUN
opam
install
coq.8.8.0 coq-flocq
# Install polyml from git
RUN
git clone https://github.com/polyml/polyml.git polyml
&&
\
...
...
coq/configure_coq.sh
View file @
bc362cfc
...
...
@@ -25,6 +25,7 @@ fi
coq_ver
=
$(
${
COQBIN
}
coqc
-v
2>/dev/null |
sed
-n
-e
's/The Coq Proof Assistant, version \([^ ]*\).*$/\1/p'
)
case
"
$coq_ver
"
in
8.7.2
)
8.8.0
)
;;
*
)
echo
"Error: Need 8.7.2"
...
...
scripts/ci-coq.sh
View file @
bc362cfc
#!/bin/sh
eval
`
opam config
env
`
cd
./coq
opam switch coq8.7.2
eval
`
opam config
env
`
./configure_coq.sh
make
-j
make clean
opam switch coq8.8
eval
`
opam config
env
`
./configure_coq.sh
make
-j
Write
Preview
Markdown
is supported
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