forked from go-gst/go-gst
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6b977d7
commit 5e1fe69
Showing
1 changed file
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,13 +14,25 @@ jobs: | |
matrix: | ||
os: | ||
- ubuntu-latest | ||
# - windows-latest # see https://github.com/go-gst/go-gst/issues/64 | ||
- windows-latest # see https://github.com/go-gst/go-gst/issues/64 | ||
- macos-latest | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
# - name: Downgrade mingw to 11.2.0 | ||
# if: runner.os == 'Windows' | ||
# run: choco install mingw --version 11.2.0 --allow-downgrade | ||
- name: install mingw 11.2.0 using choco | ||
if: runner.os == 'Windows' | ||
shell: powershell | ||
run: choco install mingw --version 11.2.0 | ||
|
||
- name: Add mingw to path on windows | ||
if: runner.os == 'Windows' | ||
run: Add-Content $env:GITHUB_PATH "C:\ProgramData\chocolatey\lib\mingw\tools\install\mingw64\bin" | ||
shell: powershell | ||
|
||
- name: install pkgconfiglite using choco | ||
if: runner.os == 'Windows' | ||
shell: powershell | ||
run: choco install pkgconfiglite --allow-empty-checksums | ||
|
||
- name: Setup GStreamer | ||
id: setup_gstreamer | ||
uses: blinemedical/[email protected] | ||
|