From d9d86300ff5f0d0cbcdecf95f6654277b8013d33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=AD=A6=E7=94=B0=20=E6=86=B2=E5=A4=AA=E9=83=8E?= Date: Wed, 15 Nov 2023 11:57:15 +0000 Subject: [PATCH] Enable `pdo-firebird` Testing in Linux CI Environments --- .github/actions/test-linux/action.yml | 4 ++++ .github/workflows/push.yml | 9 +++++++++ 2 files changed, 13 insertions(+) diff --git a/.github/actions/test-linux/action.yml b/.github/actions/test-linux/action.yml index dd53d4db3f295..0c623cd710c48 100644 --- a/.github/actions/test-linux/action.yml +++ b/.github/actions/test-linux/action.yml @@ -35,6 +35,10 @@ runs: if [[ -z "$PDO_PGSQL_TEST_DSN" ]]; then export PDO_PGSQL_TEST_DSN="pgsql:host=localhost port=5432 dbname=test user=postgres password=postgres" fi + export PDO_FIREBIRD_TEST_DATABASE=test.fdb + export PDO_FIREBIRD_TEST_DSN=firebird:dbname=localhost:test.fdb + export PDO_FIREBIRD_TEST_PASS=test + export PDO_FIREBIRD_TEST_USER=test export ODBC_TEST_USER="odbc_test" export ODBC_TEST_PASS="password" export ODBC_TEST_DSN="Driver={ODBC Driver 17 for SQL Server};Server=127.0.0.1;Database=odbc;uid=$ODBC_TEST_USER;pwd=$ODBC_TEST_PASS" diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 783e4f4500ab3..61c425fe93b4f 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -61,6 +61,15 @@ jobs: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres POSTGRES_DB: test + firebird: + image: jacobalberty/firebird + ports: + - 3050:3050 + env: + ISC_PASSWORD: test + FIREBIRD_DATABASE: test.fdb + FIREBIRD_USER: test + FIREBIRD_PASSWORD: test strategy: fail-fast: false matrix: