2024-07-30 03:15:54 +00:00
|
|
|
# Copyright (c) Microsoft Corporation.
|
|
|
|
# Licensed under the MIT License.
|
|
|
|
#
|
|
|
|
# http://go.microsoft.com/fwlink/?LinkID=615560
|
|
|
|
|
|
|
|
name: 'CMake (Windows)'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
paths-ignore:
|
|
|
|
- '*.md'
|
|
|
|
- LICENSE
|
|
|
|
- '.nuget/*'
|
2024-09-05 00:50:21 +00:00
|
|
|
- build/*.ps1
|
2024-07-30 03:15:54 +00:00
|
|
|
- build/*.yml
|
|
|
|
|
2024-09-11 02:04:05 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2024-07-30 03:15:54 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
os: [windows-2019, windows-2022]
|
|
|
|
build_type: [x64-Debug, x64-Release, x64-Debug-Clang, x64-Release-Clang]
|
|
|
|
arch: [amd64]
|
|
|
|
include:
|
|
|
|
- os: windows-2019
|
|
|
|
build_type: x86-Debug
|
|
|
|
arch: amd64_x86
|
|
|
|
- os: windows-2019
|
|
|
|
build_type: x86-Release
|
|
|
|
arch: amd64_x86
|
|
|
|
- os: windows-2019
|
|
|
|
build_type: x86-Debug-Clang
|
|
|
|
arch: amd64_x86
|
|
|
|
- os: windows-2019
|
|
|
|
build_type: x86-Release-Clang
|
|
|
|
arch: amd64_x86
|
|
|
|
- os: windows-2022
|
|
|
|
build_type: x86-Debug
|
|
|
|
arch: amd64_x86
|
|
|
|
- os: windows-2022
|
|
|
|
build_type: x86-Release
|
|
|
|
arch: amd64_x86
|
|
|
|
- os: windows-2022
|
|
|
|
build_type: x86-Debug-Clang
|
|
|
|
arch: amd64_x86
|
|
|
|
- os: windows-2022
|
|
|
|
build_type: x86-Release-Clang
|
|
|
|
arch: amd64_x86
|
|
|
|
- os: windows-2022
|
|
|
|
build_type: arm64-Debug
|
|
|
|
arch: amd64_arm64
|
|
|
|
- os: windows-2022
|
|
|
|
build_type: arm64-Release
|
|
|
|
arch: amd64_arm64
|
|
|
|
- os: windows-2022
|
|
|
|
build_type: arm64ec-Debug
|
|
|
|
arch: amd64_arm64
|
|
|
|
- os: windows-2022
|
|
|
|
build_type: arm64ec-Release
|
|
|
|
arch: amd64_arm64
|
|
|
|
|
|
|
|
steps:
|
2024-10-29 04:14:54 +00:00
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2024-07-30 03:15:54 +00:00
|
|
|
|
|
|
|
- name: Clone test repository
|
2024-10-29 04:14:54 +00:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2024-07-30 03:15:54 +00:00
|
|
|
with:
|
|
|
|
repository: walbourn/directxmathtest
|
|
|
|
path: Tests
|
|
|
|
ref: main
|
|
|
|
|
|
|
|
- name: 'Install Ninja'
|
|
|
|
run: choco install ninja
|
|
|
|
|
2024-09-11 18:51:11 +00:00
|
|
|
- uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0
|
2024-07-30 03:15:54 +00:00
|
|
|
with:
|
|
|
|
arch: ${{ matrix.arch }}
|
|
|
|
|
|
|
|
- name: 'Configure CMake'
|
|
|
|
working-directory: ${{ github.workspace }}
|
|
|
|
run: cmake --preset=${{ matrix.build_type }}
|
|
|
|
|
|
|
|
- name: 'Build'
|
|
|
|
working-directory: ${{ github.workspace }}
|
|
|
|
run: cmake --build out\build\${{ matrix.build_type }}
|