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 ci-knative-build-pipeline-release back #295

Merged
merged 1 commit into from
Dec 5, 2018
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
32 changes: 32 additions & 0 deletions ci/prow/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1780,6 +1780,38 @@ periodics:
- "--cov-target=."
- "--cov-threshold-percentage=80"

- cron: "31 8 * * *" # Run at 01:31PST every day (08:31 UTC)
name: ci-knative-build-pipeline-release
agent: kubernetes
labels:
preset-service-account: "true"
preset-bazel-scratch-dir: "true"
preset-bazel-remote-cache-enabled: "true"
preset-dind-enabled: "true"
spec:
containers:
- image: gcr.io/knative-tests/test-infra/prow-tests:latest
imagePullPolicy: Always
args:
- "--scenario=kubernetes_execute_bazel"
- "--clean"
- "--job=$(JOB_NAME)"
- "--repo=github.com/knative/build-pipeline"
- "--root=/go/src"
- "--service-account=/etc/service-account/service-account.json"
- "--upload=gs://knative-prow/logs"
- "--timeout=90" # 1.5h
- "--" # end bootstrap args, scenario args below
- "--" # end kubernetes_execute_bazel flags (consider following flags as text)
- "./hack/release.sh"
- "--publish"
- "--tag-release"
# Bazel needs privileged mode in order to sandbox builds.
securityContext:
privileged: true
resources:
requests:
memory: "1Gi"
- cron: "0 1 * * *" # Run at 01:00 every day
name: ci-knative-build-pipeline-go-coverage
agent: kubernetes
Expand Down