Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
enstools-encoding
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-encoding
Commits
c848af5a
Commit
c848af5a
authored
1 year ago
by
Oriol Tintó
Browse files
Options
Downloads
Patches
Plain Diff
Update .gitlab-ci.yml
parent
98d69771
No related branches found
No related tags found
1 merge request
!10
Code cleaning, better documentation and updated CI.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+22
-15
22 additions, 15 deletions
.gitlab-ci.yml
with
22 additions
and
15 deletions
.gitlab-ci.yml
+
22
−
15
View file @
c848af5a
...
...
@@ -3,23 +3,20 @@ stages:
-
deploy_test
-
test_install
-
deploy_prod
-
prod_install
test_docker
:
stage
:
test
image
:
ubuntu:rolling
tags
:
image
:
python:3.10
tags
:
-
docker.meteo.physik.lmu.de
before_script
:
-
apt update
-
export DEBIAN_FRONTEND=noninteractive
-
apt install -yq git python3 python3-pip python3-venv
script
:
./run_tests.sh
rules
:
-
if
:
'
$CI_COMMIT_TAG
==
null'
deploy-to-testpypi
:
stage
:
deploy_test
image
:
python:3.
8
image
:
python:3.
10
tags
:
-
docker.meteo.physik.lmu.de
only
:
...
...
@@ -31,22 +28,20 @@ deploy-to-testpypi:
install-from-testpypi
:
stage
:
test_install
image
:
python:3.
8
image
:
python:3.
10
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-encoding
artifacts
:
when
:
on_failure
paths
:
-
"
*.log"
-
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ enstools-encoding --break-system-packages
-
python3 -c "from enstools.encoding import api"
deploy-to-pypi
:
stage
:
deploy_prod
image
:
python:3.
8
image
:
python:3.
10
only
:
-
tags
tags
:
...
...
@@ -55,4 +50,16 @@ deploy-to-pypi:
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
-
twine upload -u "__token__" -p "$PYPI_PASSWORD" --skip-existing dist/*
install-from-pypi
:
stage
:
prod_install
image
:
python:3.10
tags
:
-
docker.meteo.physik.lmu.de
only
:
-
tags
needs
:
[
"
deploy-to-pypi"
]
script
:
-
pip install enstools-encoding --break-system-packages
-
python3 -c "from enstools.encoding import api"
\ No newline at end of file
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