From a3e25d521c602f0c530812fcaf1513bec1ea85ac Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Mon, 2 Sep 2019 11:13:47 +0200 Subject: [PATCH] [ci] fs-backend build matrix for Linux/Ubuntu Build with and without the filesystem-backend on Linux (Ubuntu). --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3713b99dc..68dbe18e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,6 +4,9 @@ jobs: build-ub1804: name: Build on Ubuntu 18.04 runs-on: ubuntu-18.04 + strategy: + matrix: + fs-backend: [ 'FS_BACKEND=ON', 'FS_BACKEND=OFF' ] steps: - name: Install dependecies run: | @@ -33,7 +36,7 @@ jobs: run: | mkdir build pushd build - cmake -DBUILD_FS_BACKEND=OFF -DBUILD_COVERAGE=ON .. + cmake -DBUILD_${{ matrix.fs-backend }} -DBUILD_COVERAGE=ON .. make make test popd