Skip to content
Snippets Groups Projects
Commit abcaa649 authored by Denis Arrivault's avatar Denis Arrivault
Browse files

Correction of docker images and gitalb-ci script

parent f3e70e3d
No related branches found
No related tags found
No related merge requests found
Pipeline #
# CI Config for ltaftpy / gitlab # CI Config for ltaftpy / gitlab
# nosetests template # Tests on X86_64 ubuntu
.nose: &nose unbutu:X86_64:
image: registry.gitlab.lif.univ-mrs.fr:5005/dev/ltfatpy/ubuntu:X86_64
tags:
- docker
script: script:
- pip3 install -e . - pip install -e .
- nosetests
artifacts:
when: always
untracked: true
paths:
- build
expire_in: 8d
# Tests on i686 ubuntu
ubuntu:i686:
image: registry.gitlab.lif.univ-mrs.fr:5005/dev/ltfatpy/ubuntu:i686
tags:
- docker
script:
- pip install -e .
- nosetests3 - nosetests3
artifacts: artifacts:
when: always
untracked: true
paths: paths:
- build - build
expire_in: 8d expire_in: 8d
...@@ -20,20 +40,6 @@ ...@@ -20,20 +40,6 @@
paths: paths:
- public - public
# Tests on X86_64 ubuntu
unbutu:X86_64:
<<: *nose
image: registry.gitlab.lif.univ-mrs.fr:5005/dev/ltfatpy/ubuntu:X86_64
tags:
- docker
# Tests on i686 ubuntu
ubuntu:i686:
<<: *nose
image: registry.gitlab.lif.univ-mrs.fr:5005/dev/ltfatpy/ubuntu:i686
tags:
- docker
# Doc Generation # Doc Generation
pages: pages:
<<: *doc <<: *doc
......
...@@ -11,14 +11,15 @@ RUN apt-get update && apt-get install -y \ ...@@ -11,14 +11,15 @@ RUN apt-get update && apt-get install -y \
python3-tk \ python3-tk \
python3-matplotlib \ python3-matplotlib \
python3-scipy \ python3-scipy \
python3-sphinx \ texlive-latex-recommended \
texlive-latex-recommended texlive-latex-extra \
dvipng
RUN pip3 install --upgrade pip RUN pip3 install --upgrade pip
RUN pip3 install scipy nose coverage pytest pytest-cov Sphinx sphinxcontrib-bibtex RUN pip3 install nose coverage pytest pytest-cov sphinx sphinxcontrib-bibtex
# Copy the ltfatpy sdist in the docker directory and uncomment the following line # Copy the ltfatpy sdist in the docker directory and uncomment the following line
# if you want to include ltfatpy sources in the docker image : # if you want to include ltfatpy sources in the docker image :
# ADD ltfatpy-1.0.8.tar.gz / # ADD ../dist/ltfatpy-1.0.8.tar.gz /
# cleanup # cleanup
RUN apt-get -qy autoremove RUN apt-get -qy autoremove
\ No newline at end of file
...@@ -10,15 +10,13 @@ RUN apt-get update && apt-get install -y \ ...@@ -10,15 +10,13 @@ RUN apt-get update && apt-get install -y \
python3-pip \ python3-pip \
python3-tk \ python3-tk \
python3-matplotlib \ python3-matplotlib \
python3-scipy \ python3-scipy
python3-sphinx \
texlive-latex-recommended
RUN pip3 install --upgrade pip RUN pip3 install --upgrade pip
RUN pip3 install nose coverage pytest pytest-cov sphinxcontrib-bibtex RUN pip3 install nose coverage pytest pytest-cov
# Copy the ltfatpy sdist in the docker directory and uncomment the following line # Copy the ltfatpy sdist in the docker directory and uncomment the following line
# if you want to include ltfatpy sources in the docker image : # if you want to include ltfatpy sources in the docker image :
# ADD ltfatpy-1.0.8.tar.gz / # ADD ../dist/ltfatpy-1.0.8.tar.gz /
# cleanup # cleanup
RUN apt-get -qy autoremove RUN apt-get -qy autoremove
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment