AMD64
no language set
Git
BanzaiMan/continuous-integration-travis:.travis.yml@0cfdf8f
language: ruby
cache: bundler # caching to speed up dependency installation
rvm:
- replace me with rvm
addons:
apt:
packages:
- libcurl4-openssl-dev # required to avoid SSL errors
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
script:
- echo "Starting build!"
Build Config
{
"language": "ruby",
"os": [
"linux"
],
"dist": "xenial",
"cache": {
"bundler": true
},
"rvm": [
"replace me with rvm"
],
"addons": {
"apt": {
"packages": [
"libcurl4-openssl-dev"
]
}
},
"env": {
"global": [
{
"NOKOGIRI_USE_SYSTEM_LIBRARIES": "true"
}
]
},
"script": [
"echo \"Starting build!\""
]
}