-
-
Notifications
You must be signed in to change notification settings - Fork 175
199 lines (188 loc) · 5.92 KB
/
CI.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
on:
push:
branches:
- "main"
paths:
- ".github/workflows/CI.yml"
- "examples/**"
- "gdk4/**"
- "gdk4-wayland/**"
- "gdk4-win32/**"
- "gdk4-x11/**"
- "gsk4/**"
- "gtk4/**"
- "gtk4-macros/**"
pull_request:
paths:
- ".github/workflows/CI.yml"
- "examples/**"
- "gdk4/**"
- "gdk4-wayland/**"
- "gdk4-win32/**"
- "gdk4-x11/**"
- "gsk4/**"
- "gtk4/**"
- "gtk4-macros/**"
workflow_dispatch:
name: CI
jobs:
check:
name: Build
runs-on: ubuntu-latest
container:
image: ghcr.io/gtk-rs/gtk4-rs/gtk4:latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
- "1.80"
conf:
- {
name: "gtk4",
features: "v4_18,xml_validation,blueprint",
test_sys: false,
}
- { name: "gsk4", features: "v4_14,broadway,vulkan", test_sys: true }
- { name: "gdk4", features: "v4_16,gl", test_sys: true }
- {
name: "gdk4-wayland",
features: "v4_12,wayland_crate,egl",
test_sys: true,
}
- { name: "gdk4-x11", features: "v4_16,xlib,egl", test_sys: true }
- {
name: "gtk4-macros",
features: "xml_validation,blueprint",
test_sys: false,
}
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- name: "${{ matrix.conf.name }}: tests"
run: xvfb-run --auto-servernum cargo test --manifest-path ${{ matrix.conf.name }}/Cargo.toml --features "${{ matrix.conf.features }}"
- name: "${{ matrix.conf.name }}/sys: tests"
run: xvfb-run --auto-servernum cargo test --manifest-path ${{ matrix.conf.name }}/sys/Cargo.toml
if: matrix.conf.test_sys
- name: "${{ matrix.conf.name }}: build"
run: cargo build --manifest-path ${{ matrix.conf.name }}/Cargo.toml --features "${{ matrix.conf.features }}"
- run: rustup component add clippy
if: matrix.rust == 'stable'
- run: cargo clippy --manifest-path ${{ matrix.conf.name }}/Cargo.toml --features "${{ matrix.conf.features }}" --all-targets -- -D warnings
if: matrix.rust == 'stable'
- uses: bcomnes/cleanup-xvfb@v1
examples:
name: examples
runs-on: ubuntu-latest
container:
image: ghcr.io/gtk-rs/gtk4-rs/gtk4:latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- name: "examples: build"
run: cargo build --manifest-path examples/Cargo.toml --bins --examples --all-features
- name: "examples: clippy"
run: cargo clippy --manifest-path examples/Cargo.toml --all-targets -- -D warnings
fmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v2
regen_check:
name: regen checker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
set-safe-directory: true
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: git submodule update --checkout
- run: python3 ./generator.py --yes ./
- run: git diff --exit-code
docs:
name: docs embed check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
set-safe-directory: true
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: git submodule update --checkout
- run: cargo install rustdoc-stripper
- run: python3 generator.py --embed-docs
- run: python3 generator.py --strip-docs
- run: git diff --exit-code
checker:
name: gtk-rs checker
runs-on: ubuntu-latest
strategy:
matrix:
crate:
- { name: "gtk4", is_macros_crate: false }
- { name: "gdk4", is_macros_crate: false }
- { name: "gsk4", is_macros_crate: false }
- { name: "gdk4-x11", is_macros_crate: false }
- { name: "gdk4-wayland", is_macros_crate: false }
- { name: "gdk4-win32", is_macros_crate: false }
- { name: "gtk4-macros", is_macros_crate: true }
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: gtk-rs/checker
ref: main
path: checker
- working-directory: checker
run: cargo build --release
- run: cargo run -- ../${{matrix.crate.name}}
working-directory: checker
if: ${{ ! matrix.crate.is_macros_crate }}
- run: cargo run -- ../${{matrix.crate.name}}/sys
working-directory: checker
if: ${{ ! matrix.crate.is_macros_crate }}
- run: ./check_init_asserts ../${{matrix.crate.name}}
working-directory: checker
if: ${{ ! matrix.crate.is_macros_crate }}
- run: cargo run -- --no-manual-traits ../${{matrix.crate.name}}
working-directory: checker
if: matrix.crate.is_macros_crate
- name: Check doc aliases
run: |
python3 doc_aliases.py ../${{matrix.crate.name}}
cd .. && git diff --exit-code
working-directory: checker
if: ${{ ! matrix.crate.is_macros_crate }}