Implementing cleo_arg_count opcode #65
Workflow file for this run
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: CLEO 5 Test Build | |
on: | |
push: | |
paths-ignore: | |
- ".github/*" | |
- "*.md" | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v1 | |
- name: Build Projects | |
shell: cmd | |
run: | | |
set PLUGIN_SDK_DIR=%GITHUB_WORKSPACE%\third-party\plugin-sdk | |
msbuild -m CLEO5.sln /property:Configuration=Release /property:Platform=GTASA | |
msbuild -m cleo_plugins/CLEO_Plugins.sln /property:Configuration=Release /property:Platform=x86 | |
- name: Prepare Files | |
id: prepare_archive | |
shell: cmd | |
run: | | |
@REM create output directory | |
mkdir .output\Release\cleo | |
mkdir .output\Release\cleo\cleo_plugins | |
@REM copy files | |
copy third-party\bass\bass.dll .output\Release\bass.dll | |
copy source\cleo_config.ini .output\Release\cleo\.cleo_config.ini | |
copy cleo_plugins\.output\*.cleo .output\Release\cleo\cleo_plugins | |
copy cleo_plugins\.output\*.ini .output\Release\cleo\cleo_plugins | |
- uses: actions/upload-artifact@v4 | |
with: | |
compression-level: 0 | |
name: SA.CLEO5 | |
path: | | |
.output\Release\* | |
!.output\Release\*.pdb | |
!.output\Release\*.lib | |
!.output\Release\*.exp |