Merge pull request #43 from LtbLightning/Upgrade-v0.2.2 #2
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: [v0.2.2-dev, main] | |
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 | |
- name: Configure Cargo.toml optimizations | |
run: | | |
mkdir -p .cargo | |
echo "[profile.release]" >> .cargo/config.toml | |
echo "opt-level = 'z'" >> .cargo/config.toml | |
echo "lto = true" >> .cargo/config.toml | |
echo "codegen-units = 1" >> .cargo/config.toml | |
echo "panic = 'abort'" >> .cargo/config.toml | |
- uses: dart-lang/setup-dart@v1 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- name: Configure git with access token | |
run: | | |
git config --global url."https://x-access-token:${GITHUB_TOKEN}@github.com/".insteadOf "https://github.com/" | |
shell: bash | |
env: | |
GITHUB_TOKEN: ${{ secrets.CARGOKIT_PRIVATE_KEY }} | |
- name: Install GTK | |
if: (matrix.os == 'ubuntu-20.04') | |
run: sudo apt-get update && sudo apt-get install libgtk-3-dev | |
- name: Precompile (with iOS) | |
if: (matrix.os == 'macOS-latest') || (matrix.os == 'windows-latest') | |
run: dart run build_tool precompile-binaries -v --manifest-dir=../../rust --repository=LtbLightning/ldk-node-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/ldk-node-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 }} |