mirror of https://github.com/xiph/flac
github actions: add a windows cmake target
Make use of the available builders for Microsoft Windows build converage. Unfortunately this job reports finding no tests to run, despite being identical to other builds. Worse, this is not reported as an error. Windows doesn't have a package manager like linux and macos, so until we figure out how to build and cache the ogg dependency for the windows job, just skip ogg support.
This commit is contained in:
parent
df35f5ea41
commit
21a217e737
|
@ -18,6 +18,7 @@ jobs:
|
|||
ubuntu-latest-clang-cmake,
|
||||
macos-latest-clang-autotools,
|
||||
macos-latest-clang-cmake,
|
||||
windows-latest-cmake,
|
||||
ubuntu-latest-gcc-autotools-64-bit-words,
|
||||
ubuntu-latest-clang-autotools-64-bit-words,
|
||||
ubuntu-latest-gcc-cmake-64-bit-words,
|
||||
|
@ -68,6 +69,11 @@ jobs:
|
|||
build-system: cmake
|
||||
configure-opts: ''
|
||||
|
||||
- name: windows-latest-cmake
|
||||
os: windows-latest
|
||||
build-system: cmake
|
||||
configure-opts: '-DWITH_OGG=OFF'
|
||||
|
||||
- name: ubuntu-latest-gcc-autotools-64-bit-words
|
||||
os: ubuntu-latest
|
||||
cc: gcc
|
||||
|
|
Loading…
Reference in New Issue