fix: finalize release flow and run only 1 workflow

pull/1152/head
Prateek Sunal 2 months ago committed by GitHub
parent b7fed1dc43
commit b082a6734e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 54
      .github/workflows/periodic-builds-android.yml

@ -9,8 +9,8 @@ jobs:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
strategy: strategy:
matrix: matrix:
ndk-version: [ 'r22b-linux-x86_64', 'r23b-linux', 'r24-linux', 'r25b-linux' ] ndk-version: [ 'r25b-linux' ]
branches: [ 'main', 'development' ] branches: [ 'development' ]
defaults: defaults:
run: run:
shell: bash shell: bash
@ -38,46 +38,18 @@ jobs:
echo "ANDROID_NDK_ROOT=$PWD/.ndk/$(ls .ndk)" >> $GITHUB_ENV echo "ANDROID_NDK_ROOT=$PWD/.ndk/$(ls .ndk)" >> $GITHUB_ENV
- name: run the build script - name: run the build script
run: ./android.sh --full --enable-gpl --disable-lib-srt --disable-arm-v7a run: ./android.sh --full --enable-gpl --disable-lib-srt --disable-arm-v7a
- name: print build logs - name: List all
if: ${{ always() }} run: ls -laR
run: cat build.log - name: Upload Release Asset (.integrity)
- name: print ffbuild logs id: upload-release-asset-integrity
if: ${{ failure() }} uses: ncipollo/release-action@v1
run: '[[ -f ./src/ffmpeg/ffbuild/config.log ]] && tail -50 ./src/ffmpeg/ffbuild/config.log'
build-android-lts-on-linux:
name: android lts on linux
runs-on: ubuntu-22.04
strategy:
matrix:
ndk-version: [ 'r22b-linux-x86_64', 'r23b-linux' ]
branches: [ 'main', 'development' ]
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
with:
ref: ${{ matrix.branches }}
- name: set up adopt jdk 17
uses: actions/setup-java@v3
with: with:
distribution: 'adopt' allowUpdates: true
java-version: '17' artifacts: "prebuilt/bundle-android-aar/ffmpeg-kit/ffmpeg-kit-release.aar"
- name: prerequisites omitBodyDuringUpdate: true
run: | omitNameDuringUpdate: true
sudo apt-get update draft: true
sudo apt-get install autoconf automake libtool pkg-config curl git doxygen nasm cmake gcc gperf texinfo yasm bison autogen wget autopoint meson ninja-build ragel groff gtk-doc-tools libtasn1-bin token: ${{ secrets.GITHUB_TOKEN }}
- name: prerequisites 2
run: ${ANDROID_HOME}/cmdline-tools/latest/bin/sdkmanager --uninstall "cmake;3.10.2.4988404" "cmake;3.18.1"
- name: upgrade meson
run: pip install meson --upgrade
- name: set up android ndk
run: |
curl -s "https://dl.google.com/android/repository/android-ndk-${{ matrix.ndk-version }}.zip" -o ndk.zip
unzip -q -o ndk.zip -d .ndk
echo "ANDROID_NDK_ROOT=$PWD/.ndk/$(ls .ndk)" >> $GITHUB_ENV
- name: run the build script
run: ./android.sh -l --full --enable-gpl --disable-lib-srt
- name: print build logs - name: print build logs
if: ${{ always() }} if: ${{ always() }}
run: cat build.log run: cat build.log

Loading…
Cancel
Save