mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2024-11-07 03:07:24 +01:00
28 lines
671 B
YAML
28 lines
671 B
YAML
dist: xenial
|
|
sudo: required
|
|
language: bash
|
|
services:
|
|
- docker
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- jq
|
|
|
|
jobs:
|
|
include:
|
|
- stage: test
|
|
script:
|
|
- git ls-files --exclude='*Dockerfile' --ignored | xargs --max-lines=1 -I{} sh -c 'docker run --rm -i -v ${PWD}/.hadolint.yaml:/.hadolint.yaml hadolint/hadolint < "$1"' -- {}
|
|
- bash -c 'shopt -s globstar; shellcheck **/*.sh'
|
|
- &build
|
|
stage: build
|
|
env: VERSION_SHORT=0.17 EXTRA_TAG=latest,stable
|
|
script:
|
|
- ./build.sh $VERSION_SHORT
|
|
- <<: *build
|
|
env: VERSION_SHORT=0.16
|
|
- <<: *build
|
|
env: VERSION_SHORT=0.15
|
|
- <<: *build
|
|
env: VERSION_SHORT=0.14
|