Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ci
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Iris
ci
Compare revisions
40b71102efe051c777a785035aebcbaa4c2ec19f to 99c935d2007358fe4028560e96f9c136e608e696
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
iris/ci
Select target project
No results found
99c935d2007358fe4028560e96f9c136e608e696
Select Git revision
Branches
master
opam2
Swap
Target
iris/ci
Select target project
iris/ci
msammler/ci
snyke7/ci
3 results
40b71102efe051c777a785035aebcbaa4c2ec19f
Select Git revision
Branches
master
opam2
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
allow opting out of the axiom check
· 99c935d2
Ralf Jung
authored
6 years ago
99c935d2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
buildjob
+8
-1
8 additions, 1 deletion
buildjob
with
8 additions
and
1 deletion
buildjob
View file @
99c935d2
...
...
@@ -34,10 +34,17 @@ fi
# Build
echo_color
"
$BOLDGREEN
"
"[buildjob] Perfoming build"
time
make
--output-sync
--no-print-directory
-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
# maybe check for axioms
if
[[
-z
"
$AXIOMS_IGNORE
"
]]
;
then
if
fgrep Axiom build-log.txt
>
/dev/null
;
then
echo_color
"
$BOLDRED
"
"You used axioms, shame on you!"
exit
1
fi
fi
# maybe submit timing information
if
[[
-n
"
$TIMING_PROJECT
"
&&
-n
"
$TIMING_CONF
"
]]
;
then
echo_color
"
$BOLDGREEN
"
"[buildjob] Submitting timing information to coq-speed"
...
...
This diff is collapsed.
Click to expand it.