Skip to content
Snippets Groups Projects
Commit 391c796c authored by Oriol.Tinto's avatar Oriol.Tinto
Browse files

Fix package publishing.

parents cb7ea999 8921be14
No related branches found
No related tags found
1 merge request!16Development
Pipeline #18654 failed
...@@ -4,6 +4,7 @@ stages: ...@@ -4,6 +4,7 @@ stages:
- deploy_test - deploy_test
- test_install - test_install
- deploy_prod - deploy_prod
- prod_install
test_docker: test_docker:
stage: test stage: test
...@@ -48,12 +49,9 @@ install-from-testpypi: ...@@ -48,12 +49,9 @@ install-from-testpypi:
- apt-get install -y libeccodes-dev - apt-get install -y libeccodes-dev
- apt install -yq git vim python3 python3-pip python3-venv - apt install -yq git vim python3 python3-pip python3-venv
script: script:
- pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ enstools-compression - pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ enstools-compression --break-system-packages
- python -c "from enstools.compression import api" - python -c "from enstools.compression import api"
artifacts:
when: on_failure
paths:
- "*.log"
deploy-to-pypi: deploy-to-pypi:
stage: deploy_prod stage: deploy_prod
...@@ -66,4 +64,23 @@ deploy-to-pypi: ...@@ -66,4 +64,23 @@ deploy-to-pypi:
script: script:
- pip install twine - pip install twine
- python setup.py sdist bdist_wheel - python setup.py sdist bdist_wheel
- twine upload -u "__token__" -p "$PYPI_PASSWORD" --skip-existing dist/* - twine upload -u "__token__" -p "$PYPI_PASSWORD" --skip-existing dist/*
\ No newline at end of file
install-from-pypi:
stage: prod_install
image: ubuntu:rolling
tags:
- docker.meteo.physik.lmu.de
only:
- tags
needs: ["deploy-to-pypi"]
before_script:
- apt update
- export DEBIAN_FRONTEND=noninteractive
- apt-get install -y libproj-dev proj-data proj-bin
- apt-get install -y libgeos-dev
- apt-get install -y libeccodes-dev
- apt install -yq git vim python3 python3-pip python3-venv
script:
- pip install enstools-compression --break-system-packages
- python -c "from enstools.compression import api"
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