Skip to content

Commit 7788537

Browse files
authored
Ci fixes (#1307)
* Replace submodules step in workflow with parameter to checkout action * Fix workflow step that runs configure script
1 parent 7407749 commit 7788537

1 file changed

Lines changed: 3 additions & 8 deletions

File tree

.github/workflows/test.yaml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,14 @@ jobs:
99
uses: actions/checkout@v6
1010
with:
1111
fetch-depth: 0
12+
submodules: recursive
13+
1214
- name: Install Flutter
1315
uses: subosito/flutter-action@v2
1416
with:
1517
flutter-version: '3.38.1'
1618
channel: 'stable'
1719

18-
# - name: Setup | Rust
19-
# uses: dtolnay/rust-toolchain@stable
20-
# with:
21-
# components: clippy
22-
- name: Checkout submodules
23-
run: git submodule update --init --recursive
24-
2520
- name: install dependencies
2621
run: |
2722
cargo install cargo-ndk
@@ -37,7 +32,7 @@ jobs:
3732
- name: Configure app
3833
run: |
3934
cd scripts
40-
yes yes | ./build_app.sh -v "0.0.1" -b "1" -p "linux" -a "stack_wallet" || true
35+
echo "yes" | ./build_app.sh -v "0.0.1" -b "1" -p "linux" -a "stack_wallet"
4136
4237
- name: Get dependencies
4338
run: flutter pub get

0 commit comments

Comments
 (0)