Skip to content
Snippets Groups Projects
Commit 4580759c authored by Janno's avatar Janno
Browse files

Fully build Iris for CI

parent 6d0aec5a
No related branches found
No related tags found
No related merge requests found
Pipeline #
image: coq-git:8.5 image: coq-git:8.5
stages: stages:
- deps - depsquick
- depsfull
- quickbuild - quickbuild
- quickcheck - quickcheck
- fullbuild - fullbuild
iris: iris-quick:
stage: deps stage: depsquick
tags: tags:
- coq - coq
script: > script: >
...@@ -21,6 +22,21 @@ iris: ...@@ -21,6 +22,21 @@ iris:
only: only:
- master - master
iris-full:
stage: depsfull
tags:
- coq
script: >
(git --version || (apt-get update && apt-get install -y git));
git submodule update --init --recursive;
cd coq/iris;
cat _CoqProject | grep -v '^test' > _CoqProject_filtered;
mv _CoqProject_filtered _CoqProject;
make -j8;
git checkout _CoqProject
only:
- master
# vio: # vio:
# stage: quickbuild # stage: quickbuild
# tags: # tags:
......
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