File: .travis.yml

package info (click to toggle)
golang-github-jdkato-prose 1.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 12,904 kB
  • sloc: python: 115; makefile: 52; sh: 41
file content (39 lines) | stat: -rw-r--r-- 790 bytes parent folder | download | duplicates (2)
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
dist: bionic
language: go
go:
  - "1.13.x"
env:
  - GO111MODULE=on

install:
  - make build

stages:
  - name: Build & test
    if: type != cron

  - name: Fuzzit-Regression
    if: type != cron AND type != pull_request AND branch = master

  - name: Fuzzit-Fuzzing
    if: type != cron AND type != pull_request AND branch = master

jobs:
  include:
    - stage: Build & test
      script:
        - make test
        # Coveralls is down for maintenance currently
        - go get github.com/mattn/goveralls
        - bash scripts/cover.sh

    # TODO: Fix this
    # - stage: Fuzzit-Regression
    #   go: 1.12.x
    #   script:
    #     - bash scripts/fuzzit.sh regression
    #
    # - stage: Fuzzit-Fuzzing
    #   go: 1.12.x
    #   script:
    #     - bash scripts/fuzzit.sh fuzzing