github.com/braveheart12/just@v0.8.7/.travis.yml (about)

     1  language: go
     2  
     3  # Faster container-based builds
     4  sudo: false
     5  
     6  go:
     7    - "1.11.x"
     8  
     9  env:
    10    global:
    11      - CGO_ENABLED=0
    12      - GORACE="halt_on_error=1"
    13  # «For parallel processes running at the same time, try to reduce the number. More than two to four processes should be fine, beyond that, resources are likely to be exhausted.»
    14  # https://docs.travis-ci.com/user/common-build-problems/#my-build-script-is-killed-without-any-error
    15      - GOMAXPROCS=2
    16  # debug logging by default
    17      - INSOLAR_LOG_LEVEL=debug
    18  
    19  before_install:
    20    - make install-deps
    21  install:
    22    - make pre-build
    23  script:
    24  # check if git repo unchanged in CI before build stage (try to catch forgotten generated files)
    25    - make test_git_no_changes
    26    - make build
    27    - make test_with_coverage
    28    - make functest
    29  
    30  after_success:
    31    - "bash <(curl -s https://codecov.io/bash)"