Skip to content

Commit

Permalink
Checking Vulkan detection
Browse files Browse the repository at this point in the history
  • Loading branch information
Javernaut committed Apr 19, 2024
1 parent 579d62a commit 872682b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/compilability_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,16 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
ffmpeg: [ "6.0.1", "6.1.1", "7.0" ]
ndk: [ "26.3.11579264", "27.0.11718014" ]
abi: [ "armeabi-v7a", "arm64-v8a", "x86", "x86_64" ]
fail-fast: false
steps:
- uses: actions/checkout@v4

- name: Setup the environment
run: |
sudo pip3 install meson==1.4.0
sudo apt-get install nasm ninja-build
- name: Executing the script
run: |
echo "yes" | $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager --sdk_root=$ANDROID_HOME "ndk;${{ matrix.ndk }}"
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 }}
export ANDROID_NDK_HOME=$ANDROID_HOME/ndk/${{ matrix.ndk }}
./ffmpeg-android-maker.sh --source-tar=${{ matrix.ffmpeg }} -abis=${{ matrix.abi }}
1 change: 0 additions & 1 deletion scripts/ffmpeg/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ DEP_LD_FLAGS="-L${BUILD_DIR_EXTERNAL}/${ANDROID_ABI}/lib $FFMPEG_EXTRA_LD_FLAGS"
--extra-ldflags="$DEP_LD_FLAGS" \
--enable-shared \
--disable-static \
--disable-vulkan \
--pkg-config=${PKG_CONFIG_EXECUTABLE} \
${EXTRA_BUILD_CONFIGURATION_FLAGS} \
$ADDITIONAL_COMPONENTS || exit 1
Expand Down

0 comments on commit 872682b

Please sign in to comment.