Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/test-with-soroban-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,15 @@ jobs:
matrix:
working-directory: ${{ fromJSON(needs.collect-examples.outputs.dirs) }}
experimental_spec_shaking_v2: [true, false]
# Exclude examples that depend on crates.io packages that transitively
# depend on soroban-sdk (e.g. soroban-poseidon). Cargo does not provide
# a way to override the version of soroban-sdk required as a transitive
# dependency of another dependency where the version to override is a
# different major version or does not match the semver compatibility
# defined by the importer, causing two copies of soroban-sdk to be
# compiled and duplicate lang item (panic_impl) errors.
exclude:
- working-directory: privacy-pools
defaults:
run:
working-directory: soroban-examples/${{ matrix.working-directory }}
Expand Down
Loading