diff --git a/.travis.yml b/.travis.yml index f503fa3e..65991b37 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,17 +4,12 @@ sudo: false matrix: include: - os: linux - go: "1.9.x" + go: "1.10.x" env: RESTIC_TEST_FUSE=0 RESTIC_TEST_CLOUD_BACKENDS=0 RESTIC_BUILD_SOLARIS=0 - # only run fuse and cloud backends tests on Travis for the latest Go on Linux - os: linux - go: "1.10.x" - sudo: true - - - os: osx - go: "1.10.x" - env: RESTIC_TEST_FUSE=0 RESTIC_TEST_CLOUD_BACKENDS=0 + go: "1.11beta2" + env: RESTIC_TEST_FUSE=0 RESTIC_TEST_CLOUD_BACKENDS=0 RESTIC_BUILD_SOLARIS=0 branches: only: diff --git a/run_integration_tests.go b/run_integration_tests.go index e2d8f426..d28e0e33 100644 --- a/run_integration_tests.go +++ b/run_integration_tests.go @@ -246,7 +246,7 @@ func (env *TravisEnvironment) RunTests() error { } // run the build script - if err := run("go", "run", "build.go"); err != nil { + if err := run("go", "run", "build.go", "-v", "-T"); err != nil { return err }