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: