Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yogh333 committed Feb 6, 2024
1 parent 6eba75b commit 5a1b166
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/build_all_apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,9 @@ jobs:
cd ${{ matrix.repo }}-${{ matrix.branch }}
build_directory=$(ledger-manifest --output-build-directory ledger_app.toml)
devices="$(ledger-manifest --output-devices ledger_app.toml | sed 's/+/plus/')"
formatted_devices=$(echo $devices | sed "s/\['//;s/'\]//;s/', '/ /g")
eval "devices_array=($formatted_devices)"
cd $build_directory
for device in "${devices_array[@]}"; do
for device in $formatted_devices; do
# Required as patch has a different version from what is locked in Cargo.lock
cargo +$RUST_NIGHTLY update ledger_device_sdk
cargo +$RUST_NIGHTLY update ledger_secure_sdk_sys
Expand Down

0 comments on commit 5a1b166

Please sign in to comment.