Skip to content

Commit

Permalink
🚀 version
Browse files Browse the repository at this point in the history
  • Loading branch information
niuhuan committed Apr 28, 2024
1 parent c60612f commit 93f4b8e
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,14 @@ jobs:
cd ci
cargo run --bin check-asset
- name: checkout core
if: steps.check_asset.outputs.skip_build != 'true'
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
repository: 'niuhuan/jasmine-rs-core'
path: 'native'

- name: Cache Flutter dependencies (Linux/Android)
if: steps.check_asset.outputs.skip_build != 'true' && matrix.config.host == 'ubuntu-latest'
uses: actions/cache@v3
Expand Down Expand Up @@ -160,18 +168,15 @@ jobs:
if: steps.check_asset.outputs.skip_build != 'true' && ( matrix.config.target == 'android-arm32' || matrix.config.target == 'android-arm64' || matrix.config.target == 'android-x86_64' )
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'zulu'
java-version: '11'
distribution: 'temurin'

- name: Setup android tools (Android)
if: steps.check_asset.outputs.skip_build != 'true' && ( matrix.config.target == 'android-arm32' || matrix.config.target == 'android-arm64' || matrix.config.target == 'android-x86_64' )
uses: maxim-lobanov/setup-android-tools@v1
uses: android-actions/setup-android@v3
with:
packages: |
platform-tools
platforms;android-32
build-tools;33.0.0
ndk;${{ env.NDK_VERSION }}
cmdline-tools-version: 8512546
packages: 'platform-tools platforms;android-32 build-tools;30.0.2 ndk;23.1.7779620'

- name: Install libfuse2 (Linux)
if: steps.check_asset.outputs.skip_build != 'true' && matrix.config.target == 'linux'
Expand Down

0 comments on commit 93f4b8e

Please sign in to comment.