Updating libx264 to a commit made on 2 April 2025 #409
Workflow file for this run
This file contains hidden or 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: Compilability check | |
| on: [ push, pull_request ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| abi: [ "armeabi-v7a", "arm64-v8a", "x86", "x86_64" ] | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup the environment | |
| run: | | |
| sudo apt install meson nasm ninja-build | |
| - name: Executing the script | |
| run: | | |
| export ANDROID_SDK_HOME=$ANDROID_HOME | |
| export ANDROID_NDK_HOME=$ANDROID_NDK_LATEST_HOME | |
| ./ffmpeg-android-maker.sh -all-free -all-gpl -android=24 -abis=${{ matrix.abi }} |