Skip to content
Snippets Groups Projects
Commit 7ec3a28e authored by Janno's avatar Janno
Browse files

Remove leftover quotes in CI config

parent 729e6898
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -12,9 +12,9 @@ vio:
script: |
cd coq/ra/
coqc -v
'time make -j8 TIMED=y quick 2>&1 | tee build-log-vio.txt'
'fgrep Axiom build-log.txt && exit 1'
'cat build-log.txt | egrep "[a-zA-Z0-9_/-]+ \(user: [0-9]" | tee build-time-quick.txt'
time make -j8 TIMED=y quick 2>&1 | tee build-log-vio.txt
fgrep Axiom build-log.txt && exit 1
cat build-log.txt | egrep "[a-zA-Z0-9_/-]+ \(user: [0-9]" | tee build-time-quick.txt
only:
- master
artifacts:
......@@ -26,11 +26,11 @@ vio2vo:
tags:
- coq
script: |
'cd coq/ra/'
cd coq/ra/
coqc -v
'time make -j8 TIMED=y vio2vo J=8 2>&1 | tee build-log-vio2vo.txt'
'fgrep Axiom build-log.txt && exit 1'
'cat build-log.txt | egrep "[a-zA-Z0-9_/-]+ \(user: [0-9]" | tee build-time-quick.txt'
time make -j8 TIMED=y vio2vo J=8 2>&1 | tee build-log-vio2vo.txt
fgrep Axiom build-log.txt && exit 1
cat build-log.txt | egrep "[a-zA-Z0-9_/-]+ \(user: [0-9]" | tee build-time-quick.txt
only:
- master
artifacts:
......@@ -42,12 +42,12 @@ full:
tags:
- coq
script: |
'cd coq/ra/'
cd coq/ra/
coqc -v
'make clean'
'time make -j8 TIMED=y 2>&1 | tee build-log-full.txt'
'fgrep Axiom build-log.txt && exit 1'
'cat build-log.txt | egrep "[a-zA-Z0-9_/-]+ \(user: [0-9]" | tee build-time-quick.txt'
make clean'
time make -j8 TIMED=y 2>&1 | tee build-log-full.txt
fgrep Axiom build-log.txt && exit 1
cat build-log.txt | egrep "[a-zA-Z0-9_/-]+ \(user: [0-9]" | tee build-time-quick.txt
only:
- master
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