Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
a-masterov authored Dec 12, 2024
1 parent 93eedbe commit fc1f93e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit fc1f93e

Please sign in to comment.