Skip to content

Commit

Permalink
Change Windoes GStreamer installation location to d:\
Browse files Browse the repository at this point in the history
  • Loading branch information
martinholters committed Jun 25, 2024
1 parent 371f4d8 commit 8847f39
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,18 @@ jobs:
uses: microsoft/setup-msbuild@v2
- name: Build
env:
GSTREAMER_1_0_ROOT_MSVC_X86_64: c:\gstreamer\1.0\msvc_x86_64
GSTREAMER_1_0_ROOT_MSVC_X86: c:\gstreamer\1.0\msvc_x86
GSTREAMER_1_0_ROOT_MSVC_X86_64: d:\gstreamer\1.0\msvc_x86_64
GSTREAMER_1_0_ROOT_MSVC_X86: d:\gstreamer\1.0\msvc_x86
run: |
msbuild vs/gstpeaq.sln -property:Configuration=Release -property:Platform=${{ matrix.platform }}
msbuild vs/testpeaq.vcxproj -property:Configuration=Release -property:Platform=${{ matrix.platform }}
- name: Run tests
env:
GSTREAMER_1_0_ROOT_MSVC_X86_64: c:\gstreamer\1.0\msvc_x86_64
GSTREAMER_1_0_ROOT_MSVC_X86: c:\gstreamer\1.0\msvc_x86
GSTREAMER_1_0_ROOT_MSVC_X86_64: d:\gstreamer\1.0\msvc_x86_64
GSTREAMER_1_0_ROOT_MSVC_X86: d:\gstreamer\1.0\msvc_x86
shell: powershell
run: |
$Env:Path = "$Env:Path;c:\gstreamer\1.0\msvc_${{ matrix.arch }}\bin;"
$Env:Path = "$Env:Path;d:\gstreamer\1.0\msvc_${{ matrix.arch }}\bin;"
.\vs\${{ matrix.platform }}\Release\testpeaq
if ($LASTEXITCODE -ne 0) {
throw "test failure"
Expand Down

0 comments on commit 8847f39

Please sign in to comment.