From fc1f93ee45d8988f195872e1a565222de07b8980 Mon Sep 17 00:00:00 2001 From: a-masterov <72613290+a-masterov@users.noreply.github.com> Date: Thu, 12 Dec 2024 17:35:18 +0100 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8e4f73c..4928bc0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,14 +12,15 @@ jobs: pg_version: [14, 15, 16] arch: [x64, arm64] build_type: [debug, release] - lfc_state: [false,true] + lfc_state: [with-lfc,without-lfc] steps: - name: Show vars + continue-on-error: ${{ matrix.lfc_state == "with-lfc" && matrix.build-type == 'debug' }} run: | echo pg_version: $PG_VERSION echo build_type: $BUILD_TYPE echo lfc: $LFC_STATE - if [ $LFC_STATE == true ] && [ $BUILD_TYPE == debug ]; then + if [ $LFC_STATE == with-lfc ] && [ $BUILD_TYPE == debug ]; then exit 1 fi env: