-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into tross/upload_completed_fixes
- Loading branch information
Showing
7 changed files
with
214 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
timeout: 25m | ||
|
||
options: | ||
machineType: E2_HIGHCPU_32 | ||
|
||
# This build needs to run in environments where the _GITHUB_DEPLOY_KEY_SRC | ||
# substitution is defined, but also environments where it isn't. The | ||
# ALLOW_LOOSE option disables GCBs strict checking of substitution usage, | ||
# so that the build will still run if _GITHUB_DEPLOY_KEY_SRC is not defined. | ||
substitution_option: ALLOW_LOOSE | ||
|
||
steps: | ||
# Run the integration tests. Actual content of this job depends on the changes | ||
# Run the integration tests. Actual content of this job depends on the changes | ||
# detected in the PR | ||
- name: quay.io/gravitational/teleport-buildbox:teleport10 | ||
id: run-tests | ||
dir: /workspace/.cloudbuild/scripts | ||
entrypoint: bash | ||
args: | ||
args: | ||
- -c | ||
- | | ||
go run ./cmd/integration-tests \ | ||
-target "$_BASE_BRANCH" \ | ||
-bucket test-logs \ | ||
-build $BUILD_ID \ | ||
-build "$BUILD_ID" \ | ||
-key-secret "$_GITHUB_DEPLOY_KEY_SRC" \ | ||
-a "test-logs/*.json" | ||
-a "test-logs/*.json" | ||
timeout: 25m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
timeout: 25m | ||
|
||
options: | ||
machineType: 'E2_HIGHCPU_32' | ||
# This build needs to run in environments where the _GITHUB_DEPLOY_KEY_SRC | ||
machineType: E2_HIGHCPU_32 | ||
|
||
# This build needs to run in environments where the _GITHUB_DEPLOY_KEY_SRC | ||
# substitution is defined, but also environments where it isn't. The | ||
# ALLOW_LOOSE option disables GCBs strict checking of substitution usage, | ||
# so that the build will still run if _GITHUB_DEPLOY_KEY_SRC is not defined. | ||
substitution_option: ALLOW_LOOSE | ||
|
||
steps: | ||
# Run the unit tests. Actual content of this job depends on the changes | ||
# Run the unit tests. Actual content of this job depends on the changes | ||
# detected in the PR | ||
- name: quay.io/gravitational/teleport-buildbox:teleport10 | ||
id: run-tests | ||
dir: /workspace/.cloudbuild/scripts | ||
entrypoint: bash | ||
args: | ||
entrypoint: bash | ||
args: | ||
- -c | ||
- | | ||
go run ./cmd/unit-tests \ | ||
-target $_BASE_BRANCH \ | ||
-target "$_BASE_BRANCH" \ | ||
-bucket test-logs \ | ||
-build $BUILD_ID \ | ||
-build "$BUILD_ID" \ | ||
-key-secret "$_GITHUB_DEPLOY_KEY_SRC" \ | ||
-a "test-logs/*.json" | ||
timeout: 25m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters