Fix build errors and lock dep versions #93
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: CI | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v1 | |
- name: Build Solution | |
run: | | |
mkdir build && cd build | |
cmake .. | |
cmake --build . --config Release | |
- name: Copy Artifacts | |
run: | | |
mkdir artifacts | |
cp build/Release/DBGHELP.dll artifacts | |
cp build/external/subproject/lua544/Release/lua54.dll artifacts | |
cp config/LuaBackend.toml artifacts | |
- name: Upload DBGHELP | |
uses: actions/upload-artifact@v3 | |
with: | |
name: DBGHELP | |
path: artifacts |