Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@ jobs:
# Temporarily remove MINGW64 and UCRT64 builds because
# GCC 12 gives an unexpected overflow warning for __builtin_memmove
# see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106199
# Temporarily remove CLANG32 because doctest is not available anymore
# for this platform
msystem: [ MINGW32, CLANG64 ]
#msystem: [ MINGW32, MINGW64, UCRT64, CLANG32, CLANG64 ]
fail-fast: false
Expand All @@ -81,14 +79,13 @@ jobs:
cc:p
cmake:p
ninja:p
doctest:p
- name: Checkout xsimd
uses: actions/checkout@v2
- name: Configure
run: |
mkdir _build
cd _build
cmake .. -DBUILD_TESTS=ON -DBUILD_BENCHMARK=ON -DBUILD_EXAMPLES=ON -DCMAKE_BUILD_TYPE=Release -G Ninja
cmake .. -DBUILD_TESTS=ON -DBUILD_BENCHMARK=ON -DBUILD_EXAMPLES=ON -DCMAKE_BUILD_TYPE=Release -DDOWNLOAD_DOCTEST=ON -G Ninja
- name: Build
run: ninja -C _build
- name: Test
Expand Down
Loading