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
99c935d2007358fe4028560e96f9c136e608e696 to 16c8b6107119db3448b6828d3d2757888f2b2376
Project 'FP/iris-ci' was moved to 'iris/ci'. Please update any links and bookmarks that may still have the old path.
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
16c8b6107119db3448b6828d3d2757888f2b2376
Select Git revision
Branches
master
opam2
Swap
Target
iris/ci
Select target project
iris/ci
msammler/ci
snyke7/ci
3 results
99c935d2007358fe4028560e96f9c136e608e696
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 configuring build target
· 16c8b610
Ralf Jung
authored
6 years ago
16c8b610
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
buildjob
+3
-2
3 additions, 2 deletions
buildjob
with
3 additions
and
2 deletions
buildjob
View file @
16c8b610
...
...
@@ -32,8 +32,9 @@ if [[ -n "$MANGLE_NAMES" ]]; then
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
BUILD_TARGET
=
${
BUILD_TARGET
:-
all
}
echo_color
"
$BOLDGREEN
"
"[buildjob] Perfoming build (target:
$BUILD_TARGET
)"
time
make
$BUILD_TARGET
--output-sync
--no-print-directory
-k
-j
$CPU_CORES
TIMED
=
y 2>&1 |
tee
build-log.txt
echo_color
"
$BOLDGREEN
"
"[buildjob] Build time summary"
cat
build-log.txt | egrep
"(real|user): [0-9]"
|
tee
build-time.txt
...
...
This diff is collapsed.
Click to expand it.