-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/olog-use-text-handler-in-tests
- Loading branch information
Showing
24 changed files
with
1,961 additions
and
2,381 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 |
---|---|---|
|
@@ -2,13 +2,19 @@ | |
# syntax, such as anchors, will be fixed automatically. | ||
version: 2.1 | ||
orbs: | ||
shared: getoutreach/shared@2.25.1 | ||
shared: getoutreach/shared@2.28.1 | ||
queue: eddiewebb/[email protected] | ||
## <<Stencil::Block(CircleCIExtraOrbs)>> | ||
|
||
## <</Stencil::Block>> | ||
|
||
parameters: | ||
rebuild_cache: | ||
type: boolean | ||
default: false | ||
## <<Stencil::Block(CircleCIExtraParams)>> | ||
|
||
## <</Stencil::Block>> | ||
|
||
# Extra contexts to expose to all jobs below | ||
contexts: &contexts | ||
|
@@ -76,7 +82,8 @@ workflows: | |
|
||
release: | ||
when: | ||
not: << pipeline.parameters.rebuild_cache >> | ||
and: | ||
- not: << pipeline.parameters.rebuild_cache >> | ||
jobs: | ||
## <<Stencil::Block(circleWorkflowJobs)>> | ||
|
||
|
@@ -96,12 +103,19 @@ workflows: | |
- shared/test | ||
filters: | ||
branches: | ||
only: *release_branches | ||
|
||
# Dryrun release for PRs. | ||
- shared/release: | ||
<<: *release | ||
only: main | ||
# Dryrun for PRs | ||
- shared/pre-release: &pre-release | ||
dryrun: true | ||
context: *contexts | ||
## <<Stencil::Block(circlePreReleaseDryRunExtra)>> | ||
|
||
## <</Stencil::Block>> | ||
requires: | ||
## <<Stencil::Block(circlePreReleaseDryRunRequires)>> | ||
|
||
## <</Stencil::Block>> | ||
- shared/test | ||
filters: | ||
branches: | ||
ignore: *release_branches | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
go 1.21 | ||
go 1.22 | ||
|
||
toolchain go1.22.6 | ||
|
||
use . | ||
|
||
|
Oops, something went wrong.