forked from fluentmigrator/fluentmigrator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
13 lines (11 loc) · 675 Bytes
/
Copy path.travis.yml
File metadata and controls
13 lines (11 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
language: c
install:
- sudo apt-get install mono-devel mono-gmcs nunit-console libfbembed2.5
script:
- xbuild CI.proj
- sudo cp /var/lib/firebird/2.5/system/default-security2.fdb /var/lib/firebird/2.5/system/security2.fdb
- sudo chmod a+rw /var/lib/firebird/2.5/system/security2.fdb
- dpkg -L libfbembed2.5
- for f in $(dpkg -L libfbembed2.5 | grep libfbembed.so); do cp $f ./src/FluentMigrator.Tests/bin/Debug; done
- for f in $(dpkg -L libfbembed2.5 | grep libfbembed.so); do cp $f ./src/FluentMigrator.Tests/bin/Debug/libfbembed.so; done
- nunit-console ./src/FluentMigrator.Tests/bin/Debug/FluentMigrator.Tests.dll -exclude Integration,NotWorkingOnMono