forked from armory3d/armortools
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (44 loc) · 1.32 KB
/
windows_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
name: Windows (Direct3D11)
on: [push]
jobs:
build-armorpaint:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Get Dependencies
run: |
git submodule update --init --recursive
cd armorcore/v8/libraries/win32/release/
7z e v8_monolith.7z
- name: Build ArmorPaint
run: |
cd armorpaint
../armorcore/Kinc/make --from ../armorcore -g direct3d11 --compile
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: ArmorPaint
path: |
armorcore/Deployment/ArmorPaint.exe
armorpaint/build/krom
build-armorlab:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Get Dependencies
run: |
git submodule update --init --recursive
cd armorcore/v8/libraries/win32/release/
7z e v8_monolith.7z
- name: Build
run: |
cd armorlab
git clone https://github.com/armory3d/onnx_bin onnx
../armorcore/Kinc/make --from ../armorcore -g direct3d11 --compile
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: ArmorLab
path: |
armorcore/Deployment/ArmorLab.exe
armorlab/build/krom