logrus/travis/install.sh

12 lines
237 B
Bash
Raw Normal View History

#!/bin/bash
set -e
2019-10-13 23:51:57 +00:00
if [[ "$TRAVIS_GO_VERSION" =~ ^1\.12\. ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
git clone https://github.com/dgsb/gox.git /tmp/gox
pushd /tmp/gox
git checkout new_master
go build ./
popd
fi