Skip to content

Bump github/codeql-action from 2.3.2 to 2.21.9 #610

Bump github/codeql-action from 2.3.2 to 2.21.9

Bump github/codeql-action from 2.3.2 to 2.21.9 #610

Workflow file for this run

name: VS17-CLANG-CI
on: [push, pull_request]
permissions:
contents: read
jobs:
ci:
name: windows-vs17
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include:
- {gen: Visual Studio 17 2022, arch: Win32}
- {gen: Visual Studio 17 2022, arch: x64}
steps:
- name: checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Configure
run: |
mkdir build
cd build && cmake -G "${{matrix.gen}}" -A ${{matrix.arch}} -T ClangCL ..
- name: Build
run: cmake --build build --config Release --parallel
- name: Run basic tests
run: |
cd build
ctest -C Release --output-on-failure
- name: Build Debug
run: cmake --build build --config Debug --parallel
- name: Run basic tests in Debug
run: |
cd build
ctest -C Debug --output-on-failure