We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f71c98 commit 8026d7cCopy full SHA for 8026d7c
.github/workflows/windows.yml
@@ -22,8 +22,13 @@ jobs:
22
curl https://www.rarewares.org/files/ogg/oggenc2.88-1.3.7-x64.zip --output oggenc.zip &&
23
unzip oggenc.zip -d bin/
24
shell: bash
25
+ - name: Configure CMake
26
+ run: cmake -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALLATION_ROOT\scripts\buildsystems\vcpkg.cmake"
27
- name: Build AV
- run: msbuild build\VisualStudio\ArrowVortex.vcxproj /p:Configuration=Release /p:Platform=x64
28
+ run: cmake --build build --config Release
29
+ - name: Collect into a directory
30
+ if: github.ref_name == 'beta'
31
+ run: cmake --install build --config Release --prefix ./
32
- name: Upload artifact
33
if: github.ref_name == 'beta'
34
uses: actions/upload-artifact@v4
0 commit comments