Skip to content

Commit

Permalink
Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
james58899 committed Nov 13, 2023
1 parent 664d8fb commit 9688bf4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,22 @@ jobs:
with:
name: hath-rust-aarch64
path: target/aarch64-unknown-linux-gnu/release/hath-rust
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --verbose --release
- uses: actions/upload-artifact@v3
with:
name: hath-rust-windows
path: target/release/hath-rust.exe

0 comments on commit 9688bf4

Please sign in to comment.