From f358f0a70b7c05b8bd58df2c39254559e0b90f9e Mon Sep 17 00:00:00 2001 From: Javernaut Date: Thu, 21 Oct 2021 17:52:44 +0300 Subject: [PATCH] Checking both gnu and llvm binutils on CI. --- .github/workflows/compilability_check.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compilability_check.yml b/.github/workflows/compilability_check.yml index c486aee..beba27a 100644 --- a/.github/workflows/compilability_check.yml +++ b/.github/workflows/compilability_check.yml @@ -6,6 +6,7 @@ jobs: strategy: matrix: abi: [ "armeabi-v7a", "arm64-v8a", "x86", "x86_64" ] + binutils: [ "gnu", "llvm" ] fail-fast: false steps: - uses: actions/checkout@v2 @@ -18,4 +19,4 @@ jobs: - name: Executing the script run: | export ANDROID_SDK_HOME=$ANDROID_HOME - ./ffmpeg-android-maker.sh -all-free -all-gpl -android=18 -abis=${{ matrix.abi }} \ No newline at end of file + ./ffmpeg-android-maker.sh -all-free -all-gpl -android=21 -abis=${{ matrix.abi }} -binutils=${{ matrix.binutils }} \ No newline at end of file