-
Notifications
You must be signed in to change notification settings - Fork 20
50 lines (45 loc) · 1.21 KB
/
contribution.yml
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
49
50
name: "Contribution"
on:
pull_request:
paths-ignore:
- '*.md'
push:
paths-ignore:
- '*.md'
jobs:
build:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
matrix:
config:
- {
name: "x64 Release",
configuration: Release,
os: windows-latest,
platform: x64
}
- {
name: "x64 Debug",
configuration: Debug,
os: windows-latest,
platform: x64
}
- {
name: "x86 Release",
configuration: Release,
os: windows-latest,
platform: x86
}
- {
name: "x86 Debug",
configuration: Debug,
os: windows-latest,
platform: x86
}
steps:
- uses: actions/checkout@master
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1.1
- name: Build
run: msbuild MAGE/IDE/VS/MAGE.sln /m /p:Configuration=${{ matrix.config.configuration }} /p:Platform=${{ matrix.config.platform }}