Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ift
NIFTy
Commits
b02071c6
Commit
b02071c6
authored
Jun 19, 2018
by
Philipp Arras
Browse files
Add artifacts
parent
c7e1ba26
Pipeline
#31356
failed with stages
in 4 minutes and 1 second
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
b02071c6
...
...
@@ -72,6 +72,9 @@ run_critical_filtering:
-
python3 demos/critical_filtering.py
only
:
-
run_demos
artifacts
:
paths
:
-
'
*.png'
run_nonlinear_critical_filter
:
stage
:
test
...
...
@@ -82,6 +85,9 @@ run_nonlinear_critical_filter:
-
python3 demos/nonlinear_critical_filter.py
only
:
-
run_demos
artifacts
:
paths
:
-
'
*.png'
run_nonlinear_wiener_filter
:
stage
:
test
...
...
@@ -92,6 +98,9 @@ run_nonlinear_wiener_filter:
-
python3 demos/nonlinear_wiener_filter.py
only
:
-
run_demos
artifacts
:
paths
:
-
'
*.png'
run_poisson_demo
:
stage
:
test
...
...
@@ -102,6 +111,9 @@ run_poisson_demo:
-
python3 demos/poisson_demo.py
only
:
-
run_demos
artifacts
:
paths
:
-
'
*.png'
run_probing
:
stage
:
test
...
...
@@ -112,6 +124,9 @@ run_probing:
-
python3 demos/probing.py
only
:
-
run_demos
artifacts
:
paths
:
-
'
*.png'
run_sampling
:
stage
:
test
...
...
@@ -122,6 +137,9 @@ run_sampling:
-
python3 demos/sampling.py
only
:
-
run_demos
artifacts
:
paths
:
-
'
*.png'
run_tomography
:
stage
:
test
...
...
@@ -132,6 +150,9 @@ run_tomography:
-
python3 demos/tomography.py
only
:
-
run_demos
artifacts
:
paths
:
-
'
*.png'
run_wiener_filter_data_space_noiseless
:
stage
:
test
...
...
@@ -142,6 +163,9 @@ run_wiener_filter_data_space_noiseless:
-
python3 demos/wiener_filter_data_space_noiseless.py
only
:
-
run_demos
artifacts
:
paths
:
-
'
*.png'
run_wiener_filter_easy.py
:
stage
:
test
...
...
@@ -152,6 +176,9 @@ run_wiener_filter_easy.py:
-
python3 demos/wiener_filter_easy.py
only
:
-
run_demos
artifacts
:
paths
:
-
'
*.png'
run_wiener_filter_via_curvature.py
:
stage
:
test
...
...
@@ -164,6 +191,9 @@ run_wiener_filter_via_curvature.py:
-
python3 demos/wiener_filter_via_curvature.py
only
:
-
run_demos
artifacts
:
paths
:
-
'
*.png'
run_wiener_filter_via_hamiltonian.py
:
stage
:
test
...
...
@@ -174,6 +204,9 @@ run_wiener_filter_via_hamiltonian.py:
-
python3 demos/wiener_filter_via_hamiltonian.py
only
:
-
run_demos
artifacts
:
paths
:
-
'
*.png'
run_ipynb
:
stage
:
test
...
...
@@ -183,3 +216,6 @@ run_ipynb:
-
jupyter nbconvert --execute demos/Wiener_Filter.ipynb
only
:
-
run_demos
artifacts
:
paths
:
-
'
*.png'
Dockerfile
View file @
b02071c6
...
...
@@ -24,9 +24,10 @@ RUN apt-get update && apt-get install -y \
&& pip install coverage \
&& rm -rf /var/lib/apt/lists/*
RUN
apt-get update
&&
apt-get
install
-y
python-matplotlib python3-matplotlib
RUN
python3
-m
pip
install
--upgrade
pip
&&
python3
-m
pip
install
jupyter
&&
python
-m
pip
install
--upgrade
pip
&&
python
-m
pip
install
jupyter
# Needed for demos to be running
RUN
apt-get update
&&
apt-get
install
-y
python-matplotlib python3-matplotlib
\
&&
python3
-m
pip
install
--upgrade
pip
&&
python3
-m
pip
install
jupyter
&&
python
-m
pip
install
--upgrade
pip
&&
python
-m
pip
install
jupyter
\
&&
rm
-rf
/var/lib/apt/lists/
*
# Create user (openmpi does not like to be run as root)
RUN
useradd
-ms
/bin/bash testinguser
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment