From a15e5efd017c2046668dbe39a52791008d1eeaa4 Mon Sep 17 00:00:00 2001 From: emeric Date: Sun, 20 Apr 2025 15:10:51 +0200 Subject: [PATCH] Added a unity build check --- .github/workflows/build-arch.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-arch.yml b/.github/workflows/build-arch.yml index d9fee967..3830701f 100644 --- a/.github/workflows/build-arch.yml +++ b/.github/workflows/build-arch.yml @@ -4,7 +4,8 @@ jobs: Build: strategy: matrix: - BUILD_TYPE: [Release, Debug] + LMS_BUILD_TYPE: [Release, Debug] + LMS_UNITY_BUILD: [ON, OFF] runs-on: ubuntu-latest steps: - name: Check Out Repo @@ -28,7 +29,9 @@ jobs: context: ./ file: ./Dockerfile-build-arch builder: ${{ steps.buildx.outputs.name }} - build-args: LMS_BUILD_TYPE=${{ matrix.BUILD_TYPE }} + build-args: | + LMS_BUILD_TYPE=${{ matrix.LMS_BUILD_TYPE }} + LMS_UNITY_BUILD=${{ matrix.LMS_UNITY_BUILD }} push: false cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache