Skip to content

Commit

Permalink
try to figure out what libs are needed in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
oxarbitrage committed Oct 12, 2023
1 parent 3aebe87 commit 27d0659
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,3 +155,24 @@ jobs:
with:
command: clippy
args: -- -D warnings

libraries-needed:
name: Windows libraries needed
runs-on: windows-latest
strategy:
matrix:
rust:
- stable
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: build
args: -vv 2> NUL | find "rustc-link-lib"

0 comments on commit 27d0659

Please sign in to comment.