Update RequestAuthentication.kt #3
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: Magisk Build | |
on: | |
push: | |
branches: [master] | |
paths: | |
- "app/**" | |
- "native/**" | |
- "stub/**" | |
- "buildSrc/**" | |
- "build.py" | |
- "gradle.properties" | |
- ".github/workflows/build.yml" | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build Magisk artifacts | |
runs-on: ubuntu-latest | |
env: | |
SCCACHE_DIRECT: false | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
fetch-depth: 0 | |
- name: Setup environment | |
uses: ./.github/actions/setup | |
- name: Build release | |
run: ./build.py -vr all | |
- name: Build debug | |
run: ./build.py -v all | |
- name: Stop gradle daemon | |
run: ./gradlew --stop | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ github.sha }} | |
path: out | |
compression-level: 9 | |
- name: Upload mapping and native debug symbols | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ github.sha }}-symbols | |
path: app/build/outputs | |
compression-level: 9 | |
test-build: | |
name: Test building on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
env: | |
SCCACHE_DIRECT: false | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, macos-14] | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
fetch-depth: 0 | |
- name: Setup environment | |
uses: ./.github/actions/setup | |
- name: Build debug | |
run: python build.py -v all | |
- name: Stop gradle daemon | |
run: ./gradlew --stop | |
test: | |
name: Test x86_64 on API ${{ matrix.version }} | |
runs-on: ubuntu-latest | |
needs: build | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34] | |
type: [""] | |
include: | |
- version: 35 | |
type: "google_apis" | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: Download build artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ github.sha }} | |
path: out | |
- name: Enable KVM group perms | |
run: | | |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
sudo udevadm control --reload-rules | |
sudo udevadm trigger --name-match=kvm | |
- name: AVD test | |
env: | |
AVD_TEST_VERBOSE: 1 | |
run: scripts/avd_test.sh ${{ matrix.version }} ${{ matrix.type }} | |
test-32: | |
name: Test x86 on API ${{ matrix.version }} | |
runs-on: ubuntu-latest | |
needs: build | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [23, 24, 25, 26, 27, 28, 29, 30] | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: Download build artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: ${{ github.sha }} | |
path: out | |
- name: Enable KVM group perms | |
run: | | |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
sudo udevadm control --reload-rules | |
sudo udevadm trigger --name-match=kvm | |
- name: AVD test | |
env: | |
FORCE_32_BIT: 1 | |
AVD_TEST_VERBOSE: 1 | |
run: scripts/avd_test.sh ${{ matrix.version }} |