diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 2563f45f0..000000000 --- a/.travis.yml +++ /dev/null @@ -1,58 +0,0 @@ -language: go -sudo: false - -matrix: - include: - - os: linux - go: "1.13.x" - env: RESTIC_TEST_FUSE=0 RESTIC_TEST_CLOUD_BACKENDS=0 - cache: - directories: - - $HOME/.cache/go-build - - $HOME/gopath/pkg/mod - - - os: linux - go: "1.14.x" - env: RESTIC_TEST_FUSE=0 RESTIC_TEST_CLOUD_BACKENDS=0 - cache: - directories: - - $HOME/.cache/go-build - - $HOME/gopath/pkg/mod - - # only run fuse and cloud backends tests on Travis for the latest Go on Linux - - os: linux - go: "1.15.x" - sudo: true - cache: - directories: - - $HOME/.cache/go-build - - $HOME/gopath/pkg/mod - - - os: osx - go: "1.15.x" - env: RESTIC_TEST_FUSE=0 RESTIC_TEST_CLOUD_BACKENDS=0 - cache: - directories: - - $HOME/Library/Caches/go-build - - $HOME/gopath/pkg/mod - -branches: - only: - - master - -notifications: - irc: - channels: - - "chat.freenode.net#restic" - on_success: change - on_failure: change - skip_join: true - -install: - - go version - - export GOBIN="$GOPATH/bin" - - export PATH="$PATH:$GOBIN" - - go env - -script: - - go run run_integration_tests.go diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index a6d6952b8..000000000 --- a/appveyor.yml +++ /dev/null @@ -1,32 +0,0 @@ -clone_folder: c:\restic - -environment: - GOPATH: c:\gopath - -branches: - only: - - master - -cache: - - '%LocalAppData%\go-build' - -init: - - ps: >- - $app = Get-WmiObject -Class Win32_Product -Filter "Vendor = 'http://golang.org'" - - if ($app) { - $app.Uninstall() - } - -install: - - rmdir c:\go /s /q - - appveyor DownloadFile https://dl.google.com/go/go1.15.2.windows-amd64.msi - - msiexec /i go1.15.2.windows-amd64.msi /q - - go version - - go env - - appveyor DownloadFile https://sourceforge.netcologne.de/project/gnuwin32/tar/1.13-1/tar-1.13-1-bin.zip -FileName tar.zip - - 7z x tar.zip bin/tar.exe - - set PATH=bin/;%PATH% - -build_script: - - go run run_integration_tests.go