Skip to content

Drastically reduce the number of constructors by introducing two new … #1020

Drastically reduce the number of constructors by introducing two new …

Drastically reduce the number of constructors by introducing two new … #1020

Workflow file for this run

name: Windows CPU
on: push
jobs:
MSVC-Test:
runs-on: windows-latest
steps:
- name: "Install MSVC 14.29"
uses: ilammy/[email protected]
with:
toolset: 14.29
- name: "Install cmake 3.22.2"
uses: lukka/[email protected]
- name: "Clone Step"
uses: actions/checkout@v2
with:
path: PLSSVM
- name: "CMake Step"
run: |
mkdir PLSSVM/build
cd PLSSVM/build
cmake -DCMAKE_BUILD_TYPE=Debug -DPLSSVM_TARGET_PLATFORMS="cpu" -DPLSSVM_ENABLE_TESTING=ON -DPLSSVM_GENERATE_TEST_FILE=OFF -DPLSSVM_ENABLE_LTO=OFF -DPLSSVM_ENABLE_ASSERTS=ON ..
- name: "Build Step"
run: |
cd PLSSVM/build
cmake --build .
- name: "Test Step"
run: |
cd PLSSVM/build
ctest --output-on-failure -C Debug