Skip to content

Commit 8352223

Browse files
committed
Add GH Windows build
1 parent e5bff67 commit 8352223

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

.github/workflows/macos-ios.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
- name: deps
1515
run: brew install libsndfile libsamplerate vamp-plugin-sdk meson ninja
1616
- name: configure macos
17-
run: meson build_macos
17+
run: meson setup build_macos
1818
- name: configure ios
19-
run: meson build_ios --cross-file cross/ios.txt
19+
run: meson setup build_ios --cross-file cross/ios.txt
2020
- name: make macos
2121
run: ninja -C build_macos
2222
- name: make ios

.github/workflows/windows.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Windows CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: windows-2022
9+
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-python@v5
13+
with:
14+
python-version: '3.x'
15+
- name: deps
16+
run: |
17+
pip install meson
18+
pip install ninja
19+
- name: make
20+
run: |
21+
meson setup build
22+
ninja -C build
23+
- name: test
24+
run: |
25+
meson test -C build

0 commit comments

Comments
 (0)