-
Notifications
You must be signed in to change notification settings - Fork 22
68 lines (67 loc) · 1.8 KB
/
build.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
on: [push, pull_request]
name: Build
jobs:
build-linux:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: true
- run: ./build.sh
working-directory: ./Build
build-macos:
runs-on: macos-11
steps:
- uses: actions/checkout@v2
with:
submodules: true
- run: ./build.sh
working-directory: ./Build
build-windows:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
with:
submodules: true
- run: ./build.bat
working-directory: ./Build
- name: Upload Windows 64bit Binary
uses: actions/upload-artifact@v2
with:
name: act.win64.exe
path: act.win64.exe
- name: Upload Windows 32bit Binary
uses: actions/upload-artifact@v2
with:
name: act.win32.exe
path: act.win32.exe
- name: Upload MacOS Binary
uses: actions/upload-artifact@v2
with:
name: act.darwin
path: act.darwin
- name: Upload MacOS ARM Binary
uses: actions/upload-artifact@v2
with:
name: act.arm.darwin
path: act.arm.darwin
- name: Upload Linux 32bit Binary
uses: actions/upload-artifact@v2
with:
name: act.linux32
path: act.linux32
- name: Upload Linux ARM 32bit Binary
uses: actions/upload-artifact@v2
with:
name: act.arm.linux32
path: act.arm.linux32
- name: Upload Linux 64bit Binary
uses: actions/upload-artifact@v2
with:
name: act.linux64
path: act.linux64
- name: Upload Linux ARM 64bit Binary
uses: actions/upload-artifact@v2
with:
name: act.arm.linux64
path: act.arm.linux64