add workflow to build all Rust apps for every PR #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build all Rust apps on latest SDK | |
on: | |
workflow_dispatch: | |
inputs: | |
sdk_branch: | |
type: string | |
required: false | |
default: '' | |
pull_request: | |
env: | |
repo_list: ' | |
{\"repo_name\":[ | |
\"app-mobilecoin\", | |
]} | |
' | |
jobs: | |
prepare-matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- id: set-matrix | |
run: echo "matrix=${{ env.repo_list }}" >> $GITHUB_OUTPUT | |
test-build: | |
name: Build for all targets | |
needs: [prepare-matrix] | |
strategy: | |
fail-fast: false | |
matrix: | |
${{ fromJSON(needs.prepare-matrix.outputs.matrix) }} | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder:latest | |
steps: | |
- name: Clone App | |
uses: actions/checkout@v4 | |
with: | |
repository: LedgerHQ/${{ matrix.repo_name }} | |
submodules: true | |
ref: 'feat/update_nightly' | |
path: ${{ matrix.repo_name }} | |
- name: Build Path and Targets | |
run: | | |
cargo +$RUST_STABLE install toml-cli | |
cd ${{ matrix.repo_name }} | |
build_path=$(toml get ledger_app.toml app.build_directory) | |
echo "build_path=$build_path" >> $GITHUB_ENV | |
build_nanos=$(toml get ledger_app.toml app.devices | grep -o "\"nanos\"" | awk -F '"' '{print $2}') | |
echo "Build Nano S => $build_nanos" | |
build_nanosplus=$(toml get ledger_app.toml app.devices | grep -o "\"nanos+\"" | awk -F '"' '{print $2}' | sed 's/+/plus/') | |
echo "Build Nano S+ => $build_nanosplus" | |
build_nanox=$(toml get ledger_app.toml app.devices | grep -o "\"nanox\"" | awk -F '"' '{print $2}') | |
echo "Build Nano X => $build_nanox" | |
echo "build_nanos=$build_nanos" >> $GITHUB_ENV | |
echo "build_nanosplus=$build_nanosplus" >> $GITHUB_ENV | |
echo "build_nanox=$build_nanox" >> $GITHUB_ENV | |
- name: Build NanoS | |
run: | | |
[ -n '${{ env.build_nanos }}' ] && cd ${{ env.build_path }} | |
echo "Build for Nano S" | |
cargo ledger build nanos | |
- name: Build NanoX | |
run: | | |
[ -n '${{ env.build_nanox }}' ] && cd ${{ env.build_path }} | |
echo "Build for Nano X" | |
cargo ledger build nanox | |
- name: Build NanoS+ | |
run: | | |
[ -n '${{ env.build_nanosplus }}' ] && cd ${{ env.build_path }} | |
echo "Build for Nano S+" | |
cargo ledger build nanosplus |