mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
6483a198e4
To simplify modification/inclusion of continuous integration targets, this removes travis.sh which contains a big if statement in favor of multiple scripts under the new '.ci' directory.
18 lines
644 B
YAML
18 lines
644 B
YAML
language: c
|
|
env:
|
|
global:
|
|
- PROJECT_ROOT="$(pwd)"
|
|
- CI_SCRIPTS="$PROJECT_ROOT/.ci"
|
|
# 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:
|
|
- CI_TARGET=clang-asan
|
|
- CI_TARGET=gcc-ia32
|
|
- CI_TARGET=gcc-unittest
|
|
- CI_TARGET=clint
|
|
- CI_TARGET=api-python
|
|
- CI_TARGET=coverity
|
|
script:
|
|
- sh -e "${CI_SCRIPTS}/${CI_TARGET}.sh"
|