.travis.yml
language: generic
jobs:
include:
- env: AG_VER=master
os: linux
addons:
apt:
sources: &common_sources
- ubuntu-toolchain-r-test
packages: &vim74
- vim
- automake
- pkg-config
- libpcre3-dev
- zlib1g-dev
install: true
script: echo hola
- env: AG_VER=0.31.0
os: linux
addons:
apt:
sources:
- *common_sources
- lucid
packages:
- *vim74
- time
install: true
script: echo hi
Build Config
{
"jobs": {
"include": [
{
"os": "linux",
"env": "AG_VER=master",
"addons": {
"apt": {
"sources": [
"ubuntu-toolchain-r-test"
],
"packages": [
"vim",
"automake",
"pkg-config",
"libpcre3-dev",
"zlib1g-dev"
]
}
},
"script": "echo hola",
"install": true
},
{
"os": "linux",
"env": "AG_VER=0.31.0",
"addons": {
"apt": {
"sources": [
[
"ubuntu-toolchain-r-test"
],
"lucid"
],
"packages": [
[
"vim",
"automake",
"pkg-config",
"libpcre3-dev",
"zlib1g-dev"
],
"time"
]
}
},
"script": "echo hi",
"install": true
}
]
},
"language": "generic"
}