GiteaCI #1

Merged
rboullard merged 14 commits from GiteaCI into Development 2026-01-28 14:29:12 +00:00
Showing only changes of commit bdaf368138 - Show all commits

View File

@@ -17,8 +17,8 @@ jobs:
image: git.romainboullard.com/bigfootdev/linuxbigfootbuilder:main
strategy:
matrix:
build_type: [Debug, RelWithDebInfo, Release]
unity_build: [True, False]
build_type: ["Debug", "RelWithDebInfo", "Release"]
unity_build: ["True", "False"]
steps:
- name: Install Node.js
run: apt-get update && apt-get install -y nodejs
@@ -37,10 +37,10 @@ jobs:
cmake -S . -B ./build/${{ matrix.build_type }} --toolchain ./build/${{ matrix.build_type }}/generators/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -G "Ninja"
cmake --build build/${{ matrix.build_type }} --parallel $(nproc)
- name: Show ccache stats after
run: ccache --show-stats
- name: Test
run: |
cd ./build/${{ matrix.build_type }}
xvfb-run ctest . --output-on-failure
- name: Show ccache stats after
run: ccache --show-stats
xvfb-run ctest . --output-on-failure