2021-08-14 22:01:11 +03:00
|
|
|
name: android build scripts
|
|
|
|
|
2021-11-05 20:57:47 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- development
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2021-08-14 22:01:11 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-main-on-linux:
|
2021-08-15 01:07:35 +03:00
|
|
|
name: android main on linux
|
|
|
|
runs-on: ubuntu-20.04
|
2021-08-14 22:01:11 +03:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-12-29 13:53:56 +02:00
|
|
|
ndk-version: [ 'r22b-linux-x86_64', 'r23b-linux' ]
|
2021-08-14 22:01:11 +03:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: set up adopt jdk 8
|
|
|
|
uses: actions/setup-java@v2.2.0
|
|
|
|
with:
|
|
|
|
distribution: 'adopt'
|
|
|
|
java-version: '8'
|
|
|
|
- name: set up android ndk
|
|
|
|
run: |
|
|
|
|
curl -s "https://dl.google.com/android/repository/android-ndk-${{ matrix.ndk-version }}.zip" -o ndk.zip
|
2021-08-15 01:07:35 +03:00
|
|
|
unzip -q -o ndk.zip -d .ndk
|
|
|
|
echo "ANDROID_NDK_ROOT=$PWD/.ndk/$(ls .ndk)" >> $GITHUB_ENV
|
2021-08-14 22:01:11 +03:00
|
|
|
- name: run the build script
|
2021-08-15 01:07:35 +03:00
|
|
|
run: ./android.sh -d --enable-android-media-codec --enable-android-zlib
|
|
|
|
- name: print build logs
|
|
|
|
if: ${{ always() }}
|
2021-08-14 22:01:11 +03:00
|
|
|
run: cat build.log
|
2021-08-15 01:07:35 +03:00
|
|
|
- name: print ffbuild logs
|
2021-08-14 22:01:11 +03:00
|
|
|
if: ${{ failure() }}
|
2021-08-15 01:07:35 +03:00
|
|
|
run: '[[ -f ./src/ffmpeg/ffbuild/config.log ]] && tail -50 ./src/ffmpeg/ffbuild/config.log'
|
2021-08-14 22:01:11 +03:00
|
|
|
build-lts-on-linux:
|
2021-08-15 01:07:35 +03:00
|
|
|
name: android lts on linux
|
|
|
|
runs-on: ubuntu-20.04
|
2021-08-14 22:01:11 +03:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-12-29 13:53:56 +02:00
|
|
|
ndk-version: [ 'r22b-linux-x86_64', 'r23b-linux' ]
|
2021-08-14 22:01:11 +03:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: set up adopt jdk 8
|
|
|
|
uses: actions/setup-java@v2.2.0
|
|
|
|
with:
|
|
|
|
distribution: 'adopt'
|
|
|
|
java-version: '8'
|
|
|
|
- name: set up android ndk
|
|
|
|
run: |
|
|
|
|
curl -s "https://dl.google.com/android/repository/android-ndk-${{ matrix.ndk-version }}.zip" -o ndk.zip
|
2021-08-15 01:07:35 +03:00
|
|
|
unzip -q -o ndk.zip -d .ndk
|
|
|
|
echo "ANDROID_NDK_ROOT=$PWD/.ndk/$(ls .ndk)" >> $GITHUB_ENV
|
2021-08-14 22:01:11 +03:00
|
|
|
- name: run the build script
|
2021-08-15 01:07:35 +03:00
|
|
|
run: ./android.sh -d --lts --enable-android-media-codec --enable-android-zlib
|
|
|
|
- name: print build logs
|
|
|
|
if: ${{ always() }}
|
2021-08-14 22:01:11 +03:00
|
|
|
run: cat build.log
|
2021-08-15 01:07:35 +03:00
|
|
|
- name: print ffbuild logs
|
2021-08-14 22:01:11 +03:00
|
|
|
if: ${{ failure() }}
|
2021-08-15 01:07:35 +03:00
|
|
|
run: '[[ -f ./src/ffmpeg/ffbuild/config.log ]] && tail -50 ./src/ffmpeg/ffbuild/config.log'
|
2021-08-14 22:01:11 +03:00
|
|
|
build-main-on-macos:
|
2021-08-15 01:07:35 +03:00
|
|
|
name: android main on macos
|
|
|
|
runs-on: macos-10.15
|
2021-08-14 22:01:11 +03:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-12-29 13:53:56 +02:00
|
|
|
ndk-version: [ 'r22b-darwin-x86_64', 'r23b-darwin' ]
|
2021-08-14 22:01:11 +03:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: set up adopt jdk 8
|
|
|
|
uses: actions/setup-java@v2.2.0
|
|
|
|
with:
|
|
|
|
distribution: 'adopt'
|
|
|
|
java-version: '8'
|
|
|
|
- name: set up android ndk
|
|
|
|
run: |
|
|
|
|
curl -s "https://dl.google.com/android/repository/android-ndk-${{ matrix.ndk-version }}.zip" -o ndk.zip
|
2021-08-15 01:07:35 +03:00
|
|
|
unzip -q -o ndk.zip -d .ndk
|
|
|
|
echo "ANDROID_NDK_ROOT=$PWD/.ndk/$(ls .ndk)" >> $GITHUB_ENV
|
2021-08-14 22:01:11 +03:00
|
|
|
- name: run the build script
|
2021-08-15 01:07:35 +03:00
|
|
|
run: ./android.sh -d --enable-android-media-codec --enable-android-zlib
|
|
|
|
- name: print build logs
|
|
|
|
if: ${{ always() }}
|
2021-08-14 22:01:11 +03:00
|
|
|
run: cat build.log
|
2021-08-15 01:07:35 +03:00
|
|
|
- name: print ffbuild logs
|
2021-08-14 22:01:11 +03:00
|
|
|
if: ${{ failure() }}
|
2021-08-15 01:07:35 +03:00
|
|
|
run: '[[ -f ./src/ffmpeg/ffbuild/config.log ]] && tail -50 ./src/ffmpeg/ffbuild/config.log'
|
2021-08-14 22:01:11 +03:00
|
|
|
build-lts-on-macos:
|
2021-08-15 01:07:35 +03:00
|
|
|
name: android lts on macos
|
|
|
|
runs-on: macos-10.15
|
2021-08-14 22:01:11 +03:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-12-29 13:53:56 +02:00
|
|
|
ndk-version: [ 'r22b-darwin-x86_64', 'r23b-darwin' ]
|
2021-08-14 22:01:11 +03:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: set up adopt jdk 8
|
|
|
|
uses: actions/setup-java@v2.2.0
|
|
|
|
with:
|
|
|
|
distribution: 'adopt'
|
|
|
|
java-version: '8'
|
|
|
|
- name: set up android ndk
|
|
|
|
run: |
|
|
|
|
curl -s "https://dl.google.com/android/repository/android-ndk-${{ matrix.ndk-version }}.zip" -o ndk.zip
|
2021-08-15 01:07:35 +03:00
|
|
|
unzip -q -o ndk.zip -d .ndk
|
|
|
|
echo "ANDROID_NDK_ROOT=$PWD/.ndk/$(ls .ndk)" >> $GITHUB_ENV
|
2021-08-14 22:01:11 +03:00
|
|
|
- name: run the build script
|
2021-08-15 01:07:35 +03:00
|
|
|
run: ./android.sh -d --lts --enable-android-media-codec --enable-android-zlib
|
|
|
|
- name: print build logs
|
|
|
|
if: ${{ always() }}
|
2021-08-14 22:01:11 +03:00
|
|
|
run: cat build.log
|
2021-08-15 01:07:35 +03:00
|
|
|
- name: print ffbuild logs
|
2021-08-14 22:01:11 +03:00
|
|
|
if: ${{ failure() }}
|
2021-08-15 01:07:35 +03:00
|
|
|
run: '[[ -f ./src/ffmpeg/ffbuild/config.log ]] && tail -50 ./src/ffmpeg/ffbuild/config.log'
|