Skip to content
Snippets Groups Projects
Commit ac163ddc authored by Sven Marcus's avatar Sven Marcus
Browse files

Move Python build to its own stage

parent f22cc24f
No related branches found
No related tags found
1 merge request!6Proper Python simulation tests
......@@ -2,6 +2,7 @@ image: irmb/virtualfluids-python-deps
stages:
- build
- build_python
- test
- benchmark
- analyze
......@@ -56,21 +57,6 @@ gcc_9:
###############################################################################
gcc_9_python:
stage: build
needs: ["gcc_9"]
artifacts:
paths:
- build/
- dist/
script:
- python3 setup.py bdist_wheel
###############################################################################
clang_10:
extends: .gnu_build_template
......@@ -176,6 +162,24 @@ build_singularity_image:
- singularity build --fakeroot Containers/VirtualFluidsOpenMPI.sif Containers/VirtualFluidsOpenMPI.def
- ls -sh Containers/VirtualFluidsOpenMPI.sif
###############################################################################
## Build Python ##
###############################################################################
gcc_9_python:
stage: build_python
needs: ["gcc_9"]
artifacts:
paths:
- build/
- dist/
script:
- python3 setup.py bdist_wheel
###############################################################################
## Tests ##
###############################################################################
......
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