Skip to content

Commit

Permalink
ci: Add windows runner
Browse files Browse the repository at this point in the history
  • Loading branch information
aengelke committed Jul 8, 2024
1 parent 58c1349 commit 4fe390c
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on: [push]

jobs:
build:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -15,3 +15,15 @@ jobs:
run: ninja -v -C build
- name: Test
run: meson test -v -C build
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: pip install ninja meson
- name: Configure
run: mkdir build; meson setup --vsenv -Dbuildtype=debugoptimized -Dwith_encode2=true build
- name: Build
run: meson compile -v -C build
- name: Test
run: meson test -v -C build

0 comments on commit 4fe390c

Please sign in to comment.