Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pystencils_autodiff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
pycodegen
pystencils_autodiff
Commits
602de11b
Commit
602de11b
authored
5 years ago
by
Stephan Seitz
Browse files
Options
Downloads
Patches
Plain Diff
Add .gitlab-ci.yml
parent
fd0b5810
No related branches found
No related tags found
No related merge requests found
Pipeline
#17017
failed
5 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+68
-0
68 additions, 0 deletions
.gitlab-ci.yml
with
68 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
68
−
0
View file @
602de11b
# Minimal tests in windows environment
minimal-windows
:
stage
:
test
except
:
variables
:
-
$ENABLE_NIGHTLY_BUILDS
tags
:
-
win
script
:
-
source /cygdrive/c/Users/build/Miniconda3/Scripts/activate
-
source activate pystencils_dev
-
env
-
conda env list
-
python -c "import numpy"
-
pytest
minimal-ubuntu
:
stage
:
test
except
:
variables
:
-
$ENABLE_NIGHTLY_BUILDS
image
:
i10git.cs.fau.de:5005/pycodegen/pycodegen/minimal_ubuntu
script
:
-
pytest
tags
:
-
docker
minimal-conda
:
stage
:
test
except
:
variables
:
-
$ENABLE_NIGHTLY_BUILDS
image
:
i10git.cs.fau.de:5005/pycodegen/pycodegen/minimal_conda
script
:
-
pytest
tags
:
-
docker
# -------------------- Linter & Documentation --------------------------------------------------------------------------
flake8-lint
:
stage
:
test
except
:
variables
:
-
$ENABLE_NIGHTLY_BUILDS
image
:
i10git.cs.fau.de:5005/pycodegen/pycodegen/full
script
:
-
flake8 pystencils
tags
:
-
docker
-
cuda
build-documentation
:
stage
:
test
image
:
i10git.cs.fau.de:5005/pycodegen/pycodegen/full
script
:
-
export PYTHONPATH=`pwd`
-
mkdir html_doc
-
sphinx-build -W -b html doc html_doc
tags
:
-
docker
-
cuda
artifacts
:
paths
:
-
html_doc
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment