Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
Alexander Neumann
996012a85a Fix formatting for gofmt with Go 1.11 2018-08-01 23:56:11 +02:00
Alexander Neumann
aee25502d2 Try Go 1.11beta2 on Travis 2018-08-01 23:55:30 +02:00
3 changed files with 10 additions and 15 deletions

View file

@ -4,17 +4,12 @@ sudo: false
matrix: matrix:
include: include:
- os: linux - os: linux
go: "1.9.x" go: "1.10.x"
env: RESTIC_TEST_FUSE=0 RESTIC_TEST_CLOUD_BACKENDS=0 RESTIC_BUILD_SOLARIS=0 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 - os: linux
go: "1.10.x" go: "1.11beta2"
sudo: true env: RESTIC_TEST_FUSE=0 RESTIC_TEST_CLOUD_BACKENDS=0 RESTIC_BUILD_SOLARIS=0
- os: osx
go: "1.10.x"
env: RESTIC_TEST_FUSE=0 RESTIC_TEST_CLOUD_BACKENDS=0
branches: branches:
only: only:

View file

@ -246,7 +246,7 @@ func (env *TravisEnvironment) RunTests() error {
} }
// run the build script // 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 return err
} }