diff options
author | sagudev <16504129+sagudev@users.noreply.github.com> | 2023-04-13 09:52:00 +0200 |
---|---|---|
committer | sagudev <16504129+sagudev@users.noreply.github.com> | 2023-04-13 12:17:03 +0200 |
commit | 49e498924f87dfe433746c4f408bf466946c0bac (patch) | |
tree | b00db96cecfbaa2e79aff84e92547b34b893ea0a | |
parent | 2982747cb68d96d02d51f40869376120dc53c5e4 (diff) | |
download | servo-49e498924f87dfe433746c4f408bf466946c0bac.tar.gz servo-49e498924f87dfe433746c4f408bf466946c0bac.zip |
Use GStreamer in Windows workflow
-rw-r--r-- | .github/workflows/windows.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index f4c3c0364de..497f6d32923 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -47,6 +47,13 @@ jobs: fetch-depth: 2 - name: Copy to C drive run: cp D:\a C:\ -Recurse + - name: Install GStreamer + shell: powershell + run: | + Start-BitsTransfer -Source https://gstreamer.freedesktop.org/data/pkg/windows/1.16.0/gstreamer-1.0-msvc-x86_64-1.16.0.msi + Start-Process msiexec.exe -Wait -ArgumentList "/i gstreamer-1.0-msvc-x86_64-1.16.0.msi /quiet /qn /norestart ADDLOCAL=ALL" + Start-BitsTransfer -Source https://gstreamer.freedesktop.org/data/pkg/windows/1.16.0/gstreamer-1.0-devel-msvc-x86_64-1.16.0.msi + Start-Process msiexec.exe -Wait -ArgumentList "/i gstreamer-1.0-devel-msvc-x86_64-1.16.0.msi /quiet /qn /norestart ADDLOCAL=ALL" - name: wix311-binaries shell: powershell run: | @@ -60,7 +67,7 @@ jobs: python mach fetch - name: Release build working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}" - run: python mach build --release --media-stack=dummy --with-${{ env.LAYOUT }} + run: python mach build --release --with-${{ env.LAYOUT }} - name: Smoketest working-directory: "C:\\a\\${{ github.event.repository.name }}\\${{ github.event.repository.name }}" run: python mach smoketest --angle |