diff --git a/.github/workflows/compilability_check.yml b/.github/workflows/compilability_check.yml new file mode 100644 index 0000000..e3ff2ce --- /dev/null +++ b/.github/workflows/compilability_check.yml @@ -0,0 +1,21 @@ +name: Compilability check +on: push +jobs: + build: + runs-on: ubuntu-20.04 + strategy: + matrix: + abi: [ "armeabi-v7a", "arm64-v8a", "x86", "x86_64" ] + fail-fast: false + steps: + - uses: actions/checkout@v2 + + - name: Setup the environment + run: | + sudo pip3 install meson==0.57.1 + sudo apt-get install nasm ninja-build + + - 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