Skip to content

Commit 1b4da04

Browse files
exclude deps/ from CI wasm discovery
1 parent 2276efd commit 1b4da04

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test-with-openzeppelin-contracts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
- name: Find wasm
7171
id: find-wasm
7272
run: |
73-
wasm=$(find . -name '*.wasm' -path '*/wasm32v1-none/*' | head -1)
73+
wasm=$(find . -name '*.wasm' -path '*/wasm32v1-none/release/*' -not -path '*/deps/*' | head -1)
7474
echo "wasm=$wasm" | tee -a $GITHUB_OUTPUT
7575
- name: Verify interface
7676
run: |

.github/workflows/test-with-soroban-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
- name: Find wasm
7979
id: find-wasm
8080
run: |
81-
wasm=$(find ${{ matrix.dir }}/target -name '*.wasm' -path '*/wasm32v1-none/*' | head -1)
81+
wasm=$(find ${{ matrix.dir }}/target -name '*.wasm' -path '*/wasm32v1-none/release/*' -not -path '*/deps/*' | head -1)
8282
echo "wasm=$wasm" | tee -a $GITHUB_OUTPUT
8383
- name: Verify interface
8484
run: |

0 commit comments

Comments
 (0)