Skip to content

Commit

Permalink
Add windows build host.
Browse files Browse the repository at this point in the history
  • Loading branch information
joehendrix committed Oct 23, 2023
1 parent 542d471 commit 5d2689c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ubuntu-latest
steps:
- name: install elan
Expand All @@ -30,6 +30,10 @@ jobs:
- name: Install libuv (osx)
run: brew install libuv pkg-config
if: matrix.os == 'macos-latest'
- name: Install libuv (windows)
run: |
pkg-config --libs libuv
if: matrix.os == 'windows-latest'
- name: Lake build
run: |
which cc
Expand Down

0 comments on commit 5d2689c

Please sign in to comment.