Fix 'make lint' not running megacheck inside travis (#821)
After running gometalinter in debug mode, it was found megacheck was being killed by travis due to reaching its memory limits. For more information, see this comment. Run "Lint & Vendor Check" using a fully virtualized environment instead of a container-based one.
This commit is contained in:
parent
f0f55d408f
commit
6c9ec5b337
|
@ -12,6 +12,7 @@ install:
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
- stage: Lint & Vendor Check
|
- stage: Lint & Vendor Check
|
||||||
|
sudo: required
|
||||||
script:
|
script:
|
||||||
- make lint
|
- make lint
|
||||||
- make vendor-check
|
- make vendor-check
|
||||||
|
|
Loading…
Reference in New Issue