ipfs-cluster/.travis.yml
2019-12-16 15:13:07 +01:00

51 lines
1.1 KiB
YAML

language: go
os:
- linux
# - osx
go:
- '1.13.x'
services:
- docker
sudo: required
cache:
directories:
- $GOPATH/pkg/mod
- $HOME/.cache/go-build
install: true
env:
- GO111MODULE=on
jobs:
include:
- stage: "Testing stage"
name: "Tests (all modules) + Coverage"
script:
- travis_wait go test -v -timeout 15m -coverprofile=coverage.txt -covermode=atomic ./...
after_success:
- bash <(curl -s https://codecov.io/bash)
- name: "Main Tests with raft consensus"
script:
- travis_wait go test -v -timeout 15m -failfast -consensus raft .
- name: "Golint, go vet, binary builds"
script:
- go get -u golang.org/x/lint/golint
- make check
- make service
- make ctl
- make follow
- name: "Docker and Compose build"
script:
- make docker
- make docker-compose
- name: "Sharness"
script:
- sudo apt-get update
- sudo apt-get install -y jq curl
- make install
- docker pull ipfs/go-ipfs
- make test_sharness && make clean_sharness