Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SaQC
Manage
Activity
Members
Labels
Plan
Issues
36
Issue boards
Milestones
Wiki
Code
Merge requests
8
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
rdm-software
SaQC
Merge requests
!716
Rolling release
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Rolling release
rolling-release
into
develop
Overview
1
Commits
8
Pipelines
5
Changes
5
Merged
Bert Palm
requested to merge
rolling-release
into
develop
1 year ago
Overview
1
Commits
8
Pipelines
5
Changes
2
Expand
👍
0
👎
0
Merge request reports
Compare
version 2
version 4
264e7a23
1 year ago
version 3
9c9ca342
1 year ago
version 2
d86c5771
1 year ago
version 1
591d8990
1 year ago
develop (base)
and
version 3
latest version
ee1bdd7e
8 commits,
1 year ago
version 4
264e7a23
7 commits,
1 year ago
version 3
9c9ca342
6 commits,
1 year ago
version 2
d86c5771
6 commits,
1 year ago
version 1
591d8990
5 commits,
1 year ago
Show latest version
2 files
+
125
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
40
−
0
Options
@@ -2,6 +2,20 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
# ===========================================================
# Hints
# ===========================================================
# $PYPI_PKG_NAME
# The variable PYPI_PKG_NAME is used in setup.py to determine
# how to name the tarball package. If not set the package is
# named 'saqc'.
# $TESTPYPI_TOKEN
# The upload token used for testpypi, set it on the gitlab
# page and enable masking to prevent revealing
# ===========================================================
# preparation
# ===========================================================
@@ -138,6 +152,8 @@ doctest:
wheel38
:
stage
:
build
image
:
python:3.8
variables
:
PYPI_PKG_NAME
:
"
saqc-dev"
script
:
-
pip install wheel
-
pip wheel .
@@ -146,6 +162,8 @@ wheel38:
wheel39
:
stage
:
build
image
:
python:3.9
variables
:
PYPI_PKG_NAME
:
"
saqc-dev"
script
:
-
pip install wheel
-
pip wheel .
@@ -154,6 +172,8 @@ wheel39:
wheel310
:
stage
:
build
image
:
python:3.10
variables
:
PYPI_PKG_NAME
:
"
saqc-dev"
script
:
-
pip install wheel
-
pip wheel .
@@ -162,6 +182,8 @@ wheel310:
wheel311
:
stage
:
build
image
:
python:3.11
variables
:
PYPI_PKG_NAME
:
"
saqc-dev"
script
:
-
pip install wheel
-
pip wheel .
@@ -179,6 +201,24 @@ docs:
# Extra Pipeline (run with a successful run of all other jobs on develop)
# ===========================================================
upload_testpypi
:
stage
:
deploy
only
:
-
develop
except
:
-
schedules
variables
:
PYPI_PKG_NAME
:
"
saqc-dev"
TWINE_USERNAME
:
__token__
TWINE_PASSWORD
:
$TESTPYPI_TOKEN
script
:
-
pip install build twine
-
python -m build
-
twine check --strict dist/*
-
twine upload -r testpypi dist/*
-
echo "install latest develop version with (all option flags are necessary):"
-
echo "pip install --pre -U -i https://test.pypi.org/simple/ --extra-index-url http://pypi.org/simple saqc-dev`"
# make html docu with sphinx
pages
:
stage
:
deploy
Loading