File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -36,19 +36,17 @@ jobs:
36
36
uses : actions/checkout@v4
37
37
with :
38
38
repository : LedgerHQ/app-boilerplate-rust
39
- path : app
40
39
41
40
- name : Patch Cargo.toml to use y333/nightly_support for ledger_device_sdk and include_gif crate
42
41
run : |
43
- cd app/ ${{ needs.call_get_app_metadata.outputs.build_directory }}
42
+ cd ${{ needs.call_get_app_metadata.outputs.build_directory }}
44
43
sed -i 's|ledger_device_sdk = ".*"|ledger_device_sdk = { git = "https://github.com/LedgerHQ/ledger-device-rust-sdk.git", branch = "y333/nightly_support" }|' Cargo.toml
45
44
sed -i 's|include_gif = ".*"|include_gif = { git = "https://github.com/LedgerHQ/ledger-device-rust-sdk.git", branch = "y333/nightly_support" }|' Cargo.toml
46
45
echo "Display patched Cargo.toml:"
47
46
cat Cargo.toml
48
47
49
48
- name : Build
50
49
run : |
51
- cd app/${{ needs.call_get_app_metadata.outputs.build_directory }}
52
50
cargo update include_gif
53
51
cargo update ledger_secure_sdk_sys
54
52
cargo update ledger_device_sdk
68
66
uses : actions/upload-artifact@v4
69
67
with :
70
68
name : " app_binaries_${{ matrix.device }}"
71
- path : app/${{ needs.call_get_app_metadata.outputs.build_directory }}/ ${{ matrix.device }}/release/${{ env.ELF_NAME }}
69
+ path : ${{ matrix.device }}/release/${{ env.ELF_NAME }}
72
70
if-no-files-found : error
73
71
74
72
# ragger_tests:
You can’t perform that action at this time.
0 commit comments