From 133280383e4699e7a3eaf8e11e595ba85e6b275b Mon Sep 17 00:00:00 2001 From: Daniel Stankewitz Date: Fri, 25 Mar 2022 17:09:01 +0100 Subject: [PATCH] Delete libfdkaac.yml --- .github/workflows/libfdkaac.yml | 57 --------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 .github/workflows/libfdkaac.yml diff --git a/.github/workflows/libfdkaac.yml b/.github/workflows/libfdkaac.yml deleted file mode 100644 index 0ea38ea..0000000 --- a/.github/workflows/libfdkaac.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: LibFDKAAC - -on: - workflow_dispatch: - inputs: - config: - description: 'Configuration' - required: true - default: 'Debug' - -env: - vsPath: C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\ - msysConfig: debug - winConfig: Debug - cFlags: -MDd - switches: "--enable-encoder=libvpl --enable-encoder=libsvtav1 --enable-encoder=libsnappy --enable-encoder=libvpx --enable-encoder=libmp3lame --enable-encoder=libzimg --enable-encoder=libopus --enable-encoder=libogg --enable-encoder=libvorbis --enable-encoder=libx264" - NASM_EXECUTABLE: nasm - -jobs: - - libfdk-aac: - runs-on: windows-2019 - steps: - - name: Set up MSYS2 - uses: msys2/setup-msys2@v2 - with: - install: base-devel binutils autotools automake mingw-w64-x86_64-cmake nasm - path-type: inherit - - name: Set up cache - uses: actions/cache@v2 - env: - cache-name: cache-ffmpeg-${{ env.msysConfig }} - with: - path: cache - key: cache-key - - name: Set up GIT - run: | - git config --global core.autocrlf false - git config --global core.eol lf - - name: Checkout FDK AAC - uses: actions/checkout@v3.0.0 - with: - repository: mstorsjo/fdk-aac - ref: master - path: fdkaac - - name: Build FDK AAC - shell: cmd - run: | - call "${{ env.vsPath }}VC\Auxiliary\Build\vcvars64.bat" - md build dist - D:\a\_temp\setup-msys2\msys2.cmd -c 'cd fdkaac ; autoreconf -fiv ; CC=cl.exe CXX=cl.exe CXXFLAGS=-MDd ./configure --prefix=$(realpath ../build) --disable-shared --disable-static ; make ; make install ; cd ../build ; tar czf ../dist/libfdkaac.tgz *' - #patch -N -p1 -i ../../patches/0003-dynamic-loading-of-shared-fdk-aac-library-5.0.patch - - name: Publish artifact - uses: actions/upload-artifact@v2 - with: - name: libfdkaac - path: dist/libfdkaac.tgz