Skip to content
Snippets Groups Projects
.gitlab-ci.yml 579 B
Newer Older
Tamas Gal's avatar
Tamas Gal committed
before_script:
  - apt-get update -qq && apt-get install -y -qq libhdf5-dev
Tamas Gal's avatar
Tamas Gal committed
  - pip install -U pip setuptools wheel numpy
Tamas Gal's avatar
Tamas Gal committed
  - pip install .

test:
    image: python:3.7.0
    script:
        - echo narf

pages:
    image: python:3.7.0
    script:
        - cd docs && make html
        - mv _build/html/ ../public/
    artifacts:
        paths:
            - public
ViaFerrata's avatar
ViaFerrata committed

ViaFerrata's avatar
ViaFerrata committed
pypi:
ViaFerrata's avatar
ViaFerrata committed
    image: docker.km3net.de/base/python:3
    stage: release
    cache: {}
    script:
        - pip install -U twine
        - python setup.py sdist
        - twine upload dist/*
    only:
        - tags