Skip to content
Snippets Groups Projects
Commit 729e6898 authored by Janno's avatar Janno
Browse files

Try workaround to change CI directory for all cmds

parent bbb4b0f3
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -9,12 +9,12 @@ vio:
stage: quickbuild
tags:
- coq
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'
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'
only:
- master
artifacts:
......@@ -25,12 +25,12 @@ vio2vo:
stage: quickcheck
tags:
- coq
script:
- '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'
script: |
'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'
only:
- master
artifacts:
......@@ -41,13 +41,13 @@ full:
stage: fullbuild
tags:
- coq
script:
- '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'
script: |
'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'
only:
- master
artifacts:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment