Skip to content

wip t8 gsc debugger #20

wip t8 gsc debugger

wip t8 gsc debugger #20

Workflow file for this run

name: Build
on:
push:
paths:
- "src/**"
- "premake5.lua"
- ".github/workflows/build.yml"
pull_request:
paths:
- "src/**"
workflow_dispatch:
jobs:
build:
name: ACTS (Windows)
runs-on: windows-latest
strategy:
matrix:
cfg:
- Release
- Debug
platform:
- x64
steps:
- uses: actions/[email protected]
with:
submodules: true
- name: Add msbuild to PATH
uses: microsoft/[email protected]
with:
msbuild-architecture: x64
- name: Setup premake5
uses: abel0b/[email protected]
with:
version: "5.0.0-beta2"
- name: Create project
shell: pwsh
run: scripts/setup.ps1
- name: Build project
shell: pwsh
run: |
(ls deps).FullName
(ls build).FullName
msbuild build/AtianCodTools.sln /p:Configuration=${{matrix.cfg}} /p:Platform=${{matrix.platform}}
# - name: Upload files
# uses: actions/upload-artifact@v1
# if: matrix.cfg == 'Release'
# with:
# name: "Windows"
# path: "build/bin/acts.exe"