DungGine now supports framed mode. Created a variable framed_mode for… #72
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-demo: | |
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 .. | |
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: Install OpenAL | |
# - name: Install OpenAL | |
# run: sudo apt install libopenal-dev | |
# Step 3: Change to the correct directory and build | |
- name: Run build.bat | |
continue-on-error: false # Ensure errors are not bypassed | |
run: | | |
cd demo | |
.\build_demo.bat |