1
0
mirror of https://github.com/bplein/factorio-docker.git synced 2025-01-10 03:16:41 +02:00
factorio-docker-bplein/.travis.yml

38 lines
1.1 KiB
YAML
Raw Normal View History

dist: xenial
language: bash
services:
- docker
2019-11-11 23:03:20 +02:00
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'
2019-11-11 23:03:20 +02:00
- &build
2019-11-20 23:57:13 +02:00
stage: Build & update Docker HUB description
2020-11-24 10:24:53 +02:00
env: VERSION_SHORT=1.1 EXTRA_TAG=latest,stable
script:
- ./build.sh $VERSION_SHORT
2020-11-24 10:24:53 +02:00
- <<: *build
env: VERSION_SHORT=1.0
- <<: *build
env: VERSION_SHORT=0.18
- <<: *build
env: VERSION_SHORT=0.17
- <<: *build
env: VERSION_SHORT=0.16
- <<: *build
env: VERSION_SHORT=0.15
- <<: *build
env: VERSION_SHORT=0.14
- <<: *build
if: branch = master AND type != pull_request
2020-05-07 22:20:25 +02:00
script: DOCKERHUB_USERNAME=$DOCKER_USERNAME DOCKERHUB_PASSWORD=$DOCKER_PASSWORD DOCKERHUB_REPOSITORY='factoriotools/factorio' README_FILEPATH='./README.md' ./update-dockerhub-description.sh