Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
backup_archivematica_repos
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
Digital Preservation
backup_archivematica_repos
Commits
2fb695bd
Commit
2fb695bd
authored
1 year ago
by
Jörg Sachse
Browse files
Options
Downloads
Patches
Plain Diff
add Gitlab-CI config
parent
21947228
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#6284
failed
1 year ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+23
-0
23 additions, 0 deletions
.gitlab-ci.yml
with
23 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
23
−
0
View file @
2fb695bd
---
# A pipeline is composed of independent jobs that run scripts, grouped into stages.
# Stages run in sequential order, but jobs within stages run in parallel.
#
# For more information, see: https://docs.gitlab.com/ee/ci/yaml/index.html#stages
image
:
debian:stable-slim
stages
:
# List of stages for jobs, and their order of execution
-
test
default
:
tags
:
-
docker
before_script
:
-
apt-get update
-
apt-get -y install shellcheck xargs
test-syntax-job
:
# This job runs in the test stage.
stage
:
test
# It only starts when the job in the build stage completes successfully.
script
:
-
find ./ -name *.sh | xargs shellcheck --color=always --shell=bash --external-sources
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