mirror of
https://github.com/g-truc/glm.git
synced 2025-04-10 15:23:53 +00:00
Add multiple MSVC version builds and tests
This commit is contained in:
parent
8e2bdd1fdb
commit
2068d57bcd
1 changed files with 6 additions and 2 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -3,8 +3,8 @@ run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
|
|||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
types: [opened]
|
||||
pull_request_target:
|
||||
types: [opened, edited, reopened]
|
||||
|
||||
jobs:
|
||||
windows-latest:
|
||||
|
@ -12,6 +12,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
toolset: [14.3, 15.9, 16.8]
|
||||
std: [98, 11, 14, 17, 20]
|
||||
config: [Debug, Release]
|
||||
|
||||
|
@ -27,6 +28,9 @@ jobs:
|
|||
run: |
|
||||
ls ${{ github.workspace }}
|
||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
||||
- uses: TheMrMilchmann/setup-msvc-dev@v3
|
||||
with:
|
||||
toolset: ${{matrix.toolset}}
|
||||
- name: CMake Version
|
||||
run: cmake --version
|
||||
- run: cmake -S. -B ./build_auto
|
||||
|
|
Loading…
Add table
Reference in a new issue