2024-01-29 09:36:51 +00:00
|
|
|
name: Magisk Setup
|
|
|
|
runs:
|
|
|
|
using: "composite"
|
|
|
|
steps:
|
|
|
|
- name: Set up JDK 17
|
|
|
|
uses: actions/setup-java@v4
|
|
|
|
with:
|
|
|
|
distribution: "temurin"
|
|
|
|
java-version: "17"
|
|
|
|
|
|
|
|
- name: Set up Python 3
|
|
|
|
uses: actions/setup-python@v5
|
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
|
|
|
|
|
|
|
- name: Set up sccache
|
|
|
|
uses: hendrikmuhs/ccache-action@v1.2
|
|
|
|
with:
|
|
|
|
variant: sccache
|
|
|
|
key: ${{ runner.os }}-${{ github.sha }}
|
|
|
|
restore-keys: ${{ runner.os }}
|
|
|
|
max-size: 10000M
|
|
|
|
|
2024-08-14 22:24:05 +00:00
|
|
|
- name: Set up GNU make
|
|
|
|
if: runner.os == 'macOS'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
brew install make
|
|
|
|
echo 'GNUMAKE=gmake' >> "$GITHUB_ENV"
|
|
|
|
|
2024-01-29 09:36:51 +00:00
|
|
|
- name: Cache Gradle dependencies
|
2024-01-29 09:53:09 +00:00
|
|
|
uses: actions/cache@v4
|
2024-01-29 09:36:51 +00:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.gradle/caches
|
|
|
|
~/.gradle/wrapper
|
|
|
|
!~/.gradle/caches/build-cache-*
|
|
|
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle.kts') }}
|
|
|
|
restore-keys: ${{ runner.os }}-gradle-
|
|
|
|
|
|
|
|
- name: Cache build cache
|
2024-01-29 09:53:09 +00:00
|
|
|
uses: actions/cache@v4
|
2024-01-29 09:36:51 +00:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.gradle/caches/build-cache-*
|
|
|
|
key: ${{ runner.os }}-build-cache-${{ github.sha }}
|
|
|
|
restore-keys: ${{ runner.os }}-build-cache-
|
|
|
|
|
|
|
|
- name: Set up NDK
|
|
|
|
run: python build.py -v ndk
|
|
|
|
shell: bash
|