-
Notifications
You must be signed in to change notification settings - Fork 34
47 lines (44 loc) · 1.17 KB
/
windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Windows-CI
on:
push:
paths-ignore:
- 'ansible/**'
- 'doc/**'
- 'demo/**'
- 'scripts/**'
- 'g3proxy/doc/**'
- 'g3tiles/doc/**'
branches:
- 'master'
- 'rel/**'
- 'lts/**'
pull_request:
branches:
- 'master'
- 'rel/**'
- 'lts/**'
env:
CARGO_TERM_COLOR: always
VCPKG_ROOT: C:\vcpkg
WIN_FEATURES: quic,vendored-c-ares,hickory
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
- name: Install lib dependencies (vcpkg)
run: vcpkg install --triplet=x64-windows-static-md openssl
- name: Cargo build
run: cargo build --no-default-features --features $env:WIN_FEATURES
- name: Cargo clippy
run: cargo clippy --no-default-features --features $env:WIN_FEATURES --tests -- --deny warnings
- name: Cargo test
run: cargo test --no-default-features --features $env:WIN_FEATURES