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
!240
WIP: Docker experiments
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
WIP: Docker experiments
dockerExperiments
into
NIFTy_4
Overview
1
Commits
7
Pipelines
4
Changes
2
Closed
Philipp Arras
requested to merge
dockerExperiments
into
NIFTy_4
7 years ago
Overview
1
Commits
7
Pipelines
4
Changes
2
Expand
0
0
Merge request reports
Compare
NIFTy_4
version 1
9c8f3553
7 years ago
NIFTy_4 (base)
and
latest version
latest version
254ac681
7 commits,
7 years ago
version 1
9c8f3553
6 commits,
7 years ago
2 files
+
20
−
12
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
+
3
−
12
Options
#image: ubuntu:artful
image
:
debian:testing-slim
image
:
parras/nifty:latest
stages
:
-
test
@@ -11,11 +10,8 @@ variables:
test_python2
:
stage
:
test
script
:
-
apt-get update > /dev/null
-
apt-get install -y git libfftw3-dev openmpi-bin libopenmpi-dev python python-pip python-dev python-nose python-numpy python-matplotlib python-future python-mpi4py python-scipy > /dev/null
-
pip install --process-dependency-links parameterized coverage git+https://gitlab.mpcdf.mpg.de/ift/pyHealpix.git > /dev/null
-
pip install --user .
-
OMP_NUM_THREADS=1 mpiexec
--allow-run-as-root
-n 2 nosetests -q 2>/dev/null
-
OMP_NUM_THREADS=1 mpiexec -n 2 nosetests -q 2>/dev/null
-
nosetests -q --with-coverage --cover-package=nifty4 --cover-branches --cover-erase
-
>
coverage report | grep TOTAL | awk '{ print "TOTAL: "$6; }'
@@ -23,18 +19,13 @@ test_python2:
test_python3
:
stage
:
test
script
:
-
apt-get update > /dev/null
-
apt-get install -y git libfftw3-dev openmpi-bin libopenmpi-dev python3 python3-pip python3-dev python3-nose python3-numpy python3-matplotlib python3-future python3-mpi4py python3-scipy > /dev/null
-
pip3 install --process-dependency-links parameterized git+https://gitlab.mpcdf.mpg.de/ift/pyHealpix.git > /dev/null
-
pip3 install --user .
-
nosetests3 -q
-
OMP_NUM_THREADS=1 mpiexec
--allow-run-as-root
-n 2 nosetests3 -q 2>/dev/null
-
OMP_NUM_THREADS=1 mpiexec -n 2 nosetests3 -q 2>/dev/null
pages
:
stage
:
release
script
:
-
apt-get update > /dev/null
-
apt-get install -y git libfftw3-dev python python-pip python-dev python-numpy python-future python-sphinx python-sphinx-rtd-theme python-numpydoc > /dev/null
-
pip install --user .
-
sh docs/generate.sh > /dev/null
-
mv docs/build/ public/
Loading