Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Python Package
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
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
ASTRON Templates
Python Package
Merge requests
!21
Resolve
CWG-68
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Merged
Resolve
CWG-68
CWG-68
into
main
Overview
0
Commits
2
Pipelines
1
Changes
4
Merged
Corné Lukken
requested to merge
CWG-68
into
main
1 year ago
Overview
0
Commits
2
Pipelines
1
Changes
4
Expand
Closes
CWG-68
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
30d0499c
2 commits,
1 year ago
4 files
+
10
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
{{cookiecutter.project_slug}}/.gitlab-ci.yml
+
6
−
0
Options
@@ -95,21 +95,25 @@ package_files:
package_docs
:
stage
:
package
allow_failure
:
true
artifacts
:
expire_in
:
1w
paths
:
-
docs/*
# update path to match the dest dir for documentation
script
:
-
echo "build and collect docs"
-
exit
1
run_integration_tests
:
stage
:
integration
allow_failure
:
true
needs
:
-
package_files
script
:
-
echo "make sure to move out of source dir"
-
echo "install package from filesystem (or use the artefact)"
-
echo "run against foreign systems (e.g. databases, cwl etc.)"
-
exit
1
publish_on_gitlab
:
stage
:
publish
@@ -163,6 +167,7 @@ publish_on_pypi:
publish_to_readthedocs
:
stage
:
publish
allow_failure
:
true
environment
:
readthedocs
needs
:
-
package_docs
@@ -171,3 +176,4 @@ publish_to_readthedocs:
-
if
:
$CI_COMMIT_TAG
script
:
-
echo "scp docs/* ???"
-
exit
1
Loading