Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
docker-ci
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Operate
Environments
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
UNL ITS
docker-ci
Merge requests
!45
Develop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Develop
develop
into
master
Overview
0
Commits
27
Pipelines
1
Changes
23
Merged
Alan Nelson
requested to merge
develop
into
master
5 years ago
Overview
0
Commits
27
Pipelines
1
Changes
23
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
32bf9e35
27 commits,
5 years ago
23 files
+
489
−
53
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
23
Search (e.g. *.vue) (Ctrl+P)
.gitlab/ci/build.yml
+
90
−
4
Options
Make All Images
:
stage
:
build
image
:
projectatomic/dockerfile-lint
tags
:
-
linux, dockerd
-
linux
-
dockerd
script
:
-
make
only
:
variables
:
-
$BUILD_ALL == "true"
Make PHP Lint
:
stage
:
build
tags
:
-
linux
-
dockerd
script
:
-
make php-lint
only
:
changes
:
-
php-lint/*
-
php-lint/**/*
Make PHP Unit Test
:
stage
:
build
tags
:
-
linux
-
dockerd
script
:
-
make php-unit-test
only
:
changes
:
-
php-unit-test/*
-
php-unit-test/**/*
Make Android Build
:
stage
:
build
tags
:
-
linux
-
dockerd
script
:
-
make android-build-server
only
:
changes
:
-
android-build-server/*
-
android-build-server/**/*
Make Static Code Analysis
:
stage
:
build
tags
:
-
linux
-
dockerd
script
:
-
make static-code-analysis
only
:
changes
:
-
static-code-analysis/*
-
static-code-analysis/**/*
Make Alpine SSH Client
:
stage
:
build
tags
:
-
linux
-
dockerd
script
:
-
make alpine-ssh-client
only
:
changes
:
-
alpine-ssh-client/*
-
alpine-ssh-client/**/*
Make Merge Request Check
:
stage
:
build
tags
:
-
linux
-
dockerd
script
:
-
make merge-request-check
only
:
changes
:
-
merge-request-check/*
-
merge-request-check/**/*
Make XML Lint
:
stage
:
build
tags
:
-
linux
-
dockerd
script
:
-
make
-
make xml-lint
only
:
changes
:
-
xml-lint/*
-
xml-lint/**/*
\ No newline at end of file
Loading