Skip to content

Attempt at fixing clang windows github actions error. #105

Attempt at fixing clang windows github actions error.

Attempt at fixing clang windows github actions error. #105

Workflow file for this run

name: clang windows
on:
push:
pull_request:
workflow_dispatch:
env:
TEST_DIR: tests
jobs:
all:
strategy:
fail-fast: false
matrix:
cpp_version: [c++17, c++20]
buildmode: [~ , -O3 -DNDEBUG, -O3 -DNDEBUG -ffast-math]
runs-on: windows-2022
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Install clang
uses: KyleMayes/[email protected]
with:
version: "16"
- name: Build and run tests
working-directory: ${{env.TEST_DIR}}
env:
CXX: clang++
ADDITIONAL_FLAGS: ${{ format('-std={0} {1}', matrix.cpp_version, matrix.buildmode) }}
OUT_DIR_NAME: win_clang_generic
run: |
& ".\make_win_gcclike.ps1"