use vcpkg to install windows dependencies #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows-CI | |
on: | |
push: | |
paths-ignore: | |
- 'ansible/**' | |
- 'doc/**' | |
- 'demo/**' | |
- 'scripts/**' | |
- 'g3proxy/doc/**' | |
- 'g3tiles/doc/**' | |
branches: | |
- 'master' | |
- 'rel/**' | |
pull_request: | |
branches: | |
- 'master' | |
- 'rel/**' | |
env: | |
CARGO_TERM_COLOR: always | |
VCPKG_ROOT: C:\vcpkg | |
PKG_CONFIG_PATH: C:/vcpkg/packages/c-ares_x64-windows-static-md/lib/pkgconfig/ | |
jobs: | |
build: | |
name: Build | |
runs-on: windows-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Install tools (choco) | |
run: choco install capnproto pkgconfiglite | |
- name: Install lib dependencies (vcpkg) | |
run: vcpkg install --triplet=x64-windows-static-md openssl c-ares lua python3 | |
- name: Cargo build | |
run: cargo build | |
- name: Cargo clippy | |
run: cargo clippy --tests -- --deny warnings | |
- name: Cargo test | |
run: cargo test |