mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
87c77727e4
* lib/backup/s3remote: update AWS SDK to v2 * Update lib/backup/s3remote/s3.go Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com> * lib/backup/s3remote: refactor error handling Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com>
31 lines
415 B
YAML
31 lines
415 B
YAML
language: go
|
|
sudo: true
|
|
dist: bionic
|
|
|
|
branches:
|
|
only:
|
|
- main
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
# Travis doesn't work with windows and Go tip
|
|
#- windows
|
|
|
|
go:
|
|
- tip
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- go: tip
|
|
|
|
before_install:
|
|
- if [ "$TRAVIS_OS_NAME" = "windows" ]; then choco install make; fi
|
|
- (cd /tmp/; go get golang.org/x/lint/golint)
|
|
|
|
env:
|
|
- EACHMODULE_CONCURRENCY=4
|
|
|
|
script:
|
|
- make ci-test-no-generate;
|
|
|