fix(deps): update dependency androidx.annotation:annotation to v1.8.1… #219
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 nextlib | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
concurrency: | |
group: build-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build nextlib | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install build tools | |
run: | | |
sudo apt-get update | |
sudo apt-get install ninja-build meson nasm | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v3 | |
- name: Set Up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v3 | |
- name: Build Project with gradle | |
run: ./gradlew assembleRelease | |
- uses: actions/upload-artifact@v4.3.1 | |
with: | |
name: nextlib-release.aar | |
path: ./ffcodecs/build/outputs/aar/ffcodecs-release.aar |