-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
132 changed files
with
1,460 additions
and
1,007 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,10 +18,10 @@ jobs: | |
ports: [ 8563 ] | ||
options: --privileged | ||
firebird: | ||
image: jacobalberty/firebird:latest | ||
image: ghcr.io/fdcastel/firebird:latest | ||
ports: [ 3050 ] | ||
env: | ||
ISC_PASSWORD: nix | ||
FIREBIRD_ROOT_PASSWORD: nix | ||
FIREBIRD_DATABASE: sqitchtest.db | ||
mysql: | ||
image: mysql:latest | ||
|
@@ -44,9 +44,9 @@ jobs: | |
image: vertica/vertica-ce:latest | ||
ports: [ 5433 ] | ||
steps: | ||
# https://github.com/orgs/community/discussions/25678#discussioncomment-5242449 | ||
# https://github.com/orgs/community/discussions/25678#discussioncomment-9017167 | ||
- name: Free Disk Space | ||
run: rm -rf /opt/hostedtoolcache | ||
run: find /opt -maxdepth 1 -mindepth 1 '!' -path ./containerd '!' -path ./actionarchivecache '!' -path ./runner '!' -path ./runner-cache -exec rm -rf '{}' ';' | ||
- name: Start CockroachDB | ||
run: docker run -d -p 26257:26257 cockroachdb/cockroach:latest start-single-node --insecure | ||
- uses: actions/checkout@v4 | ||
|
@@ -75,15 +75,15 @@ jobs: | |
.github/ubuntu/snowflake.sh | ||
.github/ubuntu/vertica.sh | ||
- run: cpm install --verbose --show-build-log-on-failure --no-test --with-recommends --cpanfile dist/cpanfile | ||
- run: cpm install --verbose --show-build-log-on-failure --no-test --with-recommends DBI DBD::ODBC DBD::Firebird DBD::Oracle DBD::mysql DBD::Pg Devel::Cover Devel::Cover::Report::Coveralls | ||
- run: cpm install --verbose --show-build-log-on-failure --no-test --with-recommends DBI DBD::ODBC DBD::Firebird DBD::Oracle DBD::MariaDB DBD::Pg Devel::Cover Devel::Cover::Report::Coveralls | ||
- name: Run Tests | ||
env: | ||
PERL5LIB: "${{ github.workspace }}/local/lib/perl5" | ||
HARNESS_PERL_SWITCHES: -MDevel::Cover=-ignore,^(?:x?t|inc|bin|local)/ | ||
LIVE_EXASOL_REQUIRED: true | ||
SQITCH_TEST_EXASOL_URI: db:exasol://sys:[email protected]:${{ job.services.exasol.ports[8563] }}/?Driver=Exasol;SSLCertificate=SSL_VERIFY_NONE | ||
SQITCH_TEST_EXASOL_URI: db:exasol://sys:[email protected]:${{ job.services.exasol.ports[8563] }}/?Driver=Exasol;SSLCERTIFICATE=SSL_VERIFY_NONE | ||
LIVE_FIREBIRD_REQUIRED: true | ||
SQITCH_TEST_FIREBIRD_URI: db:firebird://sysdba:[email protected]:${{ job.services.firebird.ports[3050] }}//firebird/data/sqitchtest.db | ||
SQITCH_TEST_FIREBIRD_URI: db:firebird://sysdba:[email protected]:${{ job.services.firebird.ports[3050] }}//var/lib/firebird/data/sqitchtest.db | ||
LIVE_MYSQL_REQUIRED: true | ||
SQITCH_TEST_MYSQL_URI: "db:mysql://[email protected]:${{ job.services.mysql.ports[3306] }}/information_schema" | ||
LIVE_ORACLE_REQUIRED: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
Exasol: | ||
strategy: | ||
matrix: | ||
exasol: ['7.1', '7.0'] | ||
exasol: ['8', '7.1', '7.0'] | ||
name: ☀️ Exasol ${{ matrix.exasol }} | ||
runs-on: ubuntu-latest | ||
services: | ||
|
@@ -38,5 +38,5 @@ jobs: | |
env: | ||
PERL5LIB: "${{ github.workspace }}/local/lib/perl5" | ||
LIVE_EXASOL_REQUIRED: true | ||
SQITCH_TEST_EXASOL_URI: db:exasol://sys:[email protected]:${{ job.services.exasol.ports[8563] }}/?Driver=Exasol;SSLCertificate=SSL_VERIFY_NONE | ||
SQITCH_TEST_EXASOL_URI: db:exasol://sys:[email protected]:${{ job.services.exasol.ports[8563] }}/?Driver=Exasol;SSLCERTIFICATE=SSL_VERIFY_NONE | ||
run: prove -lvr t/exasol.t |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,21 +12,23 @@ jobs: | |
strategy: | ||
matrix: | ||
include: | ||
- { version: '4.0' } | ||
- { version: '3.0' } | ||
- { version: '2.5-ss' } | ||
- { version: '2.5-sc' } | ||
- { version: '5', image: ghcr.io/fdcastel/firebird, dir: /var/lib/firebird/data } | ||
- { version: '4', image: ghcr.io/fdcastel/firebird, dir: /var/lib/firebird/data } | ||
- { version: '3', image: ghcr.io/fdcastel/firebird, dir: /var/lib/firebird/data } | ||
- { version: '2.5-ss', image: jacobalberty/firebird, dir: /firebird/data } # deprecated | ||
- { version: '2.5-sc', image: jacobalberty/firebird, dir: /firebird/data } # deprecated | ||
name: 🔥 Firebird ${{ matrix.version }} | ||
runs-on: ubuntu-latest | ||
services: | ||
# Run the Firebird service in a container we can connect to. Means that the | ||
# CLI and libraries DBD::firebird use are static to the version on the runner | ||
# machine. | ||
firebird: | ||
image: jacobalberty/firebird:${{ matrix.version }} | ||
image: ${{ matrix.image }}:${{ matrix.version }} | ||
ports: [ 3050 ] | ||
env: | ||
ISC_PASSWORD: nix | ||
ISC_PASSWORD: nix # for jacobalberty/firebird only | ||
FIREBIRD_ROOT_PASSWORD: nix | ||
FIREBIRD_DATABASE: sqitchtest.db | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -47,5 +49,5 @@ jobs: | |
env: | ||
PERL5LIB: "${{ github.workspace }}/local/lib/perl5" | ||
LIVE_FIREBIRD_REQUIRED: true | ||
SQITCH_TEST_FIREBIRD_URI: db:firebird://sysdba:[email protected]:${{ job.services.firebird.ports[3050] }}//firebird/data/sqitchtest.db | ||
SQITCH_TEST_FIREBIRD_URI: db:firebird://sysdba:[email protected]:${{ job.services.firebird.ports[3050] }}/${{ matrix.dir }}/sqitchtest.db | ||
run: prove -lvr t/firebird.t |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.