Skip to content
Snippets Groups Projects

Add Authors to lbmpy

Merged Markus Holzer requested to merge holzer/lbmpy:Dev into master
All threads resolved!
Files
4
+ 31
29
stages:
stages:
 
- pretest
- test
- test
- deploy
- deploy
# -------------------------- Tests ------------------------------------------------------------------------------------
# -------------------------- Pre Tests --------------------------------------------------------------------------------
# Normal test - runs on every commit all but "long run" tests
# Normal test - runs on every commit all but "long run" tests
tests-and-coverage:
tests-and-coverage:
stage: test
stage: pretest
except:
except:
variables:
variables:
- $ENABLE_NIGHTLY_BUILDS
- $ENABLE_NIGHTLY_BUILDS
@@ -36,6 +37,33 @@ tests-and-coverage:
@@ -36,6 +37,33 @@ tests-and-coverage:
cobertura: coverage.xml
cobertura: coverage.xml
junit: report.xml
junit: report.xml
 
minimal-conda:
 
stage: pretest
 
except:
 
variables:
 
- $ENABLE_NIGHTLY_BUILDS
 
image: i10git.cs.fau.de:5005/pycodegen/pycodegen/minimal_conda
 
script:
 
- pip install git+https://gitlab-ci-token:${CI_JOB_TOKEN}@i10git.cs.fau.de/pycodegen/pystencils.git@master#egg=pystencils
 
- python setup.py quicktest
 
tags:
 
- docker
 
 
# Linter for code formatting
 
flake8-lint:
 
stage: pretest
 
except:
 
variables:
 
- $ENABLE_NIGHTLY_BUILDS
 
image: i10git.cs.fau.de:5005/pycodegen/pycodegen/full
 
script:
 
- flake8 lbmpy
 
tags:
 
- docker
 
- cuda11
 
 
# -------------------------- Tests -------------------------------------------------------------------------------------
 
# pipeline with latest python version
# pipeline with latest python version
latest-python:
latest-python:
stage: test
stage: test
@@ -132,18 +160,6 @@ ubuntu:
@@ -132,18 +160,6 @@ ubuntu:
reports:
reports:
junit: report.xml
junit: report.xml
minimal-conda:
stage: test
except:
variables:
- $ENABLE_NIGHTLY_BUILDS
image: i10git.cs.fau.de:5005/pycodegen/pycodegen/minimal_conda
script:
- pip install git+https://gitlab-ci-token:${CI_JOB_TOKEN}@i10git.cs.fau.de/pycodegen/pystencils.git@master#egg=pystencils
- python setup.py quicktest
tags:
- docker
pycodegen-integration:
pycodegen-integration:
image: i10git.cs.fau.de:5005/pycodegen/pycodegen/full
image: i10git.cs.fau.de:5005/pycodegen/pycodegen/full
stage: test
stage: test
@@ -179,21 +195,7 @@ pycodegen-integration:
@@ -179,21 +195,7 @@ pycodegen-integration:
- cuda11
- cuda11
- AVX
- AVX
# -------------------- Linter & Documentation --------------------------------------------------------------------------
# -------------------- Documentation and deploy ------------------------------------------------------------------------
flake8-lint:
stage: test
except:
variables:
- $ENABLE_NIGHTLY_BUILDS
image: i10git.cs.fau.de:5005/pycodegen/pycodegen/full
script:
- flake8 lbmpy
tags:
- docker
- cuda11
build-documentation:
build-documentation:
stage: test
stage: test
Loading