forked from LadybirdBrowser/ladybird
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 1.05 KB
/
Copy pathci-windows.yml
File metadata and controls
33 lines (30 loc) · 1.05 KB
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
name: CI (Windows)
on:
pull_request:
types:
- opened
- synchronize
- reopened
- labeled
- unlabeled
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
# Do not cancel in-progress runs if a labeling action took place (other than 'windows'). Otherwise, adding irrelevant
# labels causes existing runs to be canceled and a new (identical) run to be started.
cancel-in-progress: ${{ (github.event.action != 'labeled' && github.event.action != 'unlabeled') || github.event.label.name == 'windows' }}
jobs:
CI:
# Only run this job if the PR has the 'windows' label.
if: |
github.repository == 'LadybirdBrowser/ladybird'
&& contains(github.event.pull_request.labels.*.name, 'windows')
name: 'Windows, x86_64, Windows_Sanitizer_CI, ClangCL'
secrets: inherit
uses: ./.github/workflows/lagom-template.yml
with:
toolchain: 'ClangCL'
os_name: 'Windows'
runner_labels: '["windows-2025"]'
arch: 'x86_64'
build_preset: 'Windows_Sanitizer_CI'
clang_plugins: false