Merge pull request #37 from DanGould/fix-core-test #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [main, v0.20.0] | |
name: Precompile Binaries | |
jobs: | |
Precompile: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-20.04 | |
- macOS-latest | |
- windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- uses: dart-lang/setup-dart@v1 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- name: Set up Android SDK | |
if: (matrix.os == 'ubuntu-20.04') | |
uses: android-actions/setup-android@v2 | |
- name: Install Specific NDK | |
if: (matrix.os == 'ubuntu-20.04') | |
run: sdkmanager --install "ndk;24.0.8215888" | |
- name: Precompile (with iOS) | |
if: (matrix.os == 'macOS-latest') | |
run: dart run build_tool precompile-binaries -v --manifest-dir=../../rust --repository=LtbLightning/payjoin-flutter | |
working-directory: cargokit/build_tool | |
env: | |
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} | |
PRIVATE_KEY: ${{ secrets.CARGOKIT_PRIVATE_KEY }} | |
- name: Precompile (with Android) | |
if: (matrix.os == 'ubuntu-20.04') | |
run: dart run build_tool precompile-binaries -v --manifest-dir=../../rust --repository=LtbLightning/payjoin-flutter --android-sdk-location=/usr/local/lib/android/sdk --android-ndk-version=24.0.8215888 --android-min-sdk-version=23 | |
working-directory: cargokit/build_tool | |
env: | |
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} | |
PRIVATE_KEY: ${{ secrets.CARGOKIT_PRIVATE_KEY }} |