Skip to content

Commit

Permalink
add windows builds to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
drdo committed Jul 7, 2024
1 parent eae6664 commit b299ffd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,19 @@ jobs:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
build-windows-amd64:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --target=x86_64-pc-windows-msvc --verbose
- name: Run tests
run: cargo test --verbose
build-windows-arm64:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --target=aarch64-pc-windows-msvc --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit b299ffd

Please sign in to comment.