-
Notifications
You must be signed in to change notification settings - Fork 35
46 lines (38 loc) · 940 Bytes
/
main.yml
File metadata and controls
46 lines (38 loc) · 940 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
46
name: GitHub Actions Build
on:
push:
paths-ignore:
- "**/*.md"
- '**/*.txt'
branches:
- '**'
pull_request:
paths-ignore:
- "**/*.md"
- '**/*.txt'
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@main
- name: Configure build
run: ./premake5.bat
- name: Build
run: |
msbuild -m build/OpenLA.sln /property:Configuration=Release /property:Platform=Win32
- name: Copy Configuration File
run: |
copy doc\III.VC.SA.LimitAdjuster.ini bin\III.VC.SA.LimitAdjuster.ini
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: III.VC.SA.LimitAdjuster
path: |
bin\*
!bin\*.pdb