mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-23 12:40:19 +01:00
82493d6dcb
* GDrive provider support * More reliable basedir ownership * Fix mimetype
18 lines
533 B
YAML
18 lines
533 B
YAML
sudo: false
|
|
|
|
language: go
|
|
|
|
go:
|
|
- 1.6.x
|
|
- 1.7.x
|
|
- 1.8.x
|
|
- 1.9.x
|
|
|
|
before_install:
|
|
- openssl aes-256-cbc -K $encrypted_6c6ebd86ce52_key -iv $encrypted_6c6ebd86ce52_iv -in key.json.enc -out key.json -d
|
|
|
|
install:
|
|
- go get -v -t -p 1 google.golang.org/api/...
|
|
|
|
script:
|
|
- GCLOUD_TESTS_GOLANG_PROJECT_ID="dulcet-port-762" GCLOUD_TESTS_GOLANG_DESTRUCTIVE_TEST_BUCKET_NAME="dulcet-port-762-api-go-client-storage-integration-test" GCLOUD_TESTS_GOLANG_KEY="$(pwd)/key.json" go test -v -tags=integration google.golang.org/api/...
|