Allow referencing a Private Orb from within another Private Orb
complete
M
Michael A. Smith
It's no longer possible to turn orb-tools/pack validation off as of v11. See https://github.com/CircleCI-Public/orb-tools-orb/pull/125. (My workaround was to manually re-implement pack without validation.)
This post was marked as
complete
This issue should now resolved. Let me know if you have any further trouble with nesting private orbs. Cheers!
J
Joe Thompson
How is the issue resolved? What versions of the CLI are needed to resolve this?
P
Paul Vitic
The current workaround is to turn orb-tools/pack job validation off at CircleCI config.yml, as in:
workflows:
test-pack:
unless: << pipeline.parameters.run-integration-tests >>
jobs:
- orb-tools/lint
- orb-tools/pack:
use-orb-pack: true
validate: false # if true validation of private orb declaration at @orb.yml fails
R
Ritchie Clark
Absolutely agree.