From cfa8c7045f5a17189cdcd7aa0aea886ffa36ba01 Mon Sep 17 00:00:00 2001 From: Alfredo Garcia Date: Thu, 12 Oct 2023 20:13:42 -0300 Subject: [PATCH] try to figure out what libs are needed in windows --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b852d00ff..0705dc049 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 > NUL | grep 'rustc-link-lib'