Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add changes to cloudbuild.json reflecting automapSubstitutions #4177

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/schemas/json/cloudbuild.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@
},
"examples": [1, 2]
},
"automapSubstitutions": {
"description": "If set to true, automatically map all subsistutions and make them available as environment variable in a single step. If set to false, ignore substitutions for that step. Can be used for a build step or for an entire build. When used here, it will apply to only this build step.",
"markdownDescription": "If set to true, automatically map all subsistutions and make them available as environment variable in a single step. If set to false, ignore substitutions for that step. Can be used for a build step or for an entire build. When used here, it will apply to only this build step.",
"items": {
"type": "boolean"
},
"examples": [true, false]
},
"waitFor": {
"description": "The ID(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in waitFor have completed successfully. If waitFor is empty, this build step will start when all previous build steps in the list have completed successfully. If waitFor is set to '-', the step runs immediately when the build starts.",
"markdownDescription": "The `id`(s) of the step(s) that this build step depends on. This build step will not start until all the build steps in `waitFor` have completed successfully. If `waitFor` is empty, this build step will start when all previous build steps in the list have completed successfully. If `waitFor` is set to `'-'`, the step runs immediately when the build starts.",
Expand Down Expand Up @@ -96,6 +104,14 @@
"type": "object",
"additionalProperties": false,
"properties": {
"automapSubstitutions": {
"description": "If set to true, automatically map all subsistutions and make them available as environment variable in a single step. If set to false, ignore substitutions for that step. Can be used for a build step or for an entire build. When used here, it will apply to every step of this build.",
"markdownDescription": "If set to true, automatically map all subsistutions and make them available as environment variable in a single step. If set to false, ignore substitutions for that step. Can be used for a build step or for an entire build. When used here, it will apply to every step of this build.",
"items": {
"type": "boolean"
},
"examples": [true, false]
},
"machineType": {
"description": "Compute Engine machine type on which to run the build.",
"type": "string",
Expand Down
Loading