Skip to content

Commit

Permalink
Add ci step to ensure buildable on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
tarrencev committed Nov 9, 2023
1 parent 015e1d2 commit 005c9ae
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,20 @@ jobs:
run: |
cargo build -r --target wasm32-unknown-unknown -p torii-client
ensure-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION }}
target: x86_64-pc-windows-msvc
- uses: Swatinem/rust-cache@v2
- uses: arduino/setup-protoc@v2
- name: "Ensure buildable on windows"
run: |
cargo build --target x86_64-pc-windows-msvc --bins
# cairofmt:
# runs-on: ubuntu-latest
# steps:
Expand Down

0 comments on commit 005c9ae

Please sign in to comment.