Add CI for builds #1

Manually merged
MichaelBradley merged 15 commits from actions into main 2025-02-23 13:32:04 -05:00
Showing only changes of commit 0d79d17738 - Show all commits

View file

@ -13,11 +13,11 @@ jobs:
- name: Install the toolchain - name: Install the toolchain
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get -y install cmake sudo apt-get -y install cmake libglm-dev
- name: Set up the build environment - name: Set up the build environment
run: cmake . run: cmake -S . -B cmake-build-debug -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
- name: Compile the code - name: Compile the code
run: cmake --build . run: cmake --build cmake-build-debug
- name: Save executable - name: Save executable
uses: forgejo/upload-artifact@v4 uses: forgejo/upload-artifact@v4
with: with: