File: .travis.yml

package info (click to toggle)
golang-github-proglottis-gpgme 0.0~git20181127.3b0be09-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 156 kB
  • sloc: ansic: 124; makefile: 12
file content (34 lines) | stat: -rw-r--r-- 452 bytes parent folder | download
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
---
language: go
os:
  - linux
  - osx
  - windows
dist: trusty
sudo: false

go:
  - 1.11

addons:
  apt:
    packages:
    - libgpgme11-dev
  homebrew:
    packages:
    - gnupg
    - gnupg@1.4
    - gpgme

matrix:
  allow_failures:
    - os: windows

before_install:
  - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install msys2 ; fi

install:
- true #do not execute "go get ./..." as it will fail with the examples

script:
  - go test -v .