Various improvements #1402
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Windows MSVC CPU | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| MSVC-Test: | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| build_type: [Debug, Release] | |
| steps: | |
| - name: "Install latest MSVC compiler" | |
| uses: ilammy/[email protected] | |
| - name: "Install cmake 3.31.0" | |
| uses: lukka/[email protected] | |
| - name: "Clone the PLSSVM repository into PLSSVM/" | |
| uses: actions/[email protected] | |
| with: | |
| path: PLSSVM | |
| - name: "Install Python dependencies" | |
| run: | | |
| py -m pip install --upgrade pip setuptools wheel | |
| py -m pip install -r PLSSVM/install/python_requirements.txt | |
| - name: "Configure PLSSVM using CMake" | |
| run: | | |
| cd PLSSVM | |
| cmake --preset openmp_test -DCMAKE_CONFIGURATION_TYPES=${{ matrix.build_type }} -DPLSSVM_ENABLE_STL_DEBUG_MODE=${{ matrix.build_type == 'Debug' && 'ON' || 'OFF' }} -DPLSSVM_TARGET_PLATFORMS="cpu" -DPLSSVM_ENABLE_LANGUAGE_BINDINGS=ON -DPLSSVM_ENABLE_PERFORMANCE_TRACKING=ON -DPLSSVM_ENABLE_MPI=OFF -DPLSSVM_TEST_FILE_NUM_DATA_POINTS=50 -DPLSSVM_TEST_FILE_NUM_FEATURES=20 | |
| - name: "Build PLSSVM" | |
| shell: bash | |
| run: | | |
| cd PLSSVM | |
| cmake --build --preset openmp_test --config ${{ matrix.build_type }} | |
| echo "${GITHUB_WORKSPACE}/PLSSVM/build" >> $GITHUB_PATH | |
| - name: "Run tests" | |
| run: | | |
| cd PLSSVM | |
| ctest --preset openmp_test -C ${{ matrix.build_type }} -E ".*Executable.*" --parallel 2 --output-on-failure |