Revision 5586a5806e55e035c83d258d434c41176d5e23b5 authored by Gyu-Ho Lee on 09 June 2017, 17:43:34 UTC, committed by Gyu-Ho Lee on 09 June 2017, 17:43:34 UTC
Signed-off-by: Gyu-Ho Lee <gyuhox@gmail.com>
1 parent d267ca9
Raw File
.travis.yml
dist: trusty
language: go
go_import_path: github.com/coreos/etcd
sudo: false

go:
  - 1.7.5

notifications:
  on_success: never
  on_failure: never

env:
  matrix:
   - TARGET=amd64
   - TARGET=arm64
   - TARGET=arm
   - TARGET=386
   - TARGET=ppc64le

matrix:
  fast_finish: true
  allow_failures:
    - go: tip
  exclude:
  - go: tip
    env: TARGET=arm
  - go: tip
    env: TARGET=arm64
  - go: tip
    env: TARGET=386
  - go: tip
    env: TARGET=ppc64le

# disable godep restore override
install:
 - pushd cmd/etcd && go get -t -v ./... && popd

script:
 - >
    case "${TARGET}" in
      amd64)
        GOARCH=amd64 ./test
        ;;
      386)
        GOARCH=386 PASSES="build unit" ./test
        ;;
      *)
        # test building out of gopath
        GO_BUILD_FLAGS="-a -v" GOPATH="" GOARCH="${TARGET}" ./build
        ;;
    esac
back to top