Skip to content

Build eBASICMasterJr #2

Build eBASICMasterJr

Build eBASICMasterJr #2

Workflow file for this run

name: Build eBASICMasterJr
on:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: microsoft/setup-msbuild@v2
- name: Build
shell: pwsh
run: |
msbuild 'vc++2026\bmjr.vcxproj' /p:Configuration=Release /p:Platform=x64 /m
- name: Collect the binaries
shell: pwsh
run: |
New-Item -ItemType Directory out | Out-Null
Get-ChildItem -Recurse -Include *.exe |
Where-Object { $_.FullName -notmatch '\\obj\\' } |
Copy-Item -Destination out
Get-ChildItem out | ForEach-Object { $_.Name }
- uses: actions/upload-artifact@v4
with:
name: eBASICMasterJr
path: out