31 lines
800 B
YAML
31 lines
800 B
YAML
name: Build Windows
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
# Editor
|
|
editor-windows:
|
|
name: Editor (Windows, Development x64)
|
|
runs-on: "windows-latest"
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
lfs: true
|
|
- name: Build
|
|
run: |
|
|
.\Development\Scripts\Windows\CallBuildTool.bat -build -log -arch=x64 -platform=Windows -configuration=Development -buildtargets=FlaxEditor
|
|
|
|
# Game
|
|
game-windows:
|
|
name: Game (Windows, Release x64)
|
|
runs-on: "windows-latest"
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
lfs: true
|
|
- name: Build
|
|
run: |
|
|
.\Development\Scripts\Windows\CallBuildTool.bat -build -log -arch=x64 -platform=Windows -configuration=Release -buildtargets=FlaxGame
|