We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b53985e commit 5671867Copy full SHA for 5671867
1 file changed
.github/workflows/windows-build.yml
@@ -23,6 +23,15 @@ jobs:
23
vcpkg_triplet: x86-windows
24
steps:
25
- uses: actions/checkout@v4
26
+ - name: Cache vcpkg
27
+ uses: actions/cache@v4
28
+ with:
29
+ path: |
30
+ C:\vcpkg\downloads
31
+ C:\vcpkg\archives
32
+ C:\vcpkg\buildtrees
33
+ C:\vcpkg\packages
34
+ key: ${{ runner.os }}-${{ matrix.arch }}-vcpkg-${{ hashFiles('vcpkg.json', 'vcpkg-configuration.json') }}
35
- name: Install FFmpeg (vcpkg)
36
shell: pwsh
37
run: |
@@ -81,6 +90,9 @@ jobs:
81
90
Copy-Item "$ffmpegBin\swresample*.dll" -Destination $runDir -Force
82
91
Push-Location $runDir
83
92
.\openfodder.exe --appveyor --unit-test-headless
93
+ if ($LASTEXITCODE -ne 0) {
94
+ exit $LASTEXITCODE
95
+ }
84
96
Pop-Location
85
97
- name: Package
86
98
0 commit comments