From 0f3e997253bba4be5595d338f931710c7110816d Mon Sep 17 00:00:00 2001 From: Yuce Tekol Date: Tue, 3 Apr 2018 16:42:51 +0300 Subject: [PATCH] Updated travis CI config --- .travis.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 928837a..6142b24 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,13 @@ language: go go: - - 1.8 - 1.9 + - 1.10 - master sudo: required group: deprecated-2017Q2 before_install: - openssl req -x509 -newkey rsa:4096 -keyout test.pilosa.local.key -out test.pilosa.local.crt -days 3650 -nodes -subj "/C=US/ST=Texas/L=Austin/O=Pilosa/OU=Com/CN=test.pilosa.local" - wget https://s3.amazonaws.com/build.pilosa.com/pilosa-master-linux-amd64.tar.gz && tar xf pilosa-master-linux-amd64.tar.gz - - wget https://s3.amazonaws.com/build.pilosa.com/pilosa-cluster-resize-linux-amd64.tar.gz && tar xf pilosa-cluster-resize-linux-amd64.tar.gz - go get github.com/mattn/goveralls - go get -u github.com/golang/dep/cmd/dep - dep ensure @@ -16,8 +15,5 @@ script: - ./pilosa-master-linux-amd64/pilosa server --metric.diagnostics=false -b https://:20101 -d https_data --tls.skip-verify --tls.certificate test.pilosa.local.crt --tls.key test.pilosa.local.key --cluster.type static & - PILOSA_BIND="https://:20101" make test-all - pkill pilosa - - ./pilosa-cluster-resize-linux-amd64/pilosa server --metric.diagnostics=false -b http://:30101 -d cluster_resize_data --cluster.disabled & - - PILOSA_BIND="http://:30101" LEGACY_MODE_OFF=true make test-all - - pkill pilosa - ./pilosa-master-linux-amd64/pilosa server --metric.diagnostics=false -d http_data & - $HOME/gopath/bin/goveralls -service=travis-ci -ignore "gopilosa_pbuf/public.pb.go" -flags="-tags=integration fullcoverage"