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
|
---|---|---|---|---|---|---|---|---|---|
3bc1577d3da0679654c36d65460b612368a29b6f
|
.travis.yml
|
.travis.yml
|
os: linux
dist: trusty
sudo: false
group: edge
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- &mainstream_python 3.6
- nightly
install:
- travis_retry pip install --pre -e .[testing,webassets]
script:
- nosetests -v --with-coverage --cover-package=dukpy --cover-erase
- if python -c "import sys; sys.exit(sys.version_info < (2,7))"; then
python setup.py check -rm;
fi
- if python -c "import sys; sys.exit(sys.version_info < (3,6))"; then
python setup.py check -s;
fi
after_success:
- coveralls
stages:
- test
- name: deploy
if: tag IS present
jobs:
fast_finish: true
allow_failures:
- python: nightly
include:
- stage: deploy
python: *mainstream_python
install: skip
script: skip
deploy:
provider: pypi
on:
tags: true
all_branches: true
user: amol-
# just source dist, because binary wheel requires extra work
distributions: sdist
password:
secure: YOUR_ENCRYPTED_PASSWORD_HERE
|
os: linux
dist: trusty
sudo: false
group: edge
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- &mainstream_python 3.6
- nightly
install:
- travis_retry pip install --pre -e .[testing,webassets]
script:
- nosetests -v --with-coverage --cover-package=dukpy --cover-erase
- if python -c "import sys; sys.exit(sys.version_info < (2,7))"; then
python setup.py check -rm;
fi
- if python -c "import sys; sys.exit(sys.version_info < (3,6))"; then
python setup.py check -s;
fi
after_success:
- coveralls
stages:
- test
- name: deploy
if: tag IS present
jobs:
fast_finish: true
allow_failures:
- python: nightly
include:
- stage: deploy
python: *mainstream_python
install: skip
script: skip
deploy:
provider: pypi
on:
tags: true
all_branches: true
user: amol-
# just source dist, because binary wheel requires extra work
distributions: sdist
password:
secure: g8mh+wysPGF9VaxHsP/FYjjw+CJ8TJpRKRVQIAi7DRy3yn05lsvfwqHBvKMIOZV26JmI8vxiwCPt0IcsBONzRrKuVp0nS0yXLmaaHH2SIOhZaYLknm1eD9AV7T79Z0uWG7ygFXoCCvkJGiOjZkfrakwYVqvIg9tFCvukJaWLHl8=
|
Put encrypted pypi passwd for amol-/dukpy
|
Put encrypted pypi passwd for amol-/dukpy
|
YAML
|
mit
|
amol-/dukpy,amol-/dukpy,amol-/dukpy
|
2dacc4b8cf11a6b7ff31ee295c1e7050a39c7013
|
.travis.yml
|
.travis.yml
|
rvm:
- 1.8.7
- 1.9.2
- ree
- jruby
- ruby-head
- rbx-2.0
notifications:
# overriding this so [email protected] (who owns the repo) doesn't get spammed
# anyone, feel free to add yourselves
email:
- [email protected]
- [email protected]
|
rvm:
- 1.8.7
- 1.9.2
- ree
- ruby-head
- rbx-2.0
notifications:
# overriding this so [email protected] (who owns the repo) doesn't get spammed
# anyone, feel free to add yourselves
email:
- [email protected]
- [email protected]
|
Remove JRuby from Travis CI
|
Remove JRuby from Travis CI
* Changes to Travis CI make it unable to install sqlite3 gem with the
default settings, and JRuby isn't a priority for us right now anyway.
|
YAML
|
mit
|
sportngin/enumerated_field
|
39671e4db1d7c7c21f15952a5dabb3094418f57b
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
git:
depth: 1
env:
global:
- secure: "hXNhTinvLDlfiIWxNgnxDFtL1zOnPd1TMyUkLLjqTRBbcuVinlMLISRgYV9g\nIIvLPG5S424ybNtU1X7X9MlypDmvis3/+G8gBo2q+7IRTAKw1C2J9/6RhIaG\nnD4aV9YZKmyz8pH1DZj6AMFIqY+2+W4Wte3oyL8IqbFRMfhdmzE="
before_install:
- pip install -Iv https://bitbucket.org/jamesrhester/pycifrw/downloads/PyCifRW-3.6.1.tar.gz
# command to install dependencies
install: "pip install -r requirements.txt --use-mirrors"
# This is needed, otherwise, nosetests can't find the installed pymatgen C
# extensions.
before_script:
- python setup.py develop
# command to run tests, e.g. python setup.py test
script: nosetests
branches:
only:
- master
- stable
notifications:
email:
recipients:
- [email protected]
on_success: change
on_failure: always
|
language: python
python:
- "2.7"
- "3.3"
git:
depth: 1
env:
global:
- secure: "hXNhTinvLDlfiIWxNgnxDFtL1zOnPd1TMyUkLLjqTRBbcuVinlMLISRgYV9g\nIIvLPG5S424ybNtU1X7X9MlypDmvis3/+G8gBo2q+7IRTAKw1C2J9/6RhIaG\nnD4aV9YZKmyz8pH1DZj6AMFIqY+2+W4Wte3oyL8IqbFRMfhdmzE="
before_install:
- pip install -Iv https://bitbucket.org/jamesrhester/pycifrw/downloads/PyCifRW-3.6.1.tar.gz
# command to install dependencies
install: "pip install -r requirements.txt --use-mirrors"
# This is needed, otherwise, nosetests can't find the installed pymatgen C
# extensions.
before_script:
- python setup.py develop
# command to run tests, e.g. python setup.py test
script: nosetests
branches:
only:
- master
- stable
- py3k
notifications:
email:
recipients:
- [email protected]
on_success: change
on_failure: always
|
Add py3k branch to testing.
|
Add py3k branch to testing.
|
YAML
|
mit
|
sonium0/pymatgen,ctoher/pymatgen,yanikou19/pymatgen,ctoher/pymatgen,sonium0/pymatgen,Dioptas/pymatgen,rousseab/pymatgen,Dioptas/pymatgen,ctoher/pymatgen,Bismarrck/pymatgen,Bismarrck/pymatgen,Bismarrck/pymatgen,sonium0/pymatgen,migueldiascosta/pymatgen,rousseab/pymatgen,rousseab/pymatgen,Bismarrck/pymatgen,Bismarrck/pymatgen,yanikou19/pymatgen,migueldiascosta/pymatgen,migueldiascosta/pymatgen,yanikou19/pymatgen
|
f1a3421ce7083181ebd463c8147c2d4b95539ca8
|
.travis.yml
|
.travis.yml
|
language: ruby
script:
- "rake test"
- "gem build arel.gemspec"
rvm:
- rbx
- jruby
- 1.9.3
- 2.0.0
- 2.1
- ruby-head
matrix:
allow_failures:
- rvm: rbx
notifications:
email: false
irc:
- "irc.freenode.org#rails-contrib"
|
language: ruby
script:
- "rake test"
- "gem build arel.gemspec"
rvm:
- rbx
- jruby
- 2.0.0
- 2.1
- ruby-head
matrix:
allow_failures:
- rvm: rbx
notifications:
email: false
irc:
- "irc.freenode.org#rails-contrib"
|
Remove 1.9 from the Travis builds
|
Remove 1.9 from the Travis builds
Arel 7.0 will not support Ruby 1.9
|
YAML
|
mit
|
mohitnatoo/rails,starknx/rails,yawboakye/rails,fabianoleittes/rails,vipulnsward/rails,maclover7/arel,iainbeeston/rails,jemc/arel,Vasfed/rails,assain/rails,yawboakye/rails,yahonda/rails,mohitnatoo/rails,betesh/rails,MSP-Greg/rails,rails/rails,esparta/rails,jeremy/rails,aditya-kapoor/rails,untidy-hair/rails,betesh/rails,betesh/rails,Vasfed/rails,prathamesh-sonpatki/rails,shioyama/rails,georgeclaghorn/rails,gauravtiwari/rails,repinel/rails,kmcphillips/rails,gauravtiwari/rails,rafaelfranca/omg-rails,Erol/rails,iainbeeston/rails,flanger001/rails,BlakeWilliams/rails,fabianoleittes/rails,yalab/rails,illacceptanything/illacceptanything,jasnow/arel,rails/rails,kddeisz/rails,Edouard-chin/rails,flanger001/rails,printercu/rails,starknx/rails,vipulnsward/rails,illacceptanything/illacceptanything,utilum/rails,flanger001/rails,printercu/rails,yawboakye/rails,kbrock/arel,gauravtiwari/rails,schuetzm/rails,joonyou/rails,Envek/rails,kmcphillips/rails,starknx/rails,vipulnsward/rails,modernmsg/arel,jacobmoe/arel,aditya-kapoor/rails,MSP-Greg/rails,iainbeeston/rails,kmcphillips/rails,baerjam/rails,Vasfed/rails,notapatch/rails,BlakeWilliams/rails,illacceptanything/illacceptanything,Stellenticket/rails,palkan/rails,baerjam/rails,tacid/arel,MSP-Greg/rails,georgeclaghorn/rails,notapatch/rails,repinel/rails,mohitnatoo/rails,jeremy/rails,prathamesh-sonpatki/rails,yalab/rails,arunagw/rails,pvalena/rails,yahonda/rails,illacceptanything/illacceptanything,illacceptanything/illacceptanything,esparta/rails,prathamesh-sonpatki/rails,jeremy/rails,universsky/arel,deraru/rails,ngpestelos/arel,shioyama/rails,yalab/rails,notapatch/rails,betesh/rails,shioyama/rails,mechanicles/rails,yui-knk/arel,Envek/rails,arunagw/rails,fabianoleittes/rails,arunagw/rails,yahonda/arel,utilum/rails,deraru/rails,illacceptanything/illacceptanything,untidy-hair/rails,universsky/arel,georgeclaghorn/rails,illacceptanything/illacceptanything,mechanicles/rails,pvalena/rails,repinel/rails,illacceptanything/illacceptanything,kddeisz/rails,Envek/rails,Vasfed/rails,mechanicles/rails,yui-knk/arel,kddeisz/rails,schuetzm/rails,amitsuroliya/arel,bogdanvlviv/rails,tgxworld/rails,amitsuroliya/arel,assain/rails,tgxworld/rails,lcreid/rails,assain/rails,deraru/rails,arunagw/rails,lcreid/rails,Eric-Guo/arel,deraru/rails,untidy-hair/rails,kmcphillips/rails,MSP-Greg/rails,yahonda/arel,rafaelfranca/omg-rails,yhirano55/rails,jacobmoe/arel,Envek/rails,Edouard-chin/rails,Erol/rails,vipulnsward/rails,utilum/rails,esparta/rails,pvalena/rails,repinel/rails,yahonda/rails,kddeisz/rails,tjschuck/rails,illacceptanything/illacceptanything,illacceptanything/illacceptanything,printercu/rails,mohitnatoo/rails,eileencodes/rails,tjschuck/rails,notapatch/rails,utilum/rails,joonyou/rails,joonyou/rails,aditya-kapoor/rails,kbrock/arel,palkan/rails,tjschuck/rails,shioyama/rails,baerjam/rails,EmmaB/rails-1,eileencodes/rails,Edouard-chin/rails,assain/rails,eileencodes/rails,illacceptanything/illacceptanything,zeckalpha/arel,illacceptanything/illacceptanything,Stellenticket/rails,BlakeWilliams/rails,tjschuck/rails,prathamesh-sonpatki/rails,printercu/rails,eileencodes/rails,Edouard-chin/rails,BlakeWilliams/rails,yawboakye/rails,yhirano55/rails,palkan/rails,rails/rails,Stellenticket/rails,aditya-kapoor/rails,Erol/rails,iainbeeston/rails,bogdanvlviv/rails,fabianoleittes/rails,untidy-hair/rails,Eric-Guo/arel,maclover7/arel,baerjam/rails,ngpestelos/arel,lcreid/rails,jemc/arel,bogdanvlviv/rails,illacceptanything/illacceptanything,yhirano55/rails,zeckalpha/arel,tacid/arel,mechanicles/rails,yalab/rails,jasnow/arel,Erol/rails,palkan/rails,tgxworld/rails,Stellenticket/rails,tgxworld/rails,yhirano55/rails,esparta/rails,schuetzm/rails,rails/arel,illacceptanything/illacceptanything,jeremy/rails,yahonda/rails,pvalena/rails,rails/rails,schuetzm/rails,EmmaB/rails-1,lcreid/rails,illacceptanything/illacceptanything,flanger001/rails,joonyou/rails,bogdanvlviv/rails,georgeclaghorn/rails,modernmsg/arel,EmmaB/rails-1,rafaelfranca/omg-rails
|
4834ac0787bae903fa79b09ee697b9b3a5d54713
|
.travis.yml
|
.travis.yml
|
# Forces travis to use VM insted container, required to be able to build containers.
sudo: required
services:
- docker
env:
global:
# Should be encrypted or set as private travis variables (in travis settings):
# DOCKER_HUB_EMAIL
# DOCKER_HUB_USERNAME
# DOCKER_HUB_PASSWORD
# Docker repository name
- DOCKER_REPOSITORY="mendersoftware/api-gateway"
script:
# Build docker image from docker file
- sudo docker build -t $DOCKER_REPOSITORY .
before_deploy:
# Master is always lastest
- if [ ! -z "$TRAVIS_TAG" ]; then export IMAGE_TAG=$TRAVIS_TAG; else export IMAGE_TAG=$TRAVIS_BRANCH; fi
- docker tag $DOCKER_REPOSITORY $DOCKER_REPOSITORY:$IMAGE_TAG
# Upload image to docker registry only on PUSH
- docker login --email=$DOCKER_HUB_EMAIL --username=$DOCKER_HUB_USERNAME --password=$DOCKER_HUB_PASSWORD
- docker push $DOCKER_REPOSITORY:$IMAGE_TAG
deploy:
# Force before_deploy for branches
-
provider: script
script: /bin/true
on:
all_branches: true
# Force before_deploy for tags
-
provider: script
script: /bin/true
on:
tags: true
all_branches: true
|
# Forces travis to use VM insted container, required to be able to build containers.
sudo: required
services:
- docker
env:
global:
# Should be encrypted or set as private travis variables (in travis settings):
# DOCKER_HUB_EMAIL
# DOCKER_HUB_USERNAME
# DOCKER_HUB_PASSWORD
# Docker repository name
- DOCKER_REPOSITORY="mendersoftware/api-gateway"
before_script:
# Rename the branch we're on, so that it's not in the way for the
# subsequent fetch. It's ok if this fails, it just means we're not on any
# branch.
- git branch -m temp-branch || true
# Git trick: Fetch directly into our local branches instead of remote
# branches.
- git fetch origin 'refs/heads/*:refs/heads/*'
# Get last remaining tags, if any.
- git fetch --tags origin
script:
# Build docker image from docker file
- sudo docker build -t $DOCKER_REPOSITORY .
before_deploy:
# Master is always lastest
- if [ ! -z "$TRAVIS_TAG" ]; then export IMAGE_TAG=$TRAVIS_TAG; else export IMAGE_TAG=$TRAVIS_BRANCH; fi
- docker tag $DOCKER_REPOSITORY $DOCKER_REPOSITORY:$IMAGE_TAG
# Upload image to docker registry only on PUSH
- docker login --email=$DOCKER_HUB_EMAIL --username=$DOCKER_HUB_USERNAME --password=$DOCKER_HUB_PASSWORD
- docker push $DOCKER_REPOSITORY:$IMAGE_TAG
deploy:
# Force before_deploy for branches
-
provider: script
script: /bin/true
on:
all_branches: true
# Force before_deploy for tags
-
provider: script
script: /bin/true
on:
tags: true
all_branches: true
|
Fix inability to use branches and tags interchangably.
|
Fix inability to use branches and tags interchangably.
Changelog: None
Signed-off-by: Kristian Amlie <[email protected]>
|
YAML
|
apache-2.0
|
maciejmrowiec/mender-api-gateway-docker
|
4bc04ea83e7e46c4361f577e1aa2abd4e36b76a6
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "node"
- "0.10"
|
language: node_js
# Ensure a wide range of Node.js versions are supported from 0.10.x to latest
node_js:
- "node"
- "0.10"
# Enable Greenkeeper's support for npm 5+ lockfiles: https://github.com/greenkeeperio/greenkeeper-lockfile
before_install:
- npm install -g npm
- npm install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
|
Enable Greenkeeper support for npm lockfiles
|
CWAP-204: Enable Greenkeeper support for npm lockfiles
|
YAML
|
mit
|
Kashoo/kashoo-document-definitions,Kashoo/kashoo-document-definitions
|
176f9afac80d39fba1639f9733ecde5ccd90b87f
|
.travis.yml
|
.travis.yml
|
language: java
sudo: false
install: true
matrix:
include:
- os: linux
dist: trusty
jdk: oraclejdk8
env: _JAVA_OPTIONS="-Xmx2048m -Xms512m -Djava.awt.headless=true -Dtestfx.robot=glass -Dtestfx.headless=true -Dprism.order=sw -Dprism.text=t2k -Dtestfx.setup.timeout=2500"
addons:
apt:
packages:
- oracle-java8-installer
before_script:
- if [[ "${TRAVIS_OS_NAME}" == linux ]]; then export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start; fi
script:
- mvn clean install jacoco:report sonar:sonar site
-Dsonar.host.url=https://sonarcloud.io
-Dsonar.organization=ben12-github
-Dsonar.login=${SONAR_TOKEN}
-Dsonar.branch.name=${TRAVIS_BRANCH}
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
local_dir: target/site
on:
branch: master
cache:
directories:
- '$HOME/.m2/repository'
- '$HOME/.sonar/cache'
|
language: java
sudo: false
install: true
matrix:
include:
- os: linux
dist: trusty
jdk: oraclejdk8
env: _JAVA_OPTIONS="-Xmx2048m -Xms512m -Djava.awt.headless=true -Dtestfx.robot=glass -Dtestfx.headless=true -Dprism.order=sw -Dprism.text=t2k -Dtestfx.setup.timeout=2500"
addons:
apt:
packages:
- oracle-java8-installer
before_script:
- if [[ "${TRAVIS_OS_NAME}" == linux ]]; then export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start; fi
script:
- mvn clean install jacoco:report sonar:sonar site
-Dsonar.host.url=https://sonarcloud.io
-Dsonar.organization=ben12-github
-Dsonar.login=${SONAR_TOKEN}
-Dsonar.branch.name=${TRAVIS_BRANCH}
after_success:
- echo 'infxnity.ben12.eu' > ./target/site/CNAME
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
local_dir: target/site
on:
branch: master
cache:
directories:
- '$HOME/.m2/repository'
- '$HOME/.sonar/cache'
|
Add CNAME file in deployed gh-pages
|
Add CNAME file in deployed gh-pages
|
YAML
|
mit
|
ben12/infxnity
|
5fd39287b4d6be2f888890294b8011fa3826efe8
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
sudo: false
gemfile: fixture/gemfile
rvm:
- 2.2.6
- 2.3.3
env:
- CHEF_VERSION=master
- CHEF_VERSION=12.5.1
- CHEF_VERSION=12.4.1
- CHEF_VERSION=12.3.0
- CHEF_VERSION=12.2.1
- CHEF_VERSION=12.1.2
- CHEF_VERSION=12.0.3
- CHEF_VERSION=11.18.12
- CHEF_VERSION=11.16.4
- CHEF_VERSION=11.14.6
- CHEF_VERSION=11.12.8
- CHEF_VERSION=11.10.4
matrix:
fast_finish: true
exclude:
- env: CHEF_VERSION=11.12.8
rvm: 2.3.3
- env: CHEF_VERSION=11.10.4
rvm: 2.3.3
allow_failures:
- env: CHEF_VERSION=master
script:
- cd fixture
- bundle exec knife cookbook doc . -o README-generated.md -c knife.rb
- diff README-expected.md README-generated.md && rm README-generated.md
|
language: ruby
cache: bundler
gemfile: fixture/gemfile
rvm:
- 2.2.6
- 2.3.3
env:
- CHEF_VERSION=master
- CHEF_VERSION=12.5.1
- CHEF_VERSION=12.4.1
- CHEF_VERSION=12.3.0
- CHEF_VERSION=12.2.1
- CHEF_VERSION=12.1.2
- CHEF_VERSION=12.0.3
- CHEF_VERSION=11.18.12
- CHEF_VERSION=11.16.4
- CHEF_VERSION=11.14.6
- CHEF_VERSION=11.12.8
- CHEF_VERSION=11.10.4
matrix:
fast_finish: true
exclude:
- env: CHEF_VERSION=11.12.8
rvm: 2.3.3
- env: CHEF_VERSION=11.10.4
rvm: 2.3.3
allow_failures:
- env: CHEF_VERSION=master
script:
- cd fixture
- bundle exec knife cookbook doc . -o README-generated.md -c knife.rb
- diff README-expected.md README-generated.md && rm README-generated.md
|
Remove unrecognized sudo configuration section
|
Remove unrecognized sudo configuration section
|
YAML
|
apache-2.0
|
realityforge/knife-cookbook-doc
|
e5bd9ca91c2cd26f51ba3f29015e24677ab9ef75
|
.travis.yml
|
.travis.yml
|
language: go
sudo: false
go:
- "1.7"
- "1.8"
- "1.9"
- "1.10"
- "tip"
before_install:
- go get github.com/mattn/goveralls
script:
- goveralls -service=travis-ci
|
language: go
sudo: false
go:
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- tip
before_install:
- go get github.com/mattn/goveralls
script:
- goveralls -service=travis-ci
|
Test using latest point release
|
Test using latest point release
Specifying "1.7" will test with 1.7, not with 1.7.6 or whatever. We
probably want the latter as that's the one with bug fixes and the one
people are likely to be running in production.
|
YAML
|
mit
|
go-stack/stack
|
7ccee962229ff5adc5d52592a2fe38fd6653e81b
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
sudo: false
before_install:
- rvm @global do gem uninstall bundler --all --executables
- gem uninstall bundler --all --executables
- gem install bundler --version '~> 1.5.2'
- bundle --version
bundler_args: --without=development
rvm: 2.0.0
env: VAGRANT_VERSION=v1.8.1
matrix:
include:
- env: VAGRANT_VERSION=v1.2.7
rvm: 1.9.3
- env: VAGRANT_VERSION=master
allow_failures:
- env: VAGRANT_VERSION=master
|
language: ruby
cache: bundler
sudo: false
before_install:
- rvm @global do gem uninstall bundler --all --executables
- gem uninstall bundler --all --executables
- gem install bundler --version '~> 1.5.2'
- bundle --version
bundler_args: --without=development
rvm: 2.2.3
env: VAGRANT_VERSION=v1.8.1
matrix:
include:
- env: VAGRANT_VERSION=v1.2.7
rvm: 1.9.3
- env: VAGRANT_VERSION=master
allow_failures:
- env: VAGRANT_VERSION=master
|
Use Ruby 2.2.3 in Travis for new Vagrant versions
|
Use Ruby 2.2.3 in Travis for new Vagrant versions
That is the one currently bundled with Vagrant.
|
YAML
|
mit
|
tmatilai/vagrant-timezone,robert-r-meyer/vagrant-timezone
|
4172d95e2b24b406cd99c8365e5c8b8b77d96db9
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "node"
- "6"
cache: yarn
|
language: node_js
node_js:
- "node"
- "6"
install: npm install
|
Use npm on Travis (more variety)
|
Use npm on Travis (more variety)
|
YAML
|
apache-2.0
|
ithinkihaveacat/sw-proxy,ithinkihaveacat/sw-proxy
|
590ae1e07a8929a97694ec1c0658983133fa1b78
|
.travis.yml
|
.travis.yml
|
language: go
install: pwd ; echo "GOPATH $GOPATH"; go get -v github.com/mattn/goveralls ; go get code.google.com/p/go.tools/cmd/cover ; go get
after_success:
- /home/travis/gopath/bin/goveralls -coverprofile=profile.out -service=travis-ci -package=Yelp/dockersh -repotoken="$COVERALLS_TOKEN"
env:
global:
secure: UyAu9yz2SswujPtGkebXp9wMTPR0AssBknx7oxDo7X4iTpgOV7xJPF6oqRKdBV5DLs/65Ms16cFBYaqRtr65j6EEj0X/KPAuiRa3K5rfl1QVNKOYUUZaV+yMr+p2JN5rvHaonPw1mwq1WDq4jXLCUYpW4VFoGSek8Kci/Rwp94o=
GOPATH: /home/travis/gopath:/home/travis/.gvm/pkgsets/go1.3.3/global:/home/travis/gopath/src/github.com/docker/libcontainer/vendor
|
language: go
install: pwd ; echo "GOPATH $GOPATH"; go get -v github.com/mattn/goveralls ; go get code.google.com/p/go.tools/cmd/cover ; GOPATH="$GOPATH:/home/travis/gopath/src/github.com/docker/libcontainer/vendor" go get
after_success:
- /home/travis/gopath/bin/goveralls -coverprofile=profile.out -service=travis-ci -package=Yelp/dockersh -repotoken="$COVERALLS_TOKEN"
env:
global:
secure: UyAu9yz2SswujPtGkebXp9wMTPR0AssBknx7oxDo7X4iTpgOV7xJPF6oqRKdBV5DLs/65Ms16cFBYaqRtr65j6EEj0X/KPAuiRa3K5rfl1QVNKOYUUZaV+yMr+p2JN5rvHaonPw1mwq1WDq4jXLCUYpW4VFoGSek8Kci/Rwp94o=
|
Fix GOPATH in the install key
|
Fix GOPATH in the install key
|
YAML
|
apache-2.0
|
beni55/dockersh,mehulsbhatt/dockersh,mehulsbhatt/dockersh,pugna0/dockersh,Yelp/dockersh,chenrui2014/dockersh,chenrui2014/dockersh,Yelp/dockersh,beni55/dockersh,CS497-F15/dockersh,pugna0/dockersh,CS497-F15/dockersh
|
1c1e109ed18f1cecdeffe1eedb6c7e1c7a751dce
|
.travis.yml
|
.travis.yml
|
sudo: required
language: ruby
addons:
apt:
packages:
- lftp
cache:
directories:
- bash
before_script:
- whereis bash
- bash --version
- ./spec/install_bash.sh
- bash --version
after_script:
- cane --style-exclude 'spec/**/*.rb'
- yard stats --list-undoc
os:
- linux
rvm:
- 2.2.5
- 2.3.1
env:
matrix:
- INSTALL_BASH_VERSION=4.0
- INSTALL_BASH_VERSION=4.1
- INSTALL_BASH_VERSION=4.2
- INSTALL_BASH_VERSION=4.3
- INSTALL_BASH_VERSION=4.4
matrix:
include:
- rvm: ruby-head
env: INSTALL_BASH_VERSION=
- rvm: rbx-2
env: INSTALL_BASH_VERSION=
- rvm: 2.3.1
os: osx
env: INSTALL_BASH_VERSION=
- rvm: 2.3.1
env: INSTALL_BASH_VERSION=
allow_failures:
- os: osx
- rvm: ruby-head
- rvm: rbx-2
- env: INSTALL_BASH_VERSION=4.0
- env: INSTALL_BASH_VERSION=4.1
|
sudo: required
language: ruby
addons:
apt:
packages:
- lftp
cache:
directories:
- bash
before_script:
- whereis bash
- bash --version
- ./spec/install_bash.sh
- bash --version
after_script:
- cane --style-exclude 'spec/**/*.rb'
- yard stats --list-undoc
os:
- linux
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
env:
matrix:
- INSTALL_BASH_VERSION=4.0
- INSTALL_BASH_VERSION=4.1
- INSTALL_BASH_VERSION=4.2
- INSTALL_BASH_VERSION=4.3
- INSTALL_BASH_VERSION=4.4
matrix:
include:
- rvm: ruby-head
env: INSTALL_BASH_VERSION=
- rvm: rbx-2
env: INSTALL_BASH_VERSION=
- rvm: 2.4.0
os: osx
env: INSTALL_BASH_VERSION=
- rvm: 2.4.0
env: INSTALL_BASH_VERSION=
allow_failures:
- os: osx
- rvm: ruby-head
- rvm: rbx-2
- env: INSTALL_BASH_VERSION=4.0
- env: INSTALL_BASH_VERSION=4.1
|
Update Ruby versions on Travis
|
Update Ruby versions on Travis
|
YAML
|
mit
|
infertux/bashcov,infertux/bashcov,infertux/bashcov
|
844aea5709c1df4d98322f019bfe6af55f2b5d21
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: xcode7
before_install:
- if test -z $(brew list | grep -i xcproj); then brew install xcproj; fi
- if test -z $(brew list | grep -i carthage); then brew install carthage; fi
- export LANG=en_US.UTF-8
install:
- bundle install --without development --deployment --jobs=3 --retry=3
- bundle exec pod install
script:
- xctool -workspace QuickTableViewController.xcworkspace -scheme QuickTableViewController-iOS -sdk iphonesimulator clean test
- xctool -workspace QuickTableViewController.xcworkspace -scheme Example -sdk iphonesimulator clean build
notifications:
email: false
|
language: objective-c
osx_image: xcode7.2
before_install:
- if test -z $(brew list | grep -i xcproj); then brew install xcproj; fi
- if test -z $(brew list | grep -i carthage); then brew install carthage; fi
- export LANG=en_US.UTF-8
install:
- bundle install --without development --deployment --jobs=3 --retry=3
- bundle exec pod install
script:
- xctool -workspace QuickTableViewController.xcworkspace -scheme QuickTableViewController-iOS -sdk iphonesimulator clean test
- xctool -workspace QuickTableViewController.xcworkspace -scheme Example -sdk iphonesimulator clean build
notifications:
email: false
|
Use Xcode 7.2 on Travis CI
|
Use Xcode 7.2 on Travis CI
|
YAML
|
mit
|
bcylin/QuickTableViewController,bcylin/QuickTableViewController,bcylin/QuickTableViewController
|
0a9934226c5973ea67b8672a28edfd284a2c459e
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '4'
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
Build with Node.js 8 on Travis CI.
|
Build with Node.js 8 on Travis CI.
|
YAML
|
mit
|
bigeasy/conference,bigeasy/conference
|
5db6336dee6701ddfc3a234383e522295645c6b0
|
.travis.yml
|
.travis.yml
|
language: c
addons:
apt_packages:
- binutils-mingw-w64
- gcc-mingw-w64
os:
- linux
- osx
compiler:
- clang
- gcc
- i686-w64-mingw32-gcc
- x86_64-w64-mingw32-gcc
env:
- CONFIG_OPTS=""
- CONFIG_OPTS="shared"
- CONFIG_OPTS="--d --strict-warnings"
matrix:
exclude:
- os: osx
compiler: i686-w64-mingw32-gcc
- os: osx
compiler: x86_64-w64-mingw32-gcc
before_script:
- if [ "$CC" == i686-w64-mingw32-gcc ]; then
export CROSS_COMPILE=${CC%%gcc}; unset CC;
./Configure mingw $CONFIG_OPTS;
elif [ "$CC" == x86_64-w64-mingw32-gcc ]; then
export CROSS_COMPILE=${CC%%gcc}; unset CC;
./Configure mingw64 $CONFIG_OPTS;
else
./config $CONFIG_OPTS;
fi
script:
- make
- if [ -z "$CROSS_COMPILE" ]; then make test; fi
notifications:
recipient:
- [email protected]
email:
on_success: change
on_failure: always
|
language: c
addons:
apt_packages:
- binutils-mingw-w64
- gcc-mingw-w64
os:
- linux
- osx
compiler:
- clang
- gcc
- i686-w64-mingw32-gcc
- x86_64-w64-mingw32-gcc
env:
- CONFIG_OPTS=""
- CONFIG_OPTS="shared"
- CONFIG_OPTS="-d --strict-warnings"
matrix:
exclude:
- os: osx
compiler: i686-w64-mingw32-gcc
- os: osx
compiler: x86_64-w64-mingw32-gcc
before_script:
- if [ "$CC" == i686-w64-mingw32-gcc ]; then
export CROSS_COMPILE=${CC%%gcc}; unset CC;
./Configure mingw $CONFIG_OPTS;
elif [ "$CC" == x86_64-w64-mingw32-gcc ]; then
export CROSS_COMPILE=${CC%%gcc}; unset CC;
./Configure mingw64 $CONFIG_OPTS;
else
./config $CONFIG_OPTS;
fi
script:
- make
- if [ -z "$CROSS_COMPILE" ]; then make test; fi
notifications:
recipient:
- [email protected]
email:
on_success: change
on_failure: always
|
Fix typo in previous commit.
|
Fix typo in previous commit.
Reviewed-by: Tim Hudson <[email protected]>
|
YAML
|
apache-2.0
|
openssl/openssl,openssl/openssl,openssl/openssl,openssl/openssl,openssl/openssl,openssl/openssl
|
1342f7be698ff1f2ae2a3c58dde9eeea628fbae7
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "8"
install: npm install
jobs:
include:
- stage: lint
script: npm run test:lint
- stage: coverage
script: bash ./scripts/.travis-coverage.sh
- stage: deploy
script: bash ./scripts/.travis-deploy.sh
cache:
directories:
- node_modules
|
language: node_js
node_js:
- "8"
install: npm install
jobs:
include:
- stage: lint
script: npm run test:lint
- stage: coverage
script: bash ./scripts/.travis-coverage.sh
node_js: "9"
- stage: deploy
script: bash ./scripts/.travis-deploy.sh
cache:
directories:
- node_modules
|
Add node 9 testing to coverage
|
Add node 9 testing to coverage
|
YAML
|
mit
|
bdistin/fs-nextra
|
123f0a5b5e4ee3eeb5fc8289a53e939ba0b2acf9
|
.travis.yml
|
.travis.yml
|
language: python
python: 3.3
env:
- TOXENV=py33
- TOXENV=py34
- TOXENV=flake8
- TOXENV=pep257
- TOXENV=cover
install:
- pip install tox
script:
- tox
|
language: python
python: 3.3
env:
- TOXENV=py33
- TOXENV=py34
- TOXENV=flake8
- TOXENV=pep257
- TOXENV=cover
matrix:
allow_failures:
- env: TOXENV=cover
fast_finish: true
install:
- pip install tox
script:
- tox
|
Allow coveralls task to fail without affecting build status
|
Allow coveralls task to fail without affecting build status
This may happen if the repo token gets out of sync with coveralls
or there is a server outage.
|
YAML
|
mit
|
ikappas/SublimeLinter3,smanolloff/SublimeLinter3,zenlambda/SublimeLinter3,zenlambda/SublimeLinter3,simonzack/SublimeLinter3,simonzack/SublimeLinter3,paulirish/SublimeLinter3,ikappas/SublimeLinter3,jasonrhaas/SublimeLinter3,SublimeLinter/SublimeLinter3,jasonrhaas/SublimeLinter3,smanolloff/SublimeLinter3,paulirish/SublimeLinter3,SublimeLinter/SublimeLinter3
|
c91e87a5ba87bd7bd1f5bfcf198d4bb115415461
|
.travis.yml
|
.travis.yml
|
language: ruby
bundler_args: "--full-index --without development"
# cache: bundler
sudo: required
rvm:
- 2.2.7
before_install: test/ci/before_install
before_script: test/ci/before_script
script: xvfb-run bundle exec rake test:models test:libs test:controllers DRIVER=webkit
services:
- redis-server
notifications:
webhooks: https://coveralls.io/webhook?repo_token=COVERALLS_REPO_TOKEN
email: false
slack:
secure: v1/ya/fyroy3BmW9FDMmKi3lwamnzY6ktQAU/vEJCg4AgvauY0QJthMsLXOBb3RnhFWao2Kj2H40XjI7VtH3z46VEq6DPLURBqmAc24c30ZMi/XIM9YqauYeEPHPhM0nDQY+s0ovU2uX/1w7uv/atNjy0n643An61Em+qPwIW5U=
|
language: ruby
bundler_args: "--full-index --without development"
# cache: bundler
sudo: required
rvm:
- 2.3.4
before_install: test/ci/before_install
before_script: test/ci/before_script
script: xvfb-run bundle exec rake test:models test:libs test:controllers DRIVER=webkit
services:
- redis-server
notifications:
webhooks: https://coveralls.io/webhook?repo_token=COVERALLS_REPO_TOKEN
email: false
slack:
secure: v1/ya/fyroy3BmW9FDMmKi3lwamnzY6ktQAU/vEJCg4AgvauY0QJthMsLXOBb3RnhFWao2Kj2H40XjI7VtH3z46VEq6DPLURBqmAc24c30ZMi/XIM9YqauYeEPHPhM0nDQY+s0ovU2uX/1w7uv/atNjy0n643An61Em+qPwIW5U=
|
Change Ruby version for Travis tests
|
Change Ruby version for Travis tests
|
YAML
|
agpl-3.0
|
ekylibre/ekylibre,ekylibre/ekylibre,ekylibre/ekylibre,ekylibre/ekylibre,ekylibre/ekylibre
|
33b6a603af16c59870b7679709d939c33c86ac6d
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
env:
- ES_IMAGE=elasticsearch:1
- ES_IMAGE=plainpicture/elasticsearch:2.4.1_delete-by-query
- ES_IMAGE=elasticsearch:5.4
- ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:6.7.0
- ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:7.0.0
rvm:
- ruby-head
before_install:
- docker-compose up -d
- sleep 10
install:
- travis_retry bundle install
script: rspec
|
sudo: false
language: ruby
env:
- ES_IMAGE=elasticsearch:1
- ES_IMAGE=plainpicture/elasticsearch:2.4.1_delete-by-query
- ES_IMAGE=elasticsearch:5.4
- ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:6.7.0
- ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:7.0.0
- ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:7.3.0
rvm:
- ruby-head
before_install:
- docker-compose up -d
- sleep 10
install:
- travis_retry bundle install
script: rspec
|
Add ES 7.3 to ci
|
Add ES 7.3 to ci
|
YAML
|
mit
|
mrkamel/elastic_search
|
73ea8e79dac0c6aa1f0e9dcd5b3373251875ce72
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
before_install:
- gem update --system
- gem update bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
- jruby-19mode
|
language: ruby
cache: bundler
before_install:
- gem update --system
- gem update bundler
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
- jruby
- ruby-head
|
Update list of Rubies for Travis
|
Update list of Rubies for Travis
|
YAML
|
mit
|
commander-rb/commander,commander-rb/commander
|
a3ac447c0a4f9543fd7996d03fd3764baeef4086
|
.travis.yml
|
.travis.yml
|
language: android
sudo: false
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- build-tools-24.0.3
- android-24
- extra-android-support
- extra-android-m2repository
script:
./gradlew build
|
language: android
sudo: false
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- build-tools-24.0.3
- build-tools-27.0.1
- android-24
- android-26
- extra-android-support
- extra-android-m2repository
script:
./gradlew build
|
Add proper SDK components to Travis conf
|
Add proper SDK components to Travis conf
|
YAML
|
apache-2.0
|
androidthings/contrib-drivers
|
43b4b683df28cdf0701b4c4b0fe6ad60102fe301
|
.travis.yml
|
.travis.yml
|
language: c
compiler:
- clang
- gcc
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libgd2-noxpm-dev
- git clone https://github.com/ansilove/libansilove.git
- cd libansilove && cmake . && make
- sudo make install
- cd -
- echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
script: cmake . && make
env:
global:
- secure: "Ahg+dD6BwZqYTl+xTbNqBBr6Qoh7jQswegP77gxfk09UbcLSTpTQcvCLzJtumCajWXTe5HD3lD1xBghxRPNwD/+JRg25AzUeowPvBQkosDZyxMZyeQQEGPVMoD9UbnGaWhxIxYaQ7bxVCu2CJ2PcibsJ3kselnqSicEnw99TXjU="
addons:
coverity_scan:
project:
name: "ansilove/ansilove"
version: 3.0.6
description: "ANSi / ASCII art to PNG converter in C"
notification_email: [email protected]
build_command_prepend: cmake .
build_command: make -j 4
branch_pattern: master
|
language: c
compiler:
- clang
- gcc
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libgd2-noxpm-dev
- git clone https://github.com/ansilove/libansilove.git
- cd libansilove && cmake . && make
- sudo make install
- cd -
script: cmake . && make
|
Remove Coverity Scan from the pipeline, it's down (Travis CI).
|
Remove Coverity Scan from the pipeline, it's down (Travis CI).
|
YAML
|
bsd-2-clause
|
ansilove/AnsiLove-C,ansilove/ansilove
|
0fdf970547f24debcd8aeb20b0dbbd80f5ca1f90
|
.travis.yml
|
.travis.yml
|
language: android
jdk:
- oraclejdk8
sudo: false
android:
components:
- tools
- platform-tools
- build-tools-27.0.2
- android-27
licenses:
- android-sdk-license-.+
script:
- "./gradlew build check --daemon"
after_failure: "cat $TRAVIS_BUILD_DIR/app/build/outputs/lint-results-debug.xml"
|
language: android
jdk:
- oraclejdk8
sudo: false
android:
components:
- tools
- platform-tools
- build-tools-27.0.2
- android-27
licenses:
- android-sdk-license-.+
before_install:
- yes | sdkmanager "platforms;android-27"
script:
- "./gradlew build check --daemon"
after_failure: "cat $TRAVIS_BUILD_DIR/app/build/outputs/lint-results-debug.xml"
|
Fix Travis for API 27
|
Fix Travis for API 27
|
YAML
|
mit
|
codepath/android-rest-client-template
|
b79e52a0529aa588d541db43ad53f6e6bc9d8db6
|
.travis.yml
|
.travis.yml
|
sudo: required
language: generic
services:
- docker
script:
- docker build -t lab41/base-notebook 01_base_notebook
- docker build -t lab41/logging-notebook 02_ganymede
- docker build -t lab41/tensorflow-notebook 03_deep_learning
- docker build -t lab41/spark-notebook 03_spark
# Check that we can open python and import libraries
- docker run -it lab41/tensorflow-notebook python -c "import tensorflow; import keras"
#- docker run -it lab41/spark-notebook python -c "import pyspark"
after_success:
- echo "TRAVIS_BRANCH\: $TRAVIS_BRANCH";
echo "TRAVIS_REPO_SLUG\: $TRAVIS_REPO_SLUG"
- if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_REPO_SLUG" == "Lab41/nbserver" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" &&
docker push lab41/base-notebook &&
docker push lab41/logging-notebook &&
docker push lab41/tensorflow-notebook &&
docker push lab41/spark-notebook;
fi
|
sudo: required
language: generic
services:
- docker
script:
- docker build -t lab41/base-notebook 01_base_notebook
- docker build -t lab41/logging-notebook 02_ganymede
- docker build -t lab41/tensorflow-notebook 03_deep_learning
- docker build -t lab41/spark-notebook 03_spark
# Check that we can open python and import libraries
- docker run -it lab41/tensorflow-notebook python -c "import tensorflow; import keras; import theano"
#- docker run -it lab41/spark-notebook python -c "import pyspark"
after_success:
- echo "TRAVIS_BRANCH\: $TRAVIS_BRANCH";
echo "TRAVIS_REPO_SLUG\: $TRAVIS_REPO_SLUG"
- if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_REPO_SLUG" == "Lab41/nbserver" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" &&
docker push lab41/base-notebook &&
docker push lab41/logging-notebook &&
docker push lab41/tensorflow-notebook &&
docker push lab41/spark-notebook;
fi
|
Add Theano to the test file
|
Add Theano to the test file
|
YAML
|
apache-2.0
|
agude/nbserver,kylemvz/nbserver,Lab41/nbserver,Lab41/nbserver,kylemvz/nbserver,agude/nbserver
|
3d36c93b8ad72866cc61886d89ad8ceb46dfe517
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "4"
before_script:
- wget http://www.browserstack.com/browserstack-local/BrowserStackLocal-linux-x64.zip
- unzip BrowserStackLocal-linux-x64.zip
- "./BrowserStackLocal $BROWSER_STACK_ACCESS_KEY localhost,8001,0 > /dev/null &"
- sleep 10
branches:
except:
- latest
- "/^v\\d/"
|
language: node_js
sudo: false
node_js:
- stable
before_script:
- wget http://www.browserstack.com/browserstack-local/BrowserStackLocal-linux-x64.zip
- unzip BrowserStackLocal-linux-x64.zip
- "./BrowserStackLocal $BROWSER_STACK_ACCESS_KEY localhost,8001,0 > /dev/null &"
- sleep 10
branches:
only:
- master
|
Update Travis config a bit
|
Update Travis config a bit
|
YAML
|
mit
|
taion/scroll-behavior,taion/scroll-behavior,rackt/scroll-behavior
|
16c7438bfe74fa7a45166e3890ac9a3d8d6408de
|
.travis.yml
|
.travis.yml
|
language: php
php:
- '7.1'
before_script:
- composer self-update
- composer install --no-interaction --dev
notifications:
on_success: never
on_failure: always
services:
- mysql
before_script:
- mysql -u root -e "CREATE DATABASE stocktest;"
- mysql -u root -e "CREATE USER 'stocktest'@'localhost' IDENTIFIED BY 'stocktest';"
- mysql -u root -e "GRANT ALL ON stocktest.* TO 'stocktest'@'localhost';"
|
language: php
php:
- '7.1'
before_script:
- composer self-update
- composer update --no-interaction --dev
notifications:
on_success: never
on_failure: always
services:
- mysql
before_script:
- mysql -u root -e "CREATE DATABASE stocktest;"
- mysql -u root -e "CREATE USER 'stocktest'@'localhost' IDENTIFIED BY 'stocktest';"
- mysql -u root -e "GRANT ALL ON stocktest.* TO 'stocktest'@'localhost';"
|
Update not install for @shanemcc
|
Update not install for @shanemcc
|
YAML
|
mit
|
greboid/stock,greboid/stock
|
ae08f2b8dc65db771dacabe1bfd87ceda8083352
|
.travis.yml
|
.travis.yml
|
language: node_js
cache: yarn
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.1.0
- export PATH="$HOME/.yarn/bin:$PATH"
node_js:
- "8"
script:
- yarn test
- yarn deploy
- ls -l build/* build.zip
- sha256sum build/* build.zip | tee SHA256SUMS.txt
- cat build/* | sha256sum | tee -a SHA256SUMS.txt
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file:
- build.zip
- SHA256SUM.txt
skip_cleanup: true
on:
tags: true
|
language: node_js
cache: yarn
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.1.0
- export PATH="$HOME/.yarn/bin:$PATH"
node_js:
- "8"
script:
- yarn test
- yarn deploy
- ls -l build/* build.zip
- sha256sum build/* build.zip | tee SHA256SUMS.txt
- cat build/* | sha256sum | tee -a SHA256SUMS.txt
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file:
- build.zip
- SHA256SUMS.txt
skip_cleanup: true
on:
tags: true
|
Fix typo in Travis CI config
|
Fix typo in Travis CI config
|
YAML
|
mit
|
xcv58/Tab-Manager-v2,xcv58/Tab-Manager-v2,xcv58/Tab-Manager-v2,xcv58/Tab-Manager-v2
|
2c573218970c80611cadcecb70d0d2584f270e99
|
.travis.yml
|
.travis.yml
|
sudo: required
git:
submodules: false
services:
- docker
before_install:
- sed -i 's/[email protected]:/https:\/\/github.com\//' .gitmodules
- git submodule update --init
- sed -i 's/[email protected]:/https:\/\/github.com\//' apps/.gitmodules
- git submodule update --init --recursive
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine
script:
- docker-compose run puffin test
|
sudo: required
git:
submodules: false
services:
- docker
before_install:
- sed -i 's/[email protected]:/https:\/\/github.com\//' .gitmodules
- git submodule update --init
- sed -i 's/[email protected]:/https:\/\/github.com\//' apps/.gitmodules
- git submodule update --init --recursive
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine
script:
- docker-compose run -d --no-deps puffindb
- docker-compose run --no-deps puffin test
|
Fix Travis - avoid running DNS server
|
Fix Travis - avoid running DNS server
|
YAML
|
agpl-3.0
|
puffinrocks/puffin,loomchild/puffin,loomchild/puffin,puffinrocks/puffin,loomchild/jenca-puffin,loomchild/jenca-puffin,loomchild/puffin,loomchild/puffin,loomchild/puffin
|
c54b60a87000da08d0271baa9ed9f170e5526dc7
|
.travis.yml
|
.travis.yml
|
sudo: false
language: java
after_success:
- bash .travis_after_success.sh
jdk:
- oraclejdk8
|
sudo: false
language: java
after_success:
- bash .travis_after_success.sh
jdk:
- openjdk8
|
Build with OpenJDK 8 on Travis CI
|
Build with OpenJDK 8 on Travis CI
|
YAML
|
apache-2.0
|
dropwizard/dropwizard-elasticsearch,dropwizard/dropwizard-elasticsearch
|
a17ae0754e5047ac1a9d00a2ec8943f7aa677023
|
.travis.yml
|
.travis.yml
|
os: linux
language: generic
dist: bionic
jobs:
include:
- name: "Python 3.6"
before_install:
- pyenv global 3.6.10
- name: "Python 3.7"
before_install:
- pyenv global 3.7.6
- name: "Python 3.8"
before_install:
- pyenv global 3.8.2
cache:
directories:
- $HOME/.cache/pip
- node_modules
env:
- DJANGO_SETTINGS_MODULE="babybuddy.settings.travis"
install:
- nvm use 10
- npm install -g gulp-cli
- npm install
- pip install pipenv
- pipenv install --dev
before_script:
- gulp lint
script:
- gulp coverage
after_success:
- pipenv run coveralls
notifications:
email: false
|
os: linux
language: generic
dist: bionic
jobs:
include:
- name: "Python 3.6"
before_install:
- pyenv global 3.6.10
- name: "Python 3.7"
before_install:
- pyenv global 3.7.6
- name: "Python 3.8"
before_install:
- pyenv global 3.8.1
cache:
directories:
- $HOME/.cache/pip
- node_modules
env:
- DJANGO_SETTINGS_MODULE="babybuddy.settings.travis"
install:
- nvm use 10
- npm install -g gulp-cli
- npm install
- pip install pipenv
- pipenv install --dev
before_script:
- gulp lint
script:
- gulp coverage
after_success:
- pipenv run coveralls
notifications:
email: false
|
Update Travis Python 3.8 to 3.8.1
|
Update Travis Python 3.8 to 3.8.1
WTF Travis?
|
YAML
|
bsd-2-clause
|
cdubz/babybuddy,cdubz/babybuddy,cdubz/babybuddy
|
12b30bbb8390531e1c00a8aa5d1830365d34d3a4
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 6
- 8
before_install:
- npm i -g [email protected]
- yarn config set workspaces-experimental true
script:
- ./run-tests.sh
|
language: node_js
node_js:
- 6
- 8
before_install:
- npm i -g [email protected]
- yarn config set workspaces-experimental true
script:
- ./run-tests.sh
|
Update yarn version on CI
|
Update yarn version on CI
There shouldn't be any major changes between yarn versions, just doing
an update.
|
YAML
|
mit
|
PsychoLlama/mytosis,PsychoLlama/mytosis
|
b1e926f2cb5e7740138f84a8c2186c1b1603c9f4
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.1
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- rm composer.lock
- composer update --no-scripts
- cp .env.testing .env
- php artisan clear-compiled
- php artisan env
- cp .env.testing .env
- wget -q https://github.com/firefly-iii/test-data/raw/master/storage/database.sqlite -O storage/database/database.sqlite
- mkdir -p build/logs
script:
- phpunit -c phpunit.coverage.xml
after_success:
- travis_retry php vendor/bin/php-coveralls -x storage/build/clover-all.xml
# safelist
branches:
only:
- develop
- master
|
language: php
php:
- 7.1
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- rm composer.lock
- composer update --no-scripts
- cp .env.testing .env
- php artisan clear-compiled
- php artisan env
- cp .env.testing .env
- wget -q https://github.com/firefly-iii/test-data/raw/master/storage/database.sqlite -O storage/database/database.sqlite
- mkdir -p build/logs
script:
- ./vendor/bin/phpunit -c phpunit.coverage.xml
after_success:
- travis_retry php vendor/bin/php-coveralls -x storage/build/clover-all.xml
# safelist
branches:
only:
- develop
- master
|
Use php unit 7, not 6.
|
Use php unit 7, not 6.
|
YAML
|
agpl-3.0
|
JC5/firefly-iii,JC5/firefly-iii,firefly-iii/firefly-iii,firefly-iii/firefly-iii,firefly-iii/firefly-iii,firefly-iii/firefly-iii
|
71e675978fc5dc01676983f87aa35b72d19e9608
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
env:
global:
- DJANGO_TEST_TEMP_DIR=$(pwd)"/slack/settings"
matrix:
- DJANGO_VERSION=1.6.2
install:
- pip install -q -r requirements/test.txt
script:
- python manage.py test --settings=slack.settings.test
|
language: python
python:
- "2.7"
env:
global:
- DJANGO_TEST_TEMP_DIR=`pwd`"/slack/settings"
matrix:
- DJANGO_VERSION=1.6.2
install:
- pip install -q -r requirements/test.txt
script:
- python manage.py test --settings=slack.settings.test
|
Change pwd command to back tick :bicyclist:
|
Change pwd command to back tick :bicyclist:
|
YAML
|
mit
|
spacebra/django-slack,alexphelps/django-slack,prontodev/django-slack,prontodev/django-slack,alexphelps/django-slack,prontodev/django-slack,alexphelps/django-slack,spacebra/django-slack,spacebra/django-slack
|
a0c66a531391f7c397602f1eb027265ed6739fb4
|
.travis.yml
|
.travis.yml
|
dist: trusty
sudo: required
language: cpp
services:
- mysql
compiler:
- clang
before_script:
- mysql -u root -e "CREATE DATABASE test_amy;"
- mysql -u root -e "CREATE USER 'amy'@'localhost' IDENTIFIED BY 'amy';"
- mysql -u root -e "GRANT ALL PRIVILEGES ON test_amy.* TO 'amy'@'localhost';"
- mysql -u root -e "FLUSH PRIVILEGES;"
- sudo apt-get install lcov libasio-dev libboost-all-dev libmysqlclient-dev
script:
- scons USE_BOOST_ASIO=0
- scons USE_BOOST_ASIO=1
|
dist: trusty
sudo: required
language: cpp
services:
- mysql
compiler:
- clang
before_script:
- mysql -u root -e "CREATE DATABASE test_amy;"
- mysql -u root -e "CREATE USER 'amy'@'localhost' IDENTIFIED BY 'amy';"
- mysql -u root -e "GRANT ALL PRIVILEGES ON test_amy.* TO 'amy'@'localhost';"
- mysql -u root -e "FLUSH PRIVILEGES;"
- sudo apt-get install lcov libboost-all-dev libmysqlclient-dev
- git clone --branch asio-1-10-6 https://github.com/chriskohlhoff/asio.git asio
- sudo ln -sf asio/include/asio /usr/local/include/
- sudo ln -sf asio/include/asio.hpp /usr/local/include/
script:
- scons USE_BOOST_ASIO=0
- scons USE_BOOST_ASIO=1
|
Use Asio 1.10.6 for the Travis build
|
Use Asio 1.10.6 for the Travis build
|
YAML
|
mit
|
liancheng/amy,liancheng/amy
|
05e1b83de1c49140c83ed98dd5350af8ac1f60bd
|
.travis.yml
|
.travis.yml
|
language: php
php:
- "5.6"
- "7.0"
before_script:
- "composer install"
- "composer require satooshi/php-coveralls"
after_success:
- "travis_retry php vendor/bin/coveralls -v"
|
language: php
php:
- "7.0"
- "7.1"
- "7.2"
- "nightly"
before_script:
- "composer install"
- "composer require satooshi/php-coveralls"
after_success:
- "travis_retry php vendor/bin/coveralls -v"
|
Build only on php 7.x
|
Build only on php 7.x
|
YAML
|
mit
|
sop/jwx
|
94d3c37616593a4ae464bc1fbf50ccb764faa243
|
.travis.yml
|
.travis.yml
|
language: c
script: make
env:
matrix:
- MB_TARGET=xtensa_nodemcu_arduino
- MB_TARGET=xtensa_esp12f_arduino
- MB_TARGET=xtensa_nodemcu
- MB_TARGET=xtensa_esp12f
- MB_TARGET=avr_nano_arduino
- MB_TARGET=arm_bluepill_arduino
- MB_TARGET=arm_bluepill_libopencm3
- MB_TARGET=arm_stm32f103c_arduino
|
language: c
script: make
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libusb-dev
env:
matrix:
- MB_TARGET=xtensa_nodemcu_arduino
- MB_TARGET=xtensa_esp12f_arduino
- MB_TARGET=xtensa_nodemcu
- MB_TARGET=xtensa_esp12f
- MB_TARGET=avr_nano_arduino
- MB_TARGET=arm_bluepill_arduino
- MB_TARGET=arm_bluepill_libopencm3
- MB_TARGET=arm_stm32f103c_arduino
|
Add libusb-dev build dependency for stlink package
|
Add libusb-dev build dependency for stlink package
|
YAML
|
mit
|
zorxx/micro-builder,zorxx/micro-builder,zorxx/micro-builder,zorxx/micro-builder,zorxx/micro-builder
|
513f7d06cbafd458e2b20afb1e26b23eb47e11df
|
.travis.yml
|
.travis.yml
|
# Config file for automatic testing at travis-ci.org
language: python
# Use container based infrastructure
sudo: false
env:
- CMD=./test
python:
- 2.6
- 2.7
- 3.3
- 3.4
matrix:
# allow_failures:
# - env: CMD="flake8 aldryn_faq"
fast_finish: true
include:
- python: 2.7
env: CMD="flake8 aldryn_faq"
cache:
directories:
- $HOME/.wheelhouse
install:
- pip wheel --wheel-dir $HOME/.wheelhouse -r test_requirements.txt
- pip install --use-wheel --no-index --find-links=$HOME/.wheelhouse -r test_requirements.txt
script: coverage run test_settings.py
after_success: coveralls
|
# Config file for automatic testing at travis-ci.org
language: python
# Use container based infrastructure
sudo: false
env:
- CMD=./test
python:
- 2.6
- 2.7
- 3.3
- 3.4
matrix:
allow_failures:
# Python 3.3, 3.4 allowed to fail for now. This is because
# django-appdata==0.1.3, (latest on GitHub as of this writing) which is a
# dependency of aldryn-apphooks-config is not really Py3 compatible.
- python: 3.3
- python: 3.4
fast_finish: true
include:
- python: 2.7
env: CMD="flake8 aldryn_faq"
cache:
directories:
- $HOME/.wheelhouse
install:
- pip wheel --wheel-dir $HOME/.wheelhouse -r test_requirements.txt
- pip install --use-wheel --no-index --find-links=$HOME/.wheelhouse -r test_requirements.txt
script: coverage run test_settings.py
after_success: coveralls
|
Make py3 tests failable for now
|
Make py3 tests failable for now
|
YAML
|
bsd-3-clause
|
czpython/aldryn-faq,czpython/aldryn-faq,czpython/aldryn-faq,czpython/aldryn-faq
|
d80f1f3931b43c535c16c4a1f00ed69b3a1dd8b2
|
.travis.yml
|
.travis.yml
|
language: python
env:
- DJANGO_VERSION=1.8.7
- DJANGO_VERSION=1.9
python:
- "2.7"
- "3.4"
- "3.5"
install:
- "pip install Django==$DJANGO_VERSION"
- "pip install ."
script: python setup.py test
sudo: false
|
language: python
addons:
apt:
packages:
- libatlas-dev
- liblapack-dev
- gfortran
env:
- DJANGO_VERSION=1.8.7
- DJANGO_VERSION=1.9
python:
- "2.7"
- "3.4"
- "3.5"
install:
- "pip install Django==$DJANGO_VERSION"
- "pip install ."
script: python setup.py test
sudo: false
|
Add some apt packages for Travis
|
Add some apt packages for Travis
|
YAML
|
mit
|
prophile/django_split
|
472107bee221b5bb4362ee035dbe8f8a2e3f3656
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: false
node_js:
- '0.10'
- '0.12'
- '4.0'
- '4.1'
- '4.2'
- '5.0'
env:
- CXX=g++-4.8
before_install:
- "mkdir -p ~/.npm"
before_script:
- npm install -g grunt-cli istanbul codeclimate-test-reporter
script:
- grunt lint
- istanbul cover ./node_modules/.bin/_mocha spec/helper.js spec/lib/*.js spec/lib/**/*.js --report lcovonly -- -R spec
- CODECLIMATE_REPO_TOKEN=88ec807c5d22e853e1a21b9289233f525e793f09e5e81322899ee519587d3689 codeclimate-test-reporter < coverage/lcov.info
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- g++-4.8-multilib
|
language: node_js
sudo: false
node_js:
- '0.10'
- '0.12'
- '4.0'
- '4.1'
- '4.2'
- '5.0'
- '5.1'
env:
- CXX=g++-4.8
before_install:
- "mkdir -p ~/.npm"
before_script:
- npm install -g grunt-cli istanbul codeclimate-test-reporter
script:
- grunt lint
- istanbul cover ./node_modules/.bin/_mocha spec/helper.js spec/lib/*.js spec/lib/**/*.js --report lcovonly -- -R spec
- CODECLIMATE_REPO_TOKEN=88ec807c5d22e853e1a21b9289233f525e793f09e5e81322899ee519587d3689 codeclimate-test-reporter < coverage/lcov.info
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- g++-4.8-multilib
|
Add Node.js 5.1 to Travis builds
|
Add Node.js 5.1 to Travis builds
|
YAML
|
mit
|
orbotix/sphero.js,olcar/sphero.js
|
f6572b409129ec6d0f2c42fe41f4c27456f47d47
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
env:
- TARGET=redmine REDMINE_VERSION=4.0.3
- TARGET=plugin REDMINE_VERSION=4.0.3
before_install: sh travis/before_install.sh
script: sh travis/exec_test.sh
addons:
chrome: stable
|
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
env:
- TARGET=redmine REDMINE_VERSION=4.0.3
- TARGET=plugin REDMINE_VERSION=4.0.3
before_install: sh travis/before_install.sh
script: sh travis/exec_test.sh
addons:
chrome: stable
allow_failures:
- TARGET=redmine REDMINE_VERSION=4.0.3
|
Allow failure of redmine tests
|
Allow failure of redmine tests
|
YAML
|
mit
|
pinzolo/redmine_persist_wfmt,pinzolo/redmine_persist_wfmt,pinzolo/redmine_persist_wfmt
|
e5169ba588b2e220315996c7b8da8e9a56ac806b
|
.travis.yml
|
.travis.yml
|
---
language: ruby
notifications:
email:
- [email protected]
- [email protected]
- [email protected]
# bundler is missing for jruby-head in travis-ci
# https://github.com/travis-ci/travis-ci/issues/5861
before_install:
- gem install --conservative bundler -v'1.13.7'
script: rake test
matrix:
include:
- rvm: 1.9.3
- rvm: 2.0.0
- rvm: 2.1
- rvm: 2.2
- rvm: 2.3.3
- rvm: 2.4.0
- rvm: ruby-head
- rvm: jruby-1.7.27
- rvm: jruby-9.2.5.0
- rvm: jruby-head
allow_failures:
- rvm: jruby-9.2.5.0
- rvm: jruby-head
env:
global:
- JRUBY_OPTS="--debug"
|
---
language: ruby
notifications:
email:
- [email protected]
- [email protected]
- [email protected]
# bundler is missing for jruby-head in travis-ci
# https://github.com/travis-ci/travis-ci/issues/5861
before_install:
- gem install --conservative bundler -v'1.13.7'
script: rake test
matrix:
include:
- rvm: 2.3.8
- rvm: 2.4.5
- rvm: 2.5.3
- rvm: ruby-head
- rvm: jruby-9.2.5.0
- rvm: jruby-head
allow_failures:
- rvm: jruby-9.2.5.0
- rvm: jruby-head
env:
global:
- JRUBY_OPTS="--debug"
|
Drop Rubies less than 2.3
|
Travis: Drop Rubies less than 2.3
|
YAML
|
mit
|
sparklemotion/mechanize,eligoenergy/mechanize,flavorjones/mechanize,eligoenergy/mechanize,sparklemotion/mechanize
|
0d244df370131ca4dd9cd9aff51d2074947f0915
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "4"
cache:
bundler: true
directories:
- node_modules # NPM packages
- dist/assets/images # optimized images
before_install:
- sudo apt-get install graphicsmagick
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- rvm install 2.2
- rvm use 2.2
- . $HOME/.nvm/nvm.sh && nvm install 4.4 && nvm use 4.4
- gem install bundler
- bundle check || bundle install
install:
- npm install
script: gulp build --prod
|
language: node_js
node_js:
- "4"
cache:
bundler: true
# directories:
# - node_modules # NPM packages
# - dist/assets/images # optimized images
before_install:
- sudo apt-get install graphicsmagick
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- rvm install 2.2
- rvm use 2.2
- . $HOME/.nvm/nvm.sh && nvm install 4.4 && nvm use 4.4
- gem install bundler
- bundle check || bundle install
install:
- npm install
script: gulp build --prod
|
Disable node_modules cache for Travis CI
|
Disable node_modules cache for Travis CI
|
YAML
|
mit
|
mmistakes/made-mistakes-jekyll,mmistakes/made-mistakes-jekyll,mmistakes/made-mistakes-jekyll
|
51ca6ef8cf47b43f0099cd78251bd10ba950c4ca
|
.travis.yml
|
.travis.yml
|
sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache/files
php:
- 5.5
- 5.6
- 7.0
matrix:
fast_finish: true
include:
- php: 7.0
env: deps=low
before_script:
- phpenv config-rm xdebug.ini
- if [[ "$deps" = "low" ]]; then composer update --prefer-lowest --prefer-stable; else composer install --prefer-dist; fi
script:
- ./vendor/bin/phpspec run
- ./vendor/bin/phpunit
|
sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache/files
matrix:
fast_finish: true
include:
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
env: deps=low
before_script:
- phpenv config-rm xdebug.ini
- if [[ "$deps" = "low" ]]; then composer update --prefer-lowest --prefer-stable; else composer install --prefer-dist; fi
script:
- ./vendor/bin/phpspec run
- ./vendor/bin/phpunit
|
Update the build matrix to run tests on PHP 7.1
|
Update the build matrix to run tests on PHP 7.1
|
YAML
|
mit
|
jakzal/ParamConverterBundle
|
2392630da718f258c07a62340847484ef892b8a8
|
.travis.yml
|
.travis.yml
|
sudo: true
env:
- NODE_VERSION="0.10"
- NODE_VERSION="0.11"
- NODE_VERSION="0.12"
- NODE_VERSION="iojs"
os:
- osx
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
- brew update
- brew install libusb
- brew install nvm
- nvm install $NODE_VERSION
- node --version
- npm install
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
sudo: true
env:
- NODE_VERSION="0.10"
- NODE_VERSION="0.11"
- NODE_VERSION="0.12"
- NODE_VERSION="iojs"
os:
- osx
before_install:
- brew update
- brew install libusb
- brew install nvm
- export NVM_DIR=~/.nvm
- source $(brew --prefix nvm)/nvm.sh
- nvm install $NODE_VERSION
- node --version
- npm --version
- npm update -g npm
- npm install -g bob coveralls --loglevel error
- npm install
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
Add nvm init to Travis conf.
|
Add nvm init to Travis conf.
|
YAML
|
mit
|
cliffano/buildlight
|
187fc452bf7c3cdbf87c080da77ddcaa6b1f6333
|
.travis.yml
|
.travis.yml
|
# Travis CI config
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/migrating-from-legacy/
sudo: false
language: node_js
matrix:
include:
- node_js: 6
- node_js: 8
- node_js: 10
script:
- npm run lint
- npm run coverage
after_success:
# send code-coverage data to Codacy
- cat ./coverage/lcov.info | node_modules/.bin/codacy-coverage -p .
# send code-coverage data to Coveralls
- cat ./coverage/lcov.info | node_modules/coveralls/bin/coveralls.js
|
# Travis CI config
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/migrating-from-legacy/
dist: trusty
sudo: false
language: node_js
matrix:
include:
- node_js: 6
- node_js: 8
- node_js: 10
script:
- npm run lint
- npm run coverage
after_success:
# send code-coverage data to Codacy
- cat ./coverage/lcov.info | node_modules/.bin/codacy-coverage -p .
# send code-coverage data to Coveralls
- cat ./coverage/lcov.info | node_modules/coveralls/bin/coveralls.js
|
Use "trusty" container for Travis-CI
|
Use "trusty" container for Travis-CI
|
YAML
|
mit
|
BigstickCarpet/sourcemapify
|
ef9c9fd0e1e42184741ba2274c309eaffc723a4f
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.11"
- "0.10"
- 0.8
before_install: "npm install -g bob --loglevel error"
script: "bob clean lint test coverage doc"
|
language: node_js
node_js:
- "0.11"
- "0.10"
- 0.8
before_install: "npm link --loglevel error"
script: "bob clean lint test coverage doc"
|
Use current Bob for CI testing instead of latest published.
|
Use current Bob for CI testing instead of latest published.
|
YAML
|
mit
|
cliffano/bob
|
da68baa8f22daf464ed5d0b99840a16433acc5a6
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.10
- 0.8
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
|
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
|
Build only on Node.js 0.10 at Travis CI.
|
Build only on Node.js 0.10 at Travis CI.
|
YAML
|
mit
|
bigeasy/conduit
|
77de6777476f8e98c7cb1182a71972db2f74277d
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
env:
- TEST_DIR=aleph2_data_model
before_install:
- cd aleph2_data_model && mvn install -DskipTests=true && cd ../test_dependencies/aleph2_crud_service_mongodb && mvn install -DskipTests=true
script: cd $TEST_DIR && mvn install -DskipTests=true && mvn test
after_success:
- mvn clean test jacoco:report coveralls:report
# blacklist
branches:
except:
- aleph4_data_import_manager
|
language: java
jdk:
- oraclejdk8
env:
- HOME_DIR=$(pwd)
- TEST_DIR=$HOME_DIR/aleph2_data_model
before_install:
- cd $HOME_DIR/aleph2_data_model && mvn install -DskipTests=true && cd $HOME_DIR/test_dependencies/aleph2_crud_service_mongodb && mvn install -DskipTests=true
script: cd $TEST_DIR && mvn install -DskipTests=true && mvn test
after_success:
- mvn clean test jacoco:report coveralls:report
# blacklist
branches:
except:
- aleph4_data_import_manager
|
Reset home dir between CI builds
|
Reset home dir between CI builds
|
YAML
|
apache-2.0
|
robgil/Aleph2,robgil/Aleph2
|
786a4f4b81e79caf1b83859b6d7cba4c6a98e6eb
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 3.3
- 3.2
install:
- pip install --use-mirrors Django==1.5
- python setup.py install
script: ./run_tests.sh
|
language: python
python:
- 3.4
- 3.3
- 3.2
install:
- pip install --use-mirrors Django==1.5
- python setup.py install
script: ./run_tests.sh
|
Add Python 3.4 to Travis configuration
|
Add Python 3.4 to Travis configuration
|
YAML
|
apache-2.0
|
misli/python3-openid,misli/python3-openid,misli/python3-openid,necaris/python3-openid,moreati/python3-openid,moreati/python3-openid,necaris/python3-openid,moreati/python3-openid
|
0c09feb42191f0a96604519955783a86de7af394
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby
- jruby-head
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby
- jruby-head
install:
- sudo apt-get install -qq graphviz
|
Make sure graphviz is available on Travis
|
Make sure graphviz is available on Travis
|
YAML
|
mit
|
chanibal/asciidoctor-diagram,asciidoctor/asciidoctor-diagram
|
e8beb84dd9032ba7109db40cecf0fddcc7b25d50
|
.travis.yml
|
.travis.yml
|
language: ruby
bundler_args: --without development
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
- ree
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
branches:
only:
- master
notifications:
recipients:
- [email protected]
- [email protected]
- [email protected]
- [email protected]
irc: "irc.freenode.org#guard"
|
language: ruby
bundler_args: --without development
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- ree
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
branches:
only:
- master
notifications:
recipients:
- [email protected]
- [email protected]
- [email protected]
- [email protected]
irc: "irc.freenode.org#guard"
|
Enable Ruby 2.0.0 on Travis.
|
Enable Ruby 2.0.0 on Travis.
|
YAML
|
mit
|
baberthal/guard,100star/guard,sideci-sample/sideci-sample-guard,guard/guard,garettarrowood/guard,ginkel/guard,sdgdsffdsfff/guard,yujinakayama/guard,pjump/guard
|
d32f7d28a0fad343ccca9069ae911d0fb7047a5b
|
.travis.yml
|
.travis.yml
|
language: php
cache:
directories:
- vendor
matrix:
# mark as finished before allow_failures are run
fast_finish: true
include:
- php: 5.6
env: CONFIG="phpunit.xml" COVERGAGE="all"
- php: 7.0
env: CONFIG="phpunit.xml" COVERGAGE="all"
- php: 7.1
env: CONFIG="phpunit.xml" COVERGAGE="all"
# test only master (+ pull requests)
branches:
only:
- master
# install dependencies
install:
- travis_wait composer install
# execute phpunit as the script command
script:
- ./vendor/bin/phpunit -d memory_limit=-1 --colors -c $CONFIG --coverage-clover=coverage.xml
# disable mail notifications
notification:
email: false
# reduce depth (history) of git checkout
git:
depth: 30
# we don't need sudo
sudo: false
# send coverage to codecov.io
after_success:
- bash <(curl -s https://codecov.io/bash) -F $COVERGAGE
|
language: php
cache:
directories:
- vendor
matrix:
# mark as finished before allow_failures are run
fast_finish: true
include:
- php: 5.6
env: CONFIG="phpunit.xml" COVERGAGE="all"
- php: 7.0
env: CONFIG="phpunit.xml" COVERGAGE="all"
- php: 7.1
env: CONFIG="phpunit.xml" COVERGAGE="all"
- php: 7.2
env: CONFIG="phpunit.xml" COVERGAGE="all"
# test only master (+ pull requests)
branches:
only:
- master
# install dependencies
install:
- travis_wait composer install
# execute phpunit as the script command
script:
- ./vendor/bin/phpunit -d memory_limit=-1 --colors -c $CONFIG --coverage-clover=coverage.xml
# disable mail notifications
notification:
email: false
# reduce depth (history) of git checkout
git:
depth: 30
# we don't need sudo
sudo: false
# send coverage to codecov.io
after_success:
- bash <(curl -s https://codecov.io/bash) -F $COVERGAGE
|
Add PHP 7.2 to the test matrix
|
Add PHP 7.2 to the test matrix
|
YAML
|
mit
|
netgen/query-translator
|
ea4432d5c7f50d80d4c79e8ddb9cd7c65e988e17
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
# before_install will simply setup a conda enviroment for installing python packages, if you
# have project dependencies it's usually recommended to go this route
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- "./miniconda.sh -b"
- export PATH=/home/travis/miniconda2/bin:$PATH
- conda update --yes conda
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
install:
- conda install --yes python="2.7" sphinx
- pip install --user travis-sphinx
script:
- travis-sphinx --source=./ build
after_success:
- travis-sphinx deploy
|
language: python
python:
- "2.7"
# before_install will simply setup a conda enviroment for installing python packages, if you
# have project dependencies it's usually recommended to go this route
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- "./miniconda.sh -b"
- export PATH=/home/travis/miniconda2/bin:$PATH
- conda update --yes conda
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
install:
- conda install --yes python="2.7" sphinx
- pip install --user travis-sphinx
script:
- travis-sphinx --source=./ build
- cd ./techbookfest2/ && bundle install && rake epub
after_success:
- travis-sphinx deploy
|
Enable to build by TravisCI
|
Enable to build by TravisCI
|
YAML
|
mit
|
syucream/mrubook,syucream/mrubook,syucream/mrubook
|
e62b587f56786497c12292c86c9c81e323401ec8
|
.travis.yml
|
.travis.yml
|
sudo: false # Tell travis-ci to use their container-based infrastructure
language: ruby
rvm: 2.1.1
cache: bundler
env:
- TEST_SUITE=units
- TEST_SUITE=integration
- TEST_SUITE=functionals
before_script:
- cp config/database.yml.travis config/database.yml
- psql -c 'create database travis_ci_test;' -U postgres
script: "bundle exec rake test:$TEST_SUITE"
|
sudo: false # Tell travis-ci to use their container-based infrastructure
language: ruby
rvm: 2.1.1
cache: bundler
env:
- TEST_SUITE=units # test/models, test/helpers, test/unit
- TEST_SUITE=integration # test/integration
- TEST_SUITE=functionals # test/controllers, test/mailers, test/functional
before_script:
- cp config/database.yml.travis config/database.yml
- psql -c 'create database travis_ci_test;' -U postgres
script: "bundle exec rake test:$TEST_SUITE"
|
Add comments to describe each test suite
|
Add comments to describe each test suite
I keep forgetting what they test
|
YAML
|
mit
|
indentlabs/notebook,indentlabs/notebook,indentlabs/notebook
|
4584c2714e874f181e62f735bec114d3e1d9535f
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- ruby-head
- 2.1
- 2.0
- 1.9.3
- 1.9.2
- 1.8.7
|
language: ruby
rvm:
- ruby-head
- 2.1
- 2.0
- 1.9.3
- 1.9.2
- 1.8.7
addons:
code_climate:
repo_token: cc41eb6449075390a8bdb804fa3ff5865a7fbf22384fcd1757730b702eefdb0a
|
Add codeclimate repo token to Travis configuration file.
|
Add codeclimate repo token to Travis configuration file.
|
YAML
|
mit
|
gdeoliveira/mtrack
|
c568ecfb17a3a0105269ab8a196508c5b83d65d1
|
.travis.yml
|
.travis.yml
|
language: clojure
lein: lein2
sudo: required
before_install:
- "ulimit -u 4096"
script: ./bin/ci.sh
env:
- CASSANDRA_VERSION=2.0.13
- CASSANDRA_VERSION=2.1.9
- CASSANDRA_VERSION=3.0.1
jdk:
- oraclejdk7
- oraclejdk8
branches:
only:
- master
- 2.0.x-stable
|
language: clojure
lein: lein2
sudo: required
before_install:
- "ulimit -u 4096"
script: ./bin/ci.sh
env:
- CASSANDRA_VERSION=2.0.13
- CASSANDRA_VERSION=2.1.9
- CASSANDRA_VERSION=2.2.4
- CASSANDRA_VERSION=3.0.1
jdk:
- oraclejdk7
- oraclejdk8
branches:
only:
- master
- 2.0.x-stable
matrix:
exclude:
- jdk: oraclejdk7
env: CASSANDRA_VERSION=3.0.1
env: CASSANDRA_VERSION=2.2.4
|
Tweak matrix to not run new cassandra with old jvms + cassandra 2.2
|
Tweak matrix to not run new cassandra with old jvms + cassandra 2.2
|
YAML
|
apache-2.0
|
clojurewerkz/cassaforte,clojurewerkz/cassaforte
|
d0c6b3ffc4150e9ee7a0685778818288009f3c3d
|
.travis.yml
|
.travis.yml
|
language: "node_js"
node_js:
- "0.10"
- "0.8"
- "0.6"
- "0.4"
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:
- "0.10"
- "0.8"
# - "0.6"
- "0.4"
before_install:
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-cov-to-coveralls"
|
Disable node 0.6 on Travis CI.
|
Disable node 0.6 on Travis CI.
|
YAML
|
mit
|
Iam-samara/passport-github,dougshamoo/passport-github,shutterstock/passport-shutterstock-oauth2,beni55/passport-github,cfsghost/passport-github,siddarthramesh/passport-zoho-crm,makerpass/passport-makerpass,simison/passport-github,EdHubbell/passport-tradegecko,istobarton/passport-github,bobby-brennan/passport-phonegap-build,cesine/passport-shutterstock-oauth2,stevenlundy/passport-github,jkf91/passport-github,jaredhanson/passport-github,linalu1/passport-github,kateEcobb/passport-github,jessta/passport-stack,mosesadg/passport-github,hokennethk/passport-github,cmhsu/passport-github,leeric92/passport-github
|
8ff0f7f6e8c33371a3bee951a923b357a13c7ab8
|
.travis.yml
|
.travis.yml
|
language: bash
addons:
apt:
packages:
- postgresql-9.4
- mysql-server-5.5
- mysql-client-5.5
before_script:
- mysql -e "CREATE DATABASE dogfish_test;"
- createdb dogfish_test
script: ./dogfish_test
|
language: bash
addons:
apt:
packages:
- postgresql-9.4
- mysql-server-5.5
- mysql-client-5.5
before_script:
- mysql -e "CREATE DATABASE dogfish_test;"
- createdb dogfish_test
- touch .dogfish-test-warning-given
script: ./dogfish_test
|
Hide dogfish_test warning for Travis
|
Hide dogfish_test warning for Travis
|
YAML
|
bsd-3-clause
|
dwb/dogfish
|
1b79cdf8ea6c1501109e697e5c5cc7c70082057d
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.6.3
script: script/cibuild
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
sudo: false # migrate to container-based infrastructure
|
language: ruby
rvm:
- 2.7.1
script: script/cibuild
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
sudo: false # migrate to container-based infrastructure
|
Use Ruby 2.7.1 for Travis CI builds
|
Use Ruby 2.7.1 for Travis CI builds
|
YAML
|
mit
|
alykhank/alykhank.github.io,alykhank/alykhank.github.io,alykhank/alykhank.github.io
|
a34968c3b12c632861b08b764be449f4acb8cc6c
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'generator-vanilla' ]; then cd .. && eval "mv $currentfolder generator-vanilla" && cd generator-vanilla; fi
|
language: node_js
node_js:
- '0.10'
before_install:
- sudo apt-get update
- sudo apt-get install php5-cli
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'generator-vanilla' ]; then cd .. && eval "mv $currentfolder generator-vanilla" && cd generator-vanilla; fi
|
Install PHP5 CLI before running tests on Travis
|
Install PHP5 CLI before running tests on Travis
|
YAML
|
mit
|
kasperisager/generator-vanilla,kasperisager/generator-vanilla
|
53cb398b9b1ea21a5235ada57b08df479ec2e344
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.0
- 7.1
before_script:
- travis_retry composer self-update --preview
- travis_retry composer install --prefer-dist --no-interaction
- sudo add-apt-repository -y ppa:moti-p/cc
- sudo apt-get update
- sudo apt-get -y --reinstall install imagemagick
- printf "\n" | pecl install imagick
script:
- bin/phpunit --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov.io/bash)
|
language: php
php:
- 7.0
- 7.1
before_script:
- travis_retry composer self-update --preview
- travis_retry composer install --prefer-dist --no-interaction
- sudo add-apt-repository -y ppa:moti-p/cc
- sudo apt-get update
- sudo apt-get -y --reinstall install imagemagick
- printf "\n" | pecl install imagick-beta
script:
- bin/phpunit --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Use the beta channel for Imagick on Travis
|
Use the beta channel for Imagick on Travis
|
YAML
|
mit
|
darrynten/pslayers
|
e6b9585e081dcb30dc6c579fa43f75bc63c61c30
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: false
matrix:
fast_finish: true
node_js:
- "8"
- "10"
branches:
only:
- master
git:
depth: 1
cache:
directories:
- "node_modules"
script:
- npm run compile
- npm run lint
- npm run compile-tests
- npm run test
|
language: node_js
sudo: false
matrix:
fast_finish: true
node_js:
- "8"
branches:
only:
- master
git:
depth: 1
cache:
directories:
- "node_modules"
script:
- npm run compile
- npm run lint
- npm run compile-tests
- npm run test
|
Remove nodejs v10 from builds
|
Remove nodejs v10 from builds
|
YAML
|
mit
|
timocov/dts-bundle-generator,timocov/dts-bundle-generator
|
58f585afe5d8a5336f7f4b9cd58cdfc53ae4bc88
|
.travis.yml
|
.travis.yml
|
sudo: false
dist: trusty
language: php
php:
- 7.0
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
before_script:
- travis_retry composer self-update
- travis_retry composer global require "fxp/composer-asset-plugin:~1.3"
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
script:
- phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
|
language: php
php:
- 7.0
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
before_script:
- travis_retry composer self-update
- travis_retry composer global require "fxp/composer-asset-plugin:~1.3"
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
script:
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
|
Remove trusty box and update phpunit command
|
Remove trusty box and update phpunit command
|
YAML
|
mit
|
Edofre/laravel-fullcalendar,Edofre/laravel-fullcalendar
|
21c7e60a266af090e5bfdd89631fe4220955ec46
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
dist: trusty
sudo: false
# Early warning system to catch if Rubygems breaks something
before_install:
- gem update --system
- gem uninstall bundler -a -x
- gem install bundler
- rm -f .bundle/config
rvm:
- 2.3.5
- 2.4.2
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
script: bundle exec rake spec
branches:
only:
- master
|
language: ruby
cache: bundler
dist: xenial
sudo: false
# Early warning system to catch if Rubygems breaks something
before_install:
- gem --version
- rvm @global do gem uninstall bundler -a -x -I || true
- gem install bundler --no-document
- bundle --version
- rm -f .bundle/config
matrix:
include:
- rvm: 2.2.10
- rvm: 2.3.8
- rvm: 2.4.5
- rvm: 2.5.3
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
script: bundle exec rake spec
branches:
only:
- master
|
Add Ruby 2.2 and 2.5 testing in Travis
|
Add Ruby 2.2 and 2.5 testing in Travis
Signed-off-by: Tim Smith <[email protected]>
|
YAML
|
apache-2.0
|
chef-customers/knife-tidy
|
87a7e4f9af4eb580df3ec60de605bcfce479baa1
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
rvm:
- 2.0
- 2.1.9
- 2.2.6
- 2.3.3
gemfile:
- gemfiles/sprockets_rails_2_with_sprockets_2.gemfile
- gemfiles/sprockets_rails_2_with_sprockets_3.gemfile
- gemfiles/sprockets_rails_3_with_sprockets_3.gemfile
- gemfiles/sprockets_rails_3_with_sprockets_4.gemfile
matrix:
exclude:
- rvm: 2.0
gemfile: gemfiles/sprockets_rails_3_with_sprockets_3.gemfile
- rvm: 2.1.9
gemfile: gemfiles/sprockets_rails_3_with_sprockets_3.gemfile
- rvm: 2.0
gemfile: gemfiles/sprockets_rails_3_with_sprockets_4.gemfile
- rvm: 2.1.9
gemfile: gemfiles/sprockets_rails_3_with_sprockets_4.gemfile
branches:
only:
- master
before_install:
- gem update --system 2.7.9 --no-doc
- "gem install bundler"
after_script:
- '[ ${TRAVIS_EVENT_TYPE} != "pull_request" ] && [ ${TRAVIS_BRANCH} = "master" ] && bundle exec codeclimate-test-reporter'
|
language: ruby
sudo: false
rvm:
- 2.0
- 2.1.9
- 2.2.6
- 2.3.3
gemfile:
- gemfiles/sprockets_rails_2_with_sprockets_2.gemfile
- gemfiles/sprockets_rails_2_with_sprockets_3.gemfile
- gemfiles/sprockets_rails_3_with_sprockets_3.gemfile
- gemfiles/sprockets_rails_3_with_sprockets_4.gemfile
matrix:
exclude:
- rvm: 2.0
gemfile: gemfiles/sprockets_rails_3_with_sprockets_3.gemfile
- rvm: 2.1.9
gemfile: gemfiles/sprockets_rails_3_with_sprockets_3.gemfile
- rvm: 2.0
gemfile: gemfiles/sprockets_rails_3_with_sprockets_4.gemfile
- rvm: 2.1.9
gemfile: gemfiles/sprockets_rails_3_with_sprockets_4.gemfile
branches:
only:
- master
before_install:
- gem update --system 2.7.9 --no-doc
- gem install bundler -v '~> 1.0'
after_script:
- '[ ${TRAVIS_EVENT_TYPE} != "pull_request" ] && [ ${TRAVIS_BRANCH} = "master" ] && bundle exec codeclimate-test-reporter'
|
Fix build failure due to Bundler
|
Fix build failure due to Bundler
Use Bundler v1 because Rails 3 and 4 doesn't support Bundler v2.
|
YAML
|
mit
|
yasaichi/gakubuchi,yasaichi/gakubuchi,yasaichi/gakubuchi
|
c5669550671c2d9278edd2f8ca5d4407c0ece60f
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
Build with latest Node.js 4 on Travis CI.
|
Build with latest Node.js 4 on Travis CI.
|
YAML
|
mit
|
bigeasy/memento
|
9122057b221d21bd2739feb27beaa2225083429c
|
.travis.yml
|
.travis.yml
|
language: rust
rust:
- 1.13.0
- 1.14.0
- 1.15.1
- 1.16.0
- 1.17.0
- beta
- nightly
# Opt for a less ancient distribution with a C++11-compliant compiler, in order
# to compile libfuzzer.
dist: trusty
sudo: false
addons:
apt:
packages:
- flac
cache:
directories:
# Cache the fuzzing corpus, so it does not have to discover the entire corpus
# again every time, and it can focus on finding bugs instead.
# TODO: This is broken, libfuzzer seems to not recognize the corpus somehow.
# - fuzz_corpus
# Cache the test samples to not put so much load on archive.org, but on
# Travis' S3 buckets instead.
- testsamples
before_script:
- cd testsamples && ./populate.sh && cd ..
script:
# Do not use the default --verbose commands, they are only noisy.
- cargo build
- cargo test
# On the nightly configuration, fuzz for 15 minutes.
# TODO: This is broken, libfuzzer does not recognize the cached corpus.
# - FUZZ_SECONDS=900 tools/fuzz_on_ci.sh
|
language: rust
rust:
- 1.13.0
- 1.14.0
- 1.15.1
- 1.16.0
- 1.17.0
- beta
- nightly
# Opt for a less ancient distribution with a C++11-compliant compiler, in order
# to compile libfuzzer.
dist: trusty
sudo: false
addons:
apt:
packages:
- flac
cache:
directories:
# Cache the fuzzing corpus, so it does not have to discover the entire corpus
# again every time, and it can focus on finding bugs instead.
# TODO: This is broken, libfuzzer seems to not recognize the corpus somehow.
# - fuzz_corpus
# Cache the test samples to not put so much load on archive.org, but on
# Travis' S3 buckets instead.
- testsamples
# Cargo directories, the default when we could set "cache: cargo". See also
# https://github.com/travis-ci/travis-build/pull/710
- $HOME/.cargo
- $TRAVIS_BUILD_DIR/target
before_script:
- cd testsamples && ./populate.sh && cd ..
script:
# Do not use the default --verbose commands, they are only noisy.
- cargo build
- cargo test
# On the nightly configuration, fuzz for 15 minutes.
# TODO: This is broken, libfuzzer does not recognize the cached corpus.
# - FUZZ_SECONDS=900 tools/fuzz_on_ci.sh
|
Enable Cargo cache on CI
|
Enable Cargo cache on CI
|
YAML
|
apache-2.0
|
ruuda/claxon,ruuda/claxon,ruuda/claxon
|
4559d02adcf2144594da1fffd493b1ea9519de90
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.5
- 5.6
install:
- composer self-update
before_script:
- cp .env.travis .env
- cp travis.phpunit.xml phpunit.xml
- mkdir /tmp/timegrid
- mysql -e 'create database test_timegrid;'
- composer install --dev --no-interaction
- php artisan key:generate
- php artisan migrate
- php artisan db:seed
- php artisan geoip:update
after_success:
- ./travis-codeclimate-report.sh
|
language: php
php:
- 5.6
install:
- composer self-update
before_script:
- cp .env.travis .env
- cp travis.phpunit.xml phpunit.xml
- mkdir /tmp/timegrid
- mysql -e 'create database test_timegrid;'
- composer install --dev --no-interaction
- php artisan key:generate
- php artisan migrate
- php artisan db:seed
- php artisan geoip:update
after_success:
- ./travis-codeclimate-report.sh
|
Remove PHP v5.5 from CI support
|
Remove PHP v5.5 from CI support
|
YAML
|
agpl-3.0
|
timegridio/timegrid,alariva/timegrid,alariva/timegrid,timegridio/timegrid,alariva/timegrid,alariva/timegrid,timegridio/timegrid
|
46c6f82b0cab55ac4ba79b62f523c66911e2a81a
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.11'
- '0.10'
- '0.8'
- '0.6'
|
language: node_js
node_js:
- 'node'
- '0.11'
- '0.10'
|
Drop node 0.6 and 0.8 support and add latest node versions
|
Drop node 0.6 and 0.8 support and add latest node versions
Our dependencies are breaking when trying to install some dependencies
in this node versions, they are really old, and I don't plan on keeping
support for them.
I'll also add the latest node versions to our CI builds.
|
YAML
|
mit
|
herenow/light-router
|
9f842224a53a717ebe9649d84e3b82451b15e86a
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "4.2"
# See https://docs.travis-ci.com/user/gui-and-headless-browsers/#Starting-a-Web-Server
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3 # Give Xvfb some time to start.
- npm run server &
- sleep 3 # Give the web server some time to bind to sockets, etc.
after_script:
- npm run lint
|
language: node_js
node_js:
- "4.2"
# By default, the gh-pages branch is not built unless added to the whitelist.
branches:
only:
- gh-pages
# See https://docs.travis-ci.com/user/gui-and-headless-browsers/#Starting-a-Web-Server
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3 # Give Xvfb some time to start.
- npm run server &
- sleep 3 # Give the web server some time to bind to sockets, etc.
after_script:
- npm run lint
|
Whitelist the "gh-pages" branch to be built in Travis CI
|
Whitelist the "gh-pages" branch to be built in Travis CI
|
YAML
|
mit
|
heremaps/map-linkbuilder-app,heremaps/map-linkbuilder-app,heremaps/map-linkbuilder-app
|
ca80b7b6b9162d3922addeda1ee315da4ad61619
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
rvm:
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.10
- 2.5.8
- 2.6.6
- 2.7.2
- 3.0.0
|
sudo: false
language: ruby
rvm:
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.10
- 2.5.9
- 2.6.7
- 2.7.3
- 3.0.1
|
Upgrade Ruby versions for testing
|
Upgrade Ruby versions for testing
|
YAML
|
mit
|
matt-harvey/tabulo,matt-harvey/tabulo
|
d5ba848d54d8b8cb4f8a94fc91ca5f7c714c9644
|
.travis.yml
|
.travis.yml
|
sudo: false
language: go
go:
- 1.9
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make vendor
before_script:
- make clean
script:
- make test
after_success:
- make coverage
|
sudo: false
language: go
go:
- '1.10'
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make vendor
before_script:
- make clean
script:
- make test
after_success:
- make coverage
|
Update Go version to 1.10 in Travis CI.
|
Update Go version to 1.10 in Travis CI.
Signed-off-by: Krzysztof Wilczynski <[email protected]>
|
YAML
|
apache-2.0
|
kwilczynski/packer-provisioner-itamae-local
|
fb4af85d86a078044b869cb6e9ff363ae289e83e
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
matrix:
allow_failures:
- php: 7
before_script:
- composer self-update
- composer install --no-progress --prefer-source
script:
- phpunit
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
before_script:
- composer self-update
- composer install --no-progress --prefer-source
script:
- phpunit
|
Remove PHP7 from allowed Travis failures
|
Remove PHP7 from allowed Travis failures
|
YAML
|
mit
|
FoilPHP/Foil,FoilPHP/Foil,abdala/Foil,abdala/Foil
|
7bf7fd46ea45d46e1e16da92c73fa0f7b44acc9f
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
cache:
directories:
- node_modules
node_js:
- '0.12'
before_script:
- npm prune
after_success:
- npm run codecov
|
sudo: false
language: node_js
cache:
directories:
- node_modules
node_js:
- '4.1.x'
before_script:
- npm prune
after_success:
- npm run codecov
|
Update node.js version to 4.1.x
|
chore(ci): Update node.js version to 4.1.x
- testdom (jsdom) depends node v4 or newer in example project
|
YAML
|
mit
|
moqada/flux-simple-action-creator,moqada/flux-simple-action-creator
|
1c6589796296f79f78e37083f1c89ed60e8765d5
|
.travis.yml
|
.travis.yml
|
sudo: required
services:
- docker
before_install:
- docker build -t zosconnectforswift .
- docker run zosconnectforswift /bin/sh -c "swift test"
script:
- swift test
|
sudo: required
services:
- docker
before_install:
- docker build -t zosconnectforswift .
- docker run zosconnectforswift /bin/sh -c "swift test"
|
Remove script definition for clean CI
|
Remove script definition for clean CI
|
YAML
|
apache-2.0
|
zosconnect/zosconnect-for-swift
|
b4b55e385d0c1ef858e725d16487f025ee007fc3
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
install:
- python setup.py install
|
language: python
python:
- "2.7"
before_install:
- sudo apt-get install -y hostapd dnsmasq
install:
- python setup.py install
|
Install dnsmasq and hostapd so that setup.py build doesn't lock.
|
Install dnsmasq and hostapd so that setup.py build doesn't lock.
|
YAML
|
mit
|
MrMugiwara/wifiphisher,MrMugiwara/wifiphisher
|
cb342973cda47f1aeb887d70efbd519521ea8fdf
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.5"
- "3.6"
before_install:
- pip install pytest>=3.6 pytest-cov
- pip install coveralls
install:
- pip install --upgrade pip setuptools wheel
- pip install matplotlib==2.2.3
- pip install sympy==1.1.1
- pip install --only-binary=numpy,scipy numpy scipy==0.19.1
- python setup.py develop
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3
script:
- py.test --cov=bayesloop
after_success:
- coveralls
|
language: python
python:
- "2.7"
- "3.5"
- "3.6"
before_install:
- pip install pytest pytest-cov<2.6
- pip install coveralls
install:
- pip install --upgrade pip setuptools wheel
- pip install matplotlib==2.2.3
- pip install sympy==1.1.1
- pip install --only-binary=numpy,scipy numpy scipy==0.19.1
- python setup.py develop
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3
script:
- py.test --cov=bayesloop
after_success:
- coveralls
|
Fix for pytest-cov version on TravisCI
|
Fix for pytest-cov version on TravisCI
|
YAML
|
mit
|
christophmark/bayesloop
|
9430cc633deede87371109668d998482009f0aef
|
.travis.yml
|
.travis.yml
|
language: java
script: mvn clean package
jdk:
- oraclejdk6
- oraclejdk7
- oraclejdk8
sudo: false
|
language: java
script: mvn clean package
jdk:
- oraclejdk7
- oraclejdk8
sudo: false
|
Remove oraclejdk6 from Travis CI configuration
|
Remove oraclejdk6 from Travis CI configuration
|
YAML
|
mit
|
vbauer/yandex-metrica-plugin,vbauer/yandex-metrica-plugin
|
9e6675d41310ce1890b21e80baaf56b9c642d841
|
.travis.yml
|
.travis.yml
|
language: go
os:
- linux
- osx
go:
- 1.3
- tip
install:
# github.com/howeyc/gopass requires Go v1.3.
- go get github.com/howeyc/gopass
- go get github.com/kward/go-osc/osc
- go get github.com/kward/go-vnc
- go get golang.org/x/net/context
|
language: go
os:
- linux
- osx
go:
# Go 1.7 required for context package.
- 1.7
- tip
install:
# github.com/howeyc/gopass requires Go 1.3.
- go get github.com/howeyc/gopass
# github.com/kward/go-osc/osc requires Go 1.2.
- go get github.com/kward/go-osc/osc
- go get golang.org/x/net/context
# github.com/kward/go-vnc requires Go 1.2.
- go get github.com/kward/go-vnc
|
Update required Go version to 1.7.
|
Update required Go version to 1.7.
|
YAML
|
apache-2.0
|
kward/venue
|
b476daf95659616ee602cfbe203102bbbcab5983
|
.travis.yml
|
.travis.yml
|
---
language: ruby
rvm:
- 1.9.3
branches:
except:
- master
notifications:
email: false
|
---
language: ruby
rvm:
- 1.9.3
notifications:
email: false
|
Enable TravisCI for our master branch
|
Enable TravisCI for our master branch
Pull requests from forks aren't being tested by Travis. We have a theory
that this is because we've disabled builds for the master branch and there's
a hint in the docs that pull requests don't work the same as normal branch
builds: http://docs.travis-ci.com/user/pull-requests/#My-Pull-Request-isn't-being-build
> We rely on the merge commit that GitHub transparently creates between the
> changes in the source branch and the upstream branch the pull request is
> sent against.
The reason we originally disabled this branch is because it's also tested by
our in-house CI. However in reality it's not such a big deal for it to be
tested twice. At worst we tie up a Travis worker for a little longer than we
need.
|
YAML
|
mit
|
UKHomeOffice/vcloud-core,UKHomeOffice/vcloud-core,gds-operations/vcloud-core,gds-operations/vcloud-core
|
7396ce7f0796ec5705adab7dbd09de8179b0cca4
|
.travis.yml
|
.travis.yml
|
# Config file for automatic testing at travis-ci.org
language: python
python:
#- "2.6"
- "2.7"
- "3.2"
install:
# deactivate the virtualenv so that numpy can be quickly installed
- deactivate
- sudo apt-get install -qq python-numpy python-sphinx
script:
- cd tests
- nosetests
- cd ../doc
- make html
|
# Config file for automatic testing at travis-ci.org
language: python
env:
- PYTHON=python PYSUF='' # uses Python 2.7
- PYTHON=python3 PYSUF=3 # uses Python 3.2
# command to install dependencies
install:
# Deactivate the virtualenv to get fast install of dependencies
- deactivate
- sudo apt-get install -qq $PYTHON-numpy $PYTHON-sphinx $PYTHON-nose
script:
- cd tests
- nosetests$PYSUF
- cd ../doc
- make html
|
Install nose and try to get Python 3 working
|
Install nose and try to get Python 3 working
|
YAML
|
mit
|
newville/asteval
|
5d0a4d23440afc12da7846ae494837971af9bcd9
|
.travis.yml
|
.travis.yml
|
language: php
matrix:
include:
- php: 5.3
env: SEND_COVERAGE=false
- php: 5.6
env: SEND_COVERAGE=true
- php: 7.0
env: SEND_COVERAGE=false
- php: hhvm
env: SEND_COVERAGE=false
allow_failures:
- php: hhvm
env:
global:
- SEND_COVERAGE=false
before_script:
- composer self-update
- composer install --no-interaction --prefer-dist
- mysql -e "DROP DATABASE IF EXISTS phpunit_soluble_test_db;" -uroot
- mysql -e "create database phpunit_soluble_test_db;" -uroot
- zcat tests/data/mysql/schema.sql.gz | mysql -uroot phpunit_soluble_test_db
- zcat tests/data/mysql/data.sql.gz | mysql -uroot phpunit_soluble_test_db
- mkdir build
- mkdir -p build/logs
- mkdir -p tests/logs
script:
- phpunit -v --configuration tests/config/phpunit.travis.xml
after_script:
- if [[ $EXTERNAL == true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ $EXTERNAL == true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi
- if [[ $EXTERNAL == true ]]; then vendor/bin/test-reporter; fi
|
language: php
matrix:
include:
- php: 5.3
env: SEND_COVERAGE=false
- php: 5.6
env: SEND_COVERAGE=true
- php: 7.0
env: SEND_COVERAGE=false
- php: hhvm
env: SEND_COVERAGE=false
allow_failures:
- php: hhvm
env:
global:
- SEND_COVERAGE=false
before_script:
- composer self-update
- composer install --no-interaction --prefer-dist
- mysql -e "DROP DATABASE IF EXISTS phpunit_soluble_test_db;" -uroot
- mysql -e "create database phpunit_soluble_test_db;" -uroot
- zcat tests/data/mysql/schema.sql.gz | mysql -uroot phpunit_soluble_test_db
- zcat tests/data/mysql/data.sql.gz | mysql -uroot phpunit_soluble_test_db
- mkdir build
- mkdir -p build/logs
- mkdir -p tests/logs
script:
- phpunit -v --configuration tests/config/phpunit.travis.xml
after_script:
- if [[ $SEND_COVERAGE == true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ $SEND_COVERAGE == true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi
- if [[ $SEND_COVERAGE == true ]]; then vendor/bin/test-reporter; fi
|
Send coverage report to scrutinizer
|
Send coverage report to scrutinizer
|
YAML
|
mit
|
belgattitude/soluble-japha,belgattitude/soluble-japha,belgattitude/soluble-japha
|
6a89fcea4e6d2efa328bfdbc250369accfd41267
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.2"
- "3.3"
- "3.4"
# command to install dependencies
install:
- sudo apt-get install r-base-dev
- pip install rpy2 scipy numpy sympy
- python setup.py install
- pip install nose-cov
# command to run tests
script: nosetests --with-coverage --cover-package=FFOMP
after_success:
- pip install coveralls
- coveralls
|
language: python
python:
- "3.2"
- "3.3"
- "3.4"
virtualenv:
system_site_packages: true
# command to install dependencies
install:
- sudo apt-get install r-base-dev python-numpy python-scipy
- pip install rpy2 sympy
- python setup.py install
- pip install nose-cov
# command to run tests
script: nosetests --with-coverage --cover-package=FFOMP
after_success:
- pip install coveralls
- coveralls
|
Change to use apt-get for scipy and numpy
|
Change to use apt-get for scipy and numpy
Using scipy and numpy from pip takes longer than what is allowed by
Travis CI. Now they are attempted to be installed by apt-get.
|
YAML
|
mit
|
tschijnmo/FFOMP,tschijnmo/FFOMP
|
7cdc1c5bec00d021ace7c15622a2e577fad05662
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
|
language: node_js
node_js:
- '5'
- '4'
- '0.12'
- '0.10'
|
Test on `4` and `5`
|
Test on `4` and `5`
|
YAML
|
mit
|
gillstrom/number-length
|
58befbbd390ba6e2e4e0779f41b2626737318bc6
|
.travis.yml
|
.travis.yml
|
language: node_js
script: "npm run travis"
node_js:
- node
- "13"
- "12"
- "11"
- "10"
- "9"
- "8"
addons:
chrome: stable
services:
- xvfb
|
language: node_js
script: "npm run travis"
node_js:
- node
- "15"
- "14"
- "13"
- "12"
- "11"
- "10"
addons:
chrome: stable
services:
- xvfb
|
Update node version and drop node < 10
|
Update node version and drop node < 10
|
YAML
|
mit
|
polygonplanet/chillout
|
00a383c4193384cd04d24905f48c8496caa835fd
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- ruby-head
script: bundle exec rake
matrix:
allow_failures:
- rvm: ruby-head
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- ruby-head
script: bundle exec rake
matrix:
allow_failures:
- rvm: ruby-head
- rvm: 1.8.7
|
Add allow failure for 1.8.7
|
Add allow failure for 1.8.7
`Gem::InstallError: mime-types requires Ruby version >= 1.9.2.`
|
YAML
|
apache-2.0
|
cparedes/opsview_rest,kainam00/opsview_rest
|
a416281522cac56249d8bf714eadcf32283f225b
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
before_install: gem install bundler -v 1.13.6
|
sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
before_install:
- gem update --system
- gem install bundler -v 1.13.6
|
Update gem to the latest version to fix build error
|
Update gem to the latest version to fix build error
https://travis-ci.org/emsk/backlog_kit/jobs/200349504
|
YAML
|
mit
|
emsk/resas_kit,emsk/resas_kit
|
cb94348f440450ae5104f466fe1ce5e3ccbe9841
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.5"
- "3.5-dev"
- "nightly"
install:
- "sudo apt-get -qq update"
- "sudo apt-get -y install libsdl1.2-dev graphviz"
- "pip install git+https://github.com/metrasynth/sunvox-dll-python"
- "pip install git+https://github.com/metrasynth/radiant-voices"
- "pip install -r requirements/tests.txt"
- "pip install ."
script: py.test
|
language: python
python:
- "3.5"
- "3.5-dev"
install:
- "sudo apt-get -qq update"
- "sudo apt-get -y install libsdl1.2-dev graphviz"
- "pip install git+https://github.com/metrasynth/sunvox-dll-python"
- "pip install git+https://github.com/metrasynth/radiant-voices"
- "pip install -r requirements/tests.txt"
- "pip install ."
script: py.test
|
Remove nightly build of Python (numpy doesn't support it out-of-the-box)
|
Remove nightly build of Python (numpy doesn't support it out-of-the-box)
|
YAML
|
mit
|
metrasynth/solar-flares
|
edcff6de36c0bb402df206b203b9472983c9c4b0
|
.travis.yml
|
.travis.yml
|
language: clojure
before_install:
- sudo apt-get purge nodejs npm
- sudo apt-get install -y python-software-properties
- sudo add-apt-repository -y ppa:chris-lea/node.js
- sudo apt-get update
- sudo apt-get install -y nodejs
- sudo npm install -g jshint
script: lein with-profile dev midje && lein uberjar
jdk:
- oraclejdk8
- openjdk11
|
language: clojure
before_install:
- sudo apt-get purge nodejs npm
- sudo apt-get install -y python-software-properties
- sudo add-apt-repository -y ppa:chris-lea/node.js
- sudo apt-get update
- sudo apt-get install -y nodejs
- sudo npm install -g jshint
script: lein test && lein uberjar
jdk:
- oraclejdk8
- openjdk11
|
Fix Travis CI conf: use 'lein test'
|
Fix Travis CI conf: use 'lein test'
|
YAML
|
epl-1.0
|
vbauer/lein-jshint
|
5a7dca37e11328ae1d995554487fb1d19bb47da2
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.8
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install --quiet -g karma
- sleep 1 # give server time to start
script:
- karma start frontend/config/karma.conf.js --no-auto-watch --single-run --reporters=dots --browsers=Firefox
|
language: node_js
node_js:
- 0.10
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install --quiet -g karma
- sleep 1 # give server time to start
script:
- karma start frontend/config/karma.conf.js --no-auto-watch --single-run --reporters=dots --browsers=Firefox
|
Update the Travis configuration file to use the latest version.
|
Update the Travis configuration file to use the latest version.
Use the latest version of node.js to run the tests.
|
YAML
|
agpl-3.0
|
MJDSys/eimbu,MJDSys/eimbu,MJDSys/eimbu,MJDSys/eimbu
|
872fd68bfdffd5c2c2e993e029f4d8903b5e5702
|
.travis.yml
|
.travis.yml
|
dist: trusty
sudo: false
addons:
apt:
sources:
- chef-current-trusty
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)"
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/bin/chef exec delivery local all
|
dist: trusty
sudo: false
addons:
apt:
sources:
- chef-current-trusty
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 "$(chef shell-init bash)"
script:
- chef --version
- cookstyle --version
- foodcritic --version
- chef exec delivery local all
|
Simplify Travis config and fix ChefDK 2.0 failures
|
Simplify Travis config and fix ChefDK 2.0 failures
|
YAML
|
apache-2.0
|
opscode-cookbooks/aws,chef-cookbooks/aws,scalp42/aws,paybyphone/aws
|
270f8e2b5010592e34a333a4e2a8bf3b72c56412
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
|
sudo: false
language: node_js
node_js:
- '10'
- '12'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
|
Build with Node.js 12 on Travis CI.
|
Build with Node.js 12 on Travis CI.
Closes #140.
|
YAML
|
mit
|
bigeasy/turnstile
|
87694add16eb627b9d386f09ed6311b529b37752
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.12"
- "0.11"
before_script:
- npm install -g gulp
- npm install -g bower
- npm install -g codeclimate-test-reporter
- npm install -g codacy-coverage
- bower install
script: gulp
after_script:
- codecov < .tmp/js/lcov.info
- codeclimate-test-reporter < ./.tmp/js/lcov.info
- codacy-coverage < .tmp/js/lcov.info
cache:
directories:
- $HOME/node_modules
- $HOME/bower_components
before_cache:
- rm -f $HOME/.node_modules/npm-check
- npm prune
- bower prune
addons:
code_climate:
repo_token: 42a279ebfefeb7d8cab1a7acc719c20fa3f5306ec0e9226e82b98ff2645d9d05
|
language: node_js
node_js:
- "0.12"
- "0.11"
before_script:
- npm install -g gulp
- npm install -g bower
- npm install -g codeclimate-test-reporter
- npm install -g codacy-coverage
- bower install
script: gulp
after_script:
- codecov < .tmp/js/lcov.info
- codeclimate-test-reporter < ./.tmp/js/lcov.info
- codacy-coverage < .tmp/js/lcov.info
cache:
directories:
- $HOME/node_modules
- $HOME/bower_components
- $TRAVIS_BUILD_DIR/node_modules
- $TRAVIS_BUILD_DIR/bower_components
before_cache:
- rm -f $HOME/.node_modules/npm-check
- npm prune
- bower prune
addons:
code_climate:
repo_token: 42a279ebfefeb7d8cab1a7acc719c20fa3f5306ec0e9226e82b98ff2645d9d05
|
Add more directories for caching
|
Add more directories for caching
|
YAML
|
mit
|
dmgress/cloudgrapher,dmgress/cloudgrapher
|
13924497bf3fd65decea4e198d9455f98fac3a5f
|
.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
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(chef shell-init bash)"
script:
- chef --version
- cookstyle --version
- foodcritic --version
- chef exec delivery local all
|
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
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(chef shell-init bash)"
script:
- chef --version
- cookstyle --version
- foodcritic --version
- chef exec delivery local all
|
Update for Chef 15 license agreement and Chef Workstation
|
Update for Chef 15 license agreement and Chef Workstation
|
YAML
|
apache-2.0
|
chef-cookbooks/homebrew,opscode-cookbooks/homebrew,Brantone/homebrew
|
f1e4894d47541a4328b3f4fee60de74727ff918a
|
.travis.yml
|
.travis.yml
|
language: ruby
bundler_args: --deployment --without development
rvm:
- 1.9.3-p448
script: bundle exec rspec spec
before_script:
- mysql -u root -e "DELETE FROM mysql.user WHERE Host='localhost' AND User=''"
- mysql -u root -e "SHOW VARIABLES"
|
language: ruby
bundler_args: --deployment --without development
rvm:
- 1.9.3-p448
script: bundle exec rspec spec
before_script:
- mysql -u root -e "DELETE FROM mysql.user WHERE Host='localhost' AND User=''"
- mysql -u root -e "SET GLOBAL innodb_stats_auto_recalc=ON, innodb_stats_on_metadata=ON, innodb_stats_persistent=OFF;"
- mysql -u root -e "SHOW VARIABLES"
|
Set MySQL stats configuration for Travis
|
Set MySQL stats configuration for Travis
|
YAML
|
apache-2.0
|
cloudfoundry/cf-mysql-broker,cloudfoundry/cf-mysql-broker,SudarsananRengarajan/cf-mysql-broker,SudarsananRengarajan/cf-mysql-broker,cloudfoundry/cf-mysql-broker
|
d22b36502d011e33556ce09f419e28d8557b2ebd
|
.travis.yml
|
.travis.yml
|
dist: precise # https://github.com/travis-ci/travis-ci/issues/8331
addons:
apt:
packages:
- sqlite3 # https://github.com/rails/rails/issues/24288#issuecomment-206011385
language: ruby
sudo: false
script: 'script/cibuild'
cache: bundler
env:
matrix:
- SUITE=mysql
- SUITE=pg
- SUITE=sqlite3
rvm:
- 2.2.3
- 2.3.4
- 2.4.2
matrix:
fast_finish: true
include:
- rvm: 2.2.3
env: SUITE=rubocop
notifications:
email: false
services:
- redis
bundler_args: --without deploy production debug --jobs 3 --retry 3
|
dist: precise # https://github.com/travis-ci/travis-ci/issues/8331
addons:
apt:
packages:
- sqlite3 # https://github.com/rails/rails/issues/24288#issuecomment-206011385
language: ruby
sudo: false
script: 'script/cibuild'
cache: bundler
env:
matrix:
- SUITE=mysql
- SUITE=pg
- SUITE=sqlite3
rvm:
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
matrix:
fast_finish: true
include:
- rvm: 2.2.9
env: SUITE=rubocop
notifications:
email: false
services:
- redis
bundler_args: --without deploy production debug --jobs 3 --retry 3
|
Test against Ruby 2.x versions
|
[CI] Test against Ruby 2.x versions
|
YAML
|
mit
|
Shopify/shipit-engine,Shopify/shipit-engine,Shopify/shipit-engine,Shopify/shipit-engine,Shopify/shipit-engine
|
ac8cdfca4c0158f154c1a27fbab113b886ffd112
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
before_install:
- gem install bundler
bundler_args: --without guard
cache: bundler
rvm:
- 2.4.1
- 2.6.5
env:
global:
- RUN_ALL_TESTS=true
|
language: ruby
sudo: false
before_install:
- gem install bundler
bundler_args: --without guard
cache: bundler
rvm:
- 2.6.9
- 3.1.0
env:
global:
- RUN_ALL_TESTS=true
|
Test using more modern ruby versions
|
Test using more modern ruby versions
Removing 2.4.x (last updated 2020-03-31) and adding 3.1.x (just released 2021-12-25)
|
YAML
|
mit
|
judofyr/ruby-oembed,ruby-oembed/ruby-oembed
|
20a530742f21542ad814b4b9d681cfb69291d687
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
env:
- TARGET=redmine REDMINE_VERSION=2.5.3
- TARGET=plugin REDMINE_VERSION=2.5.3
- TARGET=redmine REDMINE_VERSION=2.6.7
- TARGET=plugin REDMINE_VERSION=2.6.7
- TARGET=redmine REDMINE_VERSION=3.0.5
- TARGET=plugin REDMINE_VERSION=3.0.5
- TARGET=redmine REDMINE_VERSION=3.1.1
- TARGET=plugin REDMINE_VERSION=3.1.1
matrix:
allow_failures:
- rvm: 2.2
env: TARGET=redmine REDMINE_VERSION=2.5.3
- rvm: 2.2
env: TARGET=plugin REDMINE_VERSION=2.5.3
before_install: sh travis/before_install.sh
script: sh travis/exec_test.sh
|
language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
env:
- TARGET=redmine REDMINE_VERSION=2.5.3
- TARGET=plugin REDMINE_VERSION=2.5.3
- TARGET=redmine REDMINE_VERSION=2.6.7
- TARGET=plugin REDMINE_VERSION=2.6.7
- TARGET=redmine REDMINE_VERSION=3.0.5
- TARGET=plugin REDMINE_VERSION=3.0.5
- TARGET=redmine REDMINE_VERSION=3.1.1
- TARGET=plugin REDMINE_VERSION=3.1.1
- TARGET=redmine REDMINE_VERSION=3.2.0
- TARGET=plugin REDMINE_VERSION=3.2.0
matrix:
allow_failures:
- rvm: 2.2
env: TARGET=redmine REDMINE_VERSION=2.5.3
- rvm: 2.2
env: TARGET=plugin REDMINE_VERSION=2.5.3
before_install: sh travis/before_install.sh
script: sh travis/exec_test.sh
|
Add Redmine3.2.0 to test target
|
Add Redmine3.2.0 to test target
|
YAML
|
mit
|
pinzolo/redmine_mx,pinzolo/redmine_mx,pinzolo/redmine_mx,pinzolo/redmine_mx
|
4fc93203886f8200e1c1241579092282e42f55cf
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2
- jruby-19mode
script:
- bundle exec rake ci
sudo: false
cache: bundler
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- jruby-19mode
script:
- bundle exec rake ci
sudo: false
cache: bundler
|
Use the latest Ruby 2.1.x on Travis CI
|
Use the latest Ruby 2.1.x on Travis CI
|
YAML
|
mit
|
yujinakayama/guard-rubocop
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.