f80ddf9358
* test captplanet in travis * add comparison between uploaded and downloaded file * test inline and remote files * move captplanet testing to bash script
19 lines
452 B
Bash
19 lines
452 B
Bash
set -x
|
|
|
|
mkdir -p $HOME/gopath-staging
|
|
cd $HOME/gopath-staging
|
|
git clone --recursive https://github.com/storj/storj-vendor.git .
|
|
./setup.sh
|
|
mkdir -p src/storj.io
|
|
mv $HOME/gopath/src/github.com/storj/storj src/storj.io
|
|
rm -rf $HOME/gopath
|
|
mv $HOME/gopath{-staging,}
|
|
export TRAVIS_BUILD_DIR=$HOME/gopath/src/storj.io/storj
|
|
cd $TRAVIS_BUILD_DIR
|
|
|
|
virtualenv my_py3 --python=/usr/bin/python3.4
|
|
source my_py3/bin/activate
|
|
pip install --upgrade awscli
|
|
|
|
set +x
|