Skip to content

Commit

Permalink
Add name parameter to GCB file (#485)
Browse files Browse the repository at this point in the history
  • Loading branch information
directionless authored May 7, 2019
1 parent a5557e7 commit e415bd1
Showing 1 changed file with 41 additions and 39 deletions.
80 changes: 41 additions & 39 deletions cloudbuild/master/cloudbuild.json
Original file line number Diff line number Diff line change
@@ -1,80 +1,82 @@
{
"steps": [
{
"id": "checkout_repo",
"timeout": "300s",
"name": "gcr.io/cloud-builders/git",
"args": [
"fetch",
"--depth=200"
"--depth=200'"
],
"name": "gcr.io/cloud-builders/git"
"timeout": "300s",
"id": "checkout_repo"
},
{
"args": [
"-j",
"deps"
],
"id": "deps",
"name": "gcr.io/cloud-builders/go",
"timeout": "300s",
"entrypoint": "make",
"env": [
"GOPATH=/go"
],
"entrypoint": "make",
"timeout": "300s",
"name": "gcr.io/cloud-builders/go",
"id": "deps"
"args": [
"-j",
"deps"
]
},
{
"id": "build",
"waitFor": [
"checkout_repo",
"deps"
],
"name": "gcr.io/cloud-builders/go",
"timeout": "600s",
"entrypoint": "make",
"args": [
"-j",
"linux-xp-launcher",
"linux-xp-extension",
"linux-xp-grpc-extension"
],
"entrypoint": "make",
"timeout": "600s",
"name": "gcr.io/cloud-builders/go",
]
},
{
"id": "lint",
"waitFor": [
"checkout_repo",
"deps"
],
"id": "build"
},
{
"name": "gcr.io/cloud-builders/go",
"timeout": "600s",
"entrypoint": "make",
"args": [
"-j",
"lint"
],
"entrypoint": "make",
"timeout": "600s",
"name": "gcr.io/cloud-builders/go",
"waitFor": [
"checkout_repo",
"deps"
],
"id": "lint"
]
},
{
"waitFor": [
"lint",
"build"
],
"id": "build-docker",
"entrypoint": "make",
"args": [
"-j",
"build-docker"
],
"entrypoint": "make",
"id": "build-docker",
"name": "gcr.io/cloud-builders/docker"
},
{
"waitFor": [
"lint",
"build"
]
},
{
"id": "build-dockerfake",
"entrypoint": "make",
],
"args": [
"-j",
"build-dockerfake"
],
"waitFor": [
"lint",
"build"
]
"entrypoint": "make",
"id": "build-dockerfake",
"name": "gcr.io/cloud-builders/docker"
}
]
}

0 comments on commit e415bd1

Please sign in to comment.