Release #42
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
name: Release | |
on: | |
workflow_dispatch: | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
RUST_TOOLCHAIN: nightly-2023-03-13 | |
NDK_VERSION: 25.2.9519653 | |
jobs: | |
ci-pass: | |
name: CI is green | |
runs-on: ubuntu-latest | |
needs: | |
- check_release | |
- build_release_assets | |
- community_notify | |
steps: | |
- run: exit 0 | |
check_release: | |
name: Check release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cargo cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
key: ${{ runner .os }}-cargo- | |
- name: Install rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.RUST_TOOLCHAIN }} | |
override: true | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Check release | |
run: | | |
cd ci | |
cargo run --bin check-release | |
build_release_assets: | |
name: Build release assets | |
needs: | |
- check_release | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- target: linux | |
host: ubuntu-latest | |
flutter_version: '3.10.5' | |
flutter_channel: 'stable' | |
- target: windows | |
host: windows-latest | |
flutter_version: '3.10.5' | |
flutter_channel: 'stable' | |
- target: macos | |
host: macos-latest | |
flutter_version: '3.10.5' | |
flutter_channel: 'stable' | |
- target: ios | |
host: macos-latest | |
flutter_version: '3.10.5' | |
flutter_channel: 'stable' | |
- target: android-arm32 | |
host: ubuntu-latest | |
flutter_version: '3.10.5' | |
flutter_channel: 'stable' | |
- target: android-arm64 | |
host: ubuntu-latest | |
flutter_version: '3.10.5' | |
flutter_channel: 'stable' | |
- target: android-x86_64 | |
host: ubuntu-latest | |
flutter_version: '3.10.5' | |
flutter_channel: 'stable' | |
runs-on: ${{ matrix.config.host }} | |
env: | |
TARGET: ${{ matrix.config.target }} | |
flutter_version: ${{ matrix.config.flutter_version }} | |
flutter_channel: ${{ matrix.config.flutter_channel }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cargo cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
key: ${{ runner.os }}-cargo- | |
- name: Install rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.RUST_TOOLCHAIN }} | |
override: true | |
- id: check_asset | |
name: Check asset | |
run: | | |
cd ci | |
cargo run --bin check-asset | |
- name: Check core | |
uses: actions/checkout@v3 | |
with: | |
repository: 'niuhuan/jasmine-rs-core' | |
token: ${{ secrets.GH_TOKEN }} | |
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 | |
with: | |
path: /opt/hostedtoolcache/flutter | |
key: ${{ runner.os }}-flutter | |
- name: Setup flutter | |
if: steps.check_asset.outputs.skip_build != 'true' | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: ${{ env.flutter_channel }} | |
flutter-version: ${{ env.flutter_version }} | |
architecture: x64 | |
- name: Install cargo tools (non-android) | |
if: steps.check_asset.outputs.skip_build != 'true' && ( matrix.config.target == 'macos' || matrix.config.target == 'windows' || matrix.config.target == 'linux' ) | |
run: | | |
cargo install cbindgen | |
- name: Install cargo 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' ) | |
run: | | |
cargo install cargo-ndk | |
- name: Setup java (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: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: 'zulu' | |
- 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 | |
with: | |
packages: | | |
platform-tools | |
platforms;android-32 | |
build-tools;33.0.0 | |
ndk;${{ env.NDK_VERSION }} | |
- name: Set-Version (All) | |
if: steps.check_asset.outputs.skip_build != 'true' | |
run: | | |
cd ci | |
cp version.code.txt ../lib/assets/version.txt | |
- name: Append application-identifier (ios) | |
if: steps.check_asset.outputs.skip_build != 'true' && ( matrix.config.target == 'ios') | |
run: | | |
/usr/libexec/PlistBuddy -c 'Add :application-identifier string opensource.jenny' ios/Runner/Info.plist | |
- name: Install rust target and build (ios) | |
if: steps.check_asset.outputs.skip_build != 'true' && ( matrix.config.target == 'ios') | |
run: | | |
rustup target install aarch64-apple-ios | |
cargo build --manifest-path native/jmbackend/platforms/ios/Cargo.toml --features= --lib --release --target=aarch64-apple-ios | |
cp native/jmbackend/platforms/ios/target/aarch64-apple-ios/release/librust.a ios/ | |
cbindgen native/jmbackend/src/lib.rs -l c > ios/rust.h | |
flutter build ios --no-simulator --no-codesign --release | |
cd build | |
rm -rf Payload | |
mkdir Payload | |
mv ios/iphoneos/Runner.app Payload/ | |
sh ../scripts/thin-payload.sh Payload | |
zip -r -9 nosign.ipa Payload | |
cd .. | |
# if ios-sim | |
# cargo build --manifest-path native/jmbackend/platforms/ios-sim/Cargo.toml --features= --lib --release --target=aarch64-apple-ios-sim | |
# cargo build --manifest-path native/jmbackend/platforms/ios-sim/Cargo.toml --features= --lib --release --target=x86_64-apple-ios | |
# lipo -create -output ios/librust.a native/jmbackend/platforms/ios-sim/target/x86_64-apple-ios/release/librust.a native/jmbackend/platforms/ios-sim/target/aarch64-apple-ios-sim/release/librust.a | |
# cbindgen native/jmbackend/src/lib.rs -l c > ios/rust.h | |
- name: Install rust target and build (Android-arm64) | |
if: steps.check_asset.outputs.skip_build != 'true' && ( matrix.config.target == 'android-arm64') | |
run: | | |
export ANDROID_NDK_HOME=$ANDROID_HOME/ndk/${{ env.NDK_VERSION }} | |
rustup target install aarch64-linux-android | |
cd native/jmbackend/platforms/android | |
cargo ndk -o ../../../../android/app/src/main/jniLibs -t arm64-v8a build --release | |
cd ../../../.. | |
flutter build apk --target-platform android-arm64 | |
- name: Install rust target and build (Android-arm32) | |
if: steps.check_asset.outputs.skip_build != 'true' && ( matrix.config.target == 'android-arm32') | |
run: | | |
export ANDROID_NDK_HOME=$ANDROID_HOME/ndk/${{ env.NDK_VERSION }} | |
rustup target install armv7-linux-androideabi | |
cd native/jmbackend/platforms/android | |
cargo ndk -o ../../../../android/app/src/main/jniLibs -t armeabi-v7a build --release | |
cd ../../../.. | |
flutter build apk --target-platform android-arm | |
- name: Install rust target and build (Android-x86_64) | |
if: steps.check_asset.outputs.skip_build != 'true' && ( matrix.config.target == 'android-x86_64') | |
run: | | |
export ANDROID_NDK_HOME=$ANDROID_HOME/ndk/${{ env.NDK_VERSION }} | |
rustup target install x86_64-linux-android | |
cd native/jmbackend/platforms/android | |
cargo ndk -o ../../../../android/app/src/main/jniLibs -t x86_64 build --release | |
cd ../../../.. | |
flutter build apk --target-platform android-x64 | |
- name: Install dependencies and build (Linux) | |
if: steps.check_asset.outputs.skip_build != 'true' && matrix.config.target == 'linux' | |
run: | | |
sudo apt-get update | |
# install appimagetool | |
sudo apt install -y libfuse2 | |
# if OrcaleLinux # sudo yum install fuse-lib fuse file # libfuse.so.2 fusermount file | |
curl -JOL https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage | |
chmod a+x appimagetool-x86_64.AppImage | |
mv appimagetool-x86_64.AppImage appimagetool | |
# building deps | |
sudo apt install -y ninja-build liblzma-dev libgtk-3-dev libgl1-mesa-dev xorg-dev | |
# if OrcaleLinux # sudo yum install xz-devel libX11-devel gtk3-devel | |
# build rust lib | |
cargo build --manifest-path native/jmbackend/platforms/linux/Cargo.toml --features= --lib --release --target=x86_64-unknown-linux-gnu | |
cp native/jmbackend/platforms/linux/target/x86_64-unknown-linux-gnu/release/librust.a linux/ | |
cbindgen native/jmbackend/src/lib.rs -l c++ > linux/rust.h | |
cbindgen native/jmbackend/platforms/linux/src/lib.rs -l c++ > linux/rust1.h | |
# build flutter | |
flutter config --enable-linux-desktop | |
flutter build linux --release | |
# gen AppImage | |
mv build/linux/x64/release/bundle/{jenny,AppRun} | |
cp linux/appimage/* build/linux/x64/release/bundle/ | |
./appimagetool build/linux/x64/release/bundle/ | |
mv *.AppImage build/linux.AppImage | |
- name: build (windows) | |
if: steps.check_asset.outputs.skip_build != 'true' && matrix.config.target == 'windows' | |
run: | | |
cargo build --manifest-path native/jmbackend/platforms/windows/Cargo.toml --release --target x86_64-pc-windows-msvc | |
cp native/jmbackend/platforms/windows/target/x86_64-pc-windows-msvc/release/rust.lib windows/ | |
cbindgen native/jmbackend/src/lib.rs -l c++ > windows/rust.h | |
flutter config --enable-windows-desktop | |
flutter build windows | |
cd build/windows/runner/Release | |
Compress-Archive * ../../../../build/windows.zip | |
cd ../../../.. | |
- name: Build (macos) | |
if: steps.check_asset.outputs.skip_build != 'true' && matrix.config.target == 'macos' | |
run: | | |
rustup target install aarch64-apple-darwin | |
cargo build --manifest-path native/jmbackend/platforms/macos/Cargo.toml --release --target x86_64-apple-darwin | |
cargo build --manifest-path native/jmbackend/platforms/macos/Cargo.toml --release --target aarch64-apple-darwin | |
lipo -create -output macos/librust.a native/jmbackend/platforms/macos/target/x86_64-apple-darwin/release/librust.a native/jmbackend/platforms/macos/target/aarch64-apple-darwin/release/librust.a | |
cbindgen native/jmbackend/src/lib.rs -l c > macos/rust.h | |
flutter config --enable-macos-desktop | |
flutter build macos | |
cd build | |
mkdir appimage | |
mv macos/Build/Products/Release/jenny.app appimage/ | |
ln -sf /Applications appimage/ | |
hdiutil create -volname jenny -srcfolder appimage -ov -format UDBZ macos.dmg | |
cd .. | |
- name: Sign APK (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' ) | |
env: | |
KEY_FILE_BASE64: ${{ secrets.KEY_FILE_BASE64 }} | |
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }} | |
run: | | |
echo $KEY_FILE_BASE64 > key.jks.base64 | |
base64 -d key.jks.base64 > key.jks | |
echo $KEY_PASSWORD | $ANDROID_HOME/build-tools/30.0.2/apksigner sign --ks key.jks build/app/outputs/flutter-apk/app-release.apk | |
- name: Upload Asset (All) | |
if: steps.check_asset.outputs.skip_build != 'true' | |
run: | | |
cd ci | |
cargo run --bin upload-asset | |
community_notify: | |
name: community notify | |
runs-on: ubuntu-latest | |
needs: | |
- build_release_assets | |
env: | |
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }} | |
TG_CHAT_IDS: ${{ secrets.TG_CHAT_IDS }} | |
DISCORD_BOT_TOKEN: ${{ secrets.DISCORD_BOT_TOKEN }} | |
DISCORD_CHAT_IDS: ${{ secrets.DISCORD_CHAT_IDS }} | |
steps: | |
- name: Cargo cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
key: ${{ runner.os }}-cargo- | |
- name: Install rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.RUST_TOOLCHAIN }} | |
override: true | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- run: | | |
cd ci | |
cargo run --bin community-notify | |