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

turn off external build for now #510

Merged
merged 1 commit into from
Mar 20, 2024
Merged
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
30 changes: 15 additions & 15 deletions cloudbuild/postsubmit.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
steps:
- id: packer_init_external
name: "us-west1-docker.pkg.dev/gep-kne/packer/packer:1.9.1"
args: ["init", "cloudbuild/external.pkr.hcl"]
waitFor: ["-"] # run the builds concurrently

- id: packer_build_external
name: "us-west1-docker.pkg.dev/gep-kne/packer/packer:1.9.1"
args: ["build", "cloudbuild/external.pkr.hcl"]
env: [
"PKR_VAR_build_id=$BUILD_ID",
"PKR_VAR_short_sha=$SHORT_SHA",
"PKR_VAR_branch_name=$BRANCH_NAME",
"PKR_VAR_zone=${_ZONE}",
]
waitFor: [packer_init_external]
#- id: packer_init_external
# name: "us-west1-docker.pkg.dev/gep-kne/packer/packer:1.9.1"
# args: ["init", "cloudbuild/external.pkr.hcl"]
# waitFor: ["-"] # run the builds concurrently
#
#- id: packer_build_external
# name: "us-west1-docker.pkg.dev/gep-kne/packer/packer:1.9.1"
# args: ["build", "cloudbuild/external.pkr.hcl"]
# env: [
# "PKR_VAR_build_id=$BUILD_ID",
# "PKR_VAR_short_sha=$SHORT_SHA",
# "PKR_VAR_branch_name=$BRANCH_NAME",
# "PKR_VAR_zone=${_ZONE}",
# ]
# waitFor: [packer_init_external]

- id: packer_init_internal
name: "us-west1-docker.pkg.dev/gep-kne/packer/packer:1.9.1"
Expand Down
Loading