Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Iris
ci
Compare Revisions
2c6334add01e9e504d41b90c336a165227329558...b58c3b6db3087e19b01e54ec640b465e7262935e
Commits (1)
use 'make -O' to synchronize output
· b58c3b6d
Ralf Jung
authored
Mar 24, 2018
b58c3b6d
Hide whitespace changes
Inline
Side-by-side
buildjob
View file @
b58c3b6d
...
...
@@ -23,7 +23,7 @@ env | egrep '^(CI_BUILD_REF|CI_RUNNER)' > build-env.txt
# Build
echo_color
"
$BOLDGREEN
"
"[buildjob] Perfoming build"
time
make
-k
-j
$CPU_CORES
TIMED
=
y 2>&1 |
tee
build-log.txt
time
make
-O
-k
-j
$CPU_CORES
TIMED
=
y 2>&1 |
tee
build-log.txt
if
fgrep Axiom build-log.txt
>
/dev/null
;
then
exit
1
;
fi
echo_color
"
$BOLDGREEN
"
"[buildjob] Build time summary"
cat
build-log.txt | egrep
"(real|user): [0-9]"
|
tee
build-time.txt
...
...