Skip to content

Commit c671263

Browse files
committed
Fixing build
1 parent 65a1eec commit c671263

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ services:
1616
- docker
1717

1818
before_script:
19+
- .travis/$TRAVIS_OS_NAME/init.sh
1920
- dotnet restore
2021
- docker -v
2122
- docker-compose down
@@ -28,4 +29,4 @@ before_script:
2829
script:
2930
- dotnet build -f netcoreapp1.0 src/tarantool.client
3031
- dotnet test tests/tarantool.client.tests
31-
- curl --fail http://localhost:5000
32+
- curl -o /dev/null --fail http://localhost:5000

.travis/linux/init.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#!/usr/bin/env bash

.travis/osx/init.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env bash
2+
3+
brew tap caskroom/cask
4+
brew cask install docker

0 commit comments

Comments
 (0)