Merge branch 'main' of github.com:ada-url/ada #1506
This file contains 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
name: VS17-clang-CI | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths-ignore: | |
- '**.md' | |
- 'docs/**' | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- 'docs/**' | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
name: windows-vs17 | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- {gen: Visual Studio 17 2022, arch: x64, devchecks: ON} | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
- name: Configure | |
run: | | |
cmake -DADA_DEVELOPMENT_CHECKS="${{matrix.devchecks}}" -G "${{matrix.gen}}" -A ${{matrix.arch}} -T ClangCL -B build | |
- name: Build Debug | |
run: cmake --build build --config Debug --verbose | |
- name: Run Debug tests | |
working-directory: build | |
run: ctest -C Debug --output-on-failure | |
- name: Build Release | |
run: cmake --build build --config Release --verbose | |
- name: Run Release tests | |
working-directory: build | |
run: ctest -C Release --output-on-failure |