File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -311,6 +311,9 @@ jobs:
311
311
export GETTEXT_CFLAGS="-I$(brew --prefix gettext)/include"
312
312
export GETTEXT_LIBS="-L$(brew --prefix gettext)/lib -lintl"
313
313
314
+ # Set C++17 flag for ICU4C compatibility
315
+ export CXXFLAGS="$CXXFLAGS -std=c++17"
316
+
314
317
# Try to find readline.h and set the path explicitly
315
318
READLINE_PATH=$(brew --prefix readline)
316
319
if [[ -f "$READLINE_PATH/include/readline/readline.h" ]]; then
@@ -322,6 +325,7 @@ jobs:
322
325
fi
323
326
324
327
# Check if PostgreSQL is available and working
328
+ echo "Debug: POSTGRESQL_AVAILABLE=$POSTGRESQL_AVAILABLE"
325
329
if [[ "$POSTGRESQL_AVAILABLE" == "true" ]]; then
326
330
echo "PostgreSQL found and working"
327
331
else
@@ -440,7 +444,7 @@ jobs:
440
444
retention-days : 90
441
445
442
446
- name : Upload to GitHub Container Registry
443
- if : github.event_name == 'push' && github.ref == 'refs/heads/main'
447
+ if : github.event_name == 'push' && github.ref == 'refs/heads/main' && matrix.platform == 'linux'
444
448
run : |
445
449
echo ${{ secrets.GITHUB_TOKEN }} | docker login ${{ env.REGISTRY_URL }} -u ${{ env.REGISTRY_USERNAME }} --password-stdin
446
450
You can’t perform that action at this time.
0 commit comments