Newer
Older
# ===== DEFINE DEFAULT DOCKER IMAGE =====
# dockerhub image generated using docker/Dockerfile_simple
image: dtuwindenergy/topfarm2:latest
# ===== TEST TOPFARM =====
test_topfarm: # name the job what we like
stage: # build, test, deploy defined by default [2]
test
script:

Mads M. Pedersen
committed
- pip install -e .
tags: # only runners with this tag can do the job [3]
# ===== TEST TOPFARM =====
test_topfarm_pep8: # name the job what we like
stage: # build, test, deploy defined by default [2]
test
script:

Mads M. Pedersen
committed
- pip install -e .
- pycodestyle --ignore=E501,W504 --exclude="*Colonel*" topfarm
tags: # only runners with this tag can do the job [3]
- python
test_topfarm_windows: # name the job what we like
variables:
GIT_SUBMODULE_STRATEGY: normal
stage: # build, test, deploy defined by default [2]
test
- c:/Anaconda3/envs/pyTopfarm_openmdao_2_6/scripts/pip install -e .
- c:/Anaconda3/envs/pyTopfarm_openmdao_2_6/python.exe -m pytest --cov-report term-missing:skip-covered --cov=topfarm --cov-config .coveragerc --ignore=topfarm/cost_models/fuga/Colonel
# ===== BUILD DOCS AND PUSH TO PUBLIC WEBSITE =====
pages: # "pages" is a job specifically for GitLab pages [1]
stage: # build, test, deploy defined by default [2]
deploy
script: # use sphinx to build docs, move to public page
- cd docs; make html
- cd ../; mv docs/build/html public/
artifacts: # required for GitLab pages [1]
paths:
- public
only: # only run for these branches
- master
tags: # only runners with this tag can do the job [3]
# ===== BUILD WHEELS AND UPLOAD TO PYPI =====
pypi:
stage:
deploy
only:
- tags
# - master
script:
- python3 -m pip install -U setuptools wheel
- python3 setup.py sdist bdist_wheel
- python3 -m pip install -U twine
# - twine upload --repository-url https://test.pypi.org/legacy/ dist/* -u $TWINE_USERNAME -p $TWINE_PASSWORD # for testing purposes
- twine upload dist/* -u $TWINE_USERNAME -p $TWINE_PASSWORD
tags:
- python
# [1] GitLab page: https://docs.gitlab.com/ee/ci/yaml/#pages
# [2] CI stages: https://docs.gitlab.com/ee/ci/yaml/#stages
# [3] Tags: https://docs.gitlab.com/ee/ci/yaml/#tags