summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: ae67b11960bec64b615d7daed492da3e33ebd18e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
language: go
go:
    - 1.11.x
go_import_path: github.com/42wim/matterbridge

# we have everything vendored
install: true

git:
  depth: 200

env:
  global:
    - GOOS=linux GOARCH=amd64
    - GO111MODULE=on
    - GOLANGCI_VERSION="v1.14.0"

matrix:
  # It's ok if our code fails on unstable development versions of Go.
  allow_failures:
    - go: tip
  # Don't wait for tip tests to finish. Mark the test run green if the
  # tests pass on the stable versions of Go.
  fast_finish: true

notifications:
      email: false

before_script:
  # Get version info from tags.
  - MY_VERSION="$(git describe --tags)"
  # Retrieve the golangci-lint linter binary.
  - curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s -- -b ${GOPATH}/bin ${GOLANGCI_VERSION}
  # Retrieve and prepare CodeClimate's test coverage reporter.
  - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
  - chmod +x ./cc-test-reporter
  - ./cc-test-reporter before-build

script:
  # Ensure that the module files are being kept correctly and that vendored dependencies are up-to-date.
  - go mod tidy
  - go mod vendor
  - git diff --exit-code --quiet || (echo "Please run 'go mod tidy' to clean up the 'go.mod' and 'go.sum' files."; false)

  # Run the linter.
  - golangci-lint run

  # Run all the tests with the race detector and generate coverage.
  - go test -v -race -coverprofile c.out ./...

  # Run the build script to generate the necessary binaries and images.
  - /bin/bash ci/bintray.sh

after_script:
  # Upload test coverage to CodeClimate.
  - ./cc-test-reporter after-build --exit-code ${TRAVIS_TEST_RESULT}

branches:
  only:
    - master

deploy:
  on:
     all_branches: true
  provider: bintray
  on:
    all_branches: true
  edge:
    branch: v1.8.47
  file: ci/deploy.json
  user: 42wim
  on:
     all_branches: true
  key:
     secure: "CeXXe6JOmt7HYR81MdWLua0ltQHhDdkIeRGBFbgd7hkb1wi8eF9DgpAcQrTso8NIlHNZmSAP46uhFgsRvkuezzX0ygalZ7DCJyAyn3sAMEh+UQSHV1WGThRehTtidqRGjetzsIGSwdrJOWil+XTfbO1Z8DGzfakhSuAZka8CM4BAoe3YeP9rYK8h+84x0GHfczvsLtXZ3mWLvQuwe4pK6+ItBCUg0ae7O7ZUpWHy0xQQkkWztY/6RAzXfaG7DuGjIw+20fhx3WOXRNpHCtZ6Bc3qERCpk0s1HhlQWlrN9wDaFTBWYwlvSnNgvxxMbNXJ6RrRJ0l0bA7FUswYwyroxhzrGLdzWDg8dHaQkypocngdalfhpsnoO9j3ApJhomUFJ3UoEq5nOGRUrKn8MPi+dP0zE4kNQ3e4VNa1ufNrvfpWolMg3xh8OXuhQdD5wIM5zFAbRJLqWSCVAjPq4DDPecmvXBOlIial7oa312lN5qnBnUjvAcxszZ+FUyDHT1Grxzna4tMwxY9obPzZUzm7359AOCCwIQFVB8GLqD2nwIstcXS0zGRz+fhviPipHuBa02q5bGUZwmkvrSNab0s8Jo7pCrel2Rz3nWPKaiCfq2WjbW1CLheSMkOQrjsdUd1hhbqNWFPUjJPInTc77NAKCfm5runv5uyowRLh4NNd0sI="