commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
09de2f9fd4a677d4f0f2dd5c99383d0b14309dda | _config.yml | _config.yml | name: Robaiatul Islam, kuttumiah
markdown: kramdown
baseurl: /learning-github-pages
url: http://kuttumiah.github.io
| name: Robaiatul Islam, kuttumiah
markdown: kramdown
baseurl: /learning-github-pages
url: http://kuttumiah.github.io
permalink: /blog/:year/:month/:day/:title
| Modify permalink for blog posts. | Modify permalink for blog posts. | YAML | mit | kuttumiah/learning-github-pages,kuttumiah/learning-github-pages |
38e13686a0292f9fc082ae187441bf4becdad56d | _config.yml | _config.yml | theme: jekyll-theme-midnight
title: Pandentia's Site
description: Misecellaneous projects and other tidbits
show_downloads: false
| theme: minima
title: Pandentia's Site
description: Misecellaneous projects and other tidbits
show_downloads: false
| Change the website theme (again) | Change the website theme (again)
| YAML | mit | Pandentia/pandentia.github.io |
20d530e64f2f8803f56da55f988efd69fcfbbd3d | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
before_install:
- source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list
- wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add -
- sudo apt-get update -qq
... | language: python
python:
- "2.7"
- "3.4"
before_install:
- source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list
- wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add -
- sudo apt-get update -qq
... | Print RethinkDB version when building with Travis | Print RethinkDB version when building with Travis
| YAML | mit | linkyndy/remodel,resmio/remodel |
bd0d7800172e2cbcb953531334b6acffa4b6ad17 | .travis.yml | .travis.yml | language: python
python:
- '2.6'
- '2.7'
- '3.3'
- pypy
install:
- pip install pep8 coveralls
script:
- python setup.py test
- python setup.py build install
- coverage erase
- nosetests --with-coverage --cover-package=flask_cors
after_success:
- pep8 flask_cors.py
- coveralls
deploy:
provider: pypi
user: wcdolphin
... | language: python
python:
- '2.6'
- '2.7'
- '3.3'
- pypy
install:
- pip install pep8 coveralls
script:
- python setup.py test
- python setup.py build install
- coverage erase
- nosetests --with-coverage --cover-package=flask_cors
after_success:
- pep8 flask_cors.py
- coveralls
deploy:
provider: pypi
user: wcdolphin
... | Include wheel distribution when pushing to Pypi | Include wheel distribution when pushing to Pypi
| YAML | mit | ashleysommer/sanic-cors,corydolphin/flask-cors |
74971c106a2cea88aecb218903894e592588a740 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: 7
- php: hhvm
before_script:
- composer self-update
- composer install --dev --prefer-source
script:
# Only run code coverage and CS checks on 5.6
- if [[ $TRAVIS_PHP_VERSION != '5.6' ]]; t... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: 7
- php: hhvm
before_script:
- composer self-update
- composer install --prefer-source
script:
# Only run code coverage and CS checks on 5.6
- if [[ $TRAVIS_PHP_VERSION != '5.6' ]]; then ./... | Remove "--dev" from composer install | Remove "--dev" from composer install
- Deprecated, as that's the default behavior now.
| YAML | mit | phly/conduit,martinezdelariva/conduit |
f89458c12a10740fbf5dc3579cbccc2fa2bc712b | .travis.yml | .travis.yml | language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '7'
- '6'
- '4'
script:
- npm test
- npm run coverage
before_script:
- npm prune
after_script:
- 'cat coverage/lcov.info | ./node_modules/.bin/coveralls' # sends the coverage report to coveralls
after_succe... | language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '8'
- '7'
- '6'
script:
- npm test
- npm run coverage
before_script:
- npm prune
after_script:
- 'cat coverage/lcov.info | ./node_modules/.bin/coveralls' # sends the coverage report to coveralls
after_succe... | Update Node versions on Travis | Update Node versions on Travis
| YAML | mit | r24y/tf-hcl |
bd4e4ca934fb7f5d31f36ad71f658b0dcdf4e2b5 | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: node_js
node_js:
- "stable"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
before_install:
- docker run -d --name kong-database -e "POSTGRES_USER=kong" -e "POSTGRES_DB=kong" postgres:9.4
- sleep 5
- docker run -d --name kong --link kong-d... | sudo: required
services:
- docker
language: node_js
node_js:
- "stable"
- "4"
- "6"
before_install:
- docker run -d --name kong-database -e "POSTGRES_USER=kong" -e "POSTGRES_DB=kong" postgres:9.4
- sleep 5
- docker run -d --name kong --link kong-database:kong-database -e "KONG_DATABASE=pos... | Test only against active LTS and current stable node versions | Test only against active LTS and current stable node versions
| YAML | mit | mybuilder/kongfig,JnMik/kongfig,JnMik/kongfig |
544e121129ba5fd1aee0592ef76c8d0d8a6c8de4 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- bash tests/before_script.sh
script:
- bash tests/script.sh
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- nightly
matrix:
allow_failures:
- php: hhvm
- php: nightly
before_script:
- bash tests/before_script.sh
script:
- bash tests/script.sh
| Add PHP nightly builds to continuous integration tests | Add PHP nightly builds to continuous integration tests
| YAML | unlicense | hebaoxia/php-curl-class,Savageman/php-curl-class,ptrnov/php-curl-class,sebwas/php-curl-class,jahanzaibbahadur/php-curl-class,ptrnov/php-curl-class,VolCh/php-curl-class,thebeline/php-curl-class,heatery/php-curl-class,petewatts/php-curl-class,taohaoge/php-curl-class,hebaoxia/php-curl-class,Jiangyoung/php-curl-class,Savag... |
e38f5985fe69df494ff6ec1c01efbbfdf6a9b089 | .travis.yml | .travis.yml | language: php
php:
- hhvm
- 7
- 5.6
- 5.5
- 5.4
matrix:
fast_finish: true
before_script:
- composer self-update
- composer install -n
script:
- composer test
| language: php
php:
- hhvm
- 7
- 5.6
- 5.5
- 5.4
matrix:
fast_finish: true
before_script:
- if [ $TRAVIS_PHP_VERSION != "hhvm" ]; then phpenv config-rm xdebug.ini ; fi
- composer self-update
- composer install -n
script:
- composer test
| Improve build runtime by disabling Xdebug. | Improve build runtime by disabling Xdebug.
| YAML | mit | raphaelstolt/construct,jonathantorres/construct,jonathantorres/construct,raphaelstolt/construct |
2e03cdceb0351b38a457cb7c3a0dbd7b90bf98da | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
- "11"
script:
- "npm run lint"
- "npm run test-with-coverage"
after_success:
- "npm run coveralls"
sudo: false
| language: node_js
node_js:
- "7"
- "8"
- "9"
- "10"
- "11"
script:
- "npm run lint"
- "npm run test-with-coverage"
after_success:
- "npm run coveralls"
sudo: false
| Remove support for node 6 | Remove support for node 6
| YAML | mit | FidelLimited/serverless-plugin-warmup |
a0cb1c5a479fecf2bcf0116d9864342335413721 | .travis.yml | .travis.yml | language: python
python:
- 2.7
before_install:
- sudo apt-get install libcairomm-1.0-dev libboost-all-dev
- wget http://www.cairographics.org/releases/py2cairo-1.10.0.tar.bz2
- tar xf py2cairo-1.10.0.tar.bz2
- cd py2cairo-1.10.0
- ./waf configure --prefix=$(python -c "import sys; print(sys.prefix)")
- ./waf build
- ./w... | language: python
python:
- 2.7
before_install:
- sudo apt-get install libcairomm-1.0-dev libboost-all-dev
- wget http://www.cairographics.org/releases/py2cairo-1.10.0.tar.bz2
- tar xf py2cairo-1.10.0.tar.bz2
- cd py2cairo-1.10.0
- ./waf configure --prefix=$(python -c "import sys; print(sys.prefix)")
- ./waf build
- ./w... | Deploy to PyPI from Travis | Deploy to PyPI from Travis
| YAML | mit | jacquev6/DrawTurksHead,jacquev6/DrawTurksHead,jacquev6/DrawTurksHead |
a058d6c510bc9d8e55a397775361d124ac8e4612 | .travis.yml | .travis.yml | language: cpp
script: make
compiler: clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.6
packages:
- gcc-5
- g++-5
- clang-3.6
| language: cpp
script: make
compiler:
- clang
- gcc
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
env: COMPILER=g++-5
- compiler: clang
addons:
apt:
sources:
... | Change Travis CI config to use clang-3.7 and gcc-5 | Change Travis CI config to use clang-3.7 and gcc-5
| YAML | mit | rv8-io/rv8,rv8-io/rv8,rv8-io/rv8 |
20bff2b3e0e83dcf4412cb0b1fcb3e8cf114ea49 | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- jruby-20mode
- jruby-19mode
- rbx
script: bundle exec rspec spec
| language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- jruby-19mode
- ree
script: bundle exec rspec spec
| Remove troublesome rubies and add REE for kicks | Remove troublesome rubies and add REE for kicks
| YAML | mit | copyhacker/diligent |
6c8ebd8fdf6f0684d64e184608b19d468b83f6dd | .travis.yml | .travis.yml | language: "node_js"
node_js:
- 0.4
- 0.6
| language: "node_js"
node_js:
- 0.4
- 0.6
- 0.8
| Test on node 0.8 using Travis CI. | Test on node 0.8 using Travis CI.
| YAML | mit | jaredhanson/passport-tumblr |
62087b64e831ef32a1b26fe3e47681d9cb129513 | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.8.7"
- "1.9.2"
- "1.9.3"
script: bundle exec rspec
| language: ruby
rvm:
- "1.9.2"
- "1.9.3"
script: bundle exec rspec
| Remove test support for Ruby 1.8.7 | Remove test support for Ruby 1.8.7
| YAML | mit | kmcphillips/affairs_of_state |
c763c469efdda912fce1294968678b086f43b055 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
install: "pip install -r requirements.txt"
script: py.test | language: python
python:
- "2.6"
- "2.7"
install: "pip install -r requirements_tests.txt"
script: py.test | Install from correct requirements file, Travis | Install from correct requirements file, Travis
| YAML | mit | bluecap-se/yarr.client,bluecap-se/yarr.client,bluecap-se/yarr.client |
cd7584888230a8a537e445ab7f9e8a436d0ee427 | .travis.yml | .travis.yml | language: node_js
node_js:
- "10.11.0"
script:
- ./travis.sh
| language: node_js
node_js:
- "10.11.0"
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.13.0
- export PATH=$HOME/.yarn/bin:$PATH
script:
- ./travis.sh
| Use modern Yarn version on Travis CI | Use modern Yarn version on Travis CI
Travis CI uses a quite old version of Yarn by default. This adds Yarn's
recommended incantation for using the latest stable version.
| YAML | apache-2.0 | matrix-org/matrix-js-sdk,krombel/matrix-js-sdk,matrix-org/matrix-js-sdk,matrix-org/matrix-js-sdk,krombel/matrix-js-sdk,krombel/matrix-js-sdk,matrix-org/matrix-js-sdk |
dbd15a59d5815a70399c183084f2dd67a9f16e43 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
# command to install dependencies
install:
# older versions of pip won't work
- sudo apt-get install libyaml-dev
- pip install nose
- pip install -U setu... | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
# command to install dependencies
install:
# older versions of pip won't work
- sudo apt-get install libyaml-dev
- pip install nose
- pip install -U setu... | Enable more logging from vext | Enable more logging from vext
| YAML | mit | stuaxo/vext |
ae13d0bcb4ca681b0726559cdaa4c1e61383fe7e | .travis.yml | .travis.yml | language: python
python:
- 2.7
env:
- TOX_ENV=lint
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=py36
- TOX_ENV=py37
- TOX_ENV=pypy
- TOX_ENV=pypy3
install:
- pip install tox
script:
- tox -e $TOX_ENV
notifications:
email:
- tomaz+travisci@tomaz.... | language: python
python:
- 2.7
env:
- TOX_ENV=lint
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=py36
- TOX_ENV=py37
- TOX_ENV=pypy
- TOX_ENV=pypy3
install:
- pip install tox
script:
- tox -e $TOX_ENV
notifications:
email:
- tomaz+travisci@tomaz.me
| Drop Python 2.6 from various. | Drop Python 2.6 from various.
| YAML | bsd-3-clause | Kami/python-yubico-client |
42ef966fbc0cbd64ec150d047e9826b76435b054 | .travis.yml | .travis.yml | language: python
sudo: false
cache:
- pip
python:
- "2.7"
- "3.5"
env:
- DJANGO_VERSION=1.10.*
- DJANGO_VERSION=1.11.*
install:
- pip install -r requirements.txt
- pip uninstall -y Django
- pip install -q Django==$DJANGO_VERSION
- pip list
before_script:
- psql -c 'create database access_mo_django... | language: python
sudo: false
cache:
- pip
python:
- "2.7"
- "3.5"
env:
- DJANGO_VERSION=1.10.*
- DJANGO_VERSION=1.11.*
install:
- pip install -r requirements.txt
- pip uninstall -y Django
- pip install -q Django==$DJANGO_VERSION
- pip list
before_script:
- psql -c 'create database access_mo_django... | Fix path on copied settings_local file | Fix path on copied settings_local file
| YAML | bsd-2-clause | access-missouri/am-django-project,access-missouri/am-django-project,access-missouri/am-django-project,access-missouri/am-django-project |
4dfe0f817f517ccec4a582caacea8290ce75fff0 | .travis.yml | .travis.yml | dist: xenial
sudo: required
language: python
python:
- "3.7"
services:
- docker
env:
global:
- PREFIX=gtcg/sv-callers
- TAG=depr
matrix:
- ECHO=0 MODE=s PORT=10020 SCH=gridengine
- ECHO=0 MODE=p PORT=10021 SCH=gridengine
- ECHO=0 MODE=s PORT=10022 SCH=slurm
... | dist: xenial
sudo: required
language: python
python:
- "3.7"
services:
- docker
env:
global:
- PREFIX=gtcg/sv-callers
- TAG=1.1.2
matrix:
- ECHO=0 MODE=s PORT=10020 SCH=gridengine
- ECHO=0 MODE=p PORT=10021 SCH=gridengine
- ECHO=0 MODE=s PORT=10022 SCH=slurm
... | Update CI: pin docker images. | Update CI: pin docker images.
| YAML | apache-2.0 | GooglingTheCancerGenome/sv-callers,GooglingTheCancerGenome/sv-callers |
43ad28b3f84ab7d2f56a27a576d9d2c182cd6ee2 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.1
- 2.0.0
- 1.9.3
| language: ruby
rvm:
- 2.1.2
- 2.0.0
- 1.9.3
| Upgrade Ruby on Travis to 2.1.2 | Upgrade Ruby on Travis to 2.1.2
| YAML | mit | BookingSync/bookingsync-api |
73f8e32393a247e668c1a7840683c7e1176a6a72 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.4
cache: bundler
branches:
only:
- master
install:
- bundle install
script:
- git config --global user.email "travis@travis-ci.org"
- git config --global user.name "Travis CI"
- JEKYLL_ENV=production jgd -u https://$GH_TOKEN@github.com/grab/engineering-blog.git
| language: ruby
rvm:
- 2.6.1
cache: bundler
branches:
only:
- master
before_install:
- gem install bundler
install:
- bundle install
script:
- git config --global user.email "travis@travis-ci.org"
- git config --global user.name "Travis CI"
- JEKYLL_ENV=production jgd -u https://$GH_TOKEN@github.com/grab/engineering... | Upgrade RVM to v2.6.1 and install Bundler 2.0 | Upgrade RVM to v2.6.1 and install Bundler 2.0
| YAML | mit | grab/engineering-blog,grab/engineering-blog,grab/engineering-blog,grab/engineering-blog,grab/engineering-blog,grab/engineering-blog,grab/engineering-blog,grab/engineering-blog,grab/engineering-blog |
eb972019ff0ef9d5528f867ee8f47ed7d841b822 | .travis.yml | .travis.yml | os:
- linux
- osx
language: node_js
sudo: required
dist: trusty
osx_image: xcode9.3
env:
- SWIFT_VERSION=3.0.2
- SWIFT_VERSION=3.1
- SWIFT_VERSION=4.0.3
install:
- eval "$(curl -sL https://swiftenv.fuller.li/install.sh)"
- npm install --global --no-optional dredd
script:
- swift test
- make test
| os:
- linux
- osx
language: node_js
node_js: 8
sudo: required
dist: trusty
osx_image: xcode9.3
env:
- SWIFT_VERSION=3.0.2
- SWIFT_VERSION=3.1
- SWIFT_VERSION=4.0.3
install:
- eval "$(curl -sL https://swiftenv.fuller.li/install.sh)"
- npm install --global --no-optional dredd
script:
- swift test
- make test
| Use Node 8 on CI as Dredd requires newer node | chore: Use Node 8 on CI as Dredd requires newer node
| YAML | bsd-2-clause | kylef/Curassow |
a934d02d050839c0d2544ef59a07addd4aa418a8 | .travis.yml | .travis.yml | language: rust
sudo: false
rust:
- stable
- beta
- nightly
notifications:
email: false
| language: rust
sudo: false
rust:
- stable
- beta
- nightly
script:
- cargo run -- --database tests/fixtures/blackscholes.sqlite3 --table static --cores 4
notifications:
email: false
| Make Travis run the tool | Make Travis run the tool
| YAML | mit | learning-on-chip/planner |
b0f62957013abe2d18eeb61600576ea971218999 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
before_script:
- npm install -g grunt-cli
matrix:
fast_finish: true
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
before_script:
- npm install -g grunt-cli
matrix:
fast_finish: true
cache:
directories:
- node_modules
| Make use of Travis CI caching. | Make use of Travis CI caching.
| YAML | mit | GerHobbelt/grunt-banner |
9023354547a91bfc24c0b0bf9e131dc4959ac3ca | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- openjdk7
- oraclejdk7
| language: java
sudo: false
jdk:
- oraclejdk8
##
# When a release is tagged, push to GitHub Releases.
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file: ./build/libs/storm-websockets.jar
skip_cleanup: true
on:
tags: true
| Add auto-release and Oracle JDK 8 to Travis config | Add auto-release and Oracle JDK 8 to Travis config | YAML | mit | themasterchef/storm-websockets |
c57c76f22cef64e1b026c0844f030a938a4f70a9 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
# command to install dependencies
install:
- ./bootstrap.sh
- fab develop
# command to run tests
script: fab test
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
# command to install dependencies
install: python setup.py install
# command to run tests
script: python setup.py test
| Switch to using python's distutils for isntalling and testing since Fabric doesn't support Python 3+ at this time :/ | Switch to using python's distutils for isntalling and testing since Fabric doesn't support Python 3+ at this time :/
| YAML | mit | treemo/circuits,treemo/circuits,nizox/circuits,eriol/circuits,eriol/circuits,treemo/circuits,eriol/circuits |
7b5a78e205ea2e0d0f6fb4ebfddfebfdb05f2215 | .travis.yml | .travis.yml | language: python
cache: pip
env:
global:
- PILLOW_VERSION=3.2.0
matrix:
include:
- python: 2.7
env: PILLOW_VERSION=2.9.0
- python: 2.7
env: PILLOW_VERSION=3.0.0
- python: 2.7
- python: 3.3
- python: 3.4
- python: 3.5
- python: 3.6
before_install:
# Dependencies to ... | language: python
cache: pip
env:
global:
- PILLOW="Pillow"
matrix:
include:
- python: 2.7
- python: 3.4
env: PILLOW="Pillow==2.9.0"
- python: 3.5
env: PILLOW="Pillow==3.0.0"
- python: 3.6
before_install:
# Dependencies to build PIL
- sudo apt-get update -qq
- sudo apt-... | Decrease the number of Travis build and use latest version of Pillow | Decrease the number of Travis build and use latest version of Pillow
| YAML | mit | jasuarez/sigal,jasuarez/sigal,t-animal/sigal,saimn/sigal,saimn/sigal,xouillet/sigal,xouillet/sigal,saimn/sigal,xouillet/sigal,t-animal/sigal,t-animal/sigal,jasuarez/sigal |
c9d2f60e61c507d831917b1b866e1ebb7b29d685 | .travis.yml | .travis.yml | language: node_js
cache: yarn
node_js:
- stable
- "8"
- "6"
- "4"
install:
- YARN_IGNORE_ENGINES=true yarn
| language: node_js
cache: yarn
node_js:
- node
- "8"
- "6"
- "4"
install:
- YARN_IGNORE_ENGINES=true yarn
| Rename stable to node in Travis CI Node.js versions | Rename stable to node in Travis CI Node.js versions
| YAML | mit | logux/logux-core |
1130bc64ef605429e19ea9fda381e49d0f888858 | .travis.yml | .travis.yml | language: go
services:
- rabbitmq
env:
- AMQP_URL=amqp://guest:guest@127.0.0.1:5672/ GOMAXPROCS=2
script: go test -v -tags integration ./...
before_script:
- sh -c "sleep 120 && killall -QUIT amqp.test" &
| language: go
go:
- 1.0
- 1.1
- tip
services:
- rabbitmq
env:
- AMQP_URL=amqp://guest:guest@127.0.0.1:5672/ GOMAXPROCS=2
script: go test -v -tags integration ./...
before_script:
- sh -c "sleep 120 && killall -QUIT amqp.test" &
| Test under multiple go versions | Test under multiple go versions
| YAML | bsd-2-clause | z00223295/amqp,StephaneP/amqp,vektra/amqp,TeamFairmont/amqp,beni55/amqp,z00223295/amqp,akrennmair/amqp,aviau/amqp,streadway/amqp,gcnonato/amqp,streadway/amqp,beni55/amqp,TeamFairmont/amqp,ChannelMeter/amqp,akrennmair/amqp,gcnonato/amqp,vektra/amqp,StephaneP/amqp,ChannelMeter/amqp,aviau/amqp |
f71799b638e738cc7c8a5fcc3671e96d731b7f9e | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
env:
- PYTHONPATH='.'
branches:
only:
- master
- next
before_install:
- sudo apt-get update
- sudo apt-get install nodejs
- curl http://npmjs.org/install.sh | sh
- npm install zombie
install:
- pip install . --use-mirrors
- pip install nose... | language: python
python:
- "2.6"
- "2.7"
env:
- PYTHONPATH='.'
branches:
only:
- master
- next
before_install:
- sudo apt-get update
- sudo apt-get install nodejs
- curl http://npmjs.org/install.sh | sh
- npm install zombie
install:
- pip install . --use-mirrors
- pip install nose
- pip i... | Revert "More TravisCI head-against-wall action." | Revert "More TravisCI head-against-wall action."
This reverts commit 2ca1c412ac0e488cd8ae7d725a08ee69e9b07f01.
| YAML | mit | ryanpetrello/python-zombie,ryanpetrello/python-zombie |
c35e2ce26b3cf2357fe0270be8b3c867b3ff67f1 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- composer self-update
- composer install --dev -o
- mkdir tests/files
script: phpunit --coverage-text --coverage-clover /tmp/flysystem/coverage.xml | language: php
php:
- 5.3
- 5.4
- 5.5
- hhmv
matrix:
allow_failures:
- php: hhmv
before_script:
- composer self-update
- composer install --dev -o
- mkdir tests/files
script: phpunit --coverage-text --coverage-clover /tmp/flysystem/coverage.xml | Add HHMV as a test php version but allow it to fail | Add HHMV as a test php version but allow it to fail
| YAML | mit | hannesvdvreken/flysystem,concrete5/flysystem,rossriley/flysystem,mapyo/flysystem,farmisen/flysystem,twistor/flysystem,mhlavac/flysystem,twistor/flysystem,dshafik/flysystem,mhlavac/flysystem,nao-pon/flysystem,sachintaware/flysystem,sohelrana820/flysystem,oswaldderiemaecker/flysystem,CarsonF/flysystem,dstockto/flysystem,... |
7d7a4f5d94e2dc0aaa0a18e117acd3128764a389 | .travis.yml | .travis.yml | # .travis.yml
# Build Options
language: ruby
rvm:
- 2.3.1
before_script:
- cp .rspec.example .rspec
script:
- bundle exec thor ci:steps
# Travis-CI Configuration
cache: bundler
sudo: false # Enable containerized builds.
services:
- mongodb
addons:
apt:
sources:
- mongodb-3.0-precise
packages:
- mon... | # .travis.yml
# Build Options
language: ruby
rvm:
- 2.3.1
before_script:
- cp .rspec.example .rspec
script:
- bundle exec thor ci:steps
# Travis-CI Configuration
cache: bundler
sudo: false # Enable containerized builds.
services:
- mongodb
| Use bundled MongoDB for TravisCI. | Use bundled MongoDB for TravisCI.
| YAML | mit | sleepingkingstudios/bronze |
e9fc4750d427196754bebb0e2e1e38d68893490a | .travis.yml | .travis.yml | # Not really c++, but stops travis from listing a language.
language: c++
matrix:
include:
# -----------------------------------------------------------------
# Linux hosted tests
- os: linux
dist: trusty
sudo: false
env: BAZEL=HEAD
- os: linux
dist: trusty
sudo: false
... | # Not really c++, but stops travis from listing a language.
language: c++
matrix:
include:
# -----------------------------------------------------------------
# Linux hosted tests
- os: linux
dist: trusty
sudo: false
env: BAZEL=HEAD
- os: linux
dist: trusty
sudo: false
... | Move to Xcode 9.4 for testing. | Move to Xcode 9.4 for testing.
| YAML | apache-2.0 | bazelbuild/bazel-skylib,bazelbuild/bazel-skylib,bazelbuild/bazel-skylib |
2f10e4097dd4c9e91ff6fdda35d745805f40843f | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
- '6'
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'
- '5'
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Build with latest Node.js 6 on Travis CI. | Build with latest Node.js 6 on Travis CI.
| YAML | mit | bigeasy/twiddle,bigeasy/twiddle |
379ad0426da4b2aea5a959fee453c3409855cd85 | .travis.yml | .travis.yml | language: python
python:
- '2.7'
before_install:
- openssl aes-256-cbc -K $encrypted_c50ef8f16548_key -iv $encrypted_c50ef8f16548_iv
-in uxgraph-client-secret.json.enc -out uxgraph-client-secret.json -d
deploy:
provider: gae
keyfile: "uxgraph-client-secret.json"
project: "tessa3-uxgraph"
script: "main_test.py"
| language: python
python:
- '2.7'
before_install:
- openssl aes-256-cbc -K $encrypted_c50ef8f16548_key -iv $encrypted_c50ef8f16548_iv
-in uxgraph-client-secret.json.enc -out uxgraph-client-secret.json -d
deploy:
provider: gae
keyfile: "uxgraph-client-secret.json"
project: "tessa3-uxgraph"
| Revert "Debugging Travis failing builds" | Revert "Debugging Travis failing builds"
This reverts commit fcaffa76c82ec9b6d8f1da997cb6657c5bba48ab.
| YAML | mit | tessa3/uxgraph,tessa3/uxgraph,tessa3/uxgraph,tessa3/uxgraph |
f166c109b9d6bec769635d43be5aa1c04d4f3de7 | .travis.yml | .travis.yml | language: go
go:
- 1.1
- 1.2
- 1.3
- release
- tip
| language: go
go:
- 1.1
- 1.2
- 1.3
- release
- tip
-install:
- - go get launchpad.net/gocheck
| Add back explicit install of gocheck for Go 1.1 | Add back explicit install of gocheck for Go 1.1
| YAML | isc | agaurav/maxminddb-golang,oschwald/maxminddb-golang,adjust/maxminddb-golang,viki-org/maxminddb-golang |
6f1686b081c94746a0315f66a3b593bb727c3e57 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.0
- 2.1.0
| language: ruby
rvm:
- 2.2.0
- 2.1.0
- 2.0.0
| Test on a really old Ruby version | Test on a really old Ruby version | YAML | mit | codequest-eu/codequest_pipes,codequest-eu/codequest_pipes |
eb09b366d2fde25587ca42ebee2d8b1761e68617 | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.4
before_install:
- wget http://cs.sensiolabs.org/get/php-cs-fixer.phar
before_script:
- composer self-update
- composer install
script:
- (cd test; phpunit -c phpunit.xml.dist)
- output=$(php php-cs-fixer.phar fix -v --dry-run --level=psr2 .); if [[ $output ]]; then while r... | language: php
php:
- 5.3
- 5.4
before_install:
- wget http://cs.sensiolabs.org/get/php-cs-fixer.phar
before_script:
- composer self-update
- composer install
script:
- (cd test; phpunit -c phpunit.xml.dist)
- output=$(php php-cs-fixer.phar fix -v --dry-run --level=psr2 .); if [[ $output ]]; then while rea... | Remove testing against 5.3.3 - still does not work | Remove testing against 5.3.3 - still does not work | YAML | bsd-2-clause | zionsg/ZnZend |
25795c0efc39734129757c5a75618c6edab5cd59 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.11'
- '0.12'
- '4.1.1'
| sudo: false
language: node_js
node_js:
- '4.1.1'
- '0.12'
- '0.11'
- '0.10'
| Enable fast containers on Travis CI | build: Enable fast containers on Travis CI
<https://docs.travis-ci.com/user/ci-environment/>
<https://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/>
<https://docs.travis-ci.com/user/migrating-from-legacy/>
| YAML | mit | kof/node-qunit |
6591e0379960777a13e52f3b90212fb180680ae0 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
| language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- npm install -g grunt-cli
| Update Travis CI to install Grunt before running tests. | Update Travis CI to install Grunt before running tests.
| YAML | mit | cedaro/grunt-wp-css |
7767f7a5be25c4aca25b53cc38ebfadb6c4d2c09 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
install:
- pip install coveralls --use-mirrors
# Commands to run tests.
# Force nose to process test files in alphabetical order so that
# test000.py is first (it changes sys.path which is needed for
# other tests) by explicitly ordering parameters fo... | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
install:
- pip install coveralls --use-mirrors
# Commands to run tests.
# Force nose to process test files in alphabetical order so that
# test000.py is first (it changes sys.path which is needed for
# other tests) by explicitly ordering parameters fo... | Remove coverage.py from Travis file -- "coverage run" command behaves differently on Travis worker. | Remove coverage.py from Travis file -- "coverage run" command behaves differently on Travis worker.
| YAML | mit | vmlaker/coils |
c8fe98e2b03d9562fb6908e9c5331c07ab109577 | .travis.yml | .travis.yml | # Language options
language: python
python:
- "3.6"
# Install dependencies
install:
- git clone git://github.com/astropy/ci-helpers.git
- source ci-helpers/travis/setup_conda.sh
- "pip install -r requirements/base.txt"
# Run the tests
script: coverage run -m pytest
# Assess test cove... | # Language options
language: python
python:
- "3.6"
# Install dependencies
install:
- git clone git://github.com/astropy/ci-helpers.git
- source ci-helpers/travis/setup_conda.sh
- "pip install -r requirements/base.txt"
- pip install flake8
# Run flake8 tests
before_script:
... | Add flake8 to the testing | Add flake8 to the testing | YAML | bsd-3-clause | StanczakDominik/PlasmaPy |
2365e7a7ac35886847c05506cb8af175157b088a | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
sudo: false
addons:
apt:
packages:
- python-numpy
- python-sphinx
install:
- pip install nose-cov python-coveralls
- pip install -r requirements.txt
# Run test
script:
- nosetests --with-cov --cov properties --cov-config .coveragerc -v ... | language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
sudo: false
addons:
apt:
packages:
- python-numpy
install:
- pip install nose-cov python-coveralls sphinx
- pip install -r requirements.txt
# Run test
script:
- nosetests --with-cov --cov properties --cov-config .coveragerc -v -s
# Calculate... | Make sure to get the right version for this Python...? | Make sure to get the right version for this Python...?
| YAML | mit | aranzgeo/properties,3ptscience/properties |
47ba5a5b47ce46b40c59821ea9f0e0f3daf0ef1b | .travis.yml | .travis.yml | language: objective-c
before_install:
- sudo gem install cocoapods
- sudo easy_install cpp-coveralls
script:
- make coverage
after_success:
- make send-to-coveralls
| language: objective-c
before_install:
- sudo easy_install cpp-coveralls
- sudo gem install cocoapods
- brew update
- brew upgrade xctool
script:
- make coverage
after_success:
- make send-to-coveralls
| Add upgrade xctool at build on Travis CI | Add upgrade xctool at build on Travis CI
| YAML | mit | nowsprinting/iosAppsTestAutomationSamples,nowsprinting/iosAppsTestAutomationSamples,nowsprinting/iosAppsTestAutomationSamples,nowsprinting/iosAppsTestAutomationSamples |
f028e428bee377b64627eefdec4082b37e66bd21 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
branches:
except:
- v0.5
- v0.6
- php5.2_backport
- documentation
services: redis-server
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c phpunit.xml... | language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
branches:
except:
- v0.5
- v0.6
- php5.2_backport
- documentation
services: redis-server
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c... | Switch to container-based builds on Travis CI. | Switch to container-based builds on Travis CI.
We do not need "sudo" anyway.
See http://docs.travis-ci.com/user/migrating-from-legacy/ for details.
| YAML | mit | WalterShe/predis,dzung2t/predis,moria/predis,gencer/predis,quangnguyen90/predis,gopalindians/predis,mrkeng/predis,lvbaosong/predis,SecureCloud-biz/predis,protomouse/predis,CloudSide/predis,zhangyancoder/predis,nguyenthaihan/predis,RudyJessop/predis |
f39eb0b8df9b0d9d4a9a6782c0531468e2c65fe5 | .travis.yml | .travis.yml | language: php
php:
- 7.2
services:
- mysql
before_script:
- mysql -e 'create database budget_testing;'
- cp .env.travis .env
- composer install --no-interaction
- php artisan key:generate
- php artisan migrate --database=testing
jobs:
include:
- stage: test
name: "PHPUnit"
script: ve... | language: php
php:
- 7.2
services:
- mysql
before_script:
- mysql -e 'create database budget_testing;'
- cp .env.travis .env
- composer install --no-interaction
- php artisan key:generate
- php artisan migrate --database=testing
jobs:
include:
- stage: test
name: "PHPUnit"
script: ve... | Create job in Travis configuration for Laravel Dusk | Create job in Travis configuration for Laravel Dusk
| YAML | mit | pix3ly/budget,pix3ly/budget |
ffbdae18b3c435c48612ae6a3526873fea763894 | .github/workflows/rubocop-analysis.yml | .github/workflows/rubocop-analysis.yml | # pulled from repo
name: "Rubocop"
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
branches: [ master ]
jobs:
rubocop:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v2
# If running on a self-... | # pulled from repo
name: "Rubocop"
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
branches: [ master ]
jobs:
rubocop:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v2
# If running on a self-... | Use latest version of code-scanning-rubocop | Use latest version of code-scanning-rubocop | YAML | bsd-3-clause | boothale/faexport,boothale/faexport,boothale/faexport |
650d41b3144fbb2f89ecf106c5d996d9a1a5662b | .github/workflows/publish_image.yml | .github/workflows/publish_image.yml | name: Publish Docker image to GitHub Container Registry
on:
push:
branches:
- master
- deploy
jobs:
publish:
name: Publish Docker image to GitHub Container Registry
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
... | name: Publish Docker image to GitHub Container Registry
on:
push:
branches:
- master
- deploy
jobs:
publish:
name: Publish Docker image to GitHub Container Registry
runs-on: ubuntu-latest
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
... | Use convenient to create tag from branch | Use convenient to create tag from branch
| YAML | mit | datamade/la-metro-councilmatic,datamade/la-metro-councilmatic,datamade/la-metro-councilmatic,datamade/la-metro-councilmatic |
a726d2b6268502a516316d6e3c18398f61380969 | .github/workflows/pythonpackage.yml | .github/workflows/pythonpackage.yml | name: Python package
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-pyt... | name: Python package
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-pyt... | Install logya requirements in github action | Install logya requirements in github action
| YAML | mit | elaOnMars/logya,yaph/logya,elaOnMars/logya,yaph/logya,elaOnMars/logya |
573c1eeabec1796d1057fb25b196abb614f87ddd | .travis.yml | .travis.yml | ---
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- rbx-2
- jruby
- jruby-head
- ruby-head
matrix:
include:
- { rvm: 1.9.3, env: rack=1.4.0 }
- { rvm: 1.8.7, env: tilt=master }
- { rvm: 1.9.3, env: rack=master }
- { rvm: 1.9.3, env: tilt=master }
allow_failures:
- env: tilt=mas... | ---
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- rbx-2
- jruby
- jruby-head
- ruby-head
sudo: false
matrix:
include:
- { rvm: 1.9.3, env: rack=1.4.0 }
- { rvm: 1.8.7, env: tilt=master }
- { rvm: 1.9.3, env: rack=master }
- { rvm: 1.9.3, env: tilt=master }
allow... | Use the new Docker queue on Travis | Use the new Docker queue on Travis
Because I said so! | YAML | mit | ABaldwinHunter/sinatra-classic,howtolearntocode/sinatra,laplaceliu/sinatra,guidohcosta/sinatra,sethuster/sinatra,Wirachmat/sinatra,lastcat/sinatra,cyberid41/sinatra,kumji/sinatra,QLGu/sinatra,ksw2599/sinatra,burningTyger/sinatra,davydovanton/sinatra,ryanshaw/sinatra,jenalgit/sinatra,ganmacs/sinatra,defsprite/sinatra,ni... |
7d7e17e3336d924bf94047b9904539fef327163a | .travis.yml | .travis.yml | language: ruby
rvm: 2.4.2
sudo: false
script: "./ci/buildscript"
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
deploy:
provider: heroku
app: travis-foundation-website
on: master
api_key:
secure: Rm1cRna+t7MpnxtntICizgDlY1o111R7GeAjNVbOQf4publ5coL9vC7KoKQx/cz5jeooE9Wx/4qe83/JIXdIVtAJZEcFDuEq+mTDPFn4z... | language: ruby
rvm: 2.4.2
sudo: false
script: "./ci/buildscript"
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
deploy:
provider: heroku
app: travis-foundation-website
on: master
api_key: $HEROKU_TOKEN
| Move Heroku token to an env var in repo settings | Move Heroku token to an env var in repo settings | YAML | mit | travis-ci/travis-foundation,travis-ci/travis-foundation,travis-ci/travis-foundation,travis-ci/travis-foundation |
bdf47e8da80f87b7689badf48a6b8672c048d7e4 | .travis.yml | .travis.yml | language: go
sudo: false
dist: trusty
env:
global:
- HUGO_BUILD_TAGS="extended"
git:
depth: false
go:
- "1.11.5"
- tip
os:
- linux
- osx
- windows
matrix:
allow_failures:
- go: tip
fast_finish: true
exclude:
- os: windows
go: tip
install:
- mkdir -p $HOME/src
- mv $HOME/gopath/src/g... | language: go
sudo: false
dist: trusty
env:
global:
- HUGO_BUILD_TAGS="extended"
git:
depth: false
go:
- "1.11.5"
- tip
os:
- linux
- osx
- windows
matrix:
allow_failures:
- go: tip
fast_finish: true
exclude:
- os: windows
go: tip
install:
- mkdir -p $HOME/src
- mv $TRAVIS_BUILD_DIR ... | Update Travis config to work for forked builds | Update Travis config to work for forked builds
| YAML | apache-2.0 | gohugoio/hugo,gohugoio/hugo,anthonyfok/hugo,anthonyfok/hugo,gohugoio/hugo,anthonyfok/hugo |
ac4d7b70482ffa18fdecef0ac5299c821ae4f670 | .travis.yml | .travis.yml | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=resources-17090-ubuntu-1604
- INSTAN... | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=resources-17090-ubuntu-1604
- INSTAN... | Update Travis for Fedora 26 testing | Update Travis for Fedora 26 testing
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef-cookbooks/docker,chef-cookbooks/docker,chef-cookbooks/docker |
a7d6d9de2354c2780ce5d5a7c6cb236237040d7b | .travis.yml | .travis.yml | osx_image: xcode9.2
language: objective-c
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
before_install:
- rvm list
- rvm install $(cat .ruby-version)
- brew update
- brew outdated swiftlint || brew upgrade swiftlint
# Test using Fastlane
script:
- ./fastlane/travis.sh
| osx_image: xcode9.3
language: objective-c
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
before_install:
- rvm list
- rvm install $(cat .ruby-version)
- brew update
- brew outdated swiftlint || brew upgrade swiftlint
# Test using Fastlane
script:
- ./fastlane/travis.sh
| Update Travis to use Xcode 9.3 | Update Travis to use Xcode 9.3
now that it is out of beta
| YAML | mit | ustwo/formvalidator-swift,ustwo/formvalidator-swift,ustwo/formvalidator-swift |
22dbeb698e8e34d6184b496ccad4956eca21889a | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 1.9.2
- rbx-19mode
- ruby-head | language: ruby
rvm:
- 1.9.3
- 1.9.2
- rbx-19mode
- ruby-head
- jruby-19mode | Add JRuby 1.9 as a supported Version | Add JRuby 1.9 as a supported Version
| YAML | mit | jlee-r7/rubyntlm,WinRb/rubyntlm,rapid7/rubyntlm |
958d12a0c0abc99ba8ecd008e54c81127b9bcf91 | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.4"
install: "pip3 install -r requirements.txt"
script: "python3 build-assets.py all && git diff --exit-code"
| language: python
python:
- "3.3"
install: "pip3 install -r requirements.txt"
script: "python3 -OO build-assets.py all && git diff --exit-code"
| Add -OO param to hasten it somewhat | Add -OO param to hasten it somewhat
| YAML | mit | hatbot-team/hatbot_resources |
cd8cce9360fdceb0cb1b4228ef71c0b80a212a4b | .travis.yml | .travis.yml | dist: xenial
language: python
python:
- "3.5"
- "3.6"
- "3.7"
install:
- pip install django
script:
- ./manage.py test --verbosity=2
| dist: xenial
language: python
python:
- "3.6"
- "3.7"
install:
- pip install django
script:
- ./manage.py test --verbosity=2
| Drop support for Python 3.5. | Drop support for Python 3.5.
| YAML | bsd-3-clause | lamby/django-slack |
43d6e6d5acd3308626aca05a5559e0128def9ef0 | .travis.yml | .travis.yml | language: android
android:
components:
- tools
- tools #Running this twice get's the latest build tools (https://github.com/codepath/android_guides/wiki/Setting-up-Travis-CI)
- platform-tools
- android-28
- android-22
- build-tools-28.0.3
- extra
- sys-img-armeabi-v7a-google_apis-22
licens... | language: android
android:
components:
- tools
- tools #Running this twice get's the latest build tools (https://github.com/codepath/android_guides/wiki/Setting-up-Travis-CI)
- platform-tools
- android-28
- android-22
- build-tools-28.0.3
- extra
- sys-img-armeabi-v7a-google_apis-22
licens... | Test other "no audio" option | Test other "no audio" option
| YAML | apache-2.0 | pockethub/PocketHub,pockethub/PocketHub,PKRoma/github-android,PKRoma/github-android,forkhubs/android,Meisolsson/PocketHub,Meisolsson/PocketHub,forkhubs/android,PKRoma/PocketHub,PKRoma/github-android,Meisolsson/PocketHub,pockethub/PocketHub,Meisolsson/PocketHub,pockethub/PocketHub,PKRoma/PocketHub,forkhubs/android,PKRom... |
595cb8528b340c0b99f5fa28893497c739602f1b | src/Resources/config/services.yml | src/Resources/config/services.yml | services:
_defaults:
autowire: true
public: false
autoconfigure: true
bind:
$startSession: "%hexanet_monolog_extra.session_start%"
Hexanet\Common\MonologExtraBundle\:
resource: '../../{Logger,EventListener,Processor,Provider}'
| services:
_defaults:
autowire: true
public: false
autoconfigure: true
bind:
$startSession: "%hexanet_monolog_extra.session_start%"
$session: '@?session'
Hexanet\Common\MonologExtraBundle\:
resource: '../../{Logger,EventListener,Processor,Provider}... | Handle case where http/session is not present | :bug: Handle case where http/session is not present
| YAML | mit | Hexanet/LogBundle,Hexanet/MonologExtraBundle |
96803237a15974cf61dbf2514754c8ab058dad5d | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
branches:
only:
- master
dist: trusty
addons:
apt:
packages:
- google-chrome-stable
cache:
directories:
- node_modules
before_script:
# Chrome settings
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
script:
- npm run lint
- npm... | language: node_js
node_js:
- "6"
branches:
only:
- master
dist: trusty
addons:
apt:
packages:
- google-chrome-stable
cache:
directories:
- node_modules
before_script:
# Chrome settings
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
script:
- npm run lint
- npm... | Move build and deploy to after success | Move build and deploy to after success
| YAML | mit | Crevil/ng-graphql-github,Crevil/ng-graphql-github,Crevil/ng-graphql-github |
71214a1cdbe21654f172a8421a612f53893bd0a6 | .travis.yml | .travis.yml | language: go
go:
- 1.4
- 1.5
- 1.6
- 1.7
- 1.8
# doing 'tip' is not a great idea; it has previously caused things to suddenly become "broken" based on calendar date, and i don't appreciate it.
install: true # don't `go get`, please.
script:
- time ./goad init
- time ./goad test
- time ./goad test .... | language: go
go:
- 1.4
- 1.4.1
- 1.4.2
- 1.4.3
- 1.5
- 1.6
- 1.7
- 1.8
# doing 'tip' is not a great idea; it has previously caused things to suddenly become "broken" based on calendar date, and i don't appreciate it.
install: true # don't `go get`, please.
script:
- time ./goad init
- time ./go... | Add more 1.4.* versions to tests. This behavior clearly drifted at some point? Where? | Add more 1.4.* versions to tests. This behavior clearly drifted at some point? Where?
AMEND: No, really, there are only *docs commits* since the last time this *passed* -- https://travis-ci.org/polydawn/meep/builds/169297549 . What gives?
Apparently all four 1.4.x versions exhibit the same behavior, so I'm going t... | YAML | apache-2.0 | polydawn/meep,polydawn/meep |
38a73b32c1e54f6ab87d54a4db9037546a3da103 | .travis.yml | .travis.yml | language: rust
matrix:
include:
- rust: nightly
script:
- cargo test
- cargo test --features preserve_order
- cargo test --features arbitrary_precision
- cargo test --features raw_value
- cargo test --features unbounded_depth
- rust: 1.15.0
script:
... | language: rust
matrix:
include:
- rust: nightly
script:
- cargo test
- cargo test --features preserve_order
- cargo test --features arbitrary_precision
- cargo test --features raw_value
- cargo test --features unbounded_depth
- rust: 1.27.0
script:
... | Drop support for rustc <1.27 | Drop support for rustc <1.27
| YAML | apache-2.0 | google/serde_json_lenient,bolinfest/serde-jsonrc,serde-rs/json |
4ed5620b9312813f678a51009cb7ba08e896a7c1 | .travis.yml | .travis.yml | rvm:
- 1.9.1
- 1.9.2
- 1.9.2-head
- 1.9.3-head
- ruby-head
| rvm:
- 1.9.1
- 1.9.2
- ruby-head
| Remove rubies not supported by Travis | Remove rubies not supported by Travis
| YAML | mit | rubygems/gems,seuros/gems |
1f1470dfe073d0a6b93919ca9c5fb5d02a3305d8 | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 5.6
install: composer install
script: bin/phpunit tests/phpunit | language: php
php:
- 7.0
- 7.1
- 7.2
install: composer install
script: bin/phpunit tests/phpunit | Update Travis to only test for PHP >= 7.1 | Update Travis to only test for PHP >= 7.1
| YAML | bsd-3-clause | pavlakis/notts-digital |
8f8a52247af9f76ea1927c3af56db63cb3734616 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
services:
- mongodb
- redis-server
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq sloccount
install:
- npm install -g bower
- pip install -U -r requirements/ci.txt
- cp coviolations_web/settings/local_ci.py coviolations_web/settings/local.py
script:... | language: python
python:
- "2.7"
services:
- mongodb
- redis-server
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq sloccount
install:
- npm install -g bower
- pip install fabric
- fab install:ci
script:
- coverage run manage.py test violations projects tasks services app push 2>t... | Use fabric in ci config | Use fabric in ci config
| YAML | mit | nvbn/coviolations_web,nvbn/coviolations_web |
1d83e20ee4d3ac880e1947462c9663b667664523 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- pypy
install:
- pip install -r requirements.txt
- pip install git+https://github.com/maxmind/HTTPretty.git
- pip install pylint coveralls
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
- if [[ $TRAVIS_PYTHON_VERSION != ... | language: python
python:
- 2.6
- 2.7
- 3.3
- pypy
install:
- pip install -r requirements.txt
- pip install git+https://github.com/maxmind/HTTPretty.git
- pip install pylint coveralls
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2 ipaddr; fi
- if [[ $TRAVIS_PYTHON_VERSION == '... | Remove testing of 3.2 with Travis | Remove testing of 3.2 with Travis
| YAML | apache-2.0 | maxmind/GeoIP2-python,simudream/GeoIP2-python,maxmind/GeoIP2-python |
0bf9140b9a073cfdb149ee81d5bf74206e80d0c7 | .travis.yml | .travis.yml | language: python
services:
- docker
cache:
pip: true
directories:
- $HOME/google-cloud-sdk/
python: '2.7'
dist: trusty
sudo: required
install:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
- pip install coveralls
- $TRAVIS_BUILD_DIR/deploy/travis/install_gcloud.sh
- yes | ${HOME}/google... | language: python
services:
- docker
cache:
pip: true
directories:
- $HOME/google-cloud-sdk/
python: '2.7'
dist: trusty
sudo: required
install:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
- pip install coveralls
- $TRAVIS_BUILD_DIR/deploy/travis/install_gcloud.sh
- yes | ${HOME}/google... | Correct path to .enc file | Correct path to .enc file
| YAML | apache-2.0 | m-lab/scraper,m-lab/scraper |
f0538e0b59ce644e3ad29bc6efcba86ce8001f97 | .travis.yml | .travis.yml | language: crystal
script:
- bin/fetch-configlet
- bin/configlet .
- make test
| language: crystal
script:
- bin/fetch-configlet
- bin/configlet lint .
- make test
| Call configlet subcommand on CI | Call configlet subcommand on CI
This changes configlet to pass a subcommand.
For now, we've released a version of configlet which handles both the old command:
configlet path/to/track
as well as the new command:
configlet lint path/to/track
This will let us update all the travis files to include the subco... | YAML | mit | exercism/xcrystal |
a485db9a344fd63aeda295592d0d8a27f04eda87 | .travis.yml | .travis.yml | ---
# Verify this with: http://lint.travis-ci.org/
language: ruby
bundler_args: --without development system_tests
before_install: rm Gemfile.lock || true
script: bundle exec rake test
rvm:
- 1.8.7
- 1.9.3
env:
matrix:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION="~> 3.1.0"
- PUPPET_VERSION="~> 3.2.0"
- P... | ---
# Verify this with: http://lint.travis-ci.org/
language: ruby
bundler_args: --without development system_tests
before_install: rm Gemfile.lock || true
script: bundle exec rake test
rvm:
- 1.8.7
- 1.9.3
env:
matrix:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION="~> 3.1.0"
- PUPPET_VERSION="~> 3.3.0"
- P... | Remove redundant puppet version tests | Remove redundant puppet version tests
| YAML | mit | butlern/puppet-varnish,luckyraul/puppet-varnish-fork,chartbeat-labs/puppet-varnish,chartbeat-labs/puppet-varnish,luckyraul/puppet-varnish-fork,butlern/puppet-varnish,butlern/puppet-varnish,luckyraul/puppet-varnish-fork,chartbeat-labs/puppet-varnish |
d2848e1707310291dbe3648ad94dc54cf10611a6 | .travis.yml | .travis.yml | language: node_js
node_js:
- "iojs-v1"
- "0.12"
- "0.10"
env:
- NODE_ENV=development
- NODE_ENV=production
| language: node_js
install: npm install --production=false
node_js:
- "iojs-v1"
- "0.12"
- "0.10"
env:
- NODE_ENV=development
- NODE_ENV=production
| Add `--production=false` to installation step | [Travis] Add `--production=false` to installation step
When NODE_ENV=production, npm does not install devDependencies by default. However we need the devDependencies in order to build index.js, so manually specify `npm install --production=false`.
| YAML | mit | grabbou/hapi-async-handler,ide/hapi-async-handler |
eb055d335a3dd0bf9391d82ff227f21612afa695 | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 5.6
- 5.5
- 5.4
before_script: composer install | language: php
php:
- 7.1
- 7.0
- 5.6
- 5.5
- 5.4
before_script: composer install
| Test in PHP 7.1 too | Test in PHP 7.1 too
| YAML | mit | adrianclay/php-git |
efa80531e86c3d056a857c22e84e5fca889c50a8 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4.2"
- "5"
| Update Travis to test newer Node versions | Update Travis to test newer Node versions
| YAML | mit | helmetjs/hide-powered-by |
adf025369474ecbe7f3470a39822db92053219f1 | .travis.yml | .travis.yml | language: c
os:
- osx
- linux
install:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then bash travis-linux-deps.sh; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then bash travis-osx-deps.sh; fi
before_script:
- bash travis-build-libsodium.sh
script:
- xbuild libsodium-net.sln
- nunit-console ./Tests/bin/Debug/Tests.dll
| language: c
os:
- osx
- linux
env:
- TRAVIS_OS_UNAME=$(uname -s)
install:
- if [[ $TRAVIS_OS_UNAME = 'Linux' ]]; then bash travis-linux-deps.sh; fi
- if [[ $TRAVIS_OS_UNAME = 'Darwin' ]]; then bash travis-osx-deps.sh; fi
before_script:
- bash travis-build-libsodium.sh
script:
- xbuild libsodium-net.sln
- n... | Work around Travis bug in how env var is set. | Work around Travis bug in how env var is set.
TRAVIS_OS_NAME isn't set of the repo isn't setup for multi OS support,
which breaks the build. So work around until the bug is fixed.
| YAML | mit | tabrath/libsodium-core,BurningEnlightenment/libsodium-net,deckar01/libsodium-net,fraga/libsodium-net,adamcaudill/libsodium-net,adamcaudill/libsodium-net,fraga/libsodium-net,bitbeans/libsodium-net,bitbeans/libsodium-net,deckar01/libsodium-net,BurningEnlightenment/libsodium-net |
84eb3184f6945b1ab08926ca37d7d609cb6065ac | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- 2.3.0
| language: ruby
sudo: false
cache: bundler
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- 2.3.0
notifications:
email: false
| Disable email notifications from Travis CI | Disable email notifications from Travis CI
| YAML | mit | rwz/natural_sort |
add1843e10289aa7116b6d75470b60a9fa1c6d12 | .travis.yml | .travis.yml | language: go
go:
- 1.8
install:
- go get github.com/golang/lint/golint
script:
- golint -set_exit_status
- go vet $(go list ./...)
- go test $(go list ./...)
sudo: false
| language: go
go:
- 1.8.3
- 1.9rc2
install:
- go get github.com/golang/lint/golint
script:
- golint -set_exit_status
- go vet $(go list ./...)
- go test $(go list ./...)
sudo: false
| Drop Go 1.8, add 1.8.3, 1.9rc2 | Drop Go 1.8, add 1.8.3, 1.9rc2
| YAML | mit | jsageryd/ttlcache |
a3e75ed8cf8b522ecb6b5a7e9f4ffe2ea4af0967 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
notifications:
slack: fallto:MlnVOMNkx8YopsaSSxqh2Rcr
before_install:
- sudo apt-get install cmake
- sudo apt-get install mercurial
- git config --global user.email "travis-ci@example.com"
- git config --global user.name "Build Server"
script: "cmake -P oo-cmake-tests.cmake"
br... | language: cpp
compiler:
- gcc
env:
- CMAKE_DIR="v3.0" CMAKE_VERSION="3.0.1"
- CMAKE_DIR="v2.8" CMAKE_VERSION="2.8.12.2"
notifications:
slack: fallto:MlnVOMNkx8YopsaSSxqh2Rcr
before_install:
- sudo apt-get install cmake
- sudo apt-get install mercurial
- git config --global user.email "travis-ci@example.co... | Test with different cmake versions (2.8.12.2, 3.0.1) | Test with different cmake versions (2.8.12.2, 3.0.1)
| YAML | mit | toeb/cmakepp,tempbottle/cmakepp,willyd/cmakepp,willyd/cmakepp,tempbottle/cmakepp |
9ba46c445da4914816d2989a0594e3132ccd9af5 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- "1.7.x"
- "1.8.x"
- "1.9.x"
- "1.10.x"
- "1.11.x"
- "tip"
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
script:
- goveralls -service=travis-ci
| language: go
sudo: false
go:
- "1.7.x"
- "1.8.x"
- "1.9.x"
- "1.10.x"
- "1.11.x"
- "1.12.x"
- "1.13.x"
- "tip"
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
script:
- goveralls -service=travis-ci
| Test against latest version of Go | Test against latest version of Go
| YAML | mit | go-logfmt/logfmt |
1d6d44f96cea52b21a919b9df900f81675b8859a | .travis.yml | .travis.yml | language: node_js
addons:
chrome: stable
node_js:
- "6"
- "8"
env:
- WEBPACK_VERSION=4
- WEBPACK_VERSION=3
script: yarn lint && yarn add --dev webpack@$WEBPACK_VERSION && yarn test
| language: node_js
addons:
chrome: stable
node_js:
- "6"
- "8"
- "10"
- "12"
env:
- WEBPACK_VERSION=4
- WEBPACK_VERSION=3
script: yarn lint && yarn add --dev webpack@$WEBPACK_VERSION && yarn test
| Add Node 10 and 12 to Travis test matrix | Add Node 10 and 12 to Travis test matrix
10 is currently in LTS and 12 will start LTS in October. It seems
like a good idea to run CI on these versions. | YAML | mit | enduire/happo.io,enduire/happo.io |
4cc144a4e9efbb9791a1c5b36229e3bf2f4b411d | .travis.yml | .travis.yml | script:
- "npm test"
notifications:
irc:
- "chat.freenode.net#sequelizejs"
language: node_js
node_js:
- "0.10"
| script:
- "npm test"
notifications:
irc:
- "chat.freenode.net#sequelizejs"
language: node_js
node_js:
- "0.10"
before_script:
- npm install sequelize@$(echo $SEQUELIZE)
env:
- SEQUELIZE=1.7.10
- SEQUELIZE=2.0.0-rc8
- SEQUELIZE=2.0.0
| Build project with multiple versions of sequelize | Build project with multiple versions of sequelize
| YAML | mit | sequelize/umzug,jukkah/umzug,crrobinson14/umzug,sequelize/umzug |
a9cd122a238c6f082bd6bbd0d2b937a97cca06f8 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
before_script:
- mkdir build
- cd build
- cmake ..
script: make
| language: cpp
compiler:
- gcc
before_script:
- sudo apt-get update -qq
- sudo apt-get install libboost-all-dev
- mkdir build
- cd build
- cmake ..
script: make
| Add boost install for Travis | Add boost install for Travis
| YAML | mit | caskorg/cask,caskorg/cask,caskorg/cask,caskorg/cask,caskorg/cask |
41f0213930faa8ca7e83e307478e2c19518b4a58 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.5
addons:
apt:
packages:
- xvfb
gemfile: server/Gemfile
env: NODE_VERSION=4
install:
- git clone https://github.com/creationix/nvm.git /tmp/.nvm
- source /tmp/.nvm/nvm.sh
- nvm install $NODE_VERSION
- nvm use $NODE_VERSION
- npm install electron-packager -g
s... | language: ruby
rvm:
- 2.1.5
addons:
apt:
packages:
- wine
gemfile: server/Gemfile
env: NODE_VERSION=4
install:
- git clone https://github.com/creationix/nvm.git /tmp/.nvm
- source /tmp/.nvm/nvm.sh
- nvm install $NODE_VERSION
- nvm use $NODE_VERSION
- npm install electron-packager -g
s... | Fix xfvb typo to wine | Fix xfvb typo to wine | YAML | mit | IMcPwn/browser-backdoor,IMcPwn/browser-backdoor,IMcPwn/browser-backdoor,IMcPwn/browser-backdoor |
c7af65888471c4de0570f153304b6eb8646a85b1 | .travis.yml | .travis.yml | language: go
go:
- 1.2
- 1.3
- tip
| language: go
go:
- 1.2
- 1.3
- 1.4
- tip
| Add 1.4 to Travis CI. | Add 1.4 to Travis CI.
| YAML | agpl-3.0 | hockeypuck/openpgp |
2eddcfdadb7f4b3bd33bd12341a94da0c7523b22 | .travis.yml | .travis.yml | language: cpp
sudo: false
branches:
only:
- master
- develop
- release
cache:
directories:
- $HOME/cmake
env:
global:
- BUILD_DIR_NAME=build
- BUILD_TYPE='Release'
matrix:
include:
# 1 Linux GCC Builds
- os: linux
compiler: g++
env: COMPILER='g++-4.8'
addons... | language: cpp
sudo: false
branches:
only:
- master
- develop
- release
cache:
directories:
- $HOME/cmake
env:
global:
- BUILD_DIR_NAME=build
- BUILD_TYPE='Release'
matrix:
include:
- os: linux
compiler: g++
env: COMPILER='g++-4.9'
addons:
apt:
... | Remove compiler gcc-4.8 from CI | [CLI-123] Remove compiler gcc-4.8 from CI
| YAML | bsd-3-clause | VirgilSecurity/virgil-cli |
de43c69a4c95275bcf945a555ac62fd6e0e89193 | .travis.yml | .travis.yml | sudo: false
language: php
php:
- 5.6
- 7.0
- nightly
cache:
directories:
- ~/.composer/cache/files/
before_install:
- phpenv config-add .travis.php.ini
install:
- composer install --prefer-dist
before_script:
# Ancient make binary at TravisCI doesn't support indentation with spaces
- unexpand -t... | sudo: false
language: php
php:
- 5.6
- 7.0
- nightly
addons:
apt:
packages: [expect]
cache:
directories:
- ~/.composer/cache/files/
before_install:
- phpenv config-add .travis.php.ini
install:
- composer install --prefer-dist
before_script:
# Ancient make binary at TravisCI doesn't sup... | Install expect on Travis to execute system tests | Install expect on Travis to execute system tests
| YAML | mit | ibuildingsnl/qa-tools,ibuildingsnl/qa-tools,ibuildingsnl/qa-tools |
54ba6ef0b4c44316faa78ff7620765b416630459 | .travis.yml | .travis.yml | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-... | addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTAN... | Update for Chef 15 license agreement and Chef Workstation | Update for Chef 15 license agreement and Chef Workstation
| YAML | apache-2.0 | chef-cookbooks/resolver,chef-cookbooks/resolver |
85ba78029a13ac78c9ee024526cc62a0b894553c | .travis.yml | .travis.yml | language: php
php:
- '5.4'
- '5.6'
- '7.0'
before_install:
- nvm install 4.1.1
- nvm use 4.1.1
install:
- npm install
script:
- npm run compile --silent
- npm test --silent
sudo: false
| language: php
php:
- '5.4'
- '5.6'
- '7.0'
before_install:
- nvm install 4.1.1
- nvm use 4.1.1
- npm install -g typings
install:
- npm install
- typings install
script:
- npm run compile --silent
- npm test --silent
sudo: false
| Add typings to Travis build | Add typings to Travis build
| YAML | mit | felixfbecker/vscode-php-debug,felixfbecker/vscode-php-debug,felixfbecker/vscode-php-debug |
6d31a855549d770658687c9e00ec350d146640ee | .travis.yml | .travis.yml | language: generic
sudo: required
dist: trusty
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
env:
- COMPILER_NAME=gcc
- CC=gcc-5
- CXX=g++-5
script:... | language: generic
matrix:
include:
- os: linux
compiler: gcc
sudo: required
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
env:
- COMPILER_NAME=gcc
- CC=gcc-5... | Move all linux stuff to linux matrix | Move all linux stuff to linux matrix
| YAML | mit | trflynn89/libfly,trflynn89/libfly |
9f35f05ada8726654071efa4aa185c7d463d1a72 | .travis.yml | .travis.yml | language: ruby
rvm:
- "ruby-head"
- "ruby 2.0.0"
install: bundle install
branches:
only:
- master
| language: ruby
rvm:
- "ruby-head"
- "ruby 2.0.0"
install: bundle install
branches:
only:
- master
- new_main_loop
| Add the other branch to CI as well. | Add the other branch to CI as well.
| YAML | mit | queirozfcom/rachinations |
08b0666a5a22d92dd9e40181a72834443b7c57d0 | .travis.yml | .travis.yml | language: php
cache:
directories:
- $HOME/.composer/cache/files
git:
depth: 1
php:
- "7.2"
- "7.3"
before_install:
- composer self-update --stable --no-interaction --no-progress
- composer require php-coveralls/php-coveralls --prefer-dist --no-interaction --no-progress
- composer... | language: php
cache:
directories:
- $HOME/.composer/cache/files
git:
depth: 1
php:
- "7.3"
- "7.4"
before_install:
- composer self-update --stable --no-interaction --no-progress
- composer require php-coveralls/php-coveralls --prefer-dist --no-interaction --no-progress
- composer... | Stop testing on PHP 7.2 and add tests for PHP 7.4 | Stop testing on PHP 7.2 and add tests for PHP 7.4
| YAML | bsd-3-clause | Becklyn/BecklynRadBundle |
a00e83b3232ed12b072880c6f5a750563720a276 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
# - 7.0
sudo: false
install:
- git clone https://github.com/krakjoe/pthreads.git;
pushd pthreads;
if [ "$TRAVIS_PHP_VERSION" != "7.0" ]; then
git checkout master;
else
git checkout seven;
fi;
phpize;
./configure;
make;
make install;... | language: php
php:
- 5.5
- 5.6
# - 7.0
sudo: false
install:
- git clone https://github.com/krakjoe/pthreads.git;
pushd pthreads;
if [ "$TRAVIS_PHP_VERSION" != "7.0" ]; then
git checkout master;
else
git checkout seven;
fi;
phpize;
./configure;
make;
make install;... | Add Slack <- Travis integration for fun | Add Slack <- Travis integration for fun
| YAML | mit | clarkeash/concurrent,icicleio/concurrent,amphp/parallel |
2692d0c4bee6d93a598345ea37971e791d41162d | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
before_script:
- npm install -g grunt-cli | language: node_js
node_js:
- "0.8"
- "0.10"
before_script:
- npm install -g grunt-cli | Make Travis test with NodeJS 0.10.x | Make Travis test with NodeJS 0.10.x
| YAML | mit | alanshaw/grunt-include-replace,legendtang/grunt-include-replace,stowball/grunt-include-replace-more,stowball/grunt-include-replace-more,legendtang/grunt-include-replace,alanshaw/grunt-include-replace |
b40f12ac6dfa6c486ad2aae1540bdc3dec6938fd | .cirrus.yml | .cirrus.yml | task:
matrix:
- name: 😈 FreeBSD 11
freebsd_instance:
image: freebsd-11-2-release-amd64
- name: 😈 FreeBSD 12
freebsd_instance:
image: freebsd-12-0-release-amd64
env:
# We use `PLUGINS_KDB` instead of `PLUGINS`, since `pkg` interprets the environment variable `PLUGI... | task:
matrix:
- name: 😈 FreeBSD 11
freebsd_instance:
image: freebsd-11-2-release-amd64
- name: 😈 FreeBSD 12
freebsd_instance:
image: freebsd-12-0-release-amd64
env:
# We use `PLUGINS_KDB` instead of `PLUGINS`, since `pkg` interprets the environment variable `PLUGI... | Exclude `filecheck` plugin on FreeBSD 12 | Cirrus: Exclude `filecheck` plugin on FreeBSD 12
| YAML | bsd-3-clause | petermax2/libelektra,ElektraInitiative/libelektra,mpranj/libelektra,ElektraInitiative/libelektra,BernhardDenner/libelektra,mpranj/libelektra,mpranj/libelektra,petermax2/libelektra,mpranj/libelektra,petermax2/libelektra,ElektraInitiative/libelektra,mpranj/libelektra,BernhardDenner/libelektra,mpranj/libelektra,BernhardDe... |
fa88b620dc2bcdb9955bf38a0f9addd60cd273f6 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "pypy"
env:
- DJANGO=1.2.7
- DJANGO=1.3.1
- DJANGO=1.4.6
- DJANGO=1.5.2
- DJANGO=1.6.5
install:
- sudo apt-get install libevent-dev
- sudo pip install Django==$DJANGO --use-mirrors
- sudo pip install pep8 --use-mirrors
- sudo pip install https... | language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "pypy"
env:
- DJANGO=1.4.6
- DJANGO=1.5.2
- DJANGO=1.6.5
install:
- sudo apt-get install libevent-dev
- sudo pip install Django==$DJANGO --use-mirrors
- sudo pip install pep8 --use-mirrors
- sudo pip install https://github.com/dcramer/pyflakes/tar... | Remove testing on supported Django versions | Remove testing on supported Django versions
| YAML | apache-2.0 | dcramer/mock-django,bennylope/mock-django |
91e44b1e610ebd5b0ee14b4cd1e295844978c8ba | .cirrus.yml | .cirrus.yml | task:
name: stable x86_64-unknown-freebsd-11
freebsd_instance:
image: freebsd-11-2-release-amd64
setup_script:
- pkg install -y curl
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y
- . $HOME/.cargo/env
- rustup default stable
test_script:
- . $HOME/.cargo/env
... | task:
name: stable x86_64-unknown-freebsd-11
freebsd_instance:
image: freebsd-11-3-release-amd64
setup_script:
- pkg install -y curl
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y
- . $HOME/.cargo/env
- rustup default stable
test_script:
- . $HOME/.cargo/env
... | Upgrade FreeBSD's CI image to release 11.3 | Upgrade FreeBSD's CI image to release 11.3
| YAML | apache-2.0 | rust-lang/libc,rust-lang/libc,rust-lang/libc |
e1f8fcdd0dab7607247f107495c60f98b900c69c | .cirrus.yml | .cirrus.yml | task:
name: Test FreeBSD
freebsd_instance:
matrix:
image_family: freebsd-11-3-snap
image_family: freebsd-12-0
update_script: pkg update -f
install_script: pkg install -y libpcap bash gsed gmake
configure_script:
- ./configure-freebsd.sh --default
build_script:
- gmake all
test_scri... | task:
name: Test FreeBSD
freebsd_instance:
matrix:
image_family: freebsd-11-3-snap
image_family: freebsd-12-1-snap
update_script: pkg update -f
install_script: pkg install -y libpcap bash gsed gmake
configure_script:
- ./configure-freebsd.sh --default
build_script:
- gmake all
test... | Update FreeBSD image to 12.1 in Cirrus CI | Update FreeBSD image to 12.1 in Cirrus CI
| YAML | unlicense | seladb/PcapPlusPlus,seladb/PcapPlusPlus,seladb/PcapPlusPlus,seladb/PcapPlusPlus |
f5e83d7b929515611f21fe3888956ba904e9b33e | .codacy.yml | .codacy.yml | ---
engines:
pylint:
enabled: true
python_version: 3
exclude_paths:
- tests/
- karspexet/**/migrations/**/*
- karspexet/**/test_*.py
bandit:
enabled: true
exclude_paths:
- tests/
- karspexet/**/migrations/**/*
- karspexet/**/test_*.py
eslint:
enabled: t... | ---
engines:
prospector:
enabled: false
pylint:
enabled: true
python_version: 3
exclude_paths:
- tests/
- karspexet/**/migrations/**/*
- karspexet/**/test_*.py
bandit:
enabled: true
exclude_paths:
- tests/
- karspexet/**/migrations/**/*
- karspexet/**/te... | Disable Prospector, it doesn't like annotations | Disable Prospector, it doesn't like annotations
| YAML | mit | Karspexet/Karspexet,Karspexet/Karspexet,Karspexet/Karspexet,Karspexet/Karspexet,Karspexet/Karspexet |
8326af7ee68417e9327f8b7d273fe24ef8f490ca | vagga.yaml | vagga.yaml | commands:
make: !Command
description: Build rotor library
container: ubuntu
run: [cargo, build]
test: !Command
description: Run unit tests
container: ubuntu
run: [cargo, test]
cargo: !Command
description: Run any cargo command
container: ubuntu
run: [cargo]
doc: !Command
... | commands:
make: !Command
description: Build rotor library
container: ubuntu
run: [cargo, build]
test: !Command
description: Run unit tests
container: ubuntu
run: [cargo, test]
cargo: !Command
description: Run any cargo command
container: ubuntu
run: [cargo]
containers:
u... | Upgrade rust to 1.6, remove unused doc container | Upgrade rust to 1.6, remove unused doc container
| YAML | mit | tailhook/rotor-stream |
140aab403a7b0a024bf2e5f90c6799ee91719f4f | .gitpod.yml | .gitpod.yml |
image:
file: .gitpod.Dockerfile
vscode:
extensions:
- muhammad-sammy.csharp
- ionide.ionide-fsharp
- christian-kohler.path-intellisense
- PKief.material-icon-theme
- zhuangtongfa.material-theme
- eamodio.gitlens
- ms-azuretools.vscode-docker
tasks:
- init: ./build.sh |
image:
file: .gitpod.Dockerfile
vscode:
extensions:
- muhammad-sammy.csharp
- ionide.ionide-fsharp
- christian-kohler.path-intellisense
- PKief.material-icon-theme
- zhuangtongfa.material-theme
- eamodio.gitlens
- ms-azuretools.vscode-docker
tasks:
- init: ./fake.sh | Add build script to init task | Add build script to init task
| YAML | apache-2.0 | fsprojects/FSharpx.Collections,fsprojects/FSharpx.Collections |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.