Pass correctly commands to docker command for travis

This commit is contained in:
Alexander Ivanov 2018-02-07 13:46:07 +02:00
parent e07fc0562d
commit 35e43fa32e
3 changed files with 4 additions and 7 deletions

View File

@ -5,4 +5,4 @@ before_install:
- docker pull yglukhov/nim-base
script:
- docker run yglukhov/nim-base nim --version
- docker run -v "$(pwd):/project" -w /project yglukhov/nim-base nimble install -y && ./tests/build_travis.sh && ./tests/test.sh
- docker run -v "$(pwd):/project" -w /project yglukhov/nim-base /bin/bash -c "nimble install -y && ./tests/build_test.sh && ./tests/test.sh"

View File

@ -1,5 +1,7 @@
# Nimbus
An Ethereum 2.0 Sharding Client for Resource-Restricted Devices.
An Ethereum 2.0 Sharding Client for Resource-Restricted Devices
Rationale
https://docs.google.com/document/d/14u65XVNLOd83cq3t7wNC9UPweZ6kPWvmXwRTWWn0diQ/edit#

View File

@ -1,5 +0,0 @@
#!/bin/bash
export PATH=$PATH:/nim/bin/nim
"$(dirname -- "$0")/build_test.sh"