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 072b14a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ 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
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)
Expand All @@ -51,5 +52,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 072b14a

Please sign in to comment.