Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
enstools-compression
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
w2w
enstools-compression
Commits
514d73dd
Commit
514d73dd
authored
2 years ago
by
Oriol Tintó
Browse files
Options
Downloads
Patches
Plain Diff
Fix package name in .gitlab-ci.yml
parent
d7c77473
No related branches found
No related tags found
1 merge request
!10
Prepare release 2023.4
Pipeline
#18406
failed
2 years ago
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+40
-0
40 additions, 0 deletions
.gitlab-ci.yml
VERSION
+1
-1
1 addition, 1 deletion
VERSION
with
41 additions
and
1 deletion
.gitlab-ci.yml
+
40
−
0
View file @
514d73dd
...
...
@@ -16,3 +16,43 @@ test_docker:
-
apt-get install -y libeccodes-dev
-
apt install -yq git python3 python3-pip python3-venv
script
:
./run_tests.sh
deploy-to-testpypi
:
stage
:
deploy_test
image
:
python:3.8
tags
:
-
docker.meteo.physik.lmu.de
only
:
-
tags
script
:
-
pip install twine
-
python setup.py sdist bdist_wheel
-
twine upload -u "__token__" -p "$PYPI_TEST_PASSWORD" --repository-url https://test.pypi.org/legacy/ --skip-existing dist/*
install-from-testpypi
:
stage
:
test_install
image
:
python:3.8
tags
:
-
docker.meteo.physik.lmu.de
only
:
-
tags
needs
:
[
"
deploy-to-testpypi"
]
script
:
-
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ enstools-compression
artifacts
:
when
:
on_failure
paths
:
-
"
*.log"
deploy-to-pypi
:
stage
:
deploy_prod
image
:
python:3.8
only
:
-
tags
tags
:
-
docker.meteo.physik.lmu.de
needs
:
[
"
install-from-testpypi"
]
script
:
-
pip install twine
-
python setup.py sdist bdist_wheel
-
twine upload -u "__token__" -p "$PYPI_PASSWORD" --skip-existing dist/*
\ No newline at end of file
This diff is collapsed.
Click to expand it.
VERSION
+
1
−
1
View file @
514d73dd
2023.
1
2023.
4
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