Further CI tweaks
This commit is contained in:
@@ -11,10 +11,12 @@ platform:
|
||||
install:
|
||||
- cinst wget
|
||||
- cinst meson
|
||||
- c:\ProgramData\chocolatey\bin\wget.exe http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.28-w64-setup.exe
|
||||
- ps: .\libsndfile-1.0.28-w64-setup.exe /silent /sp- /norestart
|
||||
- cinst libsndfile
|
||||
|
||||
build_script:
|
||||
- call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
|
||||
- meson build -Dextra_include_dirs='C:\Program Files\Mega-Nerd\libsndfile\include' -Dextra_lib_dirs='C:\Program Files\Mega-Nerd\libsndfile\lib'
|
||||
- meson build "-Dextra_include_dirs=C:\Program Files\libsndfile\include" "-Dextra_lib_dirs=C:\Program Files\libsndfile\lib"
|
||||
- ninja -C build
|
||||
# And test the .NET FFI interface build, which is completely separate
|
||||
- msbuild dotnet\rubberband.sln
|
||||
|
||||
|
||||
17
.github/workflows/windows-dotnet.yml
vendored
17
.github/workflows/windows-dotnet.yml
vendored
@@ -1,17 +0,0 @@
|
||||
name: Windows .NET CI
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: windows-2019
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: make
|
||||
run: |
|
||||
msbuild dotnet\rubberband.sln
|
||||
|
||||
26
.github/workflows/windows.yml
vendored
26
.github/workflows/windows.yml
vendored
@@ -1,26 +0,0 @@
|
||||
name: Windows CI
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: windows-2019
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: deps
|
||||
run: |
|
||||
cinst wget
|
||||
cinst meson
|
||||
c:\ProgramData\chocolatey\bin\wget.exe http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.28-w64-setup.exe
|
||||
.\libsndfile-1.0.28-w64-setup.exe /silent /sp- /norestart
|
||||
- name: configure
|
||||
run: |
|
||||
c:\ProgramData\chocolatey\bin\meson build
|
||||
- name: make
|
||||
run: |
|
||||
c:\ProgramData\chocolatey\bin\ninja -C build
|
||||
|
||||
Reference in New Issue
Block a user