File: .travis.yml

package info (click to toggle)
golang-github-openshift-api 4.0%2Bgit20190508.81d064c-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 14,040 kB
  • sloc: sh: 171; makefile: 32
file content (19 lines) | stat: -rw-r--r-- 397 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: go

go:
  - "1.11"

install:
  - wget https://github.com/google/protobuf/releases/download/v3.0.2/protoc-3.0.2-linux-x86_64.zip
  - mkdir protoc
  - export PATH=`pwd`/protoc/bin:${PATH}
  - unzip protoc-3.0.2-linux-x86_64.zip -d protoc/
  - go get golang.org/x/tools/cmd/goimports

script:
  - make verify build test

notifications:
  irc: "chat.freenode.net#openshift-dev"

sudo: false