Skip to content

Commit 394ed6a

Browse files
committed
:octocat: run Firebird on CI
1 parent b814f11 commit 394ed6a

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -130,18 +130,16 @@ jobs:
130130
- name: "Create MySQL test database"
131131
run: mysql --user="root" --host="127.0.0.1" -e "CREATE DATABASE dbtest character set UTF8mb4 collate utf8mb4_bin;"
132132

133-
# - name: "Install Firebird (Linux)"
134-
# if: ${{ runner.os == 'Linux' }}
135-
# run: |
136-
# sudo add-apt-repository ppa:mapopa/firebird3.0
137-
# sudo apt-get update
138-
# sudo apt-get install -y firebird2.5-superclassic
139-
# sudo cp ./config/firebird.conf /etc/firebird/2.5/firebird.conf
140-
# sudo service firebird2.5 restart
133+
- name: "Install Firebird (Linux/Docker)"
134+
if: ${{ runner.os == 'Linux' }}
135+
uses: juarezr/[email protected]
136+
with:
137+
version: 'v4'
138+
isc_password: 'masterkey'
141139

142-
# - name: "Install Firebird (Windows)"
143-
# if: ${{ runner.os == 'Windows' }}
144-
# run: choco install firebird --version=2.5.8 -params '/ClientAndDevTools'
140+
- name: "Install Firebird (Windows)"
141+
if: ${{ runner.os == 'Windows' }}
142+
run: choco install firebird --version=4.0.4 -params '/ClientAndDevTools'
145143

146144
# - name: "Install MSSQL Server (Linux)"
147145
# if: ${{ runner.os == 'Linux' }}

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
</coverage>
2525
<groups>
2626
<exclude>
27-
<group>firebird</group>
2827
<group>mssql</group>
2928
<!--
29+
<group>firebird</group>
3030
<group>mysql</group>
3131
<group>pgsql</group>
3232
<group>sqlite</group>

0 commit comments

Comments
 (0)