Added vec2 operators that were missing #1159
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) | |
| on: [push] | |
| env: | |
| BUILD_TYPE: RelWithDebInfo | |
| VCPKG_DEFAULT_TRIPLET: x64-windows-static | |
| jobs: | |
| ci: | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Vcpkg | |
| uses: lukka/run-vcpkg@v11 | |
| with: | |
| vcpkgGitCommitId: 344525f74edb4c1d47c559d8bbe06240271441d8 | |
| - name: Clone MDLIB | |
| run: git submodule update --init --recursive | |
| - name: Cmake Version | |
| run: cmake --version | |
| - name: Create Build Environment | |
| run: cmake -E make_directory ${{github.workspace}}/build | |
| - name: Configure CMake | |
| shell: bash | |
| working-directory: ${{github.workspace}}/build | |
| run: cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DMD_ENABLE_VLX=ON -DMD_FORCE_ASSERTIONS=ON $GITHUB_WORKSPACE | |
| - name: Build | |
| working-directory: ${{github.workspace}}/build | |
| shell: bash | |
| run: cmake --build . --config $BUILD_TYPE | |
| - name: Test | |
| working-directory: ${{github.workspace}}/build | |
| shell: bash | |
| run: ctest -C $BUILD_TYPE --rerun-failed --output-on-failure |