Skip to content

Commit

Permalink
dynamicly load anchorage-v3 repo cirleci config
Browse files Browse the repository at this point in the history
  • Loading branch information
InoMurko committed Sep 18, 2023
1 parent 32e7395 commit 6c557bb
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .cirleci/config.yml
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

0 comments on commit 6c557bb

Please sign in to comment.