Skip to content
Snippets Groups Projects
Commit 80f4fde3 authored by Janno's avatar Janno
Browse files

Make CI git submodule call shallow + filename fixes

parent 2b85714e
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -17,7 +17,7 @@ iris: ...@@ -17,7 +17,7 @@ iris:
- coq - coq
script: > script: >
(git --version || (apt-get update && apt-get install -y git)); (git --version || (apt-get update && apt-get install -y git));
git submodule update --init --recursive; git submodule update --init --recursive --depth 1;
cd coq/iris; cd coq/iris;
cat _CoqProject | grep -v '^test' > _CoqProject_filtered; cat _CoqProject | grep -v '^test' > _CoqProject_filtered;
mv _CoqProject_filtered _CoqProject; mv _CoqProject_filtered _CoqProject;
...@@ -35,7 +35,7 @@ vio: ...@@ -35,7 +35,7 @@ vio:
coqc -v; coqc -v;
time make -j8 TIMED=y quick 2>&1 | tee build-log-vio.txt; time make -j8 TIMED=y quick 2>&1 | tee build-log-vio.txt;
fgrep Axiom build-log.txt && exit 1; fgrep Axiom build-log.txt && exit 1;
cat build-log.txt | egrep "[a-zA-Z0-9_/-]+ \(user: [0-9]" | tee build-time-quick.txt cat build-log-vio.txt | egrep "[a-zA-Z0-9_/-]+ \(user: [0-9]" | tee build-time-vio.txt
only: only:
- master - master
artifacts: artifacts:
...@@ -51,7 +51,7 @@ vio2vo: ...@@ -51,7 +51,7 @@ vio2vo:
coqc -v; coqc -v;
time make -j8 TIMED=y vio2vo J=8 2>&1 | tee build-log-vio2vo.txt; time make -j8 TIMED=y vio2vo J=8 2>&1 | tee build-log-vio2vo.txt;
fgrep Axiom build-log.txt && exit 1; fgrep Axiom build-log.txt && exit 1;
cat build-log.txt | egrep "[a-zA-Z0-9_/-]+ \(user: [0-9]" | tee build-time-quick.txt cat build-log-vio2vo.txt | egrep "[a-zA-Z0-9_/-]+ \(user: [0-9]" | tee build-time-vio2vo.txt
only: only:
- master - master
artifacts: artifacts:
...@@ -68,7 +68,7 @@ full: ...@@ -68,7 +68,7 @@ full:
make clean; make clean;
time make -j8 TIMED=y 2>&1 | tee build-log-full.txt; time make -j8 TIMED=y 2>&1 | tee build-log-full.txt;
fgrep Axiom build-log.txt && exit 1; fgrep Axiom build-log.txt && exit 1;
cat build-log.txt | egrep "[a-zA-Z0-9_/-]+ \(user: [0-9]" | tee build-time-quick.txt; cat build-log-full.txt | egrep "[a-zA-Z0-9_/-]+ \(user: [0-9]" | tee build-time-full.txt;
only: only:
- master - master
artifacts: artifacts:
......
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