-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci] Split quick checks out of checks (#175319)
`Quick Checks` will used as a blocking step before tests are run. We want to shorten the runtime to keep pipeline runtimes down, so this splits out longer running and less relevant checks into two steps, `Checks` and `Quick Checks` (cherry picked from commit 68d1bac)
- Loading branch information
Showing
4 changed files
with
57 additions
and
30 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
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
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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
export DISABLE_BOOTSTRAP_VALIDATION=false | ||
.buildkite/scripts/bootstrap.sh | ||
|
||
.buildkite/scripts/steps/checks/precommit_hook.sh | ||
.buildkite/scripts/steps/checks/ts_projects.sh | ||
.buildkite/scripts/steps/checks/packages.sh | ||
.buildkite/scripts/steps/checks/bazel_packages.sh | ||
.buildkite/scripts/steps/checks/verify_notice.sh | ||
.buildkite/scripts/steps/checks/plugin_list_docs.sh | ||
.buildkite/scripts/steps/checks/event_log.sh | ||
.buildkite/scripts/steps/checks/telemetry.sh | ||
.buildkite/scripts/steps/checks/jest_configs.sh | ||
.buildkite/scripts/steps/checks/bundle_limits.sh | ||
.buildkite/scripts/steps/checks/i18n.sh | ||
.buildkite/scripts/steps/checks/file_casing.sh | ||
.buildkite/scripts/steps/checks/licenses.sh | ||
.buildkite/scripts/steps/checks/test_projects.sh | ||
.buildkite/scripts/steps/checks/test_hardening.sh | ||
.buildkite/scripts/steps/checks/ftr_configs.sh | ||
.buildkite/scripts/steps/checks/yarn_deduplicate.sh |