Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
apertis-image-recipes
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
infrastructure
apertis-image-recipes
Merge requests
!150
gitlab-ci: Test the recipes syntax
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
gitlab-ci: Test the recipes syntax
wip/em/ci-debos-syntax
into
apertis/v2019pre
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Emanuele Aina
requested to merge
wip/em/ci-debos-syntax
into
apertis/v2019pre
5 years ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
Trigger a debos dry run to prevent syntax errors in the YAML recipes.
1
0
Merge request reports
Compare
apertis/v2019pre
version 1
4136a74b
5 years ago
apertis/v2019pre (base)
and
latest version
latest version
9801313d
1 commit,
5 years ago
version 1
4136a74b
1 commit,
5 years ago
1 file
+
12
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
12
−
8
Options
image
:
debian:stretch
before_script
:
-
export DEBIAN_FRONTEND=noninteractive
-
apt-get update
-
apt-get install --no-install-recommends -y gradle
unit-tests
:
jenkinsfile-unit-tests
:
image
:
debian:stretch
stage
:
test
before_script
:
-
export DEBIAN_FRONTEND=noninteractive
-
apt-get update
-
apt-get install --no-install-recommends -y gradle
script
:
-
gradle --no-daemon test
artifacts
:
@@ -15,3 +13,9 @@ unit-tests:
reports
:
junit
:
-
build/test-results/test/TEST-*.xml
debos-dry-run
:
image
:
docker-registry.apertis.org/apertis/apertis-v2019pre-image-builder
stage
:
test
script
:
-
'
for
i
in
*.yaml
;
do
debos
--print-recipe
--dry-run
"$i"
;
done'
Loading