⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.23
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
src
/
libavif-0.11.1
/
.github
/
workflows
/
View File Name :
ci-android-jni.yml
name: CI-Android-JNI on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false steps: - name: Checkout the repository uses: actions/checkout@v3 - name: Download and Setup the Android NDK uses: nttld/setup-ndk@v1 id: setup-ndk with: ndk-version: r21e add-to-path: false - name: Setup ninja uses: seanmiddleditch/gha-setup-ninja@v3 - name: Setup cmake uses: jwlawson/actions-setup-cmake@v1.12 with: # This is the minimum cmake version needed to build libgav1. cmake-version: "3.7.x" - name: Build libgav1 with the Android NDK working-directory: ext run: bash libgav1_android.sh ${{ steps.setup-ndk.outputs.ndk-path }} - name: Setup JDK uses: actions/setup-java@v3 with: distribution: "zulu" java-version: 11 - name: Download and Setup the Android SDK uses: android-actions/setup-android@v2 - name: Install CMake in the Android SDK # This is the same version of cmake that is found in build.gradle. This # will be used to build libavif and the JNI bindings. run: sdkmanager "cmake;3.18.1" - name: Build the libavif JNI Wrapper working-directory: android_jni run: ./gradlew --no-daemon assembleRelease env: ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}