Codebase list golang-github-jdkato-prose / upstream/1.1.1 .travis.yml
upstream/1.1.1

Tree @upstream/1.1.1 (Download .tar.gz)

.travis.yml @upstream/1.1.1raw · history · blame

dist: bionic
language: go
go:
  - "1.12.x"

install:
  - make setup
  - make build

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

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

  - name: Fuzzit-Fuzzing
    if: type != cron

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

    - 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