-
Notifications
You must be signed in to change notification settings - Fork 35
119 lines (114 loc) · 3.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
name: Windows-CI
on:
push:
paths-ignore:
- 'ansible/**'
- 'doc/**'
- 'demo/**'
- 'scripts/**'
- 'g3proxy/doc/**'
- 'g3tiles/doc/**'
branches:
- 'master'
- 'lts/**'
pull_request:
branches:
- 'master'
- 'lts/**'
env:
CARGO_TERM_COLOR: always
VCPKG_ROOT: C:\vcpkg
WIN_FEATURES: rustls-ring,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
with:
components: clippy
- 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 --workspace --exclude g3-journal
build-vendored-g1:
name: Build vendored
runs-on: windows-latest
strategy:
matrix:
feature:
- vendored-openssl,rustls-ring
- vendored-tongsuo,rustls-ring
- vendored-aws-lc,rustls-aws-lc
- vendored-boringssl,rustls-ring
component:
- g3proxy
- g3bench
- g3tiles
steps:
- name: Install common tools
run: choco install capnproto
- name: Install nasm and ninja for BoringSSL
if: contains(matrix.feature, 'vendored-boringssl')
run: choco install nasm ninja
- name: Install nasm for AWS-LC
if: contains(matrix.feature, 'vendored-aws-lc')
uses: ilammy/setup-nasm@v1
- name: Checkout sources
uses: actions/checkout@v4
with:
submodules: true
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Cargo build
run: cargo build --no-default-features --features ${{ matrix.feature }} -p ${{ matrix.component }}
- name: Cargo clippy
run: cargo clippy --no-default-features --features ${{ matrix.feature }} -p ${{ matrix.component }} -- --deny warnings
build-vendored-g2:
name: Build vendored
runs-on: windows-latest
strategy:
matrix:
feature:
- vendored-openssl
- vendored-tongsuo
- vendored-aws-lc
- vendored-boringssl
component:
- g3fcgen
- g3mkcert
- g3keymess
steps:
- name: Install common tools
run: choco install capnproto
- name: Install nasm and ninja for BoringSSL
if: contains(matrix.feature, 'vendored-boringssl')
run: choco install nasm ninja
- name: Install nasm for AWS-LC
if: contains(matrix.feature, 'vendored-aws-lc')
uses: ilammy/setup-nasm@v1
- name: Checkout sources
uses: actions/checkout@v4
with:
submodules: true
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Cargo build
run: cargo build --no-default-features --features ${{ matrix.feature }} -p ${{ matrix.component }}
- name: Cargo clippy
run: cargo clippy --no-default-features --features ${{ matrix.feature }} -p ${{ matrix.component }} -- --deny warnings