https://github.com/google/cayley
Revision d2cbff611b8fd2fe1946b79918ed25e083a7912d authored by Iddan Aaronsohn on 27 December 2019, 16:17:06 UTC, committed by Denys Smirnov on 18 January 2020, 18:27:28 UTC
1 parent 323d5c3
Raw File
Tip revision: d2cbff611b8fd2fe1946b79918ed25e083a7912d authored by Iddan Aaronsohn on 27 December 2019, 16:17:06 UTC
Pass voc to all steps and create context step
Tip revision: d2cbff6
.travis.yml
language: go

addons:
  apt:
    packages:
      - snapd

go:
  - "1.13.x"
  - tip

matrix:
  allow_failures:
    - go: tip

install:
  - sudo snap install snapcraft --classic
  - go mod download
  - go run cmd/download_ui/download_ui.go

cache:
  directories:
    - $GOPATH/pkg/mod

script:
  - CGO_ENABLED=0 go build -o /tmp/cayley ./cmd/cayley
  - go run github.com/gobuffalo/packr/v2/packr2
  - git checkout -- ./packrd/dummy.go
  - go test -v ./...

after_success:
  - test -n "$TRAVIS_TAG" && echo "$SNAP_TOKEN" > /tmp/snap.login && snapcraft login --with /tmp/snap.login

deploy:
  - provider: script
    skip_cleanup: true
    script: git status && curl -sL https://git.io/goreleaser | bash
    on:
      tags: true
      condition: $TRAVIS_OS_NAME = linux && $TRAVIS_GO_VERSION =~ ^1\.13
back to top