-
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.
- Loading branch information
Jared Allard
committed
Apr 29, 2022
1 parent
30fcabf
commit 45014fe
Showing
10 changed files
with
272 additions
and
122 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,61 +1,89 @@ | ||
# Please re-run stencil after any changes to this file. | ||
version: 2.1 | ||
|
||
orbs: | ||
shared: getoutreach/shared@1.55.2 | ||
shared: getoutreach/shared@1.60.0 | ||
|
||
# Extra contexts to expose to all jobs below | ||
contexts: &contexts | ||
### Start contexts inserted by other modules | ||
### End contexts inserted by other modules | ||
###Block(extraContexts) | ||
- docker-registry | ||
- ghaccesstoken | ||
###EndBlock(extraContexts) | ||
|
||
jobs: | ||
{} | ||
###Block(circleJobs) | ||
|
||
###EndBlock(circleJobs) | ||
|
||
release-dryrun: | ||
executor: | ||
name: shared/testbed-machine | ||
resource_class: xlarge | ||
steps: | ||
- shared/setup_environment: | ||
machine: true | ||
- shared/with_go_cache | ||
- shared/with_node_cache: | ||
save: true | ||
- run: | ||
name: Release (Dry-run) | ||
command: ./scripts/shell-wrapper.sh ci/release/dryrun.sh | ||
- shared/save_go_cache | ||
|
||
release: | ||
executor: | ||
name: shared/testbed-machine | ||
resource_class: xlarge | ||
steps: | ||
- shared/setup_environment: | ||
machine: true | ||
- shared/with_go_cache | ||
- shared/with_node_cache: | ||
save: true | ||
- run: | ||
name: Release | ||
command: ./scripts/shell-wrapper.sh ci/release/release.sh | ||
- shared/save_go_cache | ||
### Start jobs inserted by other modules | ||
### End jobs inserted by other modules | ||
|
||
workflows: | ||
version: 2 | ||
###Block(circleWorkflows) | ||
|
||
###EndBlock(circleWorkflows) | ||
build_and_test: | ||
|
||
### Start workflows inserted by other modules | ||
### End workflows inserted by other modules | ||
release_branch: | ||
triggers: | ||
- schedule: | ||
cron: 0 0 15 * * | ||
filters: | ||
branches: | ||
only: | ||
- release | ||
jobs: | ||
- shared/merge_into_release | ||
|
||
release: | ||
jobs: | ||
- release-dryrun: | ||
###Block(releaseDryrunConfig) | ||
context: ghaccesstoken | ||
###Block(circleWorkflowJobs) | ||
|
||
###EndBlock(circleWorkflowJobs) | ||
- shared/release: &release | ||
dryrun: false | ||
context: *contexts | ||
###Block(circleReleaseExtra) | ||
|
||
###EndBlock(circleReleaseExtra) | ||
requires: | ||
###Block(circleReleaseRequires) | ||
|
||
###EndBlock(circleReleaseRequires) | ||
- shared/test | ||
filters: | ||
branches: | ||
only: | ||
- master | ||
- main | ||
- release | ||
# Dryrun release for PRs | ||
- shared/release: | ||
<<: *release | ||
dryrun: true | ||
filters: | ||
branches: | ||
ignore: main | ||
###EndBlock(releaseDryrunConfig) | ||
- release: | ||
###Block(releaseConfig) | ||
context: ghaccesstoken | ||
ignore: | ||
- master | ||
- main | ||
- release | ||
- shared/test: | ||
context: *contexts | ||
app_name: stencil-circleci | ||
|
||
- shared/publish_docs: | ||
context: *contexts | ||
filters: | ||
branches: | ||
only: main | ||
###EndBlock(releaseConfig) | ||
ignore: /.*/ | ||
tags: | ||
only: /v[0-9]+(\.[0-9]+)*(-.*)*/ | ||
- shared/finalize-coverage: | ||
context: *contexts | ||
requires: | ||
- shared/test |
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,4 +1,4 @@ | ||
versions: | ||
# HACK(jaredallard): Remove when stencil-base is cleaned up and bootstrap | ||
# is dead. | ||
devbase: v1.55.2 | ||
devbase: v1.58.1 |
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
Oops, something went wrong.