Skip to content

chore(ascii): add a cozy cat to guard our 31-digit precision and deve… #59

chore(ascii): add a cozy cat to guard our 31-digit precision and deve…

chore(ascii): add a cozy cat to guard our 31-digit precision and deve… #59

Workflow file for this run

name: Windows
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
msvc-scalar:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Configure
run: cmake -S . -B build -DSIMD_F128_AVX2=OFF
- name: Build
run: cmake --build build --config Release
- name: Run tests
run: ctest --test-dir build -C Release --output-on-failure
msvc-avx2:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Configure
run: cmake -S . -B build_avx2 -DSIMD_F128_AVX2=ON
- name: Build
run: cmake --build build_avx2 --config Release
- name: Run tests
run: ctest --test-dir build_avx2 -C Release --output-on-failure