Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NIFTy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ift
NIFTy
Merge requests
!250
Ci experiments
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Ci experiments
ci_experiments
into
NIFTy_4
Overview
3
Commits
23
Pipelines
15
Changes
2
Merged
Philipp Arras
requested to merge
ci_experiments
into
NIFTy_4
7 years ago
Overview
3
Commits
23
Pipelines
15
Changes
2
Expand
0
0
Merge request reports
Compare
NIFTy_4
version 13
f44fef75
7 years ago
version 12
95b9163a
7 years ago
version 11
29d4385b
7 years ago
version 10
8b9a92e4
7 years ago
version 9
6a6a606b
7 years ago
version 8
03d30449
7 years ago
version 7
4f64e5d4
7 years ago
version 6
dfc518e9
7 years ago
version 5
8b213501
7 years ago
version 4
dd00f632
7 years ago
version 3
d09ae338
7 years ago
version 2
e094bc18
7 years ago
version 1
471f34a3
7 years ago
NIFTy_4 (base)
and
latest version
latest version
48334540
23 commits,
7 years ago
version 13
f44fef75
22 commits,
7 years ago
version 12
95b9163a
21 commits,
7 years ago
version 11
29d4385b
20 commits,
7 years ago
version 10
8b9a92e4
19 commits,
7 years ago
version 9
6a6a606b
18 commits,
7 years ago
version 8
03d30449
17 commits,
7 years ago
version 7
4f64e5d4
16 commits,
7 years ago
version 6
dfc518e9
15 commits,
7 years ago
version 5
8b213501
14 commits,
7 years ago
version 4
dd00f632
13 commits,
7 years ago
version 3
d09ae338
12 commits,
7 years ago
version 2
e094bc18
11 commits,
7 years ago
version 1
471f34a3
10 commits,
7 years ago
2 files
+
36
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
16
−
3
Options
image
:
parras/nifty:latest
image
:
docker:stable
variables
:
CONTAINER_TEST_IMAGE
:
gitlab-registry.mpcdf.mpg.de/ift/nifty:$CI_BUILD_REF_NAME
stages
:
-
build_docker
-
test
-
release
variables
:
DOCKER_DRIVER
:
overlay
build_docker
:
stage
:
build_docker
script
:
-
docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN gitlab-registry.mpcdf.mpg.de
-
docker build -t $CONTAINER_TEST_IMAGE .
-
docker push $CONTAINER_TEST_IMAGE
test_python2_scalar
:
image
:
$CONTAINER_TEST_IMAGE
stage
:
test
script
:
-
python setup.py install --user -f
@@ -16,24 +25,28 @@ test_python2_scalar:
coverage report | grep TOTAL | awk '{ print "TOTAL: "$6; }'
test_python3_scalar
:
image
:
$CONTAINER_TEST_IMAGE
stage
:
test
script
:
-
python3 setup.py install --user -f
-
nosetests3 -q
test_python2_mpi
:
image
:
$CONTAINER_TEST_IMAGE
stage
:
test
script
:
-
python setup.py install --user -f
-
OMP_NUM_THREADS=1 mpiexec -n 2 nosetests -q 2> /dev/null
test_python3_mpi
:
image
:
$CONTAINER_TEST_IMAGE
stage
:
test
script
:
-
python3 setup.py install --user -f
-
OMP_NUM_THREADS=1 mpiexec -n 2 nosetests3 -q 2> /dev/null
pages
:
image
:
$CONTAINER_TEST_IMAGE
stage
:
release
script
:
-
python setup.py install --user -f
Loading