Windows warnings fixes. There could be a slight semantic change in ho… #10
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 windows | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-program: | |
runs-on: windows-latest | |
steps: | |
# Step 1: Checkout the repository | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
# Step 2: Move to the parent directory and fetch dependencies | |
- name: Fetch dependencies | |
run: | | |
cd .. | |
mkdir lib | |
cd lib | |
pwd | |
dir | |
git clone https://github.com/razterizer/Core.git | |
git clone https://github.com/razterizer/Termin8or.git | |
# git clone https://github.com/razterizer/8Beat.git | |
# git clone https://github.com/razterizer/AudioLibSwitcher_OpenAL.git --recurse-submodules | |
# Step 3: Change to the correct directory and build | |
- name: Run build.bat | |
continue-on-error: false # Ensure errors are not bypassed | |
run: | | |
cd $env:GITHUB_WORKSPACE\SurgSim_Lite | |
./build.bat |