140 lines
5.6 KiB
YAML
140 lines
5.6 KiB
YAML
name: Android CI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
name: Build on ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
if: ${{ !startsWith(github.event.head_commit.message, '[skip ci]') }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ ubuntu-latest ]
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: 'recursive'
|
|
fetch-depth: 0
|
|
|
|
- name: Write key
|
|
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master'
|
|
run: |
|
|
if [ ! -z "${{ secrets.KEY_STORE }}" ]; then
|
|
echo androidStorePassword='${{ secrets.KEY_STORE_PASSWORD }}' >> gradle.properties
|
|
echo androidKeyAlias='${{ secrets.ALIAS }}' >> gradle.properties
|
|
echo androidKeyPassword='${{ secrets.KEY_PASSWORD }}' >> gradle.properties
|
|
echo androidStoreFile='key.jks' >> gradle.properties
|
|
echo ${{ secrets.KEY_STORE }} | base64 --decode > key.jks
|
|
fi
|
|
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: '11'
|
|
distribution: 'temurin'
|
|
cache: 'gradle'
|
|
|
|
- name: Cache gradle dependencies
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.gradle/caches
|
|
~/.gradle/wrapper
|
|
!~/.gradle/caches/build-cache-*
|
|
key: gradle-deps-core-${{ hashFiles('**/build.gradle.kts') }}
|
|
restore-keys: |
|
|
gradle-deps
|
|
|
|
- name: Cache gradle build
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.gradle/caches/build-cache-*
|
|
~/.gradle/buildOutputCleanup/cache.properties
|
|
key: gradle-builds-core-${{ github.sha }}
|
|
restore-keys: |
|
|
gradle-builds
|
|
|
|
- name: Cache native build
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.ccache
|
|
patch-loader/build/.lto-cache
|
|
key: native-cache-${{ github.sha }}
|
|
restore-keys: native-cache-
|
|
|
|
- name: Install dep
|
|
run: |
|
|
sudo apt-get install -y ccache
|
|
ccache -o max_size=1G
|
|
ccache -o hash_dir=false
|
|
ccache -o compiler_check='%compiler% -dumpmachine; %compiler% -dumpversion'
|
|
ccache -zp
|
|
|
|
- name: Build with Gradle
|
|
run: |
|
|
[ $(du -s ~/.gradle/wrapper | awk '{ print $1 }') -gt 250000 ] && rm -rf ~/.gradle/wrapper/* || true
|
|
find ~/.gradle/caches -exec touch -d "2 days ago" {} + || true
|
|
echo 'org.gradle.caching=true' >> gradle.properties
|
|
echo 'org.gradle.parallel=true' >> gradle.properties
|
|
echo 'org.gradle.vfs.watch=true' >> gradle.properties
|
|
echo 'org.gradle.jvmargs=-Xmx2048m' >> gradle.properties
|
|
echo 'android.native.buildOutput=verbose' >> gradle.properties
|
|
./gradlew buildAll
|
|
ccache -s
|
|
|
|
- name: Upload Debug artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: lspatch-debug
|
|
path: out/debug/*
|
|
|
|
- name: Upload Release artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: lspatch-release
|
|
path: out/release/*
|
|
|
|
- name: Upload mappings
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: mappings
|
|
path: |
|
|
patch-loader/build/outputs/mapping
|
|
manager/build/outputs/mapping
|
|
|
|
- name: Upload symbols
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: symbols
|
|
path: |
|
|
patch-loader/build/symbols
|
|
|
|
- name: Post to channel
|
|
if: ${{ github.event_name != 'pull_request' && success() && github.ref == 'refs/heads/master' }}
|
|
env:
|
|
CHANNEL_ID: ${{ secrets.CHANNEL_ID }}
|
|
DISCUSSION_ID: ${{ secrets.DISCUSSION_ID }}
|
|
TOPIC_ID: ${{ secrets.TOPIC_ID }}
|
|
BOT_TOKEN: ${{ secrets.BOT_TOKEN }}
|
|
COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
|
|
COMMIT_URL: ${{ github.event.head_commit.url }}
|
|
run: |
|
|
if [ ! -z "${{ secrets.BOT_TOKEN }}" ]; then
|
|
export jarRelease=$(find out/release -name "*.jar")
|
|
export managerRelease=$(find out/release -name "*.apk")
|
|
export jarDebug=$(find out/debug -name "*.jar")
|
|
export managerDebug=$(find out/debug -name "*.apk")
|
|
ESCAPED=`python3 -c 'import json,os,urllib.parse; msg = json.dumps(os.environ["COMMIT_MESSAGE"]); print(urllib.parse.quote(msg if len(msg) <= 1024 else json.dumps(os.environ["COMMIT_URL"])))'`
|
|
curl -v "https://api.telegram.org/bot${BOT_TOKEN}/sendMediaGroup?chat_id=${CHANNEL_ID}&media=%5B%7B%22type%22%3A%22document%22%2C%20%22media%22%3A%22attach%3A%2F%2FjarRelease%22%7D%2C%7B%22type%22%3A%22document%22%2C%20%22media%22%3A%22attach%3A%2F%2FmanagerRelease%22%7D%2C%7B%22type%22%3A%22document%22%2C%20%22media%22%3A%22attach%3A%2F%2FjarDebug%22%7D%2C%7B%22type%22%3A%22document%22%2C%20%22media%22%3A%22attach%3A%2F%2FmanagerDebug%22%2C%22caption%22:${ESCAPED}%7D%5D" -F jarRelease="@$jarRelease" -F managerRelease="@$managerRelease" -F jarDebug="@$jarDebug" -F managerDebug="@$managerDebug"
|
|
curl -v "https://api.telegram.org/bot${BOT_TOKEN}/sendMediaGroup?chat_id=${DISCUSSION_ID}&message_thread_id=${TOPIC_ID}&media=%5B%7B%22type%22%3A%22document%22%2C%20%22media%22%3A%22attach%3A%2F%2FjarRelease%22%7D%2C%7B%22type%22%3A%22document%22%2C%20%22media%22%3A%22attach%3A%2F%2FmanagerRelease%22%7D%2C%7B%22type%22%3A%22document%22%2C%20%22media%22%3A%22attach%3A%2F%2FjarDebug%22%7D%2C%7B%22type%22%3A%22document%22%2C%20%22media%22%3A%22attach%3A%2F%2FmanagerDebug%22%2C%22caption%22:${ESCAPED}%7D%5D" -F jarRelease="@$jarRelease" -F managerRelease="@$managerRelease" -F jarDebug="@$jarDebug" -F managerDebug="@$managerDebug"
|
|
fi
|