docker-qemu-reactos/.gitlab-ci.yml

39 lines
784 B
YAML
Raw Normal View History

image: "docker.io/docker:stable"
2019-02-20 22:10:38 +00:00
services:
- "docker:dind"
2019-02-20 22:10:38 +00:00
stages:
- "build:images"
- "push:images"
2019-02-20 22:10:38 +00:00
variables:
DOCKER_HOST: "tcp://docker:2375"
DOCKER_DRIVER: "overlay2"
2019-02-20 22:10:38 +00:00
build:image:
stage: "build:images"
2019-02-20 22:10:38 +00:00
before_script:
- "docker info"
- "apk add --no-cache coreutils git make xz"
2019-02-20 22:10:38 +00:00
script:
- "make build-image save-image"
2019-02-20 22:10:38 +00:00
artifacts:
expire_in: "1 hour"
2019-02-20 22:10:38 +00:00
paths:
- "dist/"
2019-02-20 22:10:38 +00:00
push:image:
stage: "push:images"
2019-02-20 22:10:38 +00:00
before_script:
- "apk add --no-cache coreutils git make xz"
- "docker login -u \"${CI_REGISTRY_USER:?}\" -p \"${CI_REGISTRY_PASSWORD:?}\" \"${CI_REGISTRY:?}\" >/dev/null 2>&1"
2019-02-20 22:10:38 +00:00
script:
- "make load-image push-image"
2019-02-20 22:10:38 +00:00
only:
- "/^v([0-9.]+)(-.+)?$/"
2019-02-20 22:10:38 +00:00
except:
- "branches"
2019-02-20 22:10:38 +00:00
dependencies:
- "build:image"