Windows Install Test #8
Workflow file for this run
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 Install Test | |
on: | |
workflow_dispatch: | |
jobs: | |
cmake_install_test: | |
name: CMake install test msvc | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Setup Windows CI Environment | |
run: | | |
./ci/setup_windows_ci_environment.ps1 | |
- name: Run Tests | |
env: | |
CXX_STANDARD: '17' | |
run: ./ci/do_ci.ps1 cmake.install.test | |
cmake_install_test-dll: | |
name: CMake install test msvc (DLL) | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: setup | |
run: | | |
./ci/setup_windows_ci_environment.ps1 | |
- name: run cmake test (DLL build) | |
run: ./ci/do_ci.ps1 cmake.dll.test |