From 24874376c3891d5545b6ec70f5ec94c5f485f416 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Fri, 8 Jan 2021 23:00:08 +0100 Subject: [PATCH] Add initial build script for Windows editor and game --- .github/workflows/build_windows.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/build_windows.yml diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml new file mode 100644 index 000000000..da8866b70 --- /dev/null +++ b/.github/workflows/build_windows.yml @@ -0,0 +1,24 @@ +name: Build Windows +on: [push, pull_request] + +jobs: + + # Editor + editor-windows: + name: Editor (Windows, Development x64) + runs-on: "windows-latest" + steps: + - uses: actions/checkout@v2 + - 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: + - uses: actions/checkout@v2 + - name: Build + run: | + .\Development\Scripts\Windows\CallBuildTool.bat -build -log -arch=x64 -platform=Windows -configuration=Release -buildtargets=FlaxGame