commit
stringlengths 40
40
| old_file
stringlengths 4
237
| new_file
stringlengths 4
237
| old_contents
stringlengths 1
4.24k
| new_contents
stringlengths 1
4.87k
| subject
stringlengths 15
778
| message
stringlengths 15
8.75k
| lang
stringclasses 266
values | license
stringclasses 13
values | repos
stringlengths 5
127k
|
---|---|---|---|---|---|---|---|---|---|
c421fb8f5a0c5d12ba377676bd4f3d0e9659dbbc
|
.travis.yml
|
.travis.yml
|
language: python
matrix:
include:
- python: "3.6"
- python: "3.7"
dist: xenial
sudo: true
before_install:
- pip install pipenv
- npm install -g npm@"^6.4.0"
install:
- pipenv install --dev --deploy
- npm ci
- npx webpack --config webpack.development.config.js
before_script:
- pipenv check
- black . --check --exclude node_modules/
- flake8 --exclude node_modules/ || true
script:
- pipenv run python manage.py test
|
language: python
matrix:
include:
- python: "3.6"
dist: trusty
sudo: false
- python: "3.7"
dist: xenial
sudo: true
before_install:
- pip install pipenv
- npm install -g npm@"^6.4.0"
install:
- pipenv install --dev --deploy
- npm ci
- npx webpack --config webpack.development.config.js
before_script:
- pipenv check
- black . --check --exclude node_modules/
- flake8 --exclude node_modules/ || true
script:
- pipenv run python manage.py test
|
Use Trusty for older Python
|
Use Trusty for older Python
|
YAML
|
mit
|
thepoly/Pipeline,thepoly/Pipeline,thepoly/Pipeline,thepoly/Pipeline,thepoly/Pipeline
|
bd551928e790b603f9131da714118516a8248b89
|
.travis.yml
|
.travis.yml
|
language: python
python: 2.7
services: mongodb
install: "python setup.py install"
script: "python -Wall setup.py test"
|
language: python
python:
- 2.6
- 2.7
env:
- BEFORE_DJANGO_VERSION=1.5 TASTYPIE_VERSION="==0.9.12"
- BEFORE_DJANGO_VERSION=1.5 TASTYPIE_VERSION=">=0.9.12,<=0.10.0"
- BEFORE_DJANGO_VERSION=1.6 TASTYPIE_VERSION="==0.9.12"
- BEFORE_DJANGO_VERSION=1.6 TASTYPIE_VERSION=">=0.9.12,<=0.10.0"
- BEFORE_DJANGO_VERSION=1.7 TASTYPIE_VERSION="==0.9.12"
- BEFORE_DJANGO_VERSION=1.7 TASTYPIE_VERSION=">=0.9.12,<=0.10.0"
services: mongodb
install:
- pip install "Django<$BEFORE_DJANGO_VERSION"
- pip install "django-tastypie$TASTYPIE_VERSION"
- pip install pep8 --use-mirrors
- pip install pylint --use-mirrors
- python setup.py install
before_script:
- pep8 django_datastream tests docs
- pylint django_datastream tests docs || true
script:
- python -Wall setup.py test
|
Test against multiple versions of Django and Tastypie.
|
Test against multiple versions of Django and Tastypie.
|
YAML
|
agpl-3.0
|
wlanslovenija/django-datastream,wlanslovenija/django-datastream,wlanslovenija/django-datastream
|
294c1863c3df4d3b68e69c4d04b88ba54949ecb3
|
.travis.yml
|
.travis.yml
|
language: java
install:
- ls -hal
- pwd
- mkdir -p ~/.ant/lib && ln -s -T /usr/share/java/ivy.jar ~/.ant/lib/ivy.jar
- ant resolve-ivy-deps
- ls -hal
- ant wpilib-for-ci
script:
- ls -hal
- pwd
- ant test
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
- openjdk6
addons:
apt:
packages:
- python3
|
language: java
install:
- ls -hal
- pwd
- mkdir -p ~/.ant/lib && ln -s -T /usr/share/java/ivy.jar ~/.ant/lib/ivy.jar
- ls -hal
- ant wpilib-for-ci
script:
- ls -hal
- pwd
- ant resolve-ivy-deps
- ant test
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
- openjdk6
addons:
apt:
packages:
- python3
|
Move dep-resolve task to "script" part of lifecycle
|
Move dep-resolve task to "script" part of lifecycle
|
YAML
|
mit
|
Team4761/DistanceSensorLib
|
391d6868bd6775a56bf8e14898c4e45a782d347d
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: required
dist: trusty
node_js:
- "8"
- "10"
before_install: if [[ `npm --version` != "5.8.0" ]]; then npm install -g npm@latest; npm --version; fi
matrix:
fast_finish: true
services:
- mongodb
- docker
script: make travis
after_success:
- nvm version
- if [[ ! -z "$DOCKER_USER" ]]; then docker login -u ${DOCKER_USER} -p ${DOCKER_PASS} && git checkout -- . && git clean -fd . && make docker_release; fi
after_script: make report
|
language: node_js
os: osx
node_js:
- "8"
before_install:
- if [[ `npm --version` != "5.8.0" ]]; then npm install -g npm@latest; npm --version; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
# https://github.com/Homebrew/homebrew-core/issues/26358
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew unlink python; fi
# "brew install" can succeed but return 1 if it has "caveats".
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install mongodb || true; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew services start mongodb; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install docker || true; fi
matrix:
fast_finish: true
services:
- mongodb
- docker
script: make travis
after_success:
- nvm version
- if [[ ! -z "$DOCKER_USER" ]]; then docker login -u ${DOCKER_USER} -p ${DOCKER_PASS} && git checkout -- . && git clean -fd . && make docker_release; fi
after_script: make report
|
Change Travis over to OS X based VM, as that seems to produce a more stable build environment. Disable Node 10 build for now (we can test locally for that and we're not defining 10 as a valid hosting version for now)
|
Change Travis over to OS X based VM, as that seems to produce a more stable build environment. Disable Node 10 build for now (we can test locally for that and we're not defining 10 as a valid hosting version for now)
|
YAML
|
agpl-3.0
|
lovezg/cgm-remote-monitor,MitchDex/cgm-remote-monitor,riverjones2007/cgm-remote-monitor,stjack1/cgm-remote-monitor,gempickfordwaugh/cgm-remote-monitor,linascout/cgm-remote-monitor,jjkrebs/cgm-remote-monitor,madisonmen123/cgm-remote-monitor,czahner/cgm-remote-monitor,tjkns/cgm-remote-monitor,jonhunterbui/cgm-remote-monitor,grossga/cgm-remote-monitor,JosiahNS/cgm-remote-monitor,jtchambe/cgm-remote-monitor,Mihaeladex/cgm-remote-monitor,renoca/cgm-remote-monitor,rreed454/cgm-remote-monitor,gavmoir/cgm-remote-monitor,skrislov/cgm-remote-monitor,ancameron/cgm-remote-monitor,acanderson10/cgm-remote-monitor,libby4label/cgm-remote-monitor,tanja3981/cgm-remote-monitor,stjack1/cgm-remote-monitor,skjelland/cgm-remote-monitor,MosiGitHub/cgm-remote-monitor,olivercgm/cgm-remote-monitor,jjkrebs/cgm-remote-monitor,spencerto/cgm-remote-monitor,adriwelborn/cgm-remote-monitor,rhianna10/cgm-remote-monitor,scottleibrand/cgm-remote-monitor,diasigvard/cgm-remote-monitor,LTatu/cgm-remote-monitor,mahlon15/cgm-remote-monitor,claytonfrost/cgm-remote-monitor,sugabetic/cgm-remote-monitor,faromatilde/cgm-remote-monitor,gleipert/cgm-remote-monitor,skirby99/cgm-remote-monitor,pepecb/cgm-remote-monitor,lotharmartinez/cgm-remote-monitor,editdata14/cgm-remote-monitor,utefan/cgm-remote-monitor,jonahtaxt/cgm-remote-monitor,lionheartman/cgm-remote-monitor,claytonfrost/cgm-remote-monitor,gleipert/cgm-remote-monitor,goranssons/cgm-remote-monitor,Cuiyujun/cgm-remote-monitor,MosiGitHub/cgm-remote-monitor,rdobb/cgm-remote-monitor,rebeccaorto/cgm-remote-monitor,czahner/cgm-remote-monitor,joshcorwin/cgm-remote-monitor,astrocam/cgm-remote-monitor,Teodorwallberg/cgm-remote-monitor,ldkbyj/cgm-remote-monitor,ktomy/cgm-remote-monitor,asidorovich/cgm-remote-monitor,dexterbooty/cgm-remote-monitor,AJStinson/cgm-remote-monitor,lukedolezal/cgm-remote-monitor,AllyCat09/cgm-remote-monitor,mjyrala/cgm-remote-monitor,editdata7/cgm-remote-monitor,shanselman/cgm-remote-monitor,lilagw/cgm-remote-monitor,antalois/cgm-remote-monitor,leonimo/cgm-remote-monitor,robertanye/cgm-remote-monitor,thomcost/cgm-remote-monitor,gregwaehner/cgm-remote-monitor,ajbrugnano/cgm-remote-monitor,ns-nathan/cgm-remote-monitor,skirby99/cgm-remote-monitor,Shoug/cgm-remote-monitor,crobinuk/cgm-remote-monitor,hyeokseo/cgm-remote-monitor,thender11/cgm-remote-monitor,jtchambe/cgm-remote-monitor,stevenrgriffin/cgm-remote-monitor,Shoug/cgm-remote-monitor,jwedding/cgm-remote-monitor,karlork/cgm-remote-monitor,ps2/cgm-remote-monitor,dmanders/cgm-remote-monitor,annbennett/cgm-remote-monitor,lgmsmith/cgm-remote-monitor,Rmaw02/cgm-remote-monitor,robertanye/cgm-remote-monitor,riverjones2007/cgm-remote-monitor,hyeokseo/cgm-remote-monitor,live4sw/cgm-remote-monitor,ajbrugnano/cgm-remote-monitor,thomcost/cgm-remote-monitor,tycho40/cgm-remote-monitor,stjack1/cgm-remote-monitor,jfelkins/cgm-remote-monitor,skubigolf/cgm-remote-monitor,star37NS/cgm-remote-monitor,swissalpine/cgm-remote-monitor,ak8418/cgm-remote-monitor,bdr1177/cgm-remote-monitor,amlynek/cgm-remote-monitor,szpaku80/cgm-remote-monitor,lgmsmith/cgm-remote-monitor,andyhandy/cgm-remote-monitor,DavMedek/cgm-remote-monitor,Marc78400/cgm-remote-monitor,jweismann/cgm-remote-monitor,mvetter/cgm-remote-monitor,paleoCoder/cgm-remote-monitor,dbeasy/cgm-remote-monitor,abcschooldr/cgm-remote-monitor,libby4label/cgm-remote-monitor,ldkbyj/cgm-remote-monitor,goldendel/cgm-remote-monitor,ondrolexa/cgm-remote-monitor,Marc78400/cgm-remote-monitor,chiaramorris/cgm-remote-monitor,faromatilde/cgm-remote-monitor,rreed454/cgm-remote-monitor,nletrheim/cgm-remote-monitor,erikafromamerica/cgm-remote-monitor,IsaacBGallaher/cgm-remote-monitor,grhulz/cgm-remote-monitor,Fedechicco2/cgm-remote-monitor,tynbendad/cgm-remote-monitor,fboegard/cgm-remote-monitor,lewispope/cgm-remote-monitor,annbennett/cgm-remote-monitor,nsnwells/cgm-remote-monitor,antalois/cgm-remote-monitor,dexterbooty/cgm-remote-monitor,gth001/cgm-remote-monitor,xdripab/cgm-remote-monitor,nightscout/cgm-remote-monitor,goldendel/cgm-remote-monitor,crobinuk/cgm-remote-monitor,paleoCoder/cgm-remote-monitor,denvergail/cgm-remote-monitor,Natalie12/cgm-remote-monitor,NSGabi/cgm-remote-monitor,metzlernsdb/cgm-remote-monitor,Jimwedel/cgm-remote-monitor,gregwaehner/cgm-remote-monitor,nletrheim/cgm-remote-monitor,scottleibrand/cgm-remote-monitor,denvergail/cgm-remote-monitor,elodaille01/cgm-remote-monitor,manaolana/cgm-remote-monitor,JacknSundrop/cgm-remote-monitor,bradleybear/cgm-remote-monitor,NatBrUser/cgm-remote-monitor,ThomasEmge/cgm-remote-monitor,DunePlodder/cgm-remote-monitor,casey21/cgm-remote-monitor,AJM1396/cgm-remote-monitor,britishguy4/cgm-remote-monitor,Teodorwallberg/cgm-remote-monitor,sebastianlorant/cgm-remote-monitor,gempickfordwaugh/cgm-remote-monitor,IsaacBGallaher/cgm-remote-monitor,rubinstein/cgm-remote-monitor,oskaricciu/cgm-remote-monitor,rogerhaugerud/cgm-remote-monitor,mel2095/cgm-remote-monitor,Natalie12/cgm-remote-monitor,sobrecht/cgm-remote-monitor,skirby99/cgm-remote-monitor,brookeshelley/cgm-remote-monitor,jonhunterbui/cgm-remote-monitor,rhianna10/cgm-remote-monitor,beavisandgirl/cgm-remote-monitor,elodaille01/cgm-remote-monitor,goranssons/cgm-remote-monitor,crystalc72/cgm-remote-monitor,lukedolezal/cgm-remote-monitor,linascout/cgm-remote-monitor,LTatu/cgm-remote-monitor,UphwbKpqSm47z3qewH9x/cgm-remote-monitor,dmanders/cgm-remote-monitor,sbolshakov/cgm-remote-monitor,Slawek1981/cgm-remote-monitor,elodaille01/cgm-remote-monitor,komby/cgm-remote-monitor,beavisandgirl/cgm-remote-monitor,vicmarc/cgm-remote-monitor,mahlon15/cgm-remote-monitor,ThomasEmge/cgm-remote-monitor,Marc78400/cgm-remote-monitor,llehtio/cgm-remote-monitor,ellabellakaramella/cgm-remote-monitor,ak8418/cgm-remote-monitor,tchancey/cgm-remote-monitor,jwedding/cgm-remote-monitor,Jimwedel/cgm-remote-monitor,hyeokseo/cgm-remote-monitor,casey21/cgm-remote-monitor,sebastianlorant/cgm-remote-monitor,renoca/cgm-remote-monitor,JosiahNS/cgm-remote-monitor,yoda226/cgm-remote-monitor,tanja3981/cgm-remote-monitor,Cuiyujun/cgm-remote-monitor,rebecacirre/cgm-remote-monitor,simigit/cgm-remote-monitor,chelesawilds/cgm-remote-monitor,tynbendad/cgm-remote-monitor,harryrowe2010/cgm-remote-monitor,Shane33/cgm-remote-monitor,Martata83/cgm-remote-monitor,ajwyckoff/cgm-remote-monitor,aabramowicz/cgm-remote-monitor,ljusername/cgm-remote-monitor,tycho40/cgm-remote-monitor,manaolana/cgm-remote-monitor,asidorovich/cgm-remote-monitor,PODVESNAV/cgm-remote-monitor,tomas69/cgm-remote-monitor,johansvdb/cgm-remote-monitor,jonahtaxt/cgm-remote-monitor,adriwelborn/cgm-remote-monitor,josephnightscout/cgm-remote-monitor,ldpcloud/cgm-remote-monitor,NatBrUser/cgm-remote-monitor,JasperCGM/cgm-remote-monitor,mhersco/cgm-remote-monitor,oskaricciu/cgm-remote-monitor,CaerwynRoberts/cgm-remote-monitor,Ashcgm/cgm-remote-monitor,josephnightscout/cgm-remote-monitor,SophiaPed/cgm-remote-monitor,annbennett/cgm-remote-monitor,gempickfordwaugh/cgm-remote-monitor,NSGabi/cgm-remote-monitor,DavMedek/cgm-remote-monitor,rebecacirre/cgm-remote-monitor,samihusseingit/cgm-remote-monitor,skjelland/cgm-remote-monitor,JosiahNS/cgm-remote-monitor,ljusername/cgm-remote-monitor,barry45/cgm-remote-monitor,masonsbattle/cgm-remote-monitor,AllyCat09/cgm-remote-monitor,komby/cgm-remote-monitor,masonsbattle/cgm-remote-monitor,ajbrugnano/cgm-remote-monitor,bdr1177/cgm-remote-monitor,lazzeb/cgm-remote-monitor,cdmccook/cgm-remote-monitor,tchancey/cgm-remote-monitor,vicmarc/cgm-remote-monitor,OpossumGit/cgm-remote-monitor,chiaramorris/cgm-remote-monitor,jojoyue200/cgm-remote-monitor,swissalpine/cgm-remote-monitor,larazucchiatti2011/cgm-remote-monitor,pjweiss/cgm-remote-monitor,johansvdb/cgm-remote-monitor,Martata83/cgm-remote-monitor,fboegard/cgm-remote-monitor,olivercgm/cgm-remote-monitor,mjyrala/cgm-remote-monitor,gitanO0/cgm-remote-monitor,yoda226/cgm-remote-monitor,JacknSundrop/cgm-remote-monitor,Viktoriartem/cgm-remote-monitor,feraridurango/cgm-remote-monitor,stellagw10/cgm-remote-monitor,joshcorwin/cgm-remote-monitor,rebecacirre/cgm-remote-monitor,rhianna10/cgm-remote-monitor,rebeccaorto/cgm-remote-monitor,rubinstein/cgm-remote-monitor,vittetoe/cgm-remote-monitor,Fedechicco2/cgm-remote-monitor,cclcgm/cgm-remote-monitor,editdata14/cgm-remote-monitor,kakoni/cgm-remote-monitor,faromatilde/cgm-remote-monitor,lovezg/cgm-remote-monitor,ryder08/cgm-remote-monitor,grossga/cgm-remote-monitor,tomasboudr/cgm-remote-monitor,CaerwynRoberts/cgm-remote-monitor,andyhandy/cgm-remote-monitor,MitchDex/cgm-remote-monitor,sobrecht/cgm-remote-monitor,SophiaPed/cgm-remote-monitor,dbeasy/cgm-remote-monitor,casey21/cgm-remote-monitor,bradleybear/cgm-remote-monitor,dmanders/cgm-remote-monitor,editdata14/cgm-remote-monitor,CharlieBowyer/cgm-remote-monitor,destea1/cgm-remote-monitor,46egemert/cgm-remote-monitor,46egemert/cgm-remote-monitor,antalois/cgm-remote-monitor,britishguy4/cgm-remote-monitor,mzst123/cgm-remote-monitor,rafaelomartin/cgm-remote-monitor,Ashcgm/cgm-remote-monitor,gregwaehner/cgm-remote-monitor,rreed454/cgm-remote-monitor,Viktoriartem/cgm-remote-monitor,amlynek/cgm-remote-monitor,Shane33/cgm-remote-monitor,aabramowicz/cgm-remote-monitor,shanselman/cgm-remote-monitor,fboegard/cgm-remote-monitor,k1960/cgm-remote-monitor,ak8418/cgm-remote-monitor,HowardLook/cgm-remote-monitor,jonahtaxt/cgm-remote-monitor,pepecb/cgm-remote-monitor,mde1300/cgm-remote-monitor,Wanitta/cgm-remote-monitor,fredivar1/cgm-remote-monitor,someoneAnyone/cgm-remote-monitor,Viktoriartem/cgm-remote-monitor,ThomasEmge/cgm-remote-monitor,gitanO0/cgm-remote-monitor,JeffJinSD/cgm-remote-monitor,cclcgm/cgm-remote-monitor,thomcost/cgm-remote-monitor,larazucchiatti2011/cgm-remote-monitor,scottmark/cgm-remote-monitor,diab1234/cgm-remote-monitor,libby4label/cgm-remote-monitor,ProjectSafety/cgm-remote-monitor,NatBrUser/cgm-remote-monitor,alex2007/cgm-remote-monitor,jweismann/cgm-remote-monitor,someoneAnyone/cgm-remote-monitor,ancameron/cgm-remote-monitor,star37NS/cgm-remote-monitor,jojoyue200/cgm-remote-monitor,rogerhaugerud/cgm-remote-monitor,karlork/cgm-remote-monitor,ps2/cgm-remote-monitor,acanderson10/cgm-remote-monitor,tomas69/cgm-remote-monitor,claytonfrost/cgm-remote-monitor,kakoni/cgm-remote-monitor,nightscout/cgm-remote-monitor,XbridgeBuri94/cgm-remote-monitor,tomasboudr/cgm-remote-monitor,star37NS/cgm-remote-monitor,aaroecker/cgm-remote-monitor,ellabellakaramella/cgm-remote-monitor,tanja3981/cgm-remote-monitor,divishinating/cgm-remote-monitor,masonsbattle/cgm-remote-monitor,erikafromamerica/cgm-remote-monitor,tycho40/cgm-remote-monitor,aabramowicz/cgm-remote-monitor,crystalc72/cgm-remote-monitor,mikestebbins/cgm-remote-monitor,manaolana/cgm-remote-monitor,ns-nathan/cgm-remote-monitor,Slawek1981/cgm-remote-monitor,gavmoir/cgm-remote-monitor,ellabellakaramella/cgm-remote-monitor,fichtenweg/cgm-remote-monitor,ProjectSafety/cgm-remote-monitor,DunePlodder/cgm-remote-monitor,komby/cgm-remote-monitor,Cuiyujun/cgm-remote-monitor,PODVESNAV/cgm-remote-monitor,stevenrgriffin/cgm-remote-monitor,shannonhaywood/cgm-remote-monitor,samihusseingit/cgm-remote-monitor,grenntreeateam/cgm-remote-monitor,erikafromamerica/cgm-remote-monitor,scottmark/cgm-remote-monitor,sugabetic/cgm-remote-monitor,rafaelomartin/cgm-remote-monitor,metzlernsdb/cgm-remote-monitor,tjkns/cgm-remote-monitor,llehtio/cgm-remote-monitor,cdmccook/cgm-remote-monitor,dseekert/cgm-remote-monitor,mel2095/cgm-remote-monitor,hel1fire/cgm-remote-monitor,mde1300/cgm-remote-monitor,grossga/cgm-remote-monitor,Martata83/cgm-remote-monitor,Ashcgm/cgm-remote-monitor,hel1fire/cgm-remote-monitor,spencerto/cgm-remote-monitor,tomasboudr/cgm-remote-monitor,fichtenweg/cgm-remote-monitor,leonimo/cgm-remote-monitor,tornado14/cgm-remote-monitor,feraridurango/cgm-remote-monitor,blakeflu/cgm-remote-monitor,AllyCat09/cgm-remote-monitor,lotharmartinez/cgm-remote-monitor,OpossumGit/cgm-remote-monitor,britishguy4/cgm-remote-monitor,mattlevine22/cgm-remote-monitor,mhersco/cgm-remote-monitor,lilagw/cgm-remote-monitor,Shoug/cgm-remote-monitor,Yassen2008/cgm-remote-monitor,kirks/cgm-remote-monitor,larazucchiatti2011/cgm-remote-monitor,samihusseingit/cgm-remote-monitor,JeffJinSD/cgm-remote-monitor,vicmarc/cgm-remote-monitor,sobrecht/cgm-remote-monitor,jweismann/cgm-remote-monitor,jonhunterbui/cgm-remote-monitor,mikestebbins/cgm-remote-monitor,lewispope/cgm-remote-monitor,AJM1396/cgm-remote-monitor,tjkns/cgm-remote-monitor,DunePlodder/cgm-remote-monitor,playingbball20/cgm-remote-monitor,jfelkins/cgm-remote-monitor,AJStinson/cgm-remote-monitor,joshcorwin/cgm-remote-monitor,alex2007/cgm-remote-monitor,JasperCGM/cgm-remote-monitor,blessedwhitney/cgm-remote-monitor,madisonmen123/cgm-remote-monitor,jojoyue200/cgm-remote-monitor,MosiGitHub/cgm-remote-monitor,jfinlay2/cgm-remote-monitor,goranssons/cgm-remote-monitor,gleipert/cgm-remote-monitor,shannonhaywood/cgm-remote-monitor,gavmoir/cgm-remote-monitor,diab1234/cgm-remote-monitor,bdr1177/cgm-remote-monitor,mhersco/cgm-remote-monitor,scottmark/cgm-remote-monitor,substars/cgm-remote-monitor,XbridgeBuri94/cgm-remote-monitor,mzst123/cgm-remote-monitor,kgilles2000/cgm-remote-monitor,andyhandy/cgm-remote-monitor,XbridgeBuri94/cgm-remote-monitor,lewispope/cgm-remote-monitor,riverjones2007/cgm-remote-monitor,dseekert/cgm-remote-monitor,PODVESNAV/cgm-remote-monitor,NSGabi/cgm-remote-monitor,UphwbKpqSm47z3qewH9x/cgm-remote-monitor,sebastianlorant/cgm-remote-monitor,kgilles2000/cgm-remote-monitor,HowardLook/cgm-remote-monitor,46egemert/cgm-remote-monitor,stevenrgriffin/cgm-remote-monitor,pjweiss/cgm-remote-monitor,ryder08/cgm-remote-monitor,barry45/cgm-remote-monitor,rpeanut77/cgm-remote-monitor,alex2007/cgm-remote-monitor,AJStinson/cgm-remote-monitor,JeffJinSD/cgm-remote-monitor,Teodorwallberg/cgm-remote-monitor,szpaku80/cgm-remote-monitor,linascout/cgm-remote-monitor,fichtenweg/cgm-remote-monitor,kakoni/cgm-remote-monitor,editdata7/cgm-remote-monitor,thender11/cgm-remote-monitor,Jacque471/cgm-remote-monitor,Fedechicco2/cgm-remote-monitor,mel2095/cgm-remote-monitor,goldendel/cgm-remote-monitor,Slawek1981/cgm-remote-monitor,nsnwells/cgm-remote-monitor,pjweiss/cgm-remote-monitor,stellagw10/cgm-remote-monitor,grhulz/cgm-remote-monitor,mikestebbins/cgm-remote-monitor,simigit/cgm-remote-monitor,nightscout/cgm-remote-monitor,jfinlay2/cgm-remote-monitor,swissalpine/cgm-remote-monitor,lionheartman/cgm-remote-monitor,live4sw/cgm-remote-monitor,simigit/cgm-remote-monitor,OpossumGit/cgm-remote-monitor,substars/cgm-remote-monitor,grhulz/cgm-remote-monitor,JacknSundrop/cgm-remote-monitor,Natalie12/cgm-remote-monitor,sugabetic/cgm-remote-monitor,mattlevine22/cgm-remote-monitor,Wanitta/cgm-remote-monitor,destea1/cgm-remote-monitor,IsaacBGallaher/cgm-remote-monitor,rpeanut77/cgm-remote-monitor,ktomy/cgm-remote-monitor,mvetter/cgm-remote-monitor,LTatu/cgm-remote-monitor,utefan/cgm-remote-monitor,ldpcloud/cgm-remote-monitor,dseekert/cgm-remote-monitor,metzlernsdb/cgm-remote-monitor,nletrheim/cgm-remote-monitor,brookeshelley/cgm-remote-monitor,crobinuk/cgm-remote-monitor,lgmsmith/cgm-remote-monitor,ljusername/cgm-remote-monitor,szpaku80/cgm-remote-monitor,josephnightscout/cgm-remote-monitor,asidorovich/cgm-remote-monitor,adriwelborn/cgm-remote-monitor,chelesawilds/cgm-remote-monitor,DavMedek/cgm-remote-monitor,utefan/cgm-remote-monitor,fgentzel/cgm-remote-monitor,vittetoe/cgm-remote-monitor,mavster/cgm-remote-monitor,madisonmen123/cgm-remote-monitor,gth001/cgm-remote-monitor,karlork/cgm-remote-monitor,spencerto/cgm-remote-monitor,jfelkins/cgm-remote-monitor,blessedwhitney/cgm-remote-monitor,vittetoe/cgm-remote-monitor,fgentzel/cgm-remote-monitor,diasigvard/cgm-remote-monitor,AJM1396/cgm-remote-monitor,barry45/cgm-remote-monitor,ktomy/cgm-remote-monitor,JasperCGM/cgm-remote-monitor,kirks/cgm-remote-monitor,ajwyckoff/cgm-remote-monitor,lazzeb/cgm-remote-monitor,fredivar1/cgm-remote-monitor,thender11/cgm-remote-monitor,jtchambe/cgm-remote-monitor,someoneAnyone/cgm-remote-monitor,denvergail/cgm-remote-monitor,divishinating/cgm-remote-monitor,rdobb/cgm-remote-monitor,grenntreeateam/cgm-remote-monitor,Shane33/cgm-remote-monitor,johansvdb/cgm-remote-monitor,MitchDex/cgm-remote-monitor,diab1234/cgm-remote-monitor,grenntreeateam/cgm-remote-monitor,tornado14/cgm-remote-monitor,shanselman/cgm-remote-monitor,acanderson10/cgm-remote-monitor,Rmaw02/cgm-remote-monitor,blakeflu/cgm-remote-monitor,jjkrebs/cgm-remote-monitor,leonimo/cgm-remote-monitor,live4sw/cgm-remote-monitor,Wanitta/cgm-remote-monitor,rubinstein/cgm-remote-monitor,gth001/cgm-remote-monitor,kirks/cgm-remote-monitor,jwedding/cgm-remote-monitor,blakeflu/cgm-remote-monitor,crystalc72/cgm-remote-monitor,aaroecker/cgm-remote-monitor,rogerhaugerud/cgm-remote-monitor,kgilles2000/cgm-remote-monitor,abcschooldr/cgm-remote-monitor,ondrolexa/cgm-remote-monitor,mzst123/cgm-remote-monitor,brookeshelley/cgm-remote-monitor,rpeanut77/cgm-remote-monitor,Mihaeladex/cgm-remote-monitor,ldpcloud/cgm-remote-monitor,rdobb/cgm-remote-monitor,cclcgm/cgm-remote-monitor,skubigolf/cgm-remote-monitor,Landbchecker/cgm-remote-monitor,sbolshakov/cgm-remote-monitor,astrocam/cgm-remote-monitor,xdripab/cgm-remote-monitor,Yassen2008/cgm-remote-monitor,divishinating/cgm-remote-monitor,lovezg/cgm-remote-monitor,Jacque471/cgm-remote-monitor,ajwyckoff/cgm-remote-monitor,dramageek/cgm-remote-monitor,dramageek/cgm-remote-monitor,k1960/cgm-remote-monitor,diasigvard/cgm-remote-monitor,shannonhaywood/cgm-remote-monitor,Rmaw02/cgm-remote-monitor,paleoCoder/cgm-remote-monitor,renoca/cgm-remote-monitor,astrocam/cgm-remote-monitor,yoda226/cgm-remote-monitor,ns-nathan/cgm-remote-monitor,dexterbooty/cgm-remote-monitor,mvetter/cgm-remote-monitor,tchancey/cgm-remote-monitor,fgentzel/cgm-remote-monitor,skrislov/cgm-remote-monitor,Landbchecker/cgm-remote-monitor,fredivar1/cgm-remote-monitor,ancameron/cgm-remote-monitor,UphwbKpqSm47z3qewH9x/cgm-remote-monitor,skubigolf/cgm-remote-monitor,cdmccook/cgm-remote-monitor,lazzeb/cgm-remote-monitor,dbeasy/cgm-remote-monitor,gitanO0/cgm-remote-monitor,hel1fire/cgm-remote-monitor,lilagw/cgm-remote-monitor,k1960/cgm-remote-monitor,CharlieBowyer/cgm-remote-monitor,harryrowe2010/cgm-remote-monitor,sbolshakov/cgm-remote-monitor,Jacque471/cgm-remote-monitor,ondrolexa/cgm-remote-monitor,destea1/cgm-remote-monitor,Mihaeladex/cgm-remote-monitor,Landbchecker/cgm-remote-monitor,olivercgm/cgm-remote-monitor,lionheartman/cgm-remote-monitor,mahlon15/cgm-remote-monitor,amlynek/cgm-remote-monitor,czahner/cgm-remote-monitor,editdata7/cgm-remote-monitor,xdripab/cgm-remote-monitor,skrislov/cgm-remote-monitor,aaroecker/cgm-remote-monitor,CaerwynRoberts/cgm-remote-monitor,Yassen2008/cgm-remote-monitor,stellagw10/cgm-remote-monitor,abcschooldr/cgm-remote-monitor,pepecb/cgm-remote-monitor,playingbball20/cgm-remote-monitor,dramageek/cgm-remote-monitor,chelesawilds/cgm-remote-monitor,mjyrala/cgm-remote-monitor,substars/cgm-remote-monitor,tomas69/cgm-remote-monitor,feraridurango/cgm-remote-monitor,llehtio/cgm-remote-monitor,tornado14/cgm-remote-monitor,rafaelomartin/cgm-remote-monitor,CharlieBowyer/cgm-remote-monitor,oskaricciu/cgm-remote-monitor,blessedwhitney/cgm-remote-monitor,Jimwedel/cgm-remote-monitor,rebeccaorto/cgm-remote-monitor,ryder08/cgm-remote-monitor,chiaramorris/cgm-remote-monitor,ps2/cgm-remote-monitor,mavster/cgm-remote-monitor,nsnwells/cgm-remote-monitor,scottleibrand/cgm-remote-monitor,mavster/cgm-remote-monitor,lotharmartinez/cgm-remote-monitor,playingbball20/cgm-remote-monitor,ldkbyj/cgm-remote-monitor,harryrowe2010/cgm-remote-monitor,skjelland/cgm-remote-monitor,HowardLook/cgm-remote-monitor,bradleybear/cgm-remote-monitor,ProjectSafety/cgm-remote-monitor,beavisandgirl/cgm-remote-monitor,tynbendad/cgm-remote-monitor,lukedolezal/cgm-remote-monitor,mattlevine22/cgm-remote-monitor,SophiaPed/cgm-remote-monitor,robertanye/cgm-remote-monitor,jfinlay2/cgm-remote-monitor,mde1300/cgm-remote-monitor
|
3bd247ddaf312ee258f69837194ea7a5f16723a4
|
.travis.yml
|
.travis.yml
|
language: ruby
dist: trusty
sudo: false
before_install:
- if [[ $TRAVIS_RUBY_VERSION = rbx-3.86 ]]; then gem update --system 2.6.14; fi
- gem update bundler
before_script:
- bundle update
cache: bundler
rvm:
- 1.9.3-p551
- 2.0.0-p648
- 2.1.10
- 2.2.8
- 2.3.5
- 2.4.2
- ruby-head
- jruby-1.7.27
- jruby-9.1.13.0
- jruby-head
- rbx-3.86
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
|
language: ruby
dist: trusty
sudo: false
before_install:
- gem update bundler
before_script:
- bundle update
cache: bundler
rvm:
- 1.9.3-p551
- 2.0.0-p648
- 2.1.10
- 2.2.8
- 2.3.5
- 2.4.2
- ruby-head
- jruby-1.7.27
- jruby-9.1.13.0
- jruby-head
- rbx-3.86
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-3.86
|
Revert the attempted rbx workaround and add to allow_failures for now.
|
Revert the attempted rbx workaround and add to allow_failures for now.
Downgrading RubyGems doesn't fix the 'Missing or uninitialized constant:
Bundler::Deprecate' error (probably requires Bundler to be downgraded
to).
|
YAML
|
mit
|
tzinfo/tzinfo
|
a5586ff70f8b455f0dd356c34f1c80a27f698491
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: false
node_js:
- "4"
- "5"
- "6"
- "7"
notifications:
email: false
|
language: node_js
sudo: false
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
- "9"
notifications:
email: false
|
Add Node 8 and 9
|
Add Node 8 and 9
|
YAML
|
mit
|
RobLoach/metalsmith-jstransformer
|
f1904096992cf07988da52f74ebd75a2bb98a62d
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 3.4
- 3.5
- 3.6
services:
- mysql
env:
- DJANGO=1.11.* DB=mysql
- DJANGO=2.2.* DB=mysql
before_install:
- export DJANGO_SETTINGS_MODULE="puzzlehunt_server.settings.travis_settings"
install:
- pip install -r requirements.txt
- pip install -q Django==$DJANGO
- pip install coveralls
- pip freeze
- mkdir -p ./media/puzzles
before_script:
- mysql -e 'create database puzzlehunt_db;' -u root
script:
- python manage.py test
after_success:
- coveralls
|
language: python
python:
- 3.5
- 3.6
- 3.7
services:
- mysql
env:
- DJANGO=1.11.* DB=mysql
- DJANGO=2.2.* DB=mysql
before_install:
- export DJANGO_SETTINGS_MODULE="puzzlehunt_server.settings.travis_settings"
install:
- pip install -r requirements.txt
- pip install -q Django==$DJANGO
- pip install coveralls
- pip freeze
- mkdir -p ./media/puzzles
before_script:
- mysql -e 'create database puzzlehunt_db;' -u root
script:
- python manage.py test
after_success:
- coveralls
|
Drop python 3.4 support, add python 3.7 testing
|
Drop python 3.4 support, add python 3.7 testing
|
YAML
|
mit
|
dlareau/puzzlehunt_server,dlareau/puzzlehunt_server,dlareau/puzzlehunt_server,dlareau/puzzlehunt_server
|
ee5007d3ecaac4a2a8f000e4438bc2920af9d922
|
.travis.yml
|
.travis.yml
|
rvm:
- ruby-head
- 1.9.2
- 1.8.7
- ree
- jruby
- rbx
- rbx-2.0.0pre
|
language: ruby
rvm:
- 2.1.1
- jruby
|
Update supported ruby versions on Travis
|
Update supported ruby versions on Travis
|
YAML
|
mit
|
flinc/concealer
|
784f65595cd1519b1004e64b37a67ee4b971c424
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.0
- 5.6
- 5.5
- 5.4
- hhvm
- hhvm-nightly
- nightly
matrix:
allow_failures:
- php: hhvm-nightly
- php: nightly
before_script:
- composer selfupdate
- composer update --no-interaction --prefer-dist
script:
- ./vendor/phpunit/phpunit/phpunit -v
|
language: php
php:
- 7.0
- 5.6
- 5.5
- 5.4
- hhvm
- hhvm-nightly
- nightly
matrix:
allow_failures:
- php: hhvm-nightly
- php: nightly
before_script:
- if [[ $TRAVIS_PHP_VERSION =~ ^php ]]; then phpenv config-rm xdebug.ini; fi
- composer selfupdate
- composer update --no-interaction --prefer-dist
script:
- ./vendor/phpunit/phpunit/phpunit -v
|
Test by Travis CI is ran without slowing XDebug
|
Test by Travis CI is ran without slowing XDebug
|
YAML
|
mit
|
jaroslavtyc/granam-string
|
fcf5d69be959519eb1a411215d7f3c27e9843b4a
|
.travis.yml
|
.travis.yml
|
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode8
language: objective-c
cache: cocoapods
podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- pod repo update # Uncomment this when the pod install failed because of the stale pod repo
- pod install --project-directory=Example
script:
- set -o pipefail && xcodebuild
-workspace Example/CascadingTableDelegate.xcworkspace
-scheme CascadingTableDelegate-Example
-destination 'platform=iOS Simulator,name=iPhone 5s'
clean test | xcpretty
- pod lib lint
|
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode9
language: objective-c
cache: cocoapods
podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- pod repo update # Uncomment this when the pod install failed because of the stale pod repo
- pod install --project-directory=Example
script:
- set -o pipefail && xcodebuild
-workspace Example/CascadingTableDelegate.xcworkspace
-scheme CascadingTableDelegate-Example
-destination 'platform=iOS Simulator,name=iPhone 5s'
clean test | xcpretty
- pod lib lint
|
Update Xcode version for Travis CI
|
Update Xcode version for Travis CI
|
YAML
|
mit
|
edopelawi/CascadingTableDelegate,edopelawi/CascadingTableDelegate,edopelawi/CascadingTableDelegate
|
c2de256e6e9089c33407fb825be8b2e87531acfd
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: stretch
language: python
python:
- "2.7"
- "3.5"
- "3.6"
before_install:
- pip install docutils
- pip install -r requirements.txt
- pip install flake8
script:
- flake8 law || exit $?
- python -m unittest tests
|
sudo: required
dist: stretch
language: python
python:
- "2.7"
- "3.6"
- "3.7"
before_install:
- pip install docutils
- pip install -r requirements.txt
- pip install flake8
script:
- flake8 law || exit $?
- python -m unittest tests
|
Update python test version in CI file.
|
Update python test version in CI file.
|
YAML
|
bsd-3-clause
|
riga/law,riga/law
|
8b41847cb1a72d41335ee04b4030368e3ba1f05d
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.4.0
- 2.3.0
- 2.2.3
- 1.9.3
- jruby-9.1.16.0
- jruby-1.7.27
- rbx
- ruby-head
- jruby-head
before_install:
- gem install bundler -v 1.10.5
matrix:
allow_failures:
- rvm: rbx
- rvm: ruby-head
- rvm: jruby-head
env:
- RUBYOPT=""
- RUBYOPT="--enable-frozen-string-literal"
|
language: ruby
rvm:
- 2.3.5
- 2.4.2
- ruby-head
- jruby-9.1.16.0
- jruby-head
- rbx-3
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
env:
- RUBYOPT=""
- RUBYOPT="--enable-frozen-string-literal"
|
Remove older Rubies from Travis builds
|
Remove older Rubies from Travis builds
|
YAML
|
mit
|
fny/xorcist,fny/xorcist,fny/xorcist,fny/xorcist
|
29e5dabd835a25895a00899126c201520db9894b
|
.travis.yml
|
.travis.yml
|
before_script:
- composer install
language: php
php:
- 5.6
- 5.5
- 5.4
|
before_script:
- composer install
language: php
php:
- 5.6
- 5.5
- 5.4
services:
- mysql -e 'create database IF NOT EXISTS test;' -uroot
|
Add database service to Travis CI configuration.
|
Add database service to Travis CI configuration.
|
YAML
|
mit
|
b01/slib
|
fc2810ba84768460665ea05dcec3a46b581dc3b2
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: trusty
addons:
apt:
packages:
- mysql-server-5.6
- mysql-client-core-5.6
- mysql-client-5.6
language: ruby
rvm:
- 2.3.1
services:
- mysql
notifications:
email: false
before_install:
- bundle config github.https true
- nvm install
- npm install -g yarn
- yarn
before_script:
- cp config/database.yml.mysql config/database.yml
- mysql -u root -h 127.0.0.1 -e 'create database imgshr_test;'
script:
- RAILS_ENV=test bundle exec rails db:migrate
- RAILS_ENV=test bundle exec ./bin/webpack
- bundle exec rails test
|
sudo: required
dist: trusty
addons:
apt:
packages:
- mysql-server-5.6
- mysql-client-core-5.6
- mysql-client-5.6
language: ruby
rvm:
- 2.3.1
services:
- mysql
- redis-server
notifications:
email: false
before_install:
- bundle config github.https true
- nvm install
- npm install -g yarn
- yarn
before_script:
- cp config/database.yml.mysql config/database.yml
- mysql -u root -h 127.0.0.1 -e 'create database imgshr_test;'
script:
- RAILS_ENV=test bundle exec rails db:migrate
- RAILS_ENV=test bundle exec ./bin/webpack
- bundle exec rails test
|
Add redis service on CI
|
Add redis service on CI
|
YAML
|
agpl-3.0
|
nning/imgshr,nning/imgshr,nning/imgshr,nning/imgshr
|
10badf5f891f7fe0cd6f8f4d88aa473e90d2713a
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
cache: bundler
script: 'bundle exec rake test:coverage --trace'
before_install:
- rvm get head # required by JRuby > 9.0.1.0
- rvm reload
rvm:
- 2.2.4
- 2.3.0
- ruby-head
- jruby-head
- jruby-9000
- jruby-9.0.1.0
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9000
|
language: ruby
sudo: false
cache: bundler
script: 'bundle exec rake test:coverage --trace'
before_install:
- rvm get head # required by JRuby > 9.0.1.0
- rvm reload
rvm:
- 2.2.4
- 2.3.0
- ruby-head
- jruby-9.0.5.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-9.0.5.0
- rvm: jruby-head
|
Use the latest JRuby 9.0.5.0 instead of old JRuby 9.0.0.0.pre1 version on Travis
|
Use the latest JRuby 9.0.5.0 instead of old JRuby 9.0.0.0.pre1 version on Travis
|
YAML
|
mit
|
lotus/controller,vyper/controller,hanami/controller,hanami/controller,hanami/controller
|
873f65d0dcc6d43e172cc40d9ac5a8633d63a328
|
.travis.yml
|
.travis.yml
|
language: erlang
install: true
before_script:
- wget https://s3.amazonaws.com/rebar3/rebar3
- chmod +x rebar3
env: PATH=$PATH:.
script: make travis
notifications:
disabled: true
otp_release:
- 20.0
- 19.3
- 19.0
- 18.2
- 18.0
- 17.5
- 17.1
- R16B03-1
# - R15B03
# - R14B04
|
language: erlang
install: true
before_script:
- wget https://s3.amazonaws.com/rebar3/rebar3
- chmod +x rebar3
env: PATH=$PATH:.
script: make travis
notifications:
disabled: true
otp_release:
- 22.0
- 21.0
- 20.0
- 19.3
- 19.0
- 18.2
- 18.0
- 17.5
- 17.1
- R16B03-1
# - R15B03
# - R14B04
|
Add erlang 21 and 22
|
Add erlang 21 and 22
|
YAML
|
apache-2.0
|
jjhoo/lfe,lfe/lfe,rvirding/lfe,lfe/lfe,jjhoo/lfe,rvirding/lfe
|
f1ac0d1447e5c644193160b3e12a47bda86f46db
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.8.x
env:
global:
- SSH_KEY="travis_key"
- GIT_NAME="VigoTech Alliance"
- GIT_EMAIL="[email protected]"
- SOURCE_DIR="docs"
- DEPLOY_BRANCH="source"
before_install:
- openssl aes-256-cbc -K $encrypted_35b54c54cbb7_key -iv $encrypted_35b54c54cbb7_iv -in travis_key.enc -out travis_key -d
before_script:
- git clone --branch v2 https://github.com/go-yaml/yaml $GOPATH/src/gopkg.in/yaml.v2
- go get -v github.com/spf13/hugo
- go get -v github.com/tidwall/gjson
script:
- go run scripts/vigotech.go
- hugo
after_success:
- ./scripts/deploy.sh
|
language: go
go:
- 1.11.x
env:
global:
- SSH_KEY="travis_key"
- GIT_NAME="VigoTech Alliance"
- GIT_EMAIL="[email protected]"
- SOURCE_DIR="docs"
- DEPLOY_BRANCH="source"
before_install:
- openssl aes-256-cbc -K $encrypted_35b54c54cbb7_key -iv $encrypted_35b54c54cbb7_iv -in travis_key.enc -out travis_key -d
before_script:
- go get -v github.com/tidwall/gjson
- go get github.com/magefile/mage
- mkdir $HOME/src && cd $HOME/src && git clone https://github.com/gohugoio/hugo.git && cd hugo && go install
script:
- cd ${TRAVIS_HOME}/gopath/src/github.com/VigoTech/vigotech.github.io && go run scripts/vigotech.go
- cd ${TRAVIS_HOME}/gopath/src/github.com/VigoTech/vigotech.github.io && hugo
after_success:
- cd ${TRAVIS_HOME}/gopath/src/github.com/VigoTech/vigotech.github.io && ./scripts/deploy.sh
|
Upgrade to last version and fix CI
|
Upgrade to last version and fix CI
|
YAML
|
bsd-3-clause
|
VigoTech/vigotech.github.io,VigoTech/vigotech.github.io,VigoTech/vigotech.github.io
|
4bbef72ebc9059952acfedc69d9a9a7d7559444b
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- node
- lts/erbium
- lts/dubnium
services:
- postgresql
branches:
only:
- master
env: >
NODE_ENV=test
APP_NAME='Express API ES6 Starter'
APP_VERSION='1.0.0'
TEST_APP_PORT='9945'
TEST_DB_NAME='express_test'
TEST_DB_PASSWORD=''
TEST_DB_PORT='5432'
TEST_DB_USER='postgres'
before_script:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
- cp .env.example .env
- psql -c 'create database express_test;' -U postgres
- yarn migrate
script:
- yarn test:coverage
after_script:
- yarn codecov
|
language: node_js
node_js:
- node
- lts/erbium
- lts/dubnium
services:
- postgresql
branches:
only:
- master
env: >
NODE_ENV=test
APP_NAME='Express API ES6 Starter'
APP_VERSION='1.0.0'
TEST_APP_PORT='9945'
TEST_DB_NAME='express_test'
TEST_DB_PASSWORD=''
TEST_DB_PORT='5432'
TEST_DB_USER='postgres'
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
before_script:
- cp .env.example .env
- psql -c 'create database express_test;' -U postgres
- yarn migrate
script:
- yarn test:coverage
after_script:
- yarn codecov
|
Upgrade yarn before running the tests
|
Upgrade yarn before running the tests
|
YAML
|
mit
|
mesaugat/express-api-es6-starter,mesaugat/express-api-es6-starter
|
03fd62c25f9ba1cf662096d4317aa92873341030
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.7.1
- 3.0.0
- ruby-head
gemfile: "gems.rb"
addons:
postgresql: "9.6"
before_install:
- nvm install 10
before_script:
- "ruby lib/initial_setup.rb ../.travis_setup"
- "psql -c 'create database sleepdata_test;' -U postgres"
- "rails db:migrate"
matrix:
allow_failures:
- rvm: 3.0.0
- rvm: ruby-head
|
language: ruby
rvm:
- 2.7.1
- 3.0.0
- ruby-head
gemfile: "gems.rb"
addons:
postgresql: "9.6"
before_install:
- nvm install 10
before_script:
- "ruby lib/initial_setup.rb ../.travis_setup"
- "psql -c 'create database sleepdata_test;' -U postgres"
- "rails db:migrate"
matrix:
allow_failures:
- rvm: ruby-head
|
Remove Ruby 3.0.0 from allow failures list
|
Remove Ruby 3.0.0 from allow failures list
|
YAML
|
mit
|
nsrr/www.sleepdata.org,nsrr/www.sleepdata.org,nsrr/www.sleepdata.org
|
3050a9d43a9bd5e10aa8d83b270e23b669aced7c
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer install --no-dev
script:
- phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
- hhvm
matrix:
allow_failures:
- php: 7
before_script:
- composer install --no-dev
script:
- phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
Add PHP7 as a target, allow failures for now.
|
Update: Add PHP7 as a target, allow failures for now.
|
YAML
|
mit
|
ptlis/conneg
|
92f1d285611d0e4da90c502bd9e4ee28bb7a9e37
|
.travis.yml
|
.travis.yml
|
language: cpp
compiler:
- clang
- gcc
addons:
apt:
packages:
- ninja
script: cmake --version && cmake -G Ninja && ninja
|
sudo: false
language: generic
cache:
apt: true
directories:
- /tmp/tools
env:
global:
- PATH="$HOME/bin:$PATH"
- CMAKE_VERSION_PREFIX=3.5
- CMAKE_VERSION_FULL=3.5.2
- NINJA_VERSION=1.7.1
matrix:
include:
- env: CXX=g++-5 CC=gcc-5
addons:
apt:
packages:
- g++-5
- unzip
sources: &sources
- r-packages-precise
- llvm-toolchain-precise-3.8
- ubuntu-toolchain-r-test
- env: CXX=clang++-3.8 CC=clang-3.8
addons:
apt:
packages:
- clang-3.8
- unzip
sources: *sources
install:
- mkdir -p /tmp/tools
- pushd /tmp/tools
- if [[ ! -f "cmake-$CMAKE_VERSION_FULL-Linux-x86_64.sh" ]]; then
curl -SOL "https://cmake.org/files/v$CMAKE_VERSION_PREFIX/cmake-$CMAKE_VERSION_FULL-Linux-x86_64.sh";
chmod +x "cmake-$CMAKE_VERSION_FULL-Linux-x86_64.sh";
fi
- ./"cmake-$CMAKE_VERSION_FULL-Linux-x86_64.sh" --prefix="$HOME" --exclude-subdir --skip-license
-
- if [[ ! -f "ninja-$NINJA_VERSION.zip" ]]; then
curl -SLO "https://github.com/ninja-build/ninja/releases/download/v$NINJA_VERSION/ninja-linux.zip";
mv "ninja-linux.zip" "ninja-$NINJA_VERSION.zip";
fi
- unzip "ninja-$NINJA_VERSION.zip" -d "$HOME/bin"
- popd
script:
- cd build
- cmake -GNinja ..
- ninja
|
Install CMake, ninja and whatnot
|
Install CMake, ninja and whatnot
Make it actually build as well
|
YAML
|
mit
|
milleniumbug/seed11,milleniumbug/seed11
|
82600b37c5c38829c834cdccacfc6d7610ded108
|
.travis.yml
|
.travis.yml
|
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
env:
- DB=MYSQL CORE_RELEASE=3.2
matrix:
include:
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.1
- php: 5.6
env: DB=PGSQL CORE_RELEASE=3.2
allow_failures:
- php: 7.0
before_script:
- composer self-update || true
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
- cd ~/builds/ss
- composer install
script:
- vendor/bin/phpunit versionfeed/tests
|
# See https://github.com/silverstripe/silverstripe-travis-support for setup details
sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
env:
- DB=MYSQL CORE_RELEASE=3.5
matrix:
include:
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.1
- php: 5.6
env: DB=PGSQL CORE_RELEASE=3.2
- php: 7.1
env: DB=MYSQL CORE_RELEASE=3.6
before_script:
- composer self-update || true
- git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
- cd ~/builds/ss
- composer install
script:
- vendor/bin/phpunit versionfeed/tests
|
Add PHP7 + SS3.6 build to Travis configuration
|
Add PHP7 + SS3.6 build to Travis configuration
|
YAML
|
bsd-3-clause
|
silverstripe-labs/silverstripe-versionfeed
|
93c8df613872c346c91f2bcf7789f38cf236c0bc
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2.1
- 2.2.2
|
language: ruby
rvm:
- 2.2.1
- 2.2.2
- 2.2.3
- 2.2.4
|
Add more ruby 2.2.x versions
|
Add more ruby 2.2.x versions
|
YAML
|
apache-2.0
|
gwshaw/pub_sub,westfieldlabs/pub_sub,gwshaw/pub_sub,westfieldlabs/pub_sub
|
eb0694afbc6b74cafebb8bedca9546c1cd7a194a
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.11
- master
install:
- make tools
- make build
script:
- make test
|
language: go
go:
- 1.11
- tip
before_intall:
- go get github.com/crowdriff/twitter
- go get github.com/tools/godep
install:
- make tools
- make build
script:
- make test
|
Add before install logic to yml file
|
Add before install logic to yml file
|
YAML
|
apache-2.0
|
crowdriff/twitter
|
688ea3b1cfa65691e54143fa21f39ff122cf9689
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
after_success:
- bash <(curl -s https://codecov.io/bash)
|
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
script: ./mvnw test -DskipRelease
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Customize script to skip release tasks
|
Customize script to skip release tasks
|
YAML
|
apache-2.0
|
DISID/springlets,DISID/springlets
|
9a43701dee878b95b58654f31baebc728d68ed8a
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
|
Disable Travis CI build against Ruby 1.8.7
|
Disable Travis CI build against Ruby 1.8.7
Dependency `nokogiri` requires Ruby >= 1.9.2.
|
YAML
|
mit
|
kyanny/ghn,masutaka/ghn
|
e27c1c690de0b7e005d269827f3217a556363844
|
.travis.yml
|
.travis.yml
|
# Configuration file for Travis-CI testing
language: node_js
node_js:
- "0.8"
- "0.10"
env:
- MAPCACHE_COMMIT=11e85095a39010f953b34077b7f0824e234e9423 # minimum supported version
- MAPCACHE_COMMIT=rel-1-0-0 # v1.0.0
- MAPCACHE_COMMIT=rel-1-2-0 # v1.2.0
- MAPCACHE_COMMIT= # repository HEAD
before_install:
- sudo apt-get install libapr1-dev libaprutil1-dev # mapcache dependencies
- sh ./tools/install-deps.sh /tmp $MAPCACHE_COMMIT # install the dependencies
|
# Configuration file for Travis-CI testing
language: node_js
node_js:
- "0.8"
- "0.10"
env:
- MAPCACHE_COMMIT=11e85095a39010f953b34077b7f0824e234e9423 # minimum supported version
- MAPCACHE_COMMIT=rel-1-0-0 # v1.0.0
- MAPCACHE_COMMIT=rel-1-2-0 # v1.2.0
- MAPCACHE_COMMIT=rel-1-2-1 # v1.2.1
- MAPCACHE_COMMIT= # repository HEAD
before_install:
- sudo apt-get install libapr1-dev libaprutil1-dev # mapcache dependencies
- sh ./tools/install-deps.sh /tmp $MAPCACHE_COMMIT # install the dependencies
|
Test against the Mapcache 1.2.1 release in Travis
|
Test against the Mapcache 1.2.1 release in Travis
|
YAML
|
bsd-2-clause
|
geo-data/node-mapcache,geo-data/node-mapcache,geo-data/node-mapcache
|
401939924593124b45af53b022e257c8ca4f2ffb
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: xcode611
before_install:
- scripts/import_keychain.sh
- brew update
- brew install carthage
- carthage checkout
- gem install pact-mock_service -v 0.2.4
- gem instal xcpretty
script:
- set -o pipefail
- carthage build --no-skip-current
- xcodebuild -workspace PactConsumerSwift.xcworkspace -scheme PactConsumerSwift test -sdk iphonesimulator8.1 | xcpretty -c
- xcodebuild -workspace PactConsumerSwift.xcworkspace -scheme 'iOS Swift Example' test -sdk iphonesimulator8.1 | xcpretty -c
after_script: scripts/delete_keychain.sh
env:
global:
secure: QmmEqePFeG6D1Qu0KrWI0w6LiwiY3V2qUWAHxQrSYFFPG4wJOZuHpwdk9NO45gOzPYxbkzXT9MynWFMs5pZKrIJCmQRkK5fNcDecwvNunsJEzBmvNYLhd0B4IKy2R1pBmKcDHPIYCzgpanPDAV7LhTXlGoUGk59+QL6qK8+hBQs=
|
language: objective-c
osx_image: xcode611
before_install:
- scripts/import_keychain.sh
- brew update
- brew install carthage
- carthage bootstrap
- gem instal xcpretty
script:
- set -o pipefail
- carthage build --no-skip-current
- xcodebuild -workspace PactConsumerSwift.xcworkspace -scheme PactConsumerSwift test -sdk iphonesimulator8.1 | xcpretty -c
after_script: scripts/delete_keychain.sh
env:
global:
secure: QmmEqePFeG6D1Qu0KrWI0w6LiwiY3V2qUWAHxQrSYFFPG4wJOZuHpwdk9NO45gOzPYxbkzXT9MynWFMs5pZKrIJCmQRkK5fNcDecwvNunsJEzBmvNYLhd0B4IKy2R1pBmKcDHPIYCzgpanPDAV7LhTXlGoUGk59+QL6qK8+hBQs=
|
Remove testing of example projects.
|
Remove testing of example projects.
|
YAML
|
mit
|
erikackermann/pact-consumer-swift,erikackermann/pact-consumer-swift,DiUS/pact-consumer-swift,bgannin/pact-consumer-swift,erikackermann/pact-consumer-swift,DiUS/pact-consumer-swift,bgannin/pact-consumer-swift,DiUS/pact-consumer-swift,erikackermann/pact-consumer-swift,bgannin/pact-consumer-swift
|
59fde9ff448e90129be6f90d303c3361fa2eace6
|
.travis.yml
|
.travis.yml
|
branches:
only:
- master
language: cpp
sudo: true
matrix:
allow_failures:
- os: osx
include:
- language: python
sudo: false
python: 2.7
env: TASKS="clang-format"
os: linux
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-6.0
packages:
- clang-format-6.0
- compiler: gcc
os: linux
addons:
apt:
sources: ubuntu-toolchain-r-test
packages: g++-4.9
env:
- TASKS="ctest gcc-4.9"
- MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9"
- compiler: gcc
os: linux
addons:
apt:
sources: ubuntu-toolchain-r-test
packages: g++-6
env:
- TASKS="ctest gcc-6.3"
- MATRIX_EVAL="CC=gcc-6 && CXX=g++-6"
- compiler: clang
os: linux
env: TASKS="ctest clang-3.9"
- os: osx
install:
- . ./scripts/travis/install.sh
script:
- ./scripts/travis/build.sh
|
branches:
only:
- master
language: cpp
sudo: true
matrix:
allow_failures:
- os: osx
include:
- language: python
sudo: false
python: 2.7
env: TASKS="clang-format"
os: linux
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-6.0
packages:
- clang-format-6.0
- compiler: gcc
os: linux
addons:
apt:
sources: ubuntu-toolchain-r-test
packages: g++-4.9
env:
- TASKS="ctest gcc-4.9"
- MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9"
- compiler: gcc
os: linux
addons:
apt:
sources: ubuntu-toolchain-r-test
packages: g++-6
env:
- TASKS="ctest gcc-6.3"
- MATRIX_EVAL="CC=gcc-6 && CXX=g++-6"
- compiler: clang
os: linux
env: TASKS="ctest clang-3.9"
- os: osx
env: TASKS="Mac clang"
install:
- . ./scripts/travis/install.sh
script:
- ./scripts/travis/build.sh
|
Add a TASK marker as suggested by Marcus.
|
Add a TASK marker as suggested by Marcus.
Signed-off-by: Geoff Hutchison <[email protected]>
|
YAML
|
bsd-3-clause
|
ghutchis/avogadrolibs,OpenChemistry/avogadrolibs,OpenChemistry/avogadrolibs,OpenChemistry/avogadrolibs,OpenChemistry/avogadrolibs,OpenChemistry/avogadrolibs,ghutchis/avogadrolibs,ghutchis/avogadrolibs,ghutchis/avogadrolibs,ghutchis/avogadrolibs
|
84809a8e191bab5640b67fd5550b13e3931de23c
|
.travis.yml
|
.travis.yml
|
language: go
install:
- go get github.com/bmizerany/assert
notifications:
email: false
|
language: go
install:
- go get github.com/kr/pty
- go get github.com/bmizerany/assert
notifications:
email: false
|
Install dep that Travis could not find before installing assert
|
Install dep that Travis could not find before installing assert
|
YAML
|
unlicense
|
akundu/statsdaemon,raintank/statsdaemon,deepglint/statsdaemon,Huangyan9188/statsdaemon,ctdk/statsdaemon,mikechris/statsdaemon,JamesCohen-awin/statsdaemon,alexclear/statsdaemon,gitinsky/statsdaemon,vimeo/statsdaemon,nejec/statsdaemon,jmptrader/statsdaemon,JamesCohen-awin/statsdaemon,AudienceScience/statsdaemon,aeppert/statsdaemon,eliothedeman/statsdaemon,raintank/statsdaemon,ploxiln/statsdaemon,akundu/statsdaemon,vimeo/statsdaemon,wojtekzw/statsdaemon,wojtekzw/statsdaemon,AudienceScience/statsdaemon,vimeo/statsdaemon,wojtekzw/statsdaemon,ploxiln/statsdaemon,Zariel/statsdaemon,mikechris/statsdaemon,Zariel/statsdaemon,aeppert/statsdaemon,raintank/statsdaemon,bitly/statsdaemon,shawnbutts/statsdaemon,bitly/statsdaemon,mikechris/statsdaemon,jmptrader/statsdaemon
|
6038f6f712a960ba5887325620a64441f9115403
|
.travis.yml
|
.travis.yml
|
sudo: false
cache: bundler
language: ruby
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
script:
- bundle exec rspec
- bundle exec rubocop
|
sudo: false
cache: bundler
language: ruby
rvm:
- 2.2.8
- 2.3.5
- 2.4.2
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
script:
- bundle exec rspec
- bundle exec rubocop
|
Update the Ruby build matrix for Travis CI.
|
Update the Ruby build matrix for Travis CI.
|
YAML
|
mit
|
tristandunn/pusher-fake,tristandunn/pusher-fake
|
34096505d2dd2f39b5916304f5eb070ad3ff86d2
|
.travis.yml
|
.travis.yml
|
# Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec spec
|
# Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec spec
|
Use the pre-release builds of chefdk
|
Use the pre-release builds of chefdk
|
YAML
|
apache-2.0
|
opscode-cookbooks/ruby,chef-cookbooks/ruby
|
ee938db7fc7fb04b703ddefa52475328302f9f20
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
- composer validate
- composer install --prefer-dist --no-interaction
script:
- vendor/bin/phpunit --coverage-clover=coverage.clover
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
language: php
php:
- 5.6
- 7.0
- hhvm
- nightly
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
- composer validate
- composer install --prefer-dist --no-interaction
script:
- vendor/bin/phpunit --coverage-clover=coverage.clover
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
Update composer dependencies Remove support for <5.6php
|
Update composer dependencies
Remove support for <5.6php
|
YAML
|
mit
|
desertknight/PHPCache
|
69a4c437eb9d65f88e45dbe722d95d1fcad8913f
|
.travis.yml
|
.travis.yml
|
language: java
script: mvn install -DskipTests=true -P strict
after_success:
- mvn clean cobertura:cobertura coveralls:report
jdk:
- openjdk6
- oraclejdk7
branches:
only:
- master
|
language: java
script: mvn install -DskipTests=true -P strict
after_success:
- mvn clean cobertura:cobertura coveralls:report
jdk:
- openjdk6
- oraclejdk7
- oraclejdk8
branches:
only:
- master
|
Update Travis config: add oraclejdk8
|
Update Travis config: add oraclejdk8
|
YAML
|
apache-2.0
|
vbauer/houdini,vbauer/houdini
|
3f450f89a57f46acdd31d61024becf0ad850914f
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.4"
- "3.3"
- "2.7"
- "2.6"
env:
- DJANGO=1.3
- DJANGO=1.4
- DJANGO=1.5
- DJANGO=1.6
- DJANGO=1.7
- DJANGO=1.8
matrix:
exclude:
- python: "2.6"
env: DJANGO=1.7
- python: "2.6"
env: DJANGO=1.8
- python: "3.4"
env: DJANGO=1.4
- python: "3.3"
env: DJANGO=1.4
- python: "3.4"
env: DJANGO=1.3
- python: "3.3"
env: DJANGO=1.3
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install pep8 --use-mirrors
- pip install pyflakes
before_script:
- "pep8 --ignore=E128,E501 templated_email"
- "pyflakes templated_email"
script:
- python manage.py test
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
env:
- DJANGO=1.7
- DJANGO=1.8
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install pep8 --use-mirrors
- pip install pyflakes
before_script:
- "pep8 --ignore=E128,E501 templated_email"
- "pyflakes templated_email"
script:
- python manage.py test
|
Drop python2.6 and old django versions
|
Drop python2.6 and old django versions
|
YAML
|
mit
|
BradWhittington/django-templated-email,vintasoftware/django-templated-email,BradWhittington/django-templated-email,vintasoftware/django-templated-email
|
70d1d4b6d2b653dec045b8764788873e9d2e8083
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2.8
- 2.2.9
- 2.3.5
- 2.3.6
- 2.4.2
- 2.4.3
- 2.5.0
services:
- mysql
before_install:
- gem install bundler
- mysql -e 'CREATE DATABASE IF NOT EXISTS test;'
env:
- USE_MYSQL=true
git:
depth: 1
|
language: ruby
rvm:
- 2.3.0
- 2.3.1
- 2.3.2
- 2.3.3
- 2.3.5
- 2.3.6
- 2.4.2
- 2.4.3
- 2.5.0
services:
- mysql
before_install:
- gem install bundler
- mysql -e 'CREATE DATABASE IF NOT EXISTS test;'
env:
- USE_MYSQL=true
git:
depth: 1
|
Update supported versions to be >= 2.3.0
|
Update supported versions to be >= 2.3.0
|
YAML
|
mit
|
mavenlink/brainstem
|
11f9a605e5f7bfbb3add8c39c8b2a403b77c351d
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.6"
# command to install dependencies
install:
- sudo apt-get update
- sudo apt-get install libsdl1.2-dev
- pip install -r requirements.txt
- pip install coveralls
- pip install nose
- pip install coverage
# command to run tests
script:
- nosetests -v --with-coverage --cover-package=CreatureRogue
after_success:
- coveralls
|
language: python
python:
- "3.6"
# command to install dependencies
install:
- sudo apt-get update
- sudo apt-get install gcc libsdl2-dev libffi-dev python-dev libomp-dev
- pip install -r requirements.txt
- pip install coveralls
- pip install nose
- pip install coverage
# command to run tests
script:
- nosetests -v --with-coverage --cover-package=CreatureRogue
after_success:
- coveralls
|
Add extra dependencies for building in linux
|
Add extra dependencies for building in linux
|
YAML
|
mit
|
DaveTCode/CreatureRogue
|
b899dfd9f2ad99c2902325113d4a8fcb4dd67cfa
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: beta-xcode6.3
before_install:
- sudo easy_install cpp-coveralls
script:
- xcodebuild clean build test -project AutoLayout.xcodeproj -scheme AutoLayout -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES
after_success:
- ./coveralls.rb
|
language: objective-c
osx_image: beta-xcode6.3
before_install:
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail
- xcodebuild -project AutoLayout.xcodeproj -scheme AutoLayout -sdk iphonesimulator8.3 -configuration Debug ONLY_ACTIVE_ARCH=NO test | xcpretty -c
|
Simplify Travis configuration. Use iOS 8.3.
|
Simplify Travis configuration. Use iOS 8.3.
|
YAML
|
mit
|
marcbaldwin/AutoLayoutBuilder,marcbaldwin/AutoLayoutBuilder
|
8d9bfded31eb3cb4453bf65d02aca51d437a0b78
|
.travis.yml
|
.travis.yml
|
language: ruby
cache:
bundler: true
rvm:
- 2.4.1
script: bundle exec rake test
gemfile:
- Gemfile
|
language: ruby
cache:
bundler: true
rvm:
- 2.4
script: bundle exec rake test
gemfile:
- Gemfile
|
Change to use the latest 2.4
|
Change to use the latest 2.4
|
YAML
|
mit
|
ninoseki/be_moderate
|
63d4a1e548a290036d9672006ce2c2d661b563ef
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
install:
- pip install flake8==2.1.0 pep8==1.5.6
- python setup.py install
- pip list
- flake8 --version
script:
- python setup.py test -q
- flake8 pyflakes setup.py
matrix:
allow_failures:
- python: pypy
sudo: false
|
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- nightly
- pypy
install:
- pip install flake8==2.1.0 pep8==1.5.6
- python setup.py install
- pip list
- flake8 --version
script:
- python setup.py test -q
- flake8 pyflakes setup.py
matrix:
allow_failures:
- python: pypy
sudo: false
|
Test "nightly" version of Python
|
Test "nightly" version of Python
This allows us to test the Python 3.5 related changes I made previously.
|
YAML
|
mit
|
epsy/pyflakes,PyCQA/pyflakes,nikolas/pyflakes,bitglue/pyflakes,pyflakes/pyflakes,jayvdb/pyflakes,asmeurer/pyflakes
|
939879cd6efb2591decb25067fff22aad24370f5
|
.travis.yml
|
.travis.yml
|
# Configuration for Travis (https://travis-ci.com)
language: objective-c
osx_image: xcode10.1
xcode_project: Bases.xcodeproj
matrix:
include:
- xcode_scheme: "Base16 (iOS)"
xcode_sdk: iphonesimulator12.1
- xcode_scheme: "Base16 (macOS)"
- xcode_scheme: "Base16 (tvOS)"
- xcode_scheme: "Base16 (watchOS)"
script: set -o pipefail && xcodebuild -project "$TRAVIS_XCODE_PROJECT" -scheme "$TRAVIS_XCODE_SCHEME" build test | xcpretty -c
- xcode_scheme: "Base32 (iOS)"
xcode_sdk: iphonesimulator12.1
- xcode_scheme: "Base32 (macOS)"
- xcode_scheme: "Base32 (tvOS)"
- xcode_scheme: "Base32 (watchOS)"
script: set -o pipefail && xcodebuild -project "$TRAVIS_XCODE_PROJECT" -scheme "$TRAVIS_XCODE_SCHEME" build test | xcpretty -c
|
# Configuration for Travis (https://travis-ci.com)
language: objective-c
osx_image: xcode10.1
xcode_project: Bases.xcodeproj
matrix:
include:
- xcode_scheme: "Base16 (iOS)"
xcode_destination: platform=iOS Simulator,OS=12.1,name=iPhone XS
- xcode_scheme: "Base16 (macOS)"
- xcode_scheme: "Base16 (tvOS)"
- xcode_scheme: "Base16 (watchOS)"
script: set -o pipefail && xcodebuild -project "$TRAVIS_XCODE_PROJECT" -scheme "$TRAVIS_XCODE_SCHEME" build | xcpretty -c
- xcode_scheme: "Base32 (iOS)"
xcode_destination: platform=iOS Simulator,OS=12.1,name=iPhone XS
- xcode_scheme: "Base32 (macOS)"
- xcode_scheme: "Base32 (tvOS)"
- xcode_scheme: "Base32 (watchOS)"
script: set -o pipefail && xcodebuild -project "$TRAVIS_XCODE_PROJECT" -scheme "$TRAVIS_XCODE_SCHEME" build | xcpretty -c
|
Reconfigure Travis CI to try to fix iOS and watchOS jobs
|
Reconfigure Travis CI to try to fix iOS and watchOS jobs
|
YAML
|
mit
|
mattrubin/Bases
|
2a06a58a419a665443b46c15423f01bd00a37e16
|
.jazzy.yaml
|
.jazzy.yaml
|
module: Fischer
module_version: 1.0.0
github_url: https://github.com/nvzqz/Fischer
swift_version: 3
author: Nikolai Vazquez
author_url: https://github.com/nvzqz
theme: fullwidth
|
module: Fischer
module_version: 1.0.0
github_url: https://github.com/nvzqz/Fischer
swift_version: 3
author: Nikolai Vazquez
author_url: https://github.com/nvzqz
theme: fullwidth
clean: true
|
Add clean to Jazzy config
|
Add clean to Jazzy config
|
YAML
|
apache-2.0
|
nvzqz/Sage,nvzqz/Sage,nvzqz/Sage
|
230c89ceaf59c3c3c2dda28bc916a2475e1db88e
|
.travis.yml
|
.travis.yml
|
rvm:
- 1.9.2
- 1.9.3
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
|
rvm:
- 1.9.2
- 1.9.3
- ruby-head
matrix:
allow_failures:
- rvm: 1.9.2
- rvm: ruby-head
|
Allow CI failure on 1.9.2
|
Allow CI failure on 1.9.2
|
YAML
|
mit
|
justincampbell/tp
|
f1396f7589cf8597ce06c76fdc750a9f2dd622b6
|
.travis.yml
|
.travis.yml
|
language: ruby
before_install:
- gem install bundler
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.5
- 2.7.0.preview2
|
language: ruby
before_install:
- gem install bundler
rvm:
- 2.3.8
- 2.4.10
- 2.5.8
- 2.6.6
- 2.7.2
|
Update Ruby versions on Travis CI
|
Update Ruby versions on Travis CI
|
YAML
|
mit
|
fbernier/tomlrb,fbernier/tomlrb
|
f99fc9aa9a17c3be62ca8f0e7b55ca25199c088d
|
.travis.yml
|
.travis.yml
|
language: ruby
before_install:
- travis_retry gem install bundler
rvm:
- 2.1
- 2.2
- 2.3.1
- 2.4
- ruby-head
- jruby
- rbx-2
gemfile:
- Gemfile
- gemfiles/redisrb-master.gemfile
matrix:
allow_failures:
- rvm: rbx-2
# Use the faster container based infrastructure
# http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
sudo: false
|
language: ruby
cache: bundler
# Use the faster container based infrastructure
# http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
sudo: false
rvm:
- 2.2
- 2.3.1
- 2.4
- ruby-head
- jruby
- rbx-2
gemfile:
- Gemfile
- gemfiles/redisrb-master.gemfile
matrix:
allow_failures:
- rvm: rbx-2
|
Drop Ruby 2.1 from testing
|
Drop Ruby 2.1 from testing
It is no longer supported https://www.ruby-lang.org/en/news/2017/04/01/support-of-ruby-2-1-has-ended and redis 4.0 requires Ruby >= 2.2
|
YAML
|
mit
|
guilleiguaran/fakeredis
|
240c20db7d48838487bc02d893bfaeac4262d6d6
|
.travis.yml
|
.travis.yml
|
---
language: ruby
sudo: false
cache: bundler
before_install: "gem install bundler -v 1.17.3"
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
- jruby-9.1.5.0
- jruby-head
env:
global:
- JRUBY_OPTS="-Xcli.debug=true --debug"
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.5.0
fast_finish: true
branches:
only: master
notifications:
email: false
|
---
language: ruby
sudo: false
before_install: "gem install bundler -v '< 2.0'"
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
- jruby-9.1.5.0
- jruby-head
env:
global:
- JRUBY_OPTS="-Xcli.debug=true --debug"
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.5.0
fast_finish: true
branches:
only: master
notifications:
email: false
|
Change to use latest ruby and restrict bundler
|
Change to use latest ruby and restrict bundler
|
YAML
|
mit
|
piotrmurach/rspec-benchmark,piotrmurach/rspec-benchmark,peter-murach/rspec-benchmark
|
600f738d57442412915c20840e0393c33f2591fb
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
rvm:
- 2.4.0
before install:
- node --version
install:
- npm install -g grunt-cli
- npm install
- bundle install
script:
- npm run lint -s
- npm test
- grunt build
- bundle exec jekyll build
|
sudo: false
language: ruby
rvm:
- 2.4.0
before install:
- . $HOME/.nvm/nvm.sh
install:
- nvm install stable
- nvm use stable
- npm install -g grunt-cli
- npm install
- bundle install
script:
- npm run lint -s
- npm test
- grunt build
- bundle exec jekyll build
|
Update node in Travis config
|
Update node in Travis config
|
YAML
|
mit
|
alexandermendes/tei-viewer,alexandermendes/tei-viewer,alexandermendes/tei-viewer
|
885e9e8e42a50c8fcaf2dd2fa00f50c131f89fc1
|
.travis.yml
|
.travis.yml
|
language: python
install:
- pip install -q coverage
- pip install python-coveralls
- pip install future
- pip install hg+https://bitbucket.org/logilab/pylint@master
- pip install hg+https://bitbucket.org/logilab/astroid@master
- bash .travis-install.sh
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/1732ae62130d81fe54d8
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: always # options: [always|never|change] default: always
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
script: nosetests --with-coverage --cover-package=functional && pylint functional
after_success:
- coveralls
|
language: python
install:
- pip install -q coverage
- pip install python-coveralls
- pip install future
- pip install hg+https://bitbucket.org/logilab/pylint@master
- pip install hg+https://bitbucket.org/logilab/astroid@master
- bash .travis-install.sh
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/1732ae62130d81fe54d8
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: always # options: [always|never|change] default: always
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
script: nosetests --with-coverage --cover-package=functional && pylint functional
after_success:
- coveralls
|
Remove 2.6 since it is also too old.
|
Remove 2.6 since it is also too old.
Supported versions are: 2.7, 3.3-5
|
YAML
|
mit
|
EntilZha/PyFunctional,lucidfrontier45/ScalaFunctional,ChuyuHsu/ScalaFunctional,ChuyuHsu/ScalaFunctional,EntilZha/ScalaFunctional,EntilZha/ScalaFunctional,lucidfrontier45/ScalaFunctional,EntilZha/PyFunctional
|
42d7db578a8338d85435abc6bf9ab67d715a7cfa
|
.travis.yml
|
.travis.yml
|
sudo: false
language: c
compiler:
- gcc
addons:
apt:
packages:
- libssl-dev
- libevent-dev
- libexpat-dev
- clang
script:
- ./configure --enable-debug
- make
- make test
- cd testcode; ../testcode/mini_tdir.sh exe clang-analysis.tdir
|
sudo: false
language: c
compiler:
- gcc
addons:
apt:
packages:
- libssl-dev
- libevent-dev
- libexpat-dev
- clang
script:
- ./configure --enable-debug
- make
- make test
- cd testdata; ../testcode/mini_tdir.sh exe clang-analysis.tdir
|
Fix run directory for clang analysis.
|
Fix run directory for clang analysis.
git-svn-id: e875384d7a5ebd9b2def38a8354dae1fda8e73bc@5166 be551aaa-1e26-0410-a405-d3ace91eadb9
|
YAML
|
bsd-3-clause
|
chantra/unbound,chantra/unbound,chantra/unbound,chantra/unbound,NLnetLabs/unbound,NLnetLabs/unbound,chantra/unbound,NLnetLabs/unbound,NLnetLabs/unbound
|
a862372cfccb6b6a3e757daf50a6a4638df37e23
|
.travis.yml
|
.travis.yml
|
rvm:
- 2.0.0-p598
- 2.1.6
- 2.2.2
branches:
only:
- master
|
rvm:
- 2.1.9
- 2.2.5
- 2.3.1
- ruby-head
before_insall:
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
|
Update ruby versions and ensure to install bundler before testing
|
Update ruby versions and ensure to install bundler before testing
|
YAML
|
mit
|
satoryu/google_suggest,satoryu/google_suggest
|
13f9f1f0e1c5e9464027b1023ae9e70e3a653a02
|
.travis.yml
|
.travis.yml
|
language: ruby
dist: focal
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.4.10
- 2.5.9
- 2.6.8
- 2.7.4
- 3.0.1
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
before_install:
- gem update --system 2.1.11
- git config --global user.email '[email protected]'
- git config --global user.name 'Test User'
|
language: ruby
dist: focal
rvm:
- 2.4.10
- 2.5.9
- 2.6.8
- 2.7.4
- 3.0.1
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
before_install:
- gem update --system 2.1.11
- git config --global user.email '[email protected]'
- git config --global user.name 'Test User'
|
Remove Ruby versions unsupported on Ubuntu 20.04
|
Remove Ruby versions unsupported on Ubuntu 20.04
|
YAML
|
mit
|
Gazler/githug,Gazler/githug,Gazler/githug
|
3e196a379512bc8ddb21058c1ab05660992da6f4
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2.2
- 2.1.6
- 2.0.0
- 1.9.3
|
language: ruby
rvm:
- 2.2.2
- 2.1.6
- 2.0.0
- 1.9.3
script: 'bundle exec rake spec'
|
Use bundler on TravisCI explicitly
|
Use bundler on TravisCI explicitly
|
YAML
|
mit
|
pr0d1r2/huawei_e5180_api
|
ef72e5c57348dfdb412ffa5956e95de3e4190665
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
|
addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env:
- UNIT_AND_LINT=1
- CHEF_LICENSE=accept
|
Update for Chef 15 license agreement and Chef Workstation
|
Update for Chef 15 license agreement and Chef Workstation
|
YAML
|
apache-2.0
|
chef-cookbooks/yum-elrepo
|
1567fab5d1d9a5062e26784c53636d2b54d61f87
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanbul coveralls
|
sudo: false
language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanbul coveralls
|
Build on Travis CI without `sudo`.
|
Build on Travis CI without `sudo`.
|
YAML
|
mit
|
bigeasy/advance,bigeasy/advance
|
5fa7da01c5eb8eecbb3c925914adfa908a9178fa
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "4.1.0"
sudo: required
before_install:
- export WAPPALYZER_ROOT=$TRAVIS_BUILD_DIR
- export WAPPALYZER_NODE_PATH=$TRAVIS_BUILD_DIR
- export PATH=$PATH:$TRAVIS_BUILD_DIR/bin
install:
- sudo apt-get update -y
- sudo apt-get install -y curl zip sudo -y --force-yes
- sudo apt-get clean
- npm install jsonlint jpm imagemin-cli -g
- ln -s docker/node/package.json package.json && npm install
- mkdir phantomjs && curl -L https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.8-linux-x86_64.tar.bz2 | tar xvjC phantomjs && ln -s $WAPPALYZER_ROOT/phantomjs/phantomjs-*-linux-x86_64/bin/phantomjs bin/phantomjs
script: wappalyzer build
after_script: ls build
|
language: node_js
node_js:
- "4.2.1"
sudo: required
before_install:
- export WAPPALYZER_ROOT=$TRAVIS_BUILD_DIR
- export WAPPALYZER_NODE_PATH=$TRAVIS_BUILD_DIR
- export PATH=$PATH:$TRAVIS_BUILD_DIR/bin
install:
- sudo apt-get update -y
- sudo apt-get install -y curl zip sudo -y --force-yes
- sudo apt-get clean
- npm install jsonlint jpm imagemin-cli -g
- ln -s docker/node/package.json package.json && npm install
- mkdir phantomjs && curl -L https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.8-linux-x86_64.tar.bz2 | tar xvjC phantomjs && ln -s $WAPPALYZER_ROOT/phantomjs/phantomjs-*-linux-x86_64/bin/phantomjs bin/phantomjs
script: wappalyzer build
after_script: ls build
|
Update NodeJS in Travis to 4.2.1 (LTS release)
|
Update NodeJS in Travis to 4.2.1 (LTS release)
|
YAML
|
mit
|
AliasIO/wappalyzer,AliasIO/wappalyzer,WPO-Foundation/Wappalyzer,WPO-Foundation/Wappalyzer,WPO-Foundation/Wappalyzer
|
cf9378025160dbafe5deba0be4f9ef072e8dc30b
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.6"
- "3.7"
addons:
postgresql: "9.4"
services:
- rabbitmq
- postgresql
cache:
- apt
- pip
before_install:
- sudo apt-get -qq update
- sudo /etc/init.d/postgresql stop
- sudo apt-get install -y postgresql-plpython-9.4
- sudo /etc/init.d/postgresql start 9.4
- psql -c 'create database taiga;' -U postgres
install:
- travis_retry pip install pipenv
- travis_retry pipenv sync --dev
script:
- pipenv run coverage run --source=taiga --omit='*tests*,*commands*,*migrations*,*admin*,*.jinja,*dashboard*,*settings*,*wsgi*,*questions*,*documents*' -m pytest -v --tb=native --pythonwarnings=default
after_success:
- coveralls
|
language: python
python:
- "3.6"
- "3.7"
addons:
postgresql: "9.4"
services:
- rabbitmq
- postgresql
cache:
- apt
- pip
before_install:
- sudo apt-get -qq update
- sudo /etc/init.d/postgresql stop
- sudo apt-get install -y postgresql-plpython-9.4
- sudo /etc/init.d/postgresql start 9.4
- psql -c 'create database taiga;' -U postgres
install:
- travis_retry pip install -r requirements.txt -r requirements-devel.txt
script:
- coverage run --source=taiga --omit='*tests*,*commands*,*migrations*,*admin*,*.jinja,*dashboard*,*settings*,*wsgi*,*questions*,*documents*' -m pytest -v --tb=native --pythonwarnings=default
after_success:
- coveralls
|
Migrate from pipenv to pip-tools (3/)
|
Migrate from pipenv to pip-tools (3/)
|
YAML
|
agpl-3.0
|
taigaio/taiga-back,taigaio/taiga-back,taigaio/taiga-back
|
c7d68bccc4bab20c4b85135c6410cb8841e193b7
|
.travis.yml
|
.travis.yml
|
---
language: go
go:
- "1.11.x"
- "1.12.x"
services:
- redis-server
before_install:
# update to latest version of redis
- sudo apt-get install -y redis-server
- GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/[email protected]
script:
# for some reason go test -v -race ./... doesn't work on travis, so use this
- go list ./... | xargs -n1 go test -v -race
- golangci-lint run -D errcheck -E goimports -E golint -E misspell -E stylecheck -E unconvert
after_failure:
- tail -n100 ./*.log
|
---
language: go
go:
- "1.12.x"
- "1.13.x"
services:
- redis-server
before_install:
# update to latest version of redis
- sudo apt-get install -y redis-server
- GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/[email protected]
script:
# for some reason go test -v -race ./... doesn't work on travis, so use this
- go list ./... | xargs -n1 go test -v -race
- golangci-lint run -D errcheck -E goimports -E golint -E misspell -E stylecheck -E unconvert
after_failure:
- tail -n100 ./*.log
|
Update Travis for Go 1.13
|
Update Travis for Go 1.13
Also update golangci-lint for Go 1.13 support.
|
YAML
|
mit
|
mediocregopher/radix.v3
|
739974ca0cae58d43231610392e109e0a7dd76b3
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
install:
- pip install -e .
script:
- nosetests
sudo: false
|
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
install:
- pip install -e .
script:
- nosetests
sudo: false
|
Add Python 3.5 to tests.
|
Add Python 3.5 to tests.
|
YAML
|
mit
|
kipe/siemens-pac
|
c9e9cdb152a9c6124156654c356540d29cfce00e
|
.travis.yml
|
.travis.yml
|
language: python
python: "2.7.13"
script:
- ./pants --version
- ./pants list ::
matrix:
include:
- os: osx
osx_image: xcode6.4
language: generic
- os: osx
osx_image: xcode7.3
language: generic
- os: osx
osx_image: xcode8.3.3
language: generic
- os: osx
osx_image: xcode9.1
language: generic
- os: linux
dist: precise
sudo: required
- os: linux
dist: trusty
sudo: false
|
language: python
python: "2.7.13"
# Needed to enable Travis CI for gh-pages branches, see:
# https://github.com/travis-ci/travis-core/pull/137
branches:
only:
- gh-pages
script:
- ./pants --version
- ./pants list ::
matrix:
include:
- os: osx
osx_image: xcode6.4
language: generic
- os: osx
osx_image: xcode7.3
language: generic
- os: osx
osx_image: xcode8.3.3
language: generic
- os: osx
osx_image: xcode9.1
language: generic
- os: linux
dist: precise
sudo: required
- os: linux
dist: trusty
sudo: false
|
Enable Travis CI for `gh-pages` branch.
|
Enable Travis CI for `gh-pages` branch.
|
YAML
|
apache-2.0
|
pantsbuild/setup,jsirois/setup,jsirois/setup,pantsbuild/setup,jsirois/setup,pantsbuild/setup
|
be5169b9ac77053e8b67457d388cd4640963d1d6
|
.travis.yml
|
.travis.yml
|
language: ruby
bundler_args: --without development
script: bundle exec rspec --pattern "spec/*_spec.rb"
gemfile: spec/support/rails_test_app/Gemfile
rvm:
- 2.0.0
- 2.1.0
- ruby-head
- jruby-head
- rbx
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx
|
language: ruby
bundler_args: --without development
script: bundle exec rspec --pattern "spec/*_spec.rb"
gemfile: spec/support/rails_test_app/Gemfile
rvm:
- 2.0.0
- 2.1.0
- ruby-head
- jruby-head
- rbx
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx
branches:
only:
- master
|
Test only master branch in TravisCI
|
Test only master branch in TravisCI
|
YAML
|
mit
|
Nedomas/zapata,askl56/zapata,askl56/zapata,askl56/zapata,askl56/zapata,Nedomas/zapata,Nedomas/zapata,Nedomas/zapata
|
9fd877a61b804cb4c696a410f2c929283e37a057
|
.travis.yml
|
.travis.yml
|
language: python
dist: xenial
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
install: pip install tox-travis
script: tox
|
language: python
dist: xenial
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
install: pip install tox-travis
script: tox
|
Remove Python 2.7 job from Travis CI
|
Remove Python 2.7 job from Travis CI
|
YAML
|
bsd-2-clause
|
madzak/python-json-logger
|
bee523897d8f7307b2533a37cafb9eb4bb8b2b4e
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.12"
- "0.10"
- "iojs-v1"
- "iojs-v2"
- "iojs-v3"
- "4.0.0"
script:
- ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec -s 6500 -t 8000
after_success:
- ./node_modules/coveralls/bin/coveralls.js < coverage/lcov.info
sudo: false
|
language: node_js
node_js:
- "0.12"
- "0.10"
- "4"
- "5"
script:
- ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec -s 6500 -t 8000
after_success:
- ./node_modules/coveralls/bin/coveralls.js < coverage/lcov.info
sudo: false
|
Update Travis CI node versions
|
Update Travis CI node versions
|
YAML
|
mit
|
addaleax/q-ratelimit,addaleax/promise-ratelimit
|
23918e7fd8dc250112fd90f6003c7ca747537081
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
script:
- bin/phpunit
# - bin/behat --no-paths --format failed
before_script:
- sudo apt-get -qq update > /dev/null
- sudo apt-get -qq install graphviz > /dev/null
- phpenv rehash > /dev/null
- composer selfupdate --quiet
- composer install -n --prefer-source --dev
- bin/phpunit
# - bin/behat --no-paths --format failed
- composer update -n --prefer-source --dev
notifications:
irc: "irc.freenode.org#phpdocumentor"
email:
- [email protected]
- [email protected]
matrix:
allow_failures:
- hhvm
|
language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
script:
- bin/phpunit
# - bin/behat --no-paths --format failed
before_script:
- sudo apt-get -qq update > /dev/null
- sudo apt-get -qq install graphviz > /dev/null
- phpenv rehash > /dev/null
- composer selfupdate --quiet
- composer install -n --prefer-source --dev
- bin/phpunit
# - bin/behat --no-paths --format failed
- composer update -n --prefer-source --dev
notifications:
irc: "irc.freenode.org#phpdocumentor"
email:
- [email protected]
- [email protected]
|
Remove hhvm because it fails the build and is not ignored
|
Remove hhvm because it fails the build and is not ignored
|
YAML
|
mit
|
Maxim-Mazurok/phpDocumentor2,jaapio/phpDocumentor2,webmozart/phpDocumentor2,senuamedia/phpDocumentor2,senuamedia/phpDocumentor2,mbed67/phpDocumentor2,mvriel/phpDocumentor2,fdewinne/phpDocumentor2,phpDocumentor/phpDocumentor2,ddymko/phpDocumentor2,cesarmarinhorj/phpDocumentor2,rscarson/phpDocumentor2,PatidarWeb/phpDocumentor2,ddymko/phpDocumentor2,rgeraads/phpDocumentor2,potherca/phpDocumentor2,angi2/phpDocumentor2,potherca/phpDocumentor2,beealone/phpDocumentor2,pierredup/phpDocumentor2,beealone/phpDocumentor2,mvriel/phpDocumentor2,rscarson/phpDocumentor2,cesarmarinhorj/phpDocumentor2,potherca-contrib/phpDocumentor2,senuamedia/phpDocumentor2,ddymko/phpDocumentor2,potherca-contrib/phpDocumentor2,fdewinne/phpDocumentor2,revinate/phpDocumentor2,fdewinne/phpDocumentor2,revinate/phpDocumentor2,PatidarWeb/phpDocumentor2,potherca-contrib/phpDocumentor2,mbed67/phpDocumentor2,senuamedia/phpDocumentor2,rgeraads/phpDocumentor2,ddymko/phpDocumentor2,webmozart/phpDocumentor2,4414/phpDocumentor2,potherca/phpDocumentor2,jaapio/phpDocumentor2,webmozart/phpDocumentor2,revinate/phpDocumentor2,Maxim-Mazurok/phpDocumentor2,cesarmarinhorj/phpDocumentor2,mbed67/phpDocumentor2,pierredup/phpDocumentor2,angi2/phpDocumentor2,cesarmarinhorj/phpDocumentor2,pierredup/phpDocumentor2,potherca/phpDocumentor2,mvriel/phpDocumentor2,Maxim-Mazurok/phpDocumentor2,pierredup/phpDocumentor2,rgeraads/phpDocumentor2,mvriel/phpDocumentor2,potherca-contrib/phpDocumentor2,phpDocumentor/phpDocumentor2,angi2/phpDocumentor2,phpDocumentor/phpDocumentor2,jaapio/phpDocumentor2,mbed67/phpDocumentor2,4414/phpDocumentor2,webmozart/phpDocumentor2,revinate/phpDocumentor2,beealone/phpDocumentor2,fdewinne/phpDocumentor2,rgeraads/phpDocumentor2,PatidarWeb/phpDocumentor2,Maxim-Mazurok/phpDocumentor2,beealone/phpDocumentor2,rscarson/phpDocumentor2,4414/phpDocumentor2,phpDocumentor/phpDocumentor2,4414/phpDocumentor2,jaapio/phpDocumentor2,angi2/phpDocumentor2,PatidarWeb/phpDocumentor2,rscarson/phpDocumentor2
|
6b4a8a3ba40213dd6635ef1d6ec91f4d54a6d556
|
.travis.yml
|
.travis.yml
|
language: ruby
bundler_args: --without development
rvm:
- 2.0.0
- 1.9.3
- jruby
- rbx-19mode
gemfile:
- gemfiles/Gemfile.rails-4-0
- gemfiles/Gemfile.rails-3-2
- gemfiles/Gemfile.rails-3-1
services:
- rabbitmq
deploy:
provider: rubygems
api_key:
secure: gNudZK0JaRRweudmkpdkJjUMydItTSW5cXjpYdYCfahqd/cD0xPjxotr2TCHrJibfVauoT/PytbQWcP3jnOYytp6oS0up5Y+uKpGmbqVYx/rZvShWALszcBs71lUh/IZpDXNHc+yo/01HCn10/uQUFRtrjWgMwHtHxXb09xE4wQ=
gem: acfs
on:
branch: master
repo: jgraichen/acfs
rvm: 2.0.0
gemfiles: gemfiles/Gemfile.rails-4-0
|
language: ruby
bundler_args: --without development
rvm:
- 2.0.0
- 1.9.3
- jruby
- rbx-19mode
gemfile:
- gemfiles/Gemfile.rails-4-0
- gemfiles/Gemfile.rails-3-2
- gemfiles/Gemfile.rails-3-1
services:
- rabbitmq
deploy:
provider: rubygems
api_key:
secure: gNudZK0JaRRweudmkpdkJjUMydItTSW5cXjpYdYCfahqd/cD0xPjxotr2TCHrJibfVauoT/PytbQWcP3jnOYytp6oS0up5Y+uKpGmbqVYx/rZvShWALszcBs71lUh/IZpDXNHc+yo/01HCn10/uQUFRtrjWgMwHtHxXb09xE4wQ=
gem: acfs
on:
branch: master
repo: jgraichen/acfs
rvm: 2.0.0
|
Remove deploy on gemfile option.
|
Remove deploy on gemfile option.
|
YAML
|
mit
|
johannesjasper/acfs,dahoo/acfs,jgraichen/acfs
|
89fabd9e21500fbdae8dfdd7a2f8dfa139bcc1f6
|
.travis.yml
|
.travis.yml
|
language: php
php:
- '5.6'
- '7.0'
- hhvm
- nightly
cache:
directories:
- ./vendor
install:
- composer --prefer-source install
script:
- vendor/bin/phpunit
- bin/psalm
|
language: php
php:
- '5.6'
- '7.0'
- hhvm
cache:
directories:
- ./vendor
install:
- composer --prefer-source install
script:
- vendor/bin/phpunit
- bin/psalm
|
Remove nightly from master due to PhpUnit issue
|
Remove nightly from master due to PhpUnit issue
|
YAML
|
mit
|
vimeo/psalm,vimeo/psalm
|
3c9107f9a1ec836e8cb4c199aaa4d625604c7868
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-18mode
- jruby-19mode
- ruby-head
- jruby-head
- 1.8.7
- ree
|
language: ruby
rvm:
- 2.0.0
- 1.9.3
- jruby-19mode
- rbx-2.1.1
|
Change the Ruby versions tested in Travis
|
Change the Ruby versions tested in Travis
1.8.7 and 1.9.2 are end of lined, ree is dead, jruby-head will not be stable for a long time, and rbx was missing.
[ci skip]
|
YAML
|
mit
|
iconara/immutable_struct
|
3cb6ff81d107a445afe67da15a024b72d5510b29
|
.travis.yml
|
.travis.yml
|
language: elixir
elixir:
- 1.1.1
- 1.2.0
otp_release:
- 18.1
after_script:
- mix deps.get --only docs
- MIX_ENV=docs mix inch.report
|
language: elixir
matrix:
include:
- otp_release: 18.3
elixir: 1.1.1
- otp_release: 18.3
elixir: 1.2.6
- otp_release: 18.3
elixir: 1.3.2
- otp_release: 19.0
elixir: 1.3.2
sudo: false
after_script:
- mix deps.get --only docs
- MIX_ENV=docs mix inch.report
|
Add more versions to CI matrix
|
Add more versions to CI matrix
We need to ensure that works good in Elixir 1.3.2 and Erlang 19.
|
YAML
|
mit
|
philss/floki,philss/floki
|
21fa027c667f6be85bff994618023ebf4bc2b957
|
.travis.yml
|
.travis.yml
|
---
language: android
android:
components:
- tools
- platform-tools
- build-platform-24.0.1
- android-23
- extra-android-m2repository
- extra-google-m2repository
- extra-google-google_play_services
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
script:
- './gradlew test' # Run unit tests
|
---
language: android
android:
components:
- tools
- platform-tools
- build-platform-24.0.1
- android-23
- extra-android-m2repository
- extra-google-m2repository
- extra-google-google_play_services
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
script:
- 'chmod +x gradlew'
- './gradlew test' # Run unit tests
|
Add permissions to gradlew file
|
Add permissions to gradlew file
|
YAML
|
apache-2.0
|
joaoevangelista/wakatime-android-client,joaoevangelista/wakatime-android-client
|
3529797393eda1c06e9f3c40969ca759bcdf2dcf
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.4.3
- 1.5.4
- 1.6.2
install:
- go get github.com/mattn/go-sqlite3
- go get github.com/twpayne/go-kml
sudo: false
|
language: go
go:
- 1.6.2
- 1.5.4
- 1.4.3
install:
- go get github.com/mattn/go-sqlite3
- go get github.com/twpayne/go-kml
sudo: false
|
Test on Go 1.6.2 first
|
Test on Go 1.6.2 first
|
YAML
|
bsd-2-clause
|
twpayne/go-geom
|
fa8d6708cfe32ebabb15b891b2590e2f643feaf0
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 4
- 6
- 8
- 9
before_install:
- npm install -g npm@latest
- npm install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
script: npm run lint && npm run test-coveralls
|
language: node_js
node_js:
- 6
- 8
- 10
before_install:
- npm install -g npm@latest
- npm install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
script: npm run lint && npm run test-coveralls
|
Remove CI testing for node 4 and 9, add for node 10
|
Remove CI testing for node 4 and 9, add for node 10
|
YAML
|
mit
|
RobinThrift/gulp-requirejs,RobinThrift/gulp-requirejs,jorrit/gulp-requirejs,jorrit/gulp-requirejs
|
7c5bb7e2fb883f96f73b6357c7e53a8ca3585a06
|
.travis.yml
|
.travis.yml
|
language: ruby
script: 'bundle exec rake spec'
rvm:
- 1.9.3
- 2.0.0
- jruby
- rbx
notifications:
irc:
channels:
- irc.freenode.org#mutant
on_success: never
on_failure: change
|
language: ruby
script: 'bundle exec rake spec'
rvm:
- 1.9.3
- 2.0.0
- jruby
notifications:
irc:
channels:
- irc.freenode.org#mutant
on_success: never
on_failure: change
|
Remove rbx from matrix till its gem setup is table again
|
Remove rbx from matrix till its gem setup is table again
|
YAML
|
mit
|
chastell/unparser,mbj/unparser,mvz/unparser,mbj/unparser,glittershark/unparser
|
6d18551345754062069d5c5304fc97015936db57
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
before_install:
- npm install -g gulp
- gem install sass
|
language: node_js
node_js:
- "0.10"
before_install:
- npm install -g bower gulp
- gem install sass
|
Install bower on Travis CI
|
Install bower on Travis CI
|
YAML
|
mit
|
rakuten-frontend/bower-browser,rakuten-frontend/bower-browser
|
c2a930345ba50d696753078678cdf1d89ef77447
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.8
before_install:
- sudo sh -c "echo 'JVM_OPTS=\"$JVM_OPTS -Djava.net.preferIPv4Stack=false\"' >> /usr/local/cassandra/conf/cassandra-env.sh"
- sudo service cassandra start
- sleep 8
script:
- rm -rf node_modules/zookeeper-client/node_modules/zookeeper/build && cd node_modules/zookeeper-client/node_modules/zookeeper/ && npm build
- npm run-script lint
- npm run-script test
notifications:
email:
- [email protected]
|
language: node_js
node_js:
- 0.8
before_install:
- sudo sh -c "echo 'JVM_OPTS=\"$JVM_OPTS -Djava.net.preferIPv4Stack=false\"' >> /usr/local/cassandra/conf/cassandra-env.sh"
- sudo service cassandra start
- sleep 8
script:
- rm -rf node_modules/zookeeper-client/node_modules/zookeeper/build && cd node_modules/zookeeper-client/node_modules/zookeeper/ && npm run-script build && cd ../../../../
- npm run-script lint
- npm run-script test
notifications:
email:
- [email protected]
|
Use run-script and go back to the root directory before running lint and tests.
|
Use run-script and go back to the root directory before running lint and tests.
|
YAML
|
apache-2.0
|
racker/service-registry,racker/service-registry,racker/service-registry
|
ad94c89f2c162952db59edbe6fd528447a6f732b
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.1
- 1.2
- 1.3
- 1.4
- tip
|
language: go
go:
- 1.1
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
- tip
|
Add Travis-CI for Golang v 1.5, 1.6
|
Add Travis-CI for Golang v 1.5, 1.6
|
YAML
|
bsd-3-clause
|
mantyr/goquery,mantyr/goquery
|
66bf85e5dd0d5764af44887345bbae8722117c4f
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
cache: bundler
bundler_args: --without console benchmarks
script:
- bundle exec rake spec
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.0
- rbx-2
- jruby-9000
- ruby-head
- jruby-head
env:
global:
- JRUBY_OPTS='--dev -J-Xmx1024M'
matrix:
allow_failures:
- rvm: rbx-2
- rvm: ruby-head
- rvm: jruby-head
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/19098b4253a72c9796db
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
language: ruby
sudo: false
cache: bundler
bundler_args: --without console benchmarks
script:
- bundle exec rake spec
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.0
- rbx-2
- jruby-9000
- ruby-head
env:
global:
- JRUBY_OPTS='--dev -J-Xmx1024M'
matrix:
allow_failures:
- rvm: rbx-2
- rvm: ruby-head
- rvm: jruby-head
include:
- rvm: jruby-head
before_install: gem install bundler --no-ri --no-rdoc
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/19098b4253a72c9796db
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
Install bundler in jruby-head build
|
Install bundler in jruby-head build
|
YAML
|
mit
|
dryrb/dry-validation,dry-rb/dry-validation,dryrb/dry-validator,dry-rb/dry-validation
|
af8b9e8be8b2a414625d4fd7696c59dec2f95b12
|
.travis.yml
|
.travis.yml
|
language: c
sudo: required
dist: trusty
os:
- linux
#- osx
compiler:
- gcc
- clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- cmake
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update; fi
#- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
script:
- mkdir build && cd build
- cmake ..
- make
- cd .. && rm -r ./build
|
language: c
sudo: required
dist: trusty
os:
- linux
#- osx
compiler:
- gcc
- clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- cmake
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update; fi
#- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
script:
- mkdir build && cd build
- cmake ..
- make
- cd .. && rm -r ./build
|
Fix Travis-CI AVX Problem (3)
|
Fix Travis-CI AVX Problem (3)
|
YAML
|
mit
|
Revimal/lepcapy,Revimal/lepcapy,Revimal/lepcapy
|
9087f0b3b7c0ebd6d6438beb72732ddbd44a709f
|
.travis.yml
|
.travis.yml
|
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
script:
- cargo test --verbose
|
language: rust
dist: trusty
sudo: false
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
script:
- cargo test --verbose
- cargo install
- rustup target add asmjs-unknown-emscripten
- git clone https://github.com/koute/stdweb.git
- cd stdweb && cargo web test --nodejs
|
Add a poor man's test
|
Add a poor man's test
This should *probably* be replaced with some
actual tests, but it will do for now.
|
YAML
|
apache-2.0
|
koute/cargo-web,koute/cargo-web,koute/cargo-web,koute/cargo-web
|
505e505be5115191f769d5c399a234e7e05a1808
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
install:
- npm install -g bower
- npm install
- bower install
script:
- npm test
after_success:
- "./bin/bower_build"
|
sudo: false
language: node_js
install:
- npm install
- bower install
script:
- npm test
after_success:
- "./bin/bower_build"
|
Remove extra global npm install.
|
Remove extra global npm install.
|
YAML
|
apache-2.0
|
SaladFork/ember-mocha,Robdel12/ember-mocha,cowboyd/ember-mocha,switchfly/ember-mocha,cowboyd/ember-mocha,alexgb/ember-mocha,alexgb/ember-mocha,alexgb/ember-mocha,switchfly/ember-mocha,switchfly/ember-mocha,SaladFork/ember-mocha,SaladFork/ember-mocha,cowboyd/ember-mocha,emberjs/ember-mocha,emberjs/ember-mocha,jeffreybiles/ember-mocha,Robdel12/ember-mocha,Robdel12/ember-mocha,jeffreybiles/ember-mocha,jeffreybiles/ember-mocha
|
129a7e186848eb89ce058faf225ad1dbd47a47f2
|
.travis.yml
|
.travis.yml
|
language: "node_js"
node_js:
- "0.10"
- "0.8"
- "0.6"
before_install:
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-cov-to-coveralls"
|
language: "node_js"
node_js:
- "iojs"
- "0.12"
- "0.10"
- "0.8"
- "0.6"
before_install:
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-cov-to-coveralls"
|
Enable node 0.12 and iojs on Travis CI
|
Enable node 0.12 and iojs on Travis CI
|
YAML
|
mit
|
ernestopino/passport,Faiz7412/passport,dentrinh/passport,shubham13jain/passport,kidaa/passport,arover/passport,modulexcite/passport,bartuspan/passport,jameswomack/passport-restify,Trult/passport,kolomiichenko/passport,DaAwesomeP/passport,pandeysoni/passport,imjerrybao/passport,wakashige/passport,qitianchan/passport,mcanthony/passport,jaredhanson/passport
|
c4a80424ccf227853c9c50a117da3a1714f98b84
|
.travis.yml
|
.travis.yml
|
language: java
jdk: oraclejdk8
env:
- TEST_SUITE=test
- TEST_SUITE=testDeterministic
script: "gradle --stacktrace $TEST_SUITE --debug"
sudo: false
|
language: java
jdk: oraclejdk8
env:
- TEST_SUITE=test
- TEST_SUITE=testDeterministic
script: "gradle --stacktrace $TEST_SUITE --debug"
sudo: required
dist: trusty
|
Switch to Travis Trusty beta
|
Switch to Travis Trusty beta
|
YAML
|
mit
|
nusco/narjillos
|
f25906651d92973af73a58fc3a11f3f89e906b7a
|
.travis.yml
|
.travis.yml
|
language: cpp
env:
- LLVM_VERSION=3.5 GCC_VERSION=4.8
- LLVM_VERSION=3.6 GCC_VERSION=4.8
- LLVM_VERSION=3.7 GCC_VERSION=4.8
matrix:
allow_failures: #llvm-3.7 is currently broken
- env: LLVM_VERSION=3.7 GCC_VERSION=4.8
before_install:
- if [[ ${LLVM_VERSION} != 3.7 ]]; then
sudo add-apt-repository -y "deb http://llvm.org/apt/precise/ llvm-toolchain-precise-${LLVM_VERSION} main";
else
sudo add-apt-repository -y 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise main';
fi
- sudo add-apt-repository -y 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise main'
- wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
- sudo add-apt-repository -y 'deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu precise main'
- sudo apt-get update
- sudo apt-get install llvm-${LLVM_VERSION}-dev clang-${LLVM_VERSION} g++-${GCC_VERSION}
- if [[ $CXX = "g++" ]]; then
export CXX="g++-${GCC_VERSION}";
export CC="gcc-${GCC_VERSION}";
else
export CXX="clang++-${LLVM_VERSION}";
export CC="clang-${LLVM_VERSION}";
fi
- export LLVM_CONFIG=llvm-config-${LLVM_VERSION}
script:
- autoreconf -i && ./configure && make distcheck
compiler:
- clang
- gcc
|
language: cpp
env:
- LLVM_VERSION=3.7 GCC_VERSION=4.8
- LLVM_VERSION=3.7 GCC_VERSION=4.9
before_install:
- sudo add-apt-repository -y 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise main'
- sudo add-apt-repository -y 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise main'
- wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
- sudo add-apt-repository -y 'deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu precise main'
- sudo apt-get update
- sudo apt-get install llvm-${LLVM_VERSION}-dev clang-${LLVM_VERSION} g++-${GCC_VERSION}
- if [[ $CXX = "g++" ]]; then
export CXX="g++-${GCC_VERSION}";
export CC="gcc-${GCC_VERSION}";
else
export CXX="clang++-${LLVM_VERSION}";
export CC="clang-${LLVM_VERSION}";
fi
- export LLVM_CONFIG=llvm-config-${LLVM_VERSION}
script:
- autoreconf -i && ./configure && make distcheck
compiler:
- clang
- gcc
|
Build master only against LLVM 3.7
|
Build master only against LLVM 3.7
|
YAML
|
bsd-3-clause
|
losalamos/Byfl,losalamos/Byfl,losalamos/Byfl,losalamos/Byfl
|
a2bedb04b9520167f4c97754b3a8ffe468e84a00
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.0
- 5.6
- 5.5
- hhvm
script:
- composer install --prefer-source --no-dev --no-interaction
- phpunit --configuration app/phpunit.xml.dist --no-coverage
|
language: php
php:
- 7.0
- 5.6
- 5.5
- hhvm
install:
- composer install --prefer-source --no-dev --no-interaction
script:
- phpunit --configuration app/phpunit.xml.dist --no-coverage
|
Move the "composer install" command under the "install" section
|
Move the "composer install" command under the "install" section
|
YAML
|
mit
|
Comrade42/phpBB-Parser
|
8f9abc61571631a346c09bb8b4cef3fe41006fea
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.3
- jruby
- rbx-3
script: bundle exec rake test
|
language: ruby
rvm:
- 2.3
# - jruby
script: bundle exec rake test
|
Disable (permanently) rbx and (temporarily) jruby targets for Travis.
|
Disable (permanently) rbx and (temporarily) jruby targets for Travis.
|
YAML
|
mit
|
mtortonesi/ruby-mhl
|
15c493f7ac59b08252e5e87f849cf1704e677523
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.2
- 1.9.3
- ruby-head
notifications:
email: false
|
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- ruby-head
- jruby-head
notifications:
email: false
|
TEST AGAINST (almost) ALL RUBIES
|
TEST AGAINST (almost) ALL RUBIES
|
YAML
|
mit
|
bfontaine/meuh-cli
|
06ee73ac0575e25fa5abb246985a08bd28f6f5a0
|
.travis.yml
|
.travis.yml
|
env:
- CABALVER=1.20 GHCVER=7.8.4 HAPPYVER=1.19.5 ALEXVER=3.1.4
before_install:
- travis_retry sudo apt-add-repository -y ppa:hvr/ghc
- travis_retry sudo apt-get update
- travis_retry sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER happy-$HAPPYVER alex-$ALEXVER
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:/opt/happy/$HAPPYVER/bin:/opt/alex/$ALEXVER/bin:$PATH
install:
- cabal --version
- ghc --version
- happy --version
- alex --version
- travis_retry cabal update
- cp secrets.m4.example secrets.m4
- make
- cabal install --enable-tests --reorder-goals --max-backjumps=-1 -j
- cabal install yesod-bin
- export PATH=$HOME/.cabal/bin:$PATH
- ls $HOME/.cabal/bin
- yesod build
- yesod test
|
env:
- CABALVER=1.20 GHCVER=7.8.4 HAPPYVER=1.19.5 ALEXVER=3.1.4
before_install:
- travis_retry sudo apt-add-repository -y ppa:hvr/ghc
- travis_retry sudo apt-get update
- travis_retry sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER happy-$HAPPYVER alex-$ALEXVER libpq-dev
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:/opt/happy/$HAPPYVER/bin:/opt/alex/$ALEXVER/bin:$PATH
install:
- cabal --version
- ghc --version
- happy --version
- alex --version
- travis_retry cabal update
- cp secrets.m4.example secrets.m4
- make
- cabal install --enable-tests --reorder-goals --max-backjumps=-1 -j
- cabal install yesod-bin
- export PATH=$HOME/.cabal/bin:$PATH
- ls $HOME/.cabal/bin
- yesod build
- yesod test
|
Install libpq-dev in Travis CI.
|
Install libpq-dev in Travis CI.
|
YAML
|
agpl-3.0
|
sajith/betty-web
|
6186e10618e1c8bd2ebfd7321a9e27350b3240bd
|
.travis.yml
|
.travis.yml
|
sudo: false
cache: bundler
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- ruby-head
- jruby-19mode
- jruby-9.0.1.0
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
fast_finish: true
before_install: gem update --remote bundler
install:
- bundle install --retry=3
script:
- bundle exec rspec
- bundle exec rake coveralls:push
- bundle exec rubocop
|
sudo: false
cache: bundler
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- ruby-head
- jruby-19mode
- jruby-9.0.1.0
- rbx-2
env:
# this doesn't do anything for MRI or RBX, but it doesn't hurt them either
# for JRuby, it enables us to get more accurate coverage data
- JRUBY_OPTS="--debug"
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
fast_finish: true
before_install: gem update --remote bundler
install:
- bundle install --retry=3
script:
- bundle exec rspec
- bundle exec rake coveralls:push
- bundle exec rubocop
|
Set JRUBY_OPTS when testing on JRuby through Travis CI
|
Set JRUBY_OPTS when testing on JRuby through Travis CI
Supposedly this can help to acquire more accurate coverage data.
|
YAML
|
mit
|
haziqhafizuddin/rubocop,vergenzt/rubocop,hanumakanthvvn/rubocop,smakagon/rubocop,volkert/rubocop,bbatsov/rubocop,tdeo/rubocop,akihiro17/rubocop,alexcstark/rubocop,Koronen/rubocop,hanumakanthvvn/rubocop,rrosenblum/rubocop,tejasbubane/rubocop,iGEL/rubocop,smakagon/rubocop,mclark/rubocop,alexcstark/rubocop,rrosenblum/rubocop,melch/rubocop,vergenzt/rubocop,akihiro17/rubocop,dblock/rubocop,deivid-rodriguez/rubocop,petehamilton/rubocop,sue445/rubocop,ilansh/rubocop,legendetm/rubocop,jmks/rubocop,sue445/rubocop,syndbg/rubocop,bquorning/rubocop,deivid-rodriguez/rubocop,sue445/rubocop,bquorning/rubocop,backus/rubocop,rrosenblum/rubocop,mikegee/rubocop,scottmatthewman/rubocop,meganemura/rubocop,mclark/rubocop,bglusman/rubocop,ilansh/rubocop,mrb/rubocop,haziqhafizuddin/rubocop,savef/rubocop,petehamilton/rubocop,deepj/rubocop,b-t-g/rubocop,bankair/rubocop,bglusman/rubocop,lucasuyezu/rubocop,NobodysNightmare/rubocop,dreyks/rubocop,scottmatthewman/rubocop,legendetm/rubocop,melch/rubocop,syndbg/rubocop,sinsoku/rubocop,meganemura/rubocop,jfelchner/rubocop,panthomakos/rubocop,mikegee/rubocop,Drenmi/rubocop,deepj/rubocop,deivid-rodriguez/rubocop,NobodysNightmare/rubocop,pocke/rubocop,urbanautomaton/rubocop,panthomakos/rubocop,lumeet/rubocop,urbanautomaton/rubocop,plribeiro3000/rubocop,alexdowad/rubocop,maxjacobson/rubocop,maxjacobson/rubocop,tejasbubane/rubocop,seanhussey/rubocop,rtlechow/rubocop,petehamilton/rubocop,savef/rubocop,zvkemp/rubocop,palkan/rubocop,tdeo/rubocop,palkan/rubocop,lucasuyezu/rubocop,maxjacobson/rubocop,seanhussey/rubocop,bquorning/rubocop,mrb/rubocop,plribeiro3000/rubocop,dblock/rubocop,jmks/rubocop,Koronen/rubocop,jfelchner/rubocop,volkert/rubocop,rtlechow/rubocop,jfelchner/rubocop,zvkemp/rubocop,bankair/rubocop,mikegee/rubocop,backus/rubocop,lumeet/rubocop,iGEL/rubocop,Drenmi/rubocop,meganemura/rubocop,jmks/rubocop,b-t-g/rubocop,bbatsov/rubocop,tejasbubane/rubocop,pocke/rubocop,palkan/rubocop,dreyks/rubocop,akihiro17/rubocop,alexdowad/rubocop,vergenzt/rubocop,tdeo/rubocop,panthomakos/rubocop,sinsoku/rubocop
|
af967c0aa9b4bc543c517b2d5053913ed9b50dcd
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '4'
- '6'
- '8'
- 'lts/*'
- 'stable'
sudo: false
notifications:
email:
[email protected]
irc:
channels:
- 'irc.mozilla.org#fxa-bots'
use_notice: false
skip_join: false
|
language: node_js
node_js:
- '10'
- '12'
- 'lts/*'
- 'stable'
sudo: false
|
Update Travis for latest versions of node
|
Update Travis for latest versions of node
|
YAML
|
mpl-2.0
|
mozilla/mozlog
|
124d00b52896bba984c50d046b060efc11088374
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
before_install:
- npm install -g grunt-cli
install:
- npm install
before_script:
- grunt travis
script:
- grunt coveralls:dijit_coverage
|
language: node_js
node_js:
- "0.10"
before_install:
- npm install -g grunt-cli
install:
- npm install
before_script:
- grunt travis
script:
- grunt coveralls:dijit_coverage --verbose
|
Add logging to grunt task
|
Add logging to grunt task
|
YAML
|
apache-2.0
|
EsriUK/arcgis-dijit-nearest,EsriUK/arcgis-dijit-nearest
|
06e24d10d1c53dd0ec7733705ab80be0af3a4447
|
.travis.yml
|
.travis.yml
|
bundler_args: --retry=3 --jobs=3
cache: bundler
language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1
- 2.2.1
- 2.2.0
- jruby-head
- jruby-9.0.0.0.pre1
- rbx-2
- ruby-head
env:
global:
- JRUBY_OPTS="-J-Xmx1024M --debug"
matrix:
allow_failures:
- rvm: 2.2.0
- rvm: jruby-head
- rvm: jruby-9.0.0.0.pre1
- rvm: rbx-2
- rvm: ruby-head
fast_finish: true
|
bundler_args: --retry=3 --jobs=3
cache: bundler
language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1
- 2.2.1
- 2.2.0
- 2.3.4
- 2.4.1
- jruby-head
- jruby-9.0.0.0.pre1
- rbx-2
- ruby-head
env:
global:
- JRUBY_OPTS="-J-Xmx1024M --debug"
matrix:
allow_failures:
- rvm: 2.2.0
- rvm: jruby-head
- rvm: jruby-9.0.0.0.pre1
- rvm: rbx-2
- rvm: ruby-head
fast_finish: true
|
Test against ruby 2.3 and 2.4
|
Test against ruby 2.3 and 2.4
|
YAML
|
mit
|
JuanitoFatas/html-pipeline-rouge_filter
|
b78d7b0cefb1288e0d16aef10a350b0fbb76f422
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
install:
- pip install -r requirements.txt --use-mirrors
script: nosetests
|
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
install:
- pip install -r requirements.txt --use-mirrors
script: python setup.py test
|
Use 'setup.py test' instead of 'nosetests'
|
Use 'setup.py test' instead of 'nosetests'
|
YAML
|
mit
|
yola/property-caching
|
2112997ae8b2fcf7d752d173c4a727dc25f6efac
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
install:
- npm install -g yarn
- yarn self-update
- yarn install
before_script:
- npm run build
- ./index.js init
node_js:
- "7"
notifications:
email: false
webhooks: http://cq-dokidokivisual.rhcloud.com/travis
# blacklist
branches:
except:
- tmp
cache:
directories:
- node_modules
- $HOME/.yarn-cache
|
sudo: false
language: node_js
install:
- npm install -g yarn
- yarn self-update
- yarn install
before_script:
- npm run build
- ./index.js init
node_js:
- "7"
notifications:
email: false
webhooks: http://cq-dokidokivisual.rhcloud.com/travis
# blacklist
branches:
except:
- tmp
cache:
yarn: true
directories:
- node_modules
|
Enable TravisCI's builtin config for yarn
|
Enable TravisCI's builtin config for yarn
|
YAML
|
mit
|
karen-irc/karen,karen-irc/karen
|
bf95cfe417277180e4b8615c4bb83aba077c68b5
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
cache: bundler
rvm:
- 2.5.0
- 2.4.3
- 2.3.6
- 2.2.9
- 2.1.10
- ruby-head
matrix:
include:
- rvm: 2.5.0
name: "Run Danger and Code Climate"
before_script:
- bundle exec danger
after_script:
- bundle exec codeclimate-test-reporter
- rvm: 2.5.0
name: "Integration Tests"
install:
- for dir in spec/integration/*; do BUNDLE_GEMFILE=$dir/Gemfile bundle; done
script:
- set -e ; for dir in spec/integration/*; do BUNDLE_GEMFILE=$dir/Gemfile bundle exec rspec $dir; done
- rvm: rbx-3
dist: trusty
- rvm: jruby-9.0.5.0
dist: trusty
- rvm: jruby-head
dist: trusty
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-3
|
language: ruby
sudo: false
cache: bundler
rvm:
- 2.5.3
- 2.4.5
- 2.3.8
- 2.2.9
- 2.1.10
- ruby-head
matrix:
include:
- rvm: 2.5.3
name: "Run Danger and Code Climate"
before_script:
- bundle exec danger
after_script:
- bundle exec codeclimate-test-reporter
- rvm: 2.5.3
name: "Integration Tests"
install:
- for dir in spec/integration/*; do BUNDLE_GEMFILE=$dir/Gemfile bundle; done
script:
- set -e ; for dir in spec/integration/*; do BUNDLE_GEMFILE=$dir/Gemfile bundle exec rspec $dir; done
- rvm: rbx-3
dist: trusty
- rvm: jruby-9.0.5.0
dist: trusty
- rvm: jruby-head
dist: trusty
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-3
|
Update ruby versions to default xenial installed
|
Update ruby versions to default xenial installed
|
YAML
|
mit
|
dblock/hashie,intridea/hashie,intridea/hashie,dblock/hashie
|
85ae97c586ab56c55c524021ed40cc341e5af892
|
.travis.yml
|
.travis.yml
|
language: rust
rust:
- 1.23.0
- stable
- beta
- nightly
os:
- linux
- osx
script:
- ./ci/test.sh
cache:
cargo: true
directories:
- kcov-install
before_cache:
- rm -rf target/cov
matrix:
# Clear the whole matrix
exclude:
- os: linux
- os: osx
# Add each target manually
include:
- os: linux
rust: 1.23.0
- os: linux
rust: stable
- os: linux
rust: beta
- os: linux
rust: nightly
- os: linux
rust: stable
env: JOB=cov
sudo: required
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
- libiberty-dev
notifications:
email: false
|
language: rust
rust:
- 1.23.0
- stable
- beta
- nightly
os:
- linux
- osx
script:
- ./ci/test.sh
cache:
cargo: true
directories:
- kcov-install
before_cache:
- rm -rf target/cov
matrix:
# Clear the whole matrix
exclude:
- os: linux
- os: osx
# Add each target manually
include:
- os: linux
rust: 1.23.0
- os: linux
rust: stable
- os: linux
rust: beta
- os: linux
rust: nightly
- os: linux
rust: 1.23.0
env: PROFILE=release
- os: linux
rust: stable
env: PROFILE=release
- os: linux
rust: beta
env: PROFILE=release
- os: linux
rust: nightly
env: PROFILE=release
- os: linux
rust: stable
env: JOB=cov
sudo: required
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
- libiberty-dev
notifications:
email: false
|
Add release test jobs to CI
|
Add release test jobs to CI
|
YAML
|
mit
|
richo/capstone-rs
|
75a150f06d405e28e7a1c86cabb58700ad2f293e
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- travis_retry curl -s http://getcomposer.org/installer | php
- travis_retry php composer.phar install --dev
- mkdir -p build/logs
script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- php vendor/bin/coveralls
matrix:
allow_failures:
- php: hhvm
|
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- travis_retry curl -s http://getcomposer.org/installer | php
- travis_retry php composer.phar install --dev
- mkdir -p build/logs
script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- php vendor/bin/coveralls
matrix:
allow_failures:
- php: hhvm
|
Exclude PHP 5.3 from Travis testing
|
Exclude PHP 5.3 from Travis testing
Travis error message: "PHP 5.3 is supported only on Precise. See https://docs.travis-ci.com/user/reference/trusty#PHP-images on how to test PHP 5.3 on Precise."
|
YAML
|
mit
|
webfactory/piwik-bundle
|
bd5e13c1a59a45467907cc9c69fa4fe4e62dca4a
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.9
after_success:
- go build && ./test.sh
|
language: go
sudo: false
go:
- 1.9
- tip
|
Add Go tip to the CI test
|
Add Go tip to the CI test
|
YAML
|
bsd-3-clause
|
xyproto/algernon,xyproto/algernon,xyproto/algernon,xyproto/algernon
|
8e3c0cc7cd24298c5565ce0b3f3b3b6f7ac79c5b
|
.travis.yml
|
.travis.yml
|
# See https://github.com/silverstripe/silverstripe-travis-support for setup details
sudo: false
language: php
matrix:
include:
- php: 5.3
env: DB=MYSQL CORE_RELEASE=3.4
- php: 5.4
env: DB=MYSQL CORE_RELEASE=3.5
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.5 SECUREASSETS=1
- php: 7.1
env: DB=MYSQL CORE_RELEASE=3.6
before_script:
- git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support
- "if [ \"$SECUREASSETS\" = \"\" ]; then php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss; fi"
- "if [ \"$SECUREASSETS\" = \"1\" ]; then php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss --require silverstripe/secureassets; fi"
- cd ~/builds/ss
script:
- vendor/bin/phpunit --coverage-clover coverage.clover userforms/tests
after_success:
- mv coverage.clover ~/build/$TRAVIS_REPO_SLUG/
- cd ~/build/$TRAVIS_REPO_SLUG
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
# See https://github.com/silverstripe/silverstripe-travis-support for setup details
sudo: false
language: php
dist: precise
matrix:
include:
- php: 5.3
env: DB=MYSQL CORE_RELEASE=3.4
- php: 5.4
env: DB=MYSQL CORE_RELEASE=3.5
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.5 SECUREASSETS=1
- php: 7.1
env: DB=MYSQL CORE_RELEASE=3.6
before_script:
- git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support
- "if [ \"$SECUREASSETS\" = \"\" ]; then php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss; fi"
- "if [ \"$SECUREASSETS\" = \"1\" ]; then php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss --require silverstripe/secureassets; fi"
- cd ~/builds/ss
script:
- vendor/bin/phpunit --coverage-clover coverage.clover userforms/tests
after_success:
- mv coverage.clover ~/build/$TRAVIS_REPO_SLUG/
- cd ~/build/$TRAVIS_REPO_SLUG
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
Use precise dist to continue PHP 5.3 support
|
Use precise dist to continue PHP 5.3 support
|
YAML
|
bsd-3-clause
|
silverstripe/silverstripe-userforms,robbyahn/silverstripe-userforms,silverstripe/silverstripe-userforms,dnadesign/silverstripe-userforms,dnadesign/silverstripe-userforms,robbyahn/silverstripe-userforms
|
295463a174f5b944dab94c6640b3e0fc60a120d4
|
.travis.yml
|
.travis.yml
|
---
sudo: false
language: ruby
rvm:
- '2.3.3'
- '2.2.6'
- '2.1.10'
before_install: export TZ=Europe/Berlin
before_script: bundle exec rake ci:setup
script: bundle exec rake ci:spec
|
---
sudo: false
language: ruby
rvm:
- '2.4.1'
- '2.3.4'
before_install: export TZ=Europe/Berlin
before_script: bundle exec rake ci:setup
script: bundle exec rake ci:spec
|
Update ruby versions on CI
|
Update ruby versions on CI
|
YAML
|
agpl-3.0
|
openmensa/openmensa,openmensa/openmensa,openmensa/openmensa,openmensa/openmensa
|
5125aa8b124100f26fc52069953a46c86c7da9b4
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "6"
- "8"
- "10"
env:
- CC=clang CXX=clang++
- ""
install:
- npm install --no-save --ignore-scripts
before_script:
- tmp=$(mktemp --directory)
- bash -O dotglob -O extglob -c 'mv !(node_modules|test.js) "$1"/' bash "$tmp"
- pack=$(npm pack "$tmp")
- node -p '"sha512-" + Buffer.from(process.argv[1], "hex").toString("base64")' $(sha512sum -- "$pack")
- tar --strip-components=1 -x -v -f "$pack"
- npm install --no-save
|
language: node_js
node_js:
- "6"
- "8"
- "10"
- "11"
env:
- CC=clang CXX=clang++
- ""
install:
- npm install --no-save --ignore-scripts
before_script:
- tmp=$(mktemp --directory)
- bash -O dotglob -O extglob -c 'mv !(node_modules|test.js) "$1"/' bash "$tmp"
- pack=$(npm pack "$tmp")
- node -p '"sha512-" + Buffer.from(process.argv[1], "hex").toString("base64")' $(sha512sum -- "$pack")
- tar --strip-components=1 -x -v -f "$pack"
- npm install --no-save
|
Add Node 11 to CI
|
Add Node 11 to CI
|
YAML
|
isc
|
charmander/bcrypt-small,charmander/bcrypt-small,charmander/bcrypt-small
|
be00761db84556258a1cee664aa664fb6fb1f660
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'core' ]; then cd .. && eval "mv $currentfolder core" && cd core; fi
- npm install -g grunt-cli
|
language: node_js
node_js:
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'core' ]; then cd .. && eval "mv $currentfolder core" && cd core; fi
- npm install -g grunt-cli
notifications:
email:
- [email protected]
- [email protected]
- [email protected]
|
Update Travis with explicit emails
|
Update Travis with explicit emails
|
YAML
|
mpl-2.0
|
FamousArchives/math,wgester/famous,ziteboard/famous,Famous/math,holmesal/famous-global-build,Famous/famous,Lkraljevic/famous,Faiz7412/famous,Bizboard/famous,Famous/famous,gdi2290/famous,Faiz7412/famous,SuPenguin/famous,Offirmo/famous,SeanOceanHu/famous,trusktr/famous,ziteboard/famous,chinakids/famous
|
de701a02e0aefae79795ca5b296c85d08dc7baf6
|
.travis.yml
|
.travis.yml
|
language: objective-c
script: 'curl -s -H "Authorization: token $ATOM_ACCESS_TOKEN" -H "Accept: application/vnd.github.v3.raw"
https://api.github.com/repos/atom/apm/contents/script/build-package | sh'
env:
global:
secure: JRVQXRPtCp4hvyLGhNDnTB2vc5mEme7Y/LeNekuX3tT2IEwz7hd4PdIEjzEgqiW10LewKuvzeXFg2Dvku/dDXcG07eBYrZ+7zMCpA2L5yTerhRbGtzDkfrL5LrL0LHlQX+LWX/AetXAmYlHb2UoTwoSeqvxl1OgVov1/UB1528k=
|
language: objective-c
script: 'curl -s -H "Authorization: token $ATOM_ACCESS_TOKEN" -H "Accept: application/vnd.github.v3.raw"
https://api.github.com/repos/atom/apm/contents/script/build-package | sh'
env:
global:
secure: K8BJ6HXSFxHC4AVSGdrdK4RNfHGXWK6N0T8mBAJQ+eyjppyGnZUC+S+1GhLtfnXpmVDcc1v0kJp/tyIARhkOb9fC67FUvvRqytdWOgQKjpxAcImHRYxzeADDbiI35SncNr/cPho5irS/mxx/gAOMRV/uweQmTrqgXaRBCuyhFAA=
|
Add initial Travis CI configuration
|
Add initial Travis CI configuration
|
YAML
|
mit
|
atom/spell-check
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.