-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into auth-backend-token-…
…entry-period
- Loading branch information
Showing
2,475 changed files
with
388,222 additions
and
210,707 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,14 @@ | ||
description: > | ||
Check if branch name starts with ui/ or docs/ and if so, exit. | ||
steps: | ||
- run: | ||
working_directory: ~/ | ||
name: Check branch name | ||
command: | | ||
# If the branch being tested starts with ui/ or docs/ we want to exit the job without failing | ||
[[ "$CIRCLE_BRANCH" = ui/* || "$CIRCLE_BRANCH" = docs/* ]] && { | ||
# stop the job from this step | ||
circleci-agent step halt | ||
} | ||
# exit with success either way | ||
exit 0 |
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 |
---|---|---|
@@ -1,10 +1,14 @@ | ||
executor: go-machine | ||
parallelism: 2 | ||
steps: | ||
- check-branch-name | ||
- setup-go | ||
- checkout | ||
- go_test | ||
- go_test: | ||
log_dir: "/tmp/testlogs" | ||
- store_artifacts: | ||
path: test-results | ||
- store_test_results: | ||
path: test-results | ||
- store_artifacts: | ||
path: "/tmp/testlogs" |
Oops, something went wrong.