Skip to content
Snippets Groups Projects
Commit 8fcaf814 authored by Franck Pérignon's avatar Franck Pérignon
Browse files

Update .gitlab-ci.yml

parent 2fbf4a7a
No related branches found
No related tags found
No related merge requests found
...@@ -2,8 +2,7 @@ stages: ...@@ -2,8 +2,7 @@ stages:
- configure - configure
- build - build
- test - test
- install
- uninstall
config:debian: config:debian:
...@@ -20,6 +19,12 @@ build:debian: ...@@ -20,6 +19,12 @@ build:debian:
script: script:
- cd build - cd build
- make - make
- make install
- cd ..
- python -c 'import hysop'
- cd build
- make uninstall
- make clean
artifacts: artifacts:
paths: paths:
- build/ - build/
...@@ -34,26 +39,6 @@ test:debian: ...@@ -34,26 +39,6 @@ test:debian:
paths: paths:
- build/ - build/
deploy:debian:
image: fperignon/hysop:debian
stage: install
script:
- cd build
- make install
- cd
- python -c 'import hysop'
artifacts:
paths:
- build/
clean:debian:
image: fperignon/hysop:debian
stage: uninstall
script:
- cd build
- make uninstall
- make clean
config:ubuntu: config:ubuntu:
image: fperignon/hysop:ubuntu image: fperignon/hysop:ubuntu
stage: configure stage: configure
...@@ -68,6 +53,12 @@ build:ubuntu: ...@@ -68,6 +53,12 @@ build:ubuntu:
script: script:
- cd build - cd build
- make - make
- make install
- cd ..
- python -c 'import hysop'
- cd build
- make uninstall
- make clean
artifacts: artifacts:
paths: paths:
- build/ - build/
...@@ -82,22 +73,3 @@ test:ubuntu: ...@@ -82,22 +73,3 @@ test:ubuntu:
paths: paths:
- build/ - build/
deploy:ubuntu:
image: fperignon/hysop:ubuntu
stage: install
script:
- cd build
- make install
- cd
- python -c 'import hysop'
artifacts:
paths:
- build/
clean:ubuntu:
image: fperignon/hysop:ubuntu
stage: uninstall
script:
- cd build
- make uninstall
- make clean
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