blob: a38ef71fcfe8ae0904a3e55a0fe4e8e7fe1c81ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
steps:
- name: 'gcr.io/cloud-builders/git'
args: ['fetch', '--all', '--unshallow']
- name: 'gcr.io/cloud-builders/bazel'
args: ['build', ':gopath']
- name: 'gcr.io/cloud-builders/docker'
args: ['build', '-t', 'gcr.io/$PROJECT_ID/go-branch', '-f', 'cloudbuild/go.Dockerfile', '.']
- name: 'gcr.io/$PROJECT_ID/go-branch'
args: ['tools/go_branch.sh']
- name: 'gcr.io/cloud-builders/git'
args: ['checkout', 'go']
- name: 'gcr.io/cloud-builders/git'
args: ['clean', '-f']
- name: 'golang'
args: ['go', 'build', './...']
- name: 'gcr.io/cloud-builders/git'
entrypoint: 'bash'
args:
- '-c'
- 'if [[ "$BRANCH_NAME" == "master" ]]; then git push "${_ORIGIN}" go:go; fi'
substitutions:
_ORIGIN: origin
|