mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
7f9caaf30d
Run only on push to branch coverity-scan. We can use a cron script to do this 4 times a week (that's our allowance). NOTE: possible future improvements are: 1. Fold the build matrix item into another short one so we don't overburden travis. It's a little less clear but it should be nicer on the infrastructure. 2. Change the security token, one can do that from the coverity admin page. 3. Don't do the naive `make depend`, but use the prebuilt libraries.
16 lines
609 B
YAML
16 lines
609 B
YAML
language: c
|
|
env:
|
|
global:
|
|
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
|
|
# via the "travis encrypt" command using the project repo's public key
|
|
- secure: "QEz92NyItkzQu52kCFD928jEwUYnA2OIgSyeNrp+Y3gm5rOmSZerY8hGiXyNZxocap9+qIPCapRRYU3ZYKWZPeucWMLN3aIjxAFdhugKbnmNYE1jFugb6b8N3SxiX/3206NHXlYaz0OZhh6OBAFmPUXamJC8OrWVgPNPo7wv4UQ="
|
|
matrix:
|
|
- TRAVIS_BUILD_TYPE=clang/asan
|
|
- TRAVIS_BUILD_TYPE=gcc/ia32
|
|
- TRAVIS_BUILD_TYPE=gcc/unittest
|
|
- TRAVIS_BUILD_TYPE=clint
|
|
- TRAVIS_BUILD_TYPE=api/python
|
|
- TRAVIS_BUILD_TYPE=coverity
|
|
script:
|
|
- ./scripts/travis.sh
|