mirror of
https://github.com/revanced/aapt2.git
synced 2025-01-29 20:07:43 +01:00
52 lines
1.2 KiB
YAML
52 lines
1.2 KiB
YAML
name: Build aapt2
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
workflow_dispatch:
|
|
inputs:
|
|
logLevel:
|
|
description: 'Reason'
|
|
required: false
|
|
default: 'Update package'
|
|
|
|
jobs:
|
|
build:
|
|
name: build
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
id-token: write
|
|
attestations: write
|
|
strategy:
|
|
matrix:
|
|
target_arch: [x86_64, x86, arm64-v8a, armeabi-v7a]
|
|
fail-fast: false
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: 'true'
|
|
|
|
- uses: nttld/setup-ndk@v1
|
|
id: setup-ndk
|
|
with:
|
|
ndk-version: r23c
|
|
add-to-path: false
|
|
- run: ./build.sh ${{ matrix.target_arch }}
|
|
env:
|
|
NDK_TOOLCHAIN: ${{ steps.setup-ndk.outputs.ndk-path }}/toolchains/llvm/prebuilt/linux-x86_64
|
|
|
|
- name: Attest build provenance
|
|
uses: actions/attest-build-provenance@v1
|
|
with:
|
|
subject-name: dist-${{ matrix.target_arch }}
|
|
subject-path: dist
|
|
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: dist-${{ matrix.target_arch }}
|
|
path: dist
|