From 57cd49dcb586891b74096ea37598597153fd04ab Mon Sep 17 00:00:00 2001 From: Albert Kalchmair Date: Wed, 1 May 2024 20:13:52 +0200 Subject: [PATCH] Update build.yml Added configuration for Ubuntu 20.04 build --- .github/workflows/build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d11d761d..08595fd2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,10 @@ jobs: - os: ubuntu-22.04 package: RPM - + + - os: ubuntu-20.04 + package: DEB + configure_args: "-DCPACK_SYSTEM_NAME=Ubuntu-20.04" steps: - name: Setup Windows/MSVC if: runner.os == 'Windows' @@ -48,7 +51,7 @@ jobs: submodules: recursive - name: Configure CMake - run: cmake -B ${{github.workspace}}/build -DCMAKE_INSTALL_PREFIX=dist + run: cmake -B ${{github.workspace}}/build -DCMAKE_INSTALL_PREFIX=dist ${{matrix.config.configure_args}} - name: Build run: cmake --build ${{github.workspace}}/build --config Release - name: Install