The .travis.yml file used for this job is not available
Build Config
{
"dist": "trusty",
"jobs": {
"include": [
{
"stage": "build docker image",
"script": [
"docker build -t travis-ci-build-stages-demo .",
"docker push travis-ci-build-stages-demo"
]
},
{
"stage": "test",
"script": "docker run --rm travis-ci-build-stages-demo cat hello.txt"
},
{
"script": "docker run --rm travis-ci-build-stages-demo cat hello.txt"
}
]
},
"sudo": true
}