Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mchome committed Dec 18, 2023
1 parent 23dcc34 commit f1912b6
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/windows_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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
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
build/krom

0 comments on commit f1912b6

Please sign in to comment.