2020-12-25 23:01:02 +00:00
|
|
|
name: Magisk Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
2020-12-29 00:38:25 +00:00
|
|
|
paths:
|
|
|
|
- 'app/**'
|
|
|
|
- 'native/**'
|
|
|
|
- 'stub/**'
|
|
|
|
- 'buildSrc/**'
|
|
|
|
- 'build.py'
|
|
|
|
- 'gradle.properties'
|
2021-09-08 05:50:47 +00:00
|
|
|
- '.github/workflows/build.yml'
|
2020-12-25 23:01:02 +00:00
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build on ${{ matrix.os }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-09-08 04:03:32 +00:00
|
|
|
os: [ ubuntu-latest, windows-latest, macos-latest ]
|
2021-09-08 05:50:47 +00:00
|
|
|
env:
|
2022-09-22 02:10:47 +00:00
|
|
|
NDK_CCACHE: ccache
|
2021-09-08 08:40:33 +00:00
|
|
|
CCACHE_DIR: ${{ github.workspace }}/.ccache
|
2022-09-22 02:10:47 +00:00
|
|
|
CCACHE_COMPILERCHECK: "%compiler% -dumpmachine; %compiler% -dumpversion"
|
|
|
|
RUSTC_WRAPPER: sccache
|
2020-12-25 23:01:02 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out
|
2022-10-18 15:05:16 +00:00
|
|
|
uses: actions/checkout@v3
|
2020-12-25 23:01:02 +00:00
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2022-10-18 15:05:16 +00:00
|
|
|
- name: Set up JDK 17
|
|
|
|
uses: actions/setup-java@v3
|
2020-12-25 23:01:02 +00:00
|
|
|
with:
|
2022-10-18 15:05:16 +00:00
|
|
|
distribution: 'temurin'
|
|
|
|
java-version: '17'
|
2020-12-25 23:01:02 +00:00
|
|
|
|
|
|
|
- name: Set up Python 3
|
2022-10-18 15:05:16 +00:00
|
|
|
uses: actions/setup-python@v4
|
2020-12-25 23:01:02 +00:00
|
|
|
with:
|
|
|
|
python-version: '3.x'
|
|
|
|
|
2021-09-08 05:50:47 +00:00
|
|
|
- name: Set up ccache
|
2022-09-22 02:10:47 +00:00
|
|
|
uses: hendrikmuhs/ccache-action@v1.2
|
|
|
|
with:
|
|
|
|
key: ${{ runner.os }}-${{ github.sha }}
|
|
|
|
restore-keys: ${{ runner.os }}
|
|
|
|
|
|
|
|
- name: Set up sccache
|
|
|
|
uses: hendrikmuhs/ccache-action@v1.2
|
|
|
|
with:
|
|
|
|
variant: sccache
|
|
|
|
key: ${{ runner.os }}-${{ github.sha }}
|
|
|
|
restore-keys: ${{ runner.os }}
|
2020-12-25 23:01:02 +00:00
|
|
|
|
2021-09-08 08:16:26 +00:00
|
|
|
- name: Cache Gradle dependencies
|
2022-10-18 15:05:16 +00:00
|
|
|
uses: actions/cache@v3
|
2020-12-25 23:01:02 +00:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.gradle/caches
|
|
|
|
~/.gradle/wrapper
|
2021-09-08 08:16:26 +00:00
|
|
|
!~/.gradle/caches/build-cache-*
|
2020-12-25 23:01:02 +00:00
|
|
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle.kts') }}
|
|
|
|
restore-keys: ${{ runner.os }}-gradle-
|
|
|
|
|
2021-09-08 08:16:26 +00:00
|
|
|
- name: Cache build cache
|
2022-10-18 15:05:16 +00:00
|
|
|
uses: actions/cache@v3
|
2021-09-08 05:50:47 +00:00
|
|
|
with:
|
2021-09-08 08:16:26 +00:00
|
|
|
path: |
|
|
|
|
~/.gradle/caches/build-cache-*
|
|
|
|
key: ${{ runner.os }}-build-cache-${{ github.sha }}
|
|
|
|
restore-keys: ${{ runner.os }}-build-cache-
|
2021-09-08 05:50:47 +00:00
|
|
|
|
2020-12-25 23:01:02 +00:00
|
|
|
- name: Set up NDK
|
2021-09-08 08:16:26 +00:00
|
|
|
run: python build.py -v ndk
|
2020-12-25 23:01:02 +00:00
|
|
|
|
|
|
|
- name: Build release
|
2021-09-08 05:50:47 +00:00
|
|
|
run: |
|
|
|
|
python build.py -vr all
|
2020-12-25 23:01:02 +00:00
|
|
|
|
|
|
|
- name: Build debug
|
2021-09-08 05:50:47 +00:00
|
|
|
run: |
|
|
|
|
python build.py -v all
|
2020-12-25 23:01:02 +00:00
|
|
|
|
2022-09-14 14:59:12 +00:00
|
|
|
- name: Stop gradle daemon
|
|
|
|
run: ./gradlew --stop
|
|
|
|
|
2020-12-25 23:01:02 +00:00
|
|
|
# Only upload artifacts built on Linux
|
|
|
|
- name: Upload build artifact
|
2020-12-27 12:02:20 +00:00
|
|
|
if: runner.os == 'Linux'
|
2022-10-18 15:05:16 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2020-12-25 23:01:02 +00:00
|
|
|
with:
|
2020-12-25 23:54:47 +00:00
|
|
|
name: ${{ github.sha }}
|
2020-12-25 23:01:02 +00:00
|
|
|
path: out
|
2022-09-14 14:59:12 +00:00
|
|
|
|
|
|
|
- name: Upload mapping and native debug symbols
|
|
|
|
if: runner.os == 'Linux'
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: ${{ github.sha }}-symbols
|
|
|
|
path: app/build/outputs
|