Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dccQuantities
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
DigitalDynamicMeasurement
dccQuantities
Commits
8021da04
Commit
8021da04
authored
1 year ago
by
Benedikt
Browse files
Options
Downloads
Patches
Plain Diff
changed pipline
parent
5f268402
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#37473
passed
1 year ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+18
-19
18 additions, 19 deletions
.gitlab-ci.yml
with
18 additions
and
19 deletions
.gitlab-ci.yml
+
18
−
19
View file @
8021da04
stages
:
-
test
-
generate_uml
-
deploy
variables
:
GIT_STRATEGY
:
fetch
test
:
stage
:
test
...
...
@@ -23,22 +26,18 @@ test:
coverage_format
:
cobertura
path
:
coverage.xml
generate_uml
:
stage
:
generate_uml
image
:
registry.gitlab.com/pipeline-components/pylint:latest
before_script
:
#- echo "Acquire::http::Proxy \"$HTTP_PROXY\";" > /etc/apt/apt.conf.d/30proxy
#- echo "Acquire::https::Proxy \"$HTTPS_PROXY\";" >> /etc/apt/apt.conf.d/30proxy
-
export HTTP_PROXY="http://webproxy.bs.ptb.de:8080"
-
export HTTPS_PROXY="http://webproxy.bs.ptb.de:8080"
-
export NO_PROXY="*.ptb.de"
-
apt-get update && apt-get install -y graphviz
commit_and_push_coverage
:
stage
:
deploy
image
:
alpine/git
script
:
-
apt-get update && apt-get install -y graphviz
-
pip install pylint
# Ensure pylint is installed for pyreverse
-
pip install .
# Install your package if necessary
-
pyreverse -o svg -p dccQuantsAndTabs . -a 1 -s 1 --output-directory ./doc/umlDiagrams
-
ls -la ./doc/umlDiagrams
artifacts
:
paths
:
-
doc/umlDiagrams/
-
git config --global user.email "you@example.com"
-
git config --global user.name "Your Name"
-
git fetch --all
-
git checkout -b coverage-report || git checkout coverage-report
-
rm -rf *
# Clear the branch (optional: handle with care)
-
cp -r cov_html/* .
-
git add .
-
git commit -m "Update coverage report" || echo "No changes to commit"
-
git push --set-upstream origin coverage-report
only
:
-
master
\ 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