docs: close DateTimeKind propagation audit #459
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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: Collections.Blocking | |
| fixture: blocking_collection.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@v6 | |
| 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@v6 | |
| with: | |
| submodules: recursive | |
| # Ping uses Linux's unprivileged SOCK_DGRAM/IPPROTO_ICMP interface. GitHub's | |
| # current hosted-runner image ships with an empty ping_group_range, which | |
| # makes every loopback Ping test fail before the request is sent. | |
| - run: sudo sysctl --write net.ipv4.ping_group_range='0 2147483647' | |
| - run: scripts/local_ci_check.sh build | |
| documentation: | |
| name: Doxygen warning baseline | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - run: sudo apt-get update && sudo apt-get install --yes doxygen graphviz | |
| - run: scripts/check_doxygen_warnings.sh |