Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
UNL ITS
docker-ci
Commits
6ff87498
Commit
6ff87498
authored
Feb 23, 2021
by
Alan Nelson
Browse files
Use DAG in build pipeline
parent
c6ec1020
Changes
3
Hide whitespace changes
Inline
Side-by-side
.gitlab/ci/build.yml
View file @
6ff87498
Make All Images
:
stage
:
build
tags
:
-
linux
-
dockerd
script
:
-
make
only
:
variables
:
-
$BUILD_ALL == "true"
Make PHP Lint
:
stage
:
build
tags
:
...
...
.gitlab/ci/publish.yml
View file @
6ff87498
...
...
@@ -12,16 +12,11 @@
script
:
-
make publish
Publish All Images
:
<<
:
*push_to_registry
only
:
variables
:
-
$PUBLISH_ALL == "true"
Publish PHP Lint
:
<<
:
*push_to_registry
variables
:
IMG_NAME
:
"
php-lint"
needs
:
[
"
Make
PHP
Lint"
]
only
:
refs
:
-
master
...
...
@@ -33,6 +28,7 @@ Publish PHP Unit Test:
<<
:
*push_to_registry
variables
:
IMG_NAME
:
"
php-unit-test"
needs
:
[
"
Make
PHP
Unit
Test"
]
only
:
refs
:
-
master
...
...
@@ -44,6 +40,7 @@ Publish Android Build:
<<
:
*push_to_registry
variables
:
IMG_NAME
:
"
android-build-server"
needs
:
[
"
Make
Android
Build"
]
only
:
refs
:
-
master
...
...
@@ -55,6 +52,7 @@ Publish Static Code Analysis:
<<
:
*push_to_registry
variables
:
IMG_NAME
:
"
static-code-analysis"
needs
:
[
"
Make
Static
Code
Analysis"
]
only
:
refs
:
-
master
...
...
@@ -66,6 +64,7 @@ Publish Alpine SSH Client:
<<
:
*push_to_registry
variables
:
IMG_NAME
:
"
alpine-ssh-client"
needs
:
[
"
Make
Alpine
SSH
Client"
]
only
:
refs
:
-
master
...
...
@@ -77,6 +76,7 @@ Publish Merge Check:
<<
:
*push_to_registry
variables
:
IMG_NAME
:
"
merge-request-check"
needs
:
[
"
Make
Merge
Request
Check"
]
only
:
refs
:
-
master
...
...
@@ -88,6 +88,7 @@ Publish XML Lint:
<<
:
*push_to_registry
variables
:
IMG_NAME
:
"
xml-lint"
needs
:
[
"
Make
XML
Lint"
]
only
:
refs
:
-
master
...
...
@@ -99,6 +100,7 @@ Publish Dependency Check:
<<
:
*push_to_registry
variables
:
IMG_NAME
:
"
dependency-check"
needs
:
[
"
Make
Dependency
Check"
]
only
:
refs
:
-
master
...
...
@@ -110,6 +112,7 @@ Publish Detect Secrets:
<<
:
*push_to_registry
variables
:
IMG_NAME
:
"
detect-secrets"
needs
:
[
"
Make
Detect
Secrets"
]
only
:
refs
:
-
master
...
...
.gitlab/ci/test.yml
View file @
6ff87498
...
...
@@ -3,6 +3,7 @@ Test Container Versions:
tags
:
-
linux
-
dockerd
needs
:
[
"
Make
Static
Code
Analysis"
,
"
Make
Detect
Secrets"
,
"
Make
Dependency
Check"
]
only
:
-
develop
script
:
...
...
@@ -15,6 +16,7 @@ Test PHP Lint:
tags
:
-
linux
-
dockerd
needs
:
[
"
Make
PHP
Lint"
]
only
:
-
develop
script
:
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment