Skip to content

Commit

Permalink
:octocat: run Firebird on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
codemasher committed Aug 25, 2024
1 parent b814f11 commit 394ed6a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
20 changes: 9 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,18 +130,16 @@ jobs:
- name: "Create MySQL test database"
run: mysql --user="root" --host="127.0.0.1" -e "CREATE DATABASE dbtest character set UTF8mb4 collate utf8mb4_bin;"

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

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

# - name: "Install MSSQL Server (Linux)"
# if: ${{ runner.os == 'Linux' }}
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
</coverage>
<groups>
<exclude>
<group>firebird</group>
<group>mssql</group>
<!--
<group>firebird</group>
<group>mysql</group>
<group>pgsql</group>
<group>sqlite</group>
Expand Down

0 comments on commit 394ed6a

Please sign in to comment.