Skip to content

Commit

Permalink
πŸ’š Set correct LD_LIBRARY_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas2D committed Oct 29, 2023
1 parent cb002b8 commit 28a64d4
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ jobs:

- name: Install Firebird
run: |
sudo apt-get install libtommath1 libncurses5
sudo apt-get install libtommath1 libncurses5 musl-dev gcc
sudo ln -sf /usr/lib/x86_64-linux-gnu/libtommath.so.1 /usr/lib/x86_64-linux-gnu/libtommath.so.0
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)
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-x86_64.pkg "https://github.com/FirebirdSQL/firebird/releases/download/v3.0.10/Firebird-3.0.10-33601-x86_64.pkg"
sudo installer -verbose -pkg "Firebird-3.0.10-33601-x86_64.pkg" -target /
sudo usermod -a -G firebird `whoami`
echo 'WireCrypt = Enabled' | sudo tee -a /opt/firebird/firebird.conf > /dev/null
echo 'WireCrypt = Enabled' | sudo tee -a /etc/firebird/3.0/firebird.conf > /dev/null
sudo killall firebird
sudo systemctl start firebird-superserver.service
sudo chown root:firebird /opt/firebird/SYSDBA.password
Expand All @@ -51,5 +51,6 @@ jobs:
sudo mkdir coverage
sudo chown -R firebird:firebird coverage
sudo chmod -R 777 coverage
export LD_LIBRARY_PATH=/usr/lib64
sg firebird -c "yarn global add env-cmd; env-cmd -f /opt/firebird/SYSDBA.password yarn test"
bash <(curl -s https://codecov.io/bash)

0 comments on commit 28a64d4

Please sign in to comment.