From b84506ee6ef8120f47f2565aee502354fef19fa1 Mon Sep 17 00:00:00 2001 From: Fabio Barone Date: Mon, 18 May 2020 14:50:13 -0500 Subject: [PATCH] re-enable full build --- .ci/runscript_osx.sh | 4 ++-- .travis.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.ci/runscript_osx.sh b/.ci/runscript_osx.sh index 7c89351..eea2b41 100755 --- a/.ci/runscript_osx.sh +++ b/.ci/runscript_osx.sh @@ -2,8 +2,8 @@ set -ev -go get -d -v github.com/ava-labs/gecko/... +go get -d -t -v github.com/ava-labs/gecko/... cd $GOPATH/src/github.com/ava-labs/gecko -# ./scripts/build_test.sh +./scripts/build_test.sh ./scripts/build.sh diff --git a/.travis.yml b/.travis.yml index b69cab3..a919fa0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,8 @@ go: jobs: include: - #- os: linux - # dist: bionic + - os: linux + dist: bionic - os: osx osx_image: xcode11.4 services: @@ -22,7 +22,7 @@ before_install: - if [ "$TRAVIS_OS_NAME" = "linux" ]; then .ci/before_install_linux.sh; fi install: - - if [ "$TRAVIS_OS_NAME" = "linux" ]; then DOCKER_BUILDKIT=1 docker build --progress plain -t $DOCKERHUB_REPO:$COMMIT; fi + - if [ "$TRAVIS_OS_NAME" = "linux" ]; then DOCKER_BUILDKIT=1 docker build --progress plain -t $DOCKERHUB_REPO:$COMMIT . ; fi script: - if [ "$TRAVIS_OS_NAME" = "osx" ]; then .ci/runscript_osx.sh; fi