From 8bfb822127aa7d3265856d359949482648020230 Mon Sep 17 00:00:00 2001 From: Daniel Stankewitz Date: Tue, 5 Mar 2024 11:26:32 +0100 Subject: [PATCH] Update action.yml --- .github/actions/libkvazaar/action.yml | 45 +++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/.github/actions/libkvazaar/action.yml b/.github/actions/libkvazaar/action.yml index 8b13789..e77a6bd 100644 --- a/.github/actions/libkvazaar/action.yml +++ b/.github/actions/libkvazaar/action.yml @@ -1 +1,46 @@ +name: libkvazaar +inputs: + refId: + type: string + required: true + config: + type: string + required: true + +runs: + using: "composite" + steps: + - name: Set up GIT + shell: cmd + run: | + git config --global core.autocrlf false + git config --global core.eol lf + - name: Checkout OPUS + uses: actions/checkout@v3.0.0 + with: + repository: xiph/opus + ref: v1.3.1 + path: opus + - 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: Build OPUS + shell: cmd + env: + vsPath: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\ + cFlags: ${{ inputs.config == 'release' && '-MD' || '-MDd' }} + msbuildConfig: ${{ inputs.config == 'release' && 'Release' || 'Debug' }} + run: | + call "${{ env.vsPath }}VC\Auxiliary\Build\vcvars64.bat" + md build build\include build\lib build\lib\pkgconfig dist + cd opus\win32\VS2015 + MSBuild.exe /property:Configuration="${{ env.msbuildConfig }}" /property:Platform=x64 /property:PlatformToolset=v143 opus.vcxproj + D:\a\_temp\setup-msys2\msys2.cmd -c 'cp x64/${{ inputs.config }}/opus.lib ../../../build/lib/opus.lib ; cd ../../.. ; cp -r opus/include build/include/opus ; cp opus/opus.pc.in build/lib/pkgconfig/opus.pc ; sed -i "s#@prefix@#$(realpath ../../../build)#g" build/lib/pkgconfig/opus.pc ; sed -i "s/@exec_prefix@/\$\{prefix\}/g" build/lib/pkgconfig/opus.pc ; sed -i "s/@libdir@/\$\{prefix\}\/lib/g" build/lib/pkgconfig/opus.pc ; sed -i "s/@includedir@/\$\{prefix\}\/include/g" build/lib/pkgconfig/opus.pc ; sed -i "s/@LIBM@//g" build/lib/pkgconfig/opus.pc; sed -i "s/@VERSION@/2.0.0/g" build/lib/pkgconfig/opus.pc ; cd build ; tar czf ../dist/libopus.tgz *' + - name: Publish artifact + uses: actions/upload-artifact@v2 + with: + name: libopus-${{ runner.os }}-${{ inputs.config }} + path: dist/libopus.tgz