We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65a1eec commit c671263Copy full SHA for c671263
.travis.yml
@@ -16,6 +16,7 @@ services:
16
- docker
17
18
before_script:
19
+ - .travis/$TRAVIS_OS_NAME/init.sh
20
- dotnet restore
21
- docker -v
22
- docker-compose down
@@ -28,4 +29,4 @@ before_script:
28
29
script:
30
- dotnet build -f netcoreapp1.0 src/tarantool.client
31
- dotnet test tests/tarantool.client.tests
- - curl --fail http://localhost:5000
32
+ - curl -o /dev/null --fail http://localhost:5000
.travis/linux/init.sh
@@ -0,0 +1 @@
1
+#!/usr/bin/env bash
.travis/osx/init.sh
@@ -0,0 +1,4 @@
2
+
3
+brew tap caskroom/cask
4
+brew cask install docker
0 commit comments