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
9028d6c194dff126443a1d19f23a13ac1e8ead3a to 40b71102efe051c777a785035aebcbaa4c2ec19f
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
40b71102efe051c777a785035aebcbaa4c2ec19f
Select Git revision
Swap
Target
iris/ci
Select target project
iris/ci
msammler/ci
snyke7/ci
3 results
9028d6c194dff126443a1d19f23a13ac1e8ead3a
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
support -mangle-names flag
· fc6f4956
Ralf Jung
authored
6 years ago
fc6f4956
don't try to be quite so clever with mangling
· 7ae823c0
Ralf Jung
authored
6 years ago
7ae823c0
lay down opam 2 plans
· 40b71102
Ralf Jung
authored
6 years ago
40b71102
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
buildjob
+5
-0
5 additions, 0 deletions
buildjob
prepare-opam.sh
+2
-1
2 additions, 1 deletion
prepare-opam.sh
with
7 additions
and
1 deletion
buildjob
View file @
40b71102
...
...
@@ -26,6 +26,11 @@ set -o pipefail
.
ci/prepare-opam.sh
$OPAM_PINS
# deliberately not quoted
env
| egrep
'^(CI_BUILD_REF|CI_RUNNER)'
>
build-env.txt
# maybe set some coq flags
if
[[
-n
"
$MANGLE_NAMES
"
]]
;
then
export
COQEXTRAFLAGS
=
"
$COQEXTRAFLAGS
-mangle-names mangled_"
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
...
...
This diff is collapsed.
Click to expand it.
prepare-opam.sh
View file @
40b71102
...
...
@@ -40,7 +40,8 @@ test -d "$OPAMROOT/repo/iris-dev" || opam repo add iris-dev https://gitlab.mpi-s
echo
# We really want to run all of the following in one opam transaction, but due to opam limitations,
# that is not currently possible.
# that is not currently possible. Once we use opam 2 for CI, we can first do all the pinning (with `-n`)
# followed by `opam upgrade --all build-dep/` (and hope this will also --fixup).
# Install fixed versions of some dependencies.
echo_color
"
$BOLDGREEN
"
"[prepare-opam] Processing pins"
...
...
This diff is collapsed.
Click to expand it.