-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (56 loc) · 1.7 KB
/
Copy pathcomponents.yml
File metadata and controls
62 lines (56 loc) · 1.7 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
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
# SPDX-License-Identifier: MIT
# Copyright (c) Robert Vokac and contributors
name: Component boundaries
env:
SHARP_RUNTIME_BUILD_JOBS: "2"
on:
push:
pull_request:
jobs:
selective:
name: ${{ matrix.component }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- component: Core.Base
fixture: core_base.cpp
- component: Text.Json
fixture: text_json.cpp
- component: Net.Http.Headers
fixture: net_http_headers.cpp
- component: Net.WebSockets
fixture: net_websockets.cpp
- component: IO.Compression
fixture: io_compression.cpp
- component: IO.Compression.Zip
fixture: io_compression_zip.cpp
- component: IO.IsolatedStorage
fixture: io_isolated_storage.cpp
- component: Security.Cryptography.Random
fixture: security_cryptography_random.cpp
- component: Xml.Linq
fixture: xml_linq.cpp
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- run: scripts/check_selective_components.sh "${{ matrix.component }}" "${{ matrix.fixture }}"
full:
name: Full compatibility build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- run: scripts/local_ci_check.sh build
documentation:
name: Doxygen warning baseline
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- run: sudo apt-get update && sudo apt-get install --yes doxygen graphviz
- run: scripts/check_doxygen_warnings.sh