Files
librubberband/.github/workflows/windows.yml
Workflow config file is invalid. Please check your config file: yaml: line 15: found a tab character where an indentation space is expected
2021-02-11 14:04:35 +00:00

28 lines
579 B
YAML

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: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
meson build
- name: make
run: |
ninja -C build