-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
34 lines (28 loc) · 867 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Should work under travis and appveyor.
# https://github.com/joyent/node-ldapjs
# https://github.com/mozilla-services/mozilla-idp/blob/master/server/lib/ldapMock.js
# you asked...
language: csharp
mono: none
dotnet: 2.1.300
sudo: false
os:
- linux
- osx
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
- DOTNET_CLI_TELEMETRY_OPTOUT=1
script:
- cd Linq2Ldap.Core.Tests
- dotnet test Linq2Ldap.Core.Tests.csproj
#addons:
# apt:
# packages:
# - ldap-utils
# before_script:
# - mkdir /tmp/slapd
# - slapd -f LDAPData.IntegrationTest/slapd.conf -h ldap://localhost:3389 &
# - sleep 3
# - ldapadd -h localhost:3389 -D cn=admin,dc=example,dc=com -w test -f LDAPData.IntegrationTest/ldif_data/base.ldif
# - ldapadd -h localhost:3389 -D cn=admin,dc=example,dc=com -w test -f LDAPData.IntegrationTest/ldif_data/INITIAL_TESTDATA.ldif