From ea3d4c32598620c77dfba16258e2de1f3c6d7aad Mon Sep 17 00:00:00 2001 From: Matej Knopp Date: Tue, 12 Sep 2023 11:59:25 +0200 Subject: [PATCH] with backtrace --- .../workflows/test_example_plugin_build.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test_example_plugin_build.yml b/.github/workflows/test_example_plugin_build.yml index b39a4e0..bc8f359 100644 --- a/.github/workflows/test_example_plugin_build.yml +++ b/.github/workflows/test_example_plugin_build.yml @@ -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" @@ -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