mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-17 12:45:52 +00:00
For PRs, CI will run on the PR itself, so no need to run it for the branch (otherwise we get duplicate jobs, and it's sooooo slow!).
90 lines
No EOL
2 KiB
YAML
90 lines
No EOL
2 KiB
YAML
{
|
|
"branches": {
|
|
"only": [
|
|
"master"
|
|
]
|
|
},
|
|
"cache": "pip",
|
|
"dist": "trusty",
|
|
"git": {
|
|
"submodules": false
|
|
},
|
|
"install": [
|
|
". scripts/travis-install.sh",
|
|
"make -e install-$BUILD"
|
|
],
|
|
"language": "python",
|
|
"matrix": {
|
|
"fast_finish": true,
|
|
"include": [
|
|
{
|
|
"env": "BUILD=style",
|
|
"python": "3.6"
|
|
},
|
|
{
|
|
"env": "BUILD=test REQUIREMENTS=release",
|
|
"python": "3.5"
|
|
},
|
|
{
|
|
"env": "BUILD=test-storage DAV_SERVER=radicale REQUIREMENTS=release ",
|
|
"python": "3.5"
|
|
},
|
|
{
|
|
"env": "BUILD=test-storage DAV_SERVER=xandikos REQUIREMENTS=release ",
|
|
"python": "3.5"
|
|
},
|
|
{
|
|
"env": "BUILD=test REQUIREMENTS=minimal",
|
|
"python": "3.5"
|
|
},
|
|
{
|
|
"env": "BUILD=test-storage DAV_SERVER=radicale REQUIREMENTS=minimal ",
|
|
"python": "3.5"
|
|
},
|
|
{
|
|
"env": "BUILD=test-storage DAV_SERVER=xandikos REQUIREMENTS=minimal ",
|
|
"python": "3.5"
|
|
},
|
|
{
|
|
"env": "BUILD=test REQUIREMENTS=release",
|
|
"python": "3.6"
|
|
},
|
|
{
|
|
"env": "BUILD=test-storage DAV_SERVER=radicale REQUIREMENTS=release ",
|
|
"python": "3.6"
|
|
},
|
|
{
|
|
"env": "BUILD=test-storage DAV_SERVER=xandikos REQUIREMENTS=release ",
|
|
"python": "3.6"
|
|
},
|
|
{
|
|
"env": "BUILD=test-storage DAV_SERVER=fastmail REQUIREMENTS=release ",
|
|
"if": "NOT (type IN (pull_request))",
|
|
"python": "3.6"
|
|
},
|
|
{
|
|
"env": "BUILD=test REQUIREMENTS=minimal",
|
|
"python": "3.6"
|
|
},
|
|
{
|
|
"env": "BUILD=test-storage DAV_SERVER=radicale REQUIREMENTS=minimal ",
|
|
"python": "3.6"
|
|
},
|
|
{
|
|
"env": "BUILD=test-storage DAV_SERVER=xandikos REQUIREMENTS=minimal ",
|
|
"python": "3.6"
|
|
},
|
|
{
|
|
"env": "BUILD=test ETESYNC_TESTS=true REQUIREMENTS=latest",
|
|
"python": "3.6"
|
|
}
|
|
]
|
|
},
|
|
"script": [
|
|
"make -e $BUILD"
|
|
],
|
|
"services": [
|
|
"docker"
|
|
],
|
|
"sudo": true
|
|
} |