Update Shizuku API and Gradle Version #56
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: Build CI APK | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
pull_request: | |
jobs: | |
build: | |
name: Build on ${{ matrix.os }} | |
runs-on: ubuntu-latest | |
env: | |
CCACHE_COMPILERCHECK: '%compiler% -dumpmachine; %compiler% -dumpversion' | |
CCACHE_NOHASHDIR: 'true' | |
CCACHE_HARDLINK: 'true' | |
CCACHE_BASEDIR: '${{ github.workspace }}' | |
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: Checkout libxposed/api | |
uses: actions/checkout@v3 | |
with: | |
repository: libxposed/api | |
path: libxposed/api | |
- name: Checkout libxposed/service | |
uses: actions/checkout@v3 | |
with: | |
repository: libxposed/service | |
path: libxposed/service | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-home-cache-cleanup: true | |
- name: Set up ccache | |
uses: hendrikmuhs/ccache-action@v1.2 | |
with: | |
max-size: 2G | |
key: ${{ runner.os }} | |
restore-keys: ${{ runner.os }} | |
save: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | |
- name: Build dependencies | |
working-directory: libxposed | |
run: | | |
cd api | |
echo 'org.gradle.jvmargs=-Xmx2048m' >> gradle.properties | |
./gradlew :api:publishApiPublicationToMavenLocal | |
cd .. | |
cd service | |
echo 'org.gradle.jvmargs=-Xmx2048m' >> gradle.properties | |
./gradlew :interface:publishInterfacePublicationToMavenLocal | |
- name: Build with Gradle | |
run: | | |
echo 'org.gradle.parallel=true' >> gradle.properties | |
echo 'org.gradle.jvmargs=-Xmx2048m' >> gradle.properties | |
echo 'android.native.buildOutput=verbose' >> gradle.properties | |
./gradlew buildAll | |
- name: Upload Release artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: npatch-release | |
path: out/release/* | |
- name: Upload Debug artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: npatch-debug | |
path: out/debug/* | |
- 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 |