File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,11 @@ services:
7
7
- postgresql
8
8
- docker
9
9
env :
10
+ - DB=SqlServer2008 CONNECTION_STRING="Server=localhost;initial catalog=nhibernate;User Id=sa;Password=P@ssw0rd;packet size=4096;"
11
+ - DB=PostgreSQL CONNECTION_STRING="Host=localhost;Port=5432;Username=postgres;Database=nhibernate;Enlist=true;"
12
+ - DB=Firebird
10
13
- DB=MySQL CONNECTION_STRING="Server=127.0.0.1;Uid=root;Database=nhibernate;Old Guids=True;"
14
+ - DB=SQLite
11
15
before_install :
12
16
- curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
13
17
- curl https://packages.microsoft.com/config/ubuntu/14.04/prod.list | sudo tee /etc/apt/sources.list.d/microsoft.list
@@ -22,8 +26,9 @@ before_install:
22
26
- |-
23
27
if [[ "$DB" == "Firebird" ]]
24
28
then
25
- sudo apt-get install -y libicu-dev libtommath-dev curl
26
- curl -L -O https://github.com/FirebirdSQL/firebird/releases/download/R3_0_5/Firebird-3.0.5.33220-0.amd64.tar.gz
29
+ sudo apt-get install -y libicu-dev libtommath-dev
30
+ sudo ln -s /usr/lib/x86_64-linux-gnu/libtommath.so.1 /usr/lib/x86_64-linux-gnu/libtommath.so.0
31
+ wget -q https://github.com/FirebirdSQL/firebird/releases/download/R3_0_5/Firebird-3.0.5.33220-0.amd64.tar.gz
27
32
tar xzvf Firebird-3.0.5.33220-0.amd64.tar.gz
28
33
pushd Firebird-3.0.5.33220-0.amd64
29
34
sudo ./install.sh -silent
You can’t perform that action at this time.
0 commit comments