From 0f87cee75f7404e57eae07b67c6eaa29689f4da6 Mon Sep 17 00:00:00 2001 From: Dan Miller Date: Tue, 28 Apr 2026 15:31:56 -0700 Subject: [PATCH 1/2] Replace submodules step in workflow with parameter to checkout action --- .github/workflows/test.yaml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 2d3d96bf84..e5e9bd3c8b 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -9,19 +9,14 @@ jobs: uses: actions/checkout@v6 with: fetch-depth: 0 + submodules: recursive + - name: Install Flutter uses: subosito/flutter-action@v2 with: flutter-version: '3.38.1' channel: 'stable' - # - name: Setup | Rust - # uses: dtolnay/rust-toolchain@stable - # with: - # components: clippy - - name: Checkout submodules - run: git submodule update --init --recursive - - name: install dependencies run: | cargo install cargo-ndk From f59a8ce1da59e376f0410d9b62488a6404938681 Mon Sep 17 00:00:00 2001 From: Dan Miller Date: Tue, 28 Apr 2026 15:34:43 -0700 Subject: [PATCH 2/2] Fix workflow step that runs configure script --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e5e9bd3c8b..edb5f583d7 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -32,7 +32,7 @@ jobs: - name: Configure app run: | cd scripts - yes yes | ./build_app.sh -v "0.0.1" -b "1" -p "linux" -a "stack_wallet" || true + echo "yes" | ./build_app.sh -v "0.0.1" -b "1" -p "linux" -a "stack_wallet" - name: Get dependencies run: flutter pub get