From e725f1eefe23161b68996ec06b1bc4de7b4eb9dc Mon Sep 17 00:00:00 2001 From: Rishabh Tanwar Date: Tue, 4 Mar 2025 12:31:19 +0000 Subject: [PATCH] Fix version condition Signed-off-by: Rishabh Tanwar --- .github/composite-actions/build-extensions/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/composite-actions/build-extensions/action.yml b/.github/composite-actions/build-extensions/action.yml index 17d5569382..feae180818 100644 --- a/.github/composite-actions/build-extensions/action.yml +++ b/.github/composite-actions/build-extensions/action.yml @@ -42,7 +42,7 @@ runs: make -j 4 && make install cd ../babelfishpg_tsql - if [[ "$engine_version" != 'source.latest' && "$engine_version" != 'target.latest' && "$engine_version" -ge 17.5 ]] + if [[ "$engine_version" != 'source.latest' && "$engine_version" != 'target.latest' && "$engine_version" -lt 17.5 ]] then export PG_CFLAGS='-fcommon -Wno-misleading-indentation' fi