Skip to content

Commit

Permalink
with backtrace
Browse files Browse the repository at this point in the history
  • Loading branch information
knopp committed Sep 12, 2023
1 parent 229e5c1 commit ea3d4c3
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/test_example_plugin_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macOS-latest
# - ubuntu-latest
# - macOS-latest
- windows-latest
build_mode:
- debug
- profile
# - debug
# - profile
- release
env:
EXAMPLE_DIR: "a b/hello_rust_ffi_plugin/example"
Expand Down Expand Up @@ -67,15 +67,16 @@ jobs:
shell: bash
working-directory: ${{ env.EXAMPLE_DIR }}
run: flutter build ios --flavor flavor1 --${{ matrix.build_mode }} --no-codesign -v
- name: Build Windows (${{ matrix.build_mode }})
if: matrix.os == 'windows-latest'
shell: bash
working-directory: ${{ env.EXAMPLE_DIR }}
run: flutter build windows --${{ matrix.build_mode }} -v
# - name: Build Windows (${{ matrix.build_mode }})
# if: matrix.os == 'windows-latest'
# shell: bash
# working-directory: ${{ env.EXAMPLE_DIR }}
# run: flutter build windows --${{ matrix.build_mode }} -v
- name: Build Android (${{ matrix.build_mode }})
shell: bash
working-directory: ${{ env.EXAMPLE_DIR }}
run: |
export JAVA_HOME=$JAVA_HOME_11_X64
export RUST_BACKTRACE=1
flutter build apk --${{ matrix.build_mode }} -v

0 comments on commit ea3d4c3

Please sign in to comment.