Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
spm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
GitLab upgrade completed. Current version is 17.11.3.
Show more breadcrumbs
solverstack
spm
Merge requests
!19
Upgrade CI scripts and Ctests to prepare the MPI version
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Upgrade CI scripts and Ctests to prepare the MPI version
faverge/spm:feature/update_ci
into
master
Overview
1
Commits
1
Pipelines
0
Changes
17
Merged
Mathieu Faverge
requested to merge
faverge/spm:feature/update_ci
into
master
5 years ago
Overview
1
Commits
1
Pipelines
0
Changes
17
Expand
0
0
Merge request reports
Compare
master
version 3
8d92d257
5 years ago
version 2
481670a6
5 years ago
version 1
6f63c57a
5 years ago
master (base)
and
latest version
latest version
366affd8
1 commit,
5 years ago
version 3
8d92d257
3 commits,
5 years ago
version 2
481670a6
2 commits,
5 years ago
version 1
6f63c57a
1 commit,
5 years ago
17 files
+
388
−
117
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
Search (e.g. *.vue) (Ctrl+P)
.gitlab/build.yml
0 → 100644
+
41
−
0
Options
---
.build_script_template
:
&build_script
stage
:
build
tags
:
[
"
large"
]
artifacts
:
name
:
spm_build_${VERSION}
expire_in
:
180 minutes
untracked
:
true
paths
:
-
install-${VERSION}
-
build
-
spm-build-${VERSION}.log
script
:
-
cd build
-
cmake -DSPM_CI_VERSION=${VERSION}
-C ../.gitlab/ci-test-initial-cache.cmake ..
-
make -j 4 | tee ../spm-build-${VERSION}.log
-
make install | tee -a ../spm-build-${VERSION}.log
only
:
-
branches
-
master@solverstack/spm
.build_script_template_seq
:
&build_script_seq
extends
:
-
.build_script_template
-
.only-branches-seq
.build_script_template_mpi
:
&build_script_mpi
extends
:
-
.build_script_template
-
.only-branches-mpi
build_spm_seq
:
<<
:
*build_script_seq
variables
:
VERSION
:
seq
build_spm_mpi
:
<<
:
*build_script_mpi
variables
:
VERSION
:
mpi
Loading