Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hpc-compendium
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
ZIH
hpcsupport
hpc-compendium
Commits
30c99aa8
Unverified
Commit
30c99aa8
authored
3 years ago
by
Alexander Grund
Browse files
Options
Downloads
Patches
Plain Diff
Use better names for jobs
parent
15f87df9
No related branches found
Branches containing commit
No related tags found
3 merge requests
!322
Merge preview into main
,
!319
Merge preview into main
,
!157
Enable full linting also for preview branch
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+9
-9
9 additions, 9 deletions
.gitlab-ci.yml
with
9 additions
and
9 deletions
.gitlab-ci.yml
+
9
−
9
View file @
30c99aa8
...
@@ -16,56 +16,56 @@ stages:
...
@@ -16,56 +16,56 @@ stages:
-
cleanup
-
cleanup
b
uild
_l
inter
:
B
uild
L
inter
:
stage
:
build
stage
:
build
variables
:
variables
:
GIT_STRATEGY
:
clone
GIT_STRATEGY
:
clone
GIT_DEPTH
:
0
GIT_DEPTH
:
0
script
:
docker build -t ${DOCKER_IMAGE} .
script
:
docker build -t ${DOCKER_IMAGE} .
t
est
_
mkdocs
:
T
est
mkdocs
:
stage
:
test
stage
:
test
script
:
docker run ${DOCKER_IMAGE}
script
:
docker run ${DOCKER_IMAGE}
test_linter_preview
:
Lint changed md-files
:
stage
:
test
stage
:
test
script
:
script
:
-
docker run --rm -w /src -e CI_MERGE_REQUEST_TARGET_BRANCH_NAME ${DOCKER_IMAGE}
-
docker run --rm -w /src -e CI_MERGE_REQUEST_TARGET_BRANCH_NAME ${DOCKER_IMAGE}
doc.zih.tu-dresden.de/util/lint-changes.sh
doc.zih.tu-dresden.de/util/lint-changes.sh
only
:
[
merge_requests
]
only
:
[
merge_requests
]
test_linkchecker_preview
:
Check links for changed md-files
:
stage
:
test
stage
:
test
script
:
script
:
-
docker run --rm -w /src -e CI_MERGE_REQUEST_TARGET_BRANCH_NAME ${DOCKER_IMAGE}
-
docker run --rm -w /src -e CI_MERGE_REQUEST_TARGET_BRANCH_NAME ${DOCKER_IMAGE}
doc.zih.tu-dresden.de/util/check-links.sh
doc.zih.tu-dresden.de/util/check-links.sh
only
:
[
merge_requests
]
only
:
[
merge_requests
]
test_linter
:
Lint md-files
:
stage
:
test
stage
:
test
script
:
docker run --rm ${DOCKER_IMAGE} markdownlint docs
script
:
docker run --rm ${DOCKER_IMAGE} markdownlint docs
only
:
[
main
]
only
:
[
main
]
test_linkchecker
:
Check links for md-files
:
stage
:
test
stage
:
test
script
:
script
:
-
docker run --rm ${DOCKER_IMAGE}
-
docker run --rm ${DOCKER_IMAGE}
bash -c "find docs -type f -name '*.md' | xargs -L1 markdown-link-check --quiet"
bash -c "find docs -type f -name '*.md' | xargs -L1 markdown-link-check --quiet"
only
:
[
main
]
only
:
[
main
]
r
elease
_
preview
:
R
elease
preview
branch
:
stage
:
release
stage
:
release
script
:
script
:
-
docker run --rm -v /var/www/html/preview:/mnt ${DOCKER_IMAGE} mkdocs build --site-dir /mnt
-
docker run --rm -v /var/www/html/preview:/mnt ${DOCKER_IMAGE} mkdocs build --site-dir /mnt
only
:
[
preview
]
only
:
[
preview
]
r
elease
:
R
elease
:
stage
:
release
stage
:
release
script
:
script
:
-
docker run --rm -v /var/www/html/hpc-wiki:/mnt ${DOCKER_IMAGE} mkdocs build --site-dir /mnt
-
docker run --rm -v /var/www/html/hpc-wiki:/mnt ${DOCKER_IMAGE} mkdocs build --site-dir /mnt
only
:
[
main
]
only
:
[
main
]
c
leanup
_
docker
:
C
leanup
docker
:
stage
:
cleanup
stage
:
cleanup
script
:
script
:
-
docker system prune --force
-
docker system prune --force
...
...
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