Files
node-problem-detector/cloudbuild.yaml
2022-03-10 20:39:56 +00:00

23 lines
708 B
YAML

# See https://cloud.google.com/cloud-build/docs/build-config
# this must be specified in seconds. If omitted, defaults to 600s (10 mins)
timeout: 7200s
steps:
- name: 'gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20211118-2f2d816b90'
entrypoint: bash
env:
- PROW_GIT_TAG=$_GIT_TAG
- PULL_BASE_REF=$_PULL_BASE_REF
- VERSION=$_PULL_BASE_REF
args:
- -c
- |
echo "Building/Pushing NPD containers"
apk add musl-dev gcc
ENABLE_JOURNALD=0 make push-container
substitutions:
# _GIT_TAG will be filled with a git-based tag for the image, of the form vYYYYMMDD-hash, and
# can be used as a substitution
_GIT_TAG: 'PLACE_HOLDER'
_PULL_BASE_REF: 'master'