Skip to content

Commit

Permalink
Add GH Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
cannam committed Mar 7, 2024
1 parent e5bff67 commit 8352223
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
- name: deps
run: brew install libsndfile libsamplerate vamp-plugin-sdk meson ninja
- name: configure macos
run: meson build_macos
run: meson setup build_macos
- name: configure ios
run: meson build_ios --cross-file cross/ios.txt
run: meson setup build_ios --cross-file cross/ios.txt
- name: make macos
run: ninja -C build_macos
- name: make ios
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Windows CI

on: [push, pull_request]

jobs:
build:

runs-on: windows-2022

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: deps
run: |
pip install meson
pip install ninja
- name: make
run: |
meson setup build
ninja -C build
- name: test
run: |
meson test -C build

0 comments on commit 8352223

Please sign in to comment.