-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy path.gitlab-ci.yml
46 lines (42 loc) · 853 Bytes
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
image: docker
stages:
- build
- test
generate-config:
image: alpine
stage: build
script: ./ci/generate-ci-config > generated-config.yml
artifacts:
paths:
- generated-config.yml
variables:
BUCKET: s3://repository-b1b999c
only:
refs:
- pipelines2
- master
build:builder:
stage: build
services:
- docker:dind
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" "$CI_REGISTRY"
script:
- docker build -t "$CI_REGISTRY_IMAGE/builder" ci/builder
- docker push "$CI_REGISTRY_IMAGE/builder"
only:
refs:
- pipelines2
- master
changes:
- "ci/builder/**/*"
child-pipeline:
stage: test
trigger:
include:
- artifact: generated-config.yml
job: generate-config
only:
refs:
- pipelines2
- master