forked from erigontech/erigon
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dynamicly load anchorage-v3 repo cirleci config
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
version: 2.1 | ||
|
||
# this allows you to use CircleCI's dynamic configuration feature | ||
setup: true | ||
|
||
# the continuation orb is required in order to use dynamic configuration | ||
orbs: | ||
continuation: circleci/[email protected] | ||
|
||
# our defined job, and its steps | ||
jobs: | ||
setup: | ||
executor: continuation/default | ||
steps: | ||
- checkout # checkout code | ||
- run: # run a command | ||
name: Pull Anhorage | ||
command: | | ||
git clone https://github.com/bobanetwork/v3-anchorage | ||
- continuation/continue: | ||
configuration_path: v3-anchorage/.cirleci/generated_config.yml # use newly generated config to continue | ||
|
||
# our single workflow, that triggers the setup job defined above | ||
workflows: | ||
setup: | ||
jobs: | ||
- setup |