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 9ba416c
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

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true

- name: Build and Check Rust Libraries
run: |
cargo clean
cargo build -vv 2>$null | Select-String 'rustc-link-lib'

0 comments on commit 9ba416c

Please sign in to comment.