Avoid unnecessarily setting env variables on the lint build
The relevent env variables are set for the matrix builds, and are irrelevant to the lint build. By default the first matrix entry is applied. "Each job included in jobs.include inherits the first value of the array that defines a matrix dimension." https://docs.travis-ci.com/user/build-stages/#Build-Stages-and-Build-Matrix-Expansion
This commit is contained in:
parent
07ce278455
commit
1be5c33333
1 changed files with 1 additions and 0 deletions
|
@ -81,6 +81,7 @@ after_script:
|
|||
jobs:
|
||||
include:
|
||||
- stage: lint
|
||||
env:
|
||||
sudo: false
|
||||
cache: false
|
||||
addons:
|
||||
|
|
Loading…
Reference in a new issue