Skip to content

Commit

Permalink
πŸ’š Run tests against Firebird V4 instead of V3
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas2D committed Oct 30, 2023
1 parent 823ad93 commit 2efff44
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install dependencies
uses: borales/actions-yarn@v3
with:
cmd: install --frozen-lockfile --production=false
cmd: install --production=false

- name: Build
uses: borales/actions-yarn@v3
Expand All @@ -31,16 +31,13 @@ jobs:

- name: Install Firebird
run: |
sudo apt-get install libtommath1 libncurses5 musl-dev gcc
sudo apt-get install libtommath1 libncurses5 musl-dev gcc build-essential
sudo ln -sf /usr/lib/x86_64-linux-gnu/libtommath.so.1 /usr/lib/x86_64-linux-gnu/libtommath.so.0
sudo ln -s /usr/lib/x86_64-linux-musl/libc.so /lib/libc.musl-x86_64.so.1
wget -nv -O Firebird-3.0.10.33601-0.amd64.tar.gz "https://github.com/FirebirdSQL/firebird/releases/download/v3.0.10/Firebird-3.0.10.33601-0.amd64.tar.gz"
tar xzvf Firebird-3.0.10.33601-0.amd64.tar.gz
(cd Firebird-3.0.10.33601-0.amd64; sudo ./install.sh -silent)
wget -nv -O Firebird-4.0.2.2816-0.amd64.tar.gz "https://github.com/FirebirdSQL/firebird/releases/download/v4.0.2/Firebird-4.0.2.2816-0.amd64.tar.gz"
tar xzvf Firebird-4.0.2.2816-0.amd64.tar.gz
(cd Firebird-4.0.2.2816-0.amd64; sudo ./install.sh -silent)
sudo usermod -a -G firebird `whoami`
echo 'WireCrypt = Enabled' | sudo tee -a /opt/firebird/firebird.conf > /dev/null
sudo killall firebird
sudo systemctl start firebird-superserver.service
sudo chown root:firebird /opt/firebird/SYSDBA.password
sudo chmod 440 /opt/firebird/SYSDBA.password
sudo chown -R firebird:firebird .
Expand Down

0 comments on commit 2efff44

Please sign in to comment.