-
Notifications
You must be signed in to change notification settings - Fork 233
48 lines (36 loc) · 1.12 KB
/
Copy pathbuild_msbuild_client_tools.yml
File metadata and controls
48 lines (36 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: "Build client tools (MSBuild)"
on:
push:
branches:
- master
paths:
- '.github/workflows/build_msbuild_client_tools.yml'
- 'ClientTools.slnx'
pull_request:
branches:
- master
paths:
- '.github/workflows/build_msbuild_client_tools.yml'
- 'ClientTools.slnx'
workflow_dispatch:
# These should really be moved into the one solution.
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
BUILD_CONFIGURATION: [Debug, Release]
BUILD_PLATFORM: [Win32, x64]
name: "Client tools: ${{ matrix.BUILD_CONFIGURATION }} - ${{ matrix.BUILD_PLATFORM }}"
steps:
- uses: actions/checkout@v4
with:
submodules: 'false'
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Build tools
run: msbuild /p:Configuration="${{matrix.BUILD_CONFIGURATION}}" /p:Platform="${{matrix.BUILD_PLATFORM}}" ClientTools.slnx