Skip to content
Snippets Groups Projects

Develop

Merged Alan Nelson requested to merge develop into master
23 files
+ 489
53
Compare changes
  • Side-by-side
  • Inline
Files
23
+ 90
4
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