forked from hexpm/diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloudbuild.yaml
45 lines (44 loc) · 1.07 KB
/
cloudbuild.yaml
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
steps:
- name: 'gcr.io/cloud-builders/docker'
args: ['pull', 'gcr.io/$PROJECT_ID/diff-build:latest']
id: pull-build
waitFor: ['-']
- name: 'gcr.io/cloud-builders/docker'
args: ['pull', 'gcr.io/$PROJECT_ID/diff:latest']
id: pull-app
waitFor: ['-']
- name: 'gcr.io/cloud-builders/docker'
args:
- 'build'
- '-t'
- 'gcr.io/$PROJECT_ID/diff-build:latest'
- '-t'
- 'gcr.io/$PROJECT_ID/diff-build:$SHORT_SHA'
- '--cache-from'
- 'gcr.io/$PROJECT_ID/diff-build:latest'
- '--target'
- 'build'
- '.'
id: build-build
waitFor: ['pull-build']
- name: 'gcr.io/cloud-builders/docker'
args:
- 'build'
- '-t'
- 'gcr.io/$PROJECT_ID/diff:latest'
- '-t'
- 'gcr.io/$PROJECT_ID/diff:$SHORT_SHA'
- '--cache-from'
- 'gcr.io/$PROJECT_ID/diff-build:latest'
- '--cache-from'
- 'gcr.io/$PROJECT_ID/diff:latest'
- '--target'
- 'app'
- '.'
id: build-app
waitFor: ['build-build', 'pull-app']
images:
- 'gcr.io/$PROJECT_ID/diff-build:latest'
- 'gcr.io/$PROJECT_ID/diff:latest'
- 'gcr.io/$PROJECT_ID/diff-build:$SHORT_SHA'
- 'gcr.io/$PROJECT_ID/diff:$SHORT_SHA'