Skip to content
Merged
Changes from all 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
10 changes: 10 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,16 @@ 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.
# https://github.com/stellar/rs-soroban-sdk/issues/1723
exclude:
- working-directory: privacy-pools
defaults:
run:
working-directory: soroban-examples/${{ matrix.working-directory }}
Expand Down
Loading