-
-
Notifications
You must be signed in to change notification settings - Fork 258
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
45 lines (39 loc) · 698 Bytes
/
azure-pipelines.yml
File metadata and controls
45 lines (39 loc) · 698 Bytes
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
trigger:
branches:
include:
- '*'
paths:
exclude:
- .appveyor.yml
pr:
branches:
include:
- '*'
paths:
exclude:
- .appveyor.yml
jobs:
- job: Build
timeoutInMinutes: 0
cancelTimeoutInMinutes: 5
pool:
vmImage: windows-2025-vs2026
strategy:
matrix:
Release:
configuration: Release
Debug:
configuration: Debug
steps:
- task: CmdLine@2
displayName: Before build
inputs:
script: |
git submodule update --init --recursive
premake5.exe vs2026
./before_build.bat
- task: MSBuild@1
displayName: Build
inputs:
solution: 'build/*.slnx'
maximumCpuCount: true