Skip to content

Commit 937b44a

Browse files
authored
Merge pull request #137 from LedgerHQ/y333/fix_reusable_build_for_rust
Fix Rust SDK cargo update ordering
2 parents 5ddc154 + 945c72e commit 937b44a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/reusable_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
cd ${{ needs.call_get_app_metadata.outputs.build_directory }}
115115
# Update the Rust SDK crates
116116
all_crates=$(cargo +$RUST_NIGHTLY tree --depth 2 --prefix none | awk '{print $1}' | sort -u)
117-
for crate in "ledger_secure_sdk_sys" "ledger_device_sdk" "include_gif"; do
117+
for crate in "include_gif" "ledger_secure_sdk_sys" "ledger_device_sdk"; do
118118
if echo "$all_crates" | grep -q "^$crate$"; then
119119
cargo +$RUST_NIGHTLY update $crate
120120
fi

0 commit comments

Comments
 (0)