Manually #10
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: Manually | |
on: | |
workflow_dispatch | |
jobs: | |
build_pull_request: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-22.04 | |
#- macos-13 | |
#- windows-2022 | |
abi: | |
#- armeabi-v7a | |
- arm64-v8a | |
#- x86 | |
#- x86_64 | |
env: | |
BUILD_ABI: ${{ matrix.abi }} | |
steps: | |
- name: Fetch source code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Regenerate symlinks pointing to submodule (Windows) | |
if: ${{ matrix.os == 'windows-2022' }} | |
run: | | |
Remove-Item -Recurse app/src/main/assets/usr/share | |
git checkout -- * | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: "17" | |
- name: Setup Android environment | |
uses: android-actions/setup-android@v3 | |
- name: Install Android NDK | |
run: | | |
sdkmanager --install "cmake;3.22.1" | |
- name: Install system dependencies (Ubuntu) | |
if: ${{ matrix.os == 'ubuntu-22.04' }} | |
run: | | |
sudo apt update | |
sudo apt install extra-cmake-modules gettext | |
- name: Install system dependencies (macOS) | |
if: ${{ matrix.os == 'macos-13' }} | |
run: | | |
brew install extra-cmake-modules | |
- name: Install system dependencies (Windows) | |
if: ${{ matrix.os == 'windows-2022' }} | |
run: | | |
C:/msys64/usr/bin/pacman -S --noconfirm mingw-w64-ucrt-x86_64-gettext mingw-w64-ucrt-x86_64-extra-cmake-modules | |
Add-Content $env:GITHUB_PATH "C:/msys64/ucrt64/bin" | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v3 | |
- name: Build release APK | |
run: | | |
./gradlew :app:assembleRelease | |
./gradlew :assembleReleasePlugins | |
- name: Sign app and plugins | |
uses: noriban/sign-android-release@v5 | |
#uses: rpavlik/sign-android-release@master | |
id: sign_apk | |
with: | |
releaseDirectory: app/build/outputs/apk/release/ | |
signingKeyBase64: ${{ secrets.SIGNING_KEY }} | |
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }} | |
alias: ${{ secrets.KEY_ALIAS }} | |
keyPassword: ${{ secrets.KEY_PASSWORD }} | |
zipAlign: true | |
env: | |
BUILD_TOOLS_VERSION: "33.0.2" | |
- name: Upload app | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-${{ matrix.os }}-${{ matrix.abi }} | |
path: app/build/outputs/apk/release/ | |
- name: Pack plugins | |
shell: bash | |
run: | | |
mkdir plugins-to-upload | |
for i in $(ls plugin) | |
do | |
if [ -d "plugin/${i}" ] | |
then | |
mv "plugin/${i}/build/outputs/apk/release" "plugins-to-upload/${i}" | |
fi | |
done | |
- name: Upload plugins | |
uses: actions/upload-artifact@v4 | |
with: | |
name: plugins-${{ matrix.os }}-${{ matrix.abi }} | |
path: plugins-to-upload |