connect dll, use detours and better logs #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |