winbuild test #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: avcut CI | |
on: | |
push: | |
branches: [ master, winbuild ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install ffmpeg | |
run: | | |
sudo apt-get install -y libavcodec-dev libavformat-dev libavutil-dev | |
- name: set variables | |
run: | | |
echo "::set-output name=avcut_version::$(make version)" | |
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" | |
echo "::set-output name=debarch::$(dpkg --print-architecture)" | |
echo "::set-output name=ffmpeg_build_date::2024-02-01-12-46" | |
echo "::set-output name=ffmpeg_name::ffmpeg-n5.1.4-2-gdd885ab2f5-win64-gpl-shared-5.1" | |
id: avcut_variables | |
- name: Install mingw | |
run: | | |
sudo apt-get install -y mingw-w64-i686-dev mingw-w64-tools mingw-w64 pkg-config | |
- name: fetch ffmpeg4win | |
run: | | |
wget "https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-${{ steps.avcut_variables.outputs.ffmpeg_build_date }}/${{ steps.avcut_variables.outputs.ffmpeg_name }}.zip" | |
unzip ${{ steps.avcut_variables.outputs.ffmpeg_name }}.zip | |
- name: make | |
run: > | |
PKG_CONFIG_PATH=${{ steps.avcut_variables.outputs.ffmpeg_name }}/lib/pkgconfig/ | |
PKG_CONFIG_SYSROOT=${{ steps.avcut_variables.outputs.ffmpeg_name }}/ | |
make CROSS_COMPILE=x86_64-w64-mingw32- ; | |
ls -lsh avcut.exe | |
- name: wininfo | |
run: > | |
echo "https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-${{ steps.avcut_variables.outputs.ffmpeg_build_date }}/${{ steps.avcut_variables.outputs.ffmpeg_name }}.zip" | |
> avcut_ffmpeg_src_url.txt | |
- name: Store artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: avcut.exe | |
- name: make | |
run: make | |
- name: make | |
run: | | |
mkdir destdir | |
make install DESTDIR=destdir | |
- name: Store artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: avcut-${{ steps.avcut_variables.outputs.avcut_version }}.${{ steps.avcut_variables.outputs.sha_short }}-${{ steps.avcut_variables.outputs.debarch }} | |
path: destdir |