mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* Logs should support specifying region when using S3-compatible object store * Use aws-sdk-go client for s3 backed logstore * fixes vendor with aws-sdk-go dependencies
30 lines
320 B
YAML
30 lines
320 B
YAML
language: go
|
|
|
|
sudo: required
|
|
|
|
go:
|
|
- 1.5.x
|
|
- 1.6.x
|
|
- 1.7.x
|
|
- 1.8.x
|
|
- 1.9.x
|
|
- tip
|
|
|
|
# Use Go 1.5's vendoring experiment for 1.5 tests.
|
|
env:
|
|
- GO15VENDOREXPERIMENT=1
|
|
|
|
install:
|
|
- make get-deps
|
|
|
|
script:
|
|
- make unit-with-race-cover
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- go: tip
|
|
|
|
branches:
|
|
only:
|
|
- master
|