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
|
---|---|---|---|---|---|---|---|---|---|
24db3da0e9444f982b7f4670551ec5e3e9eaa63b
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- rbx-18mode
- rbx-19mode
- jruby-18mode
- jruby-19mode
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
|
language: ruby
matrix:
allow_failures:
- rvm: ruby-head
rvm:
- rbx-18mode
- rbx-19mode
- jruby-18mode
- jruby-19mode
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
|
Allow failures on MRI 2.0
|
Allow failures on MRI 2.0
|
YAML
|
mit
|
cocktail-io/octokit.rb,simon0191/octokit.rb,nilbus/octokit.rb,tarebyte/octokit.rb,tarebyte/octokit.rb,AnNOtis/octokit.rb,octokit/octokit.rb,sferik/octokit.rb,raysrashmi/octokit.rb,BreemsEmporiumMensToiletriesFragrances/octokit.rb,kv109/octokit.rb,whip112/octokit.rb,synmnstr/octokit.rb,pezholio/octokit.rb,Neo20067/octokit.rb,raysrashmi/octokit.rb,daukantas/octokit.rb,octokit/octokit.rb,nilbus/octokit.rb,Payro93/octokit.rb,byroot/octokit.rb,JuanitoFatas/octokit.rb,pezholio/octokit.rb,r7kamura/octokit.rb,Payro93/octokit.rb,pvdb/octokit.rb,JuanitoFatas/octokit.rb,benbalter/octokit.rb,r7kamura/octokit.rb,xantage/octokit.rb,moodyredistribution/octokit.rb,synmnstr/octokit.rb,benbalter/octokit.rb,iainbeeston/octokit.rb,stetsenko/octokit.rb,christer155/octokit.rb,cocktail-io/octokit.rb,Neo20067/octokit.rb,BreemsEmporiumMensToiletriesFragrances/octokit.rb,Tadeirro/octokit.rb,simon0191/octokit.rb,hoorayimhelping/octokit.rb,pwz3n0/octokit.rb,pwz3n0/octokit.rb,byroot/octokit.rb,christer155/octokit.rb,LizzHale/octokit.rb,whip112/octokit.rb,Tadeirro/octokit.rb,xantage/octokit.rb,moodyredistribution/octokit.rb,iainbeeston/octokit.rb,LizzHale/octokit.rb,Ladiijae/octokit.rb,AnNOtis/octokit.rb,Ladiijae/octokit.rb,stetsenko/octokit.rb,hoorayimhelping/octokit.rb,daukantas/octokit.rb,sferik/octokit.rb,kv109/octokit.rb,pvdb/octokit.rb
|
f158251ec793f6471f5e13543c7796aaf55921c7
|
.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 "SET GLOBAL innodb_stats_on_metadata=ON, innodb_stats_persistent=OFF;"
- 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:
# uninstall MySQL 5.5
- sudo apt-get remove mysql-common mysql-server-5.5 mysql-server-core-5.5 mysql-client-5.5 mysql-client-core-5.5
- sudo apt-get autoremove
# install MySQL 5.6
- sudo apt-get install libaio1
- wget -O mysql-5.6.13.deb http://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.13-debian6.0-x86_64.deb/from/http://cdn.mysql.com/
- sudo dpkg -i mysql-5.6.13.deb
- sudo cp /opt/mysql/server-5.6/support-files/mysql.server /etc/init.d/mysql.server
- sudo ln -s /opt/mysql/server-5.6/bin/* /usr/bin/
# update configuration for switch from 5.5 to 5.6
- sudo sed -i'' 's/table_cache/table_open_cache/' /etc/mysql/my.cnf
- sudo sed -i'' 's/log_slow_queries/slow_query_log/' /etc/mysql/my.cnf
- sudo sed -i'' 's/basedir[^=]\\+=.*$/basedir = \\/opt\\/mysql\\/server-5.6/' /etc/mysql/my.cnf
- sudo /etc/init.d/mysql.server start
- mysql -u root -e "DELETE FROM mysql.user WHERE Host='localhost' AND User='';"
- mysql -u root -e "SET GLOBAL innodb_stats_on_metadata=ON, innodb_stats_persistent=OFF;"
- mysql -u root -e "SHOW VARIABLES;"
|
Install MySQL 5.6 on Travis
|
Install MySQL 5.6 on Travis
|
YAML
|
apache-2.0
|
cloudfoundry/cf-mysql-broker,SudarsananRengarajan/cf-mysql-broker,cloudfoundry/cf-mysql-broker,SudarsananRengarajan/cf-mysql-broker,cloudfoundry/cf-mysql-broker
|
f112d1bd427fb917010f22d3335e9bd44089ac80
|
.travis.yml
|
.travis.yml
|
sudo: false
cache: bundler
language: ruby
rvm:
- 2.0.0
- 2.1.5
- 2.2.0
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
|
sudo: false
cache: bundler
language: ruby
rvm:
- 2.2.5
- 2.3.1
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
|
Update the Ruby build matrix for Travis CI.
|
Update the Ruby build matrix for Travis CI.
|
YAML
|
mit
|
tristandunn/pusher-fake-example,tristandunn/pusher-fake-example,tristandunn/pusher-fake-example
|
97915845e26c13c620f13b2647fdcf1916be3011
|
.travis.yml
|
.travis.yml
|
language: ruby
cache:
bundler: true
directories:
- vendor/bundle
rvm:
- 2.3.1
- jruby-9.0.5.0
before_install:
- gem update --system '2.6.1'
- gem update bundler
- gem --version
script: "bundle exec rake test"
|
language: ruby
cache:
bundler: true
directories:
- vendor/bundle
rvm:
- 2.3.1
before_install:
- gem update --system '2.6.1'
- gem update bundler
- gem --version
script: "bundle exec rake test"
|
Remove jruby tests for the time being (failing)
|
Remove jruby tests for the time being (failing)
|
YAML
|
mit
|
nguyenquangminh0711/ruby-sensor,nguyenquangminh0711/ruby-sensor,nguyenquangminh0711/ruby-sensor
|
fd7655a3dbead3c04f70c37d6255ffdcea71f711
|
.travis.yml
|
.travis.yml
|
# Run this faster because it can run on container based infra.
language: node_js
node_js:
- "iojs"
- "4.0"
- "4.1"
script:
- npm test
- npm run coverage
after_script:
- ./node_modules/.bin/coveralls < ./coverage/lcov.info
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
env:
- CXX=g++-4.8
|
# Run this faster because it can run on container based infra.
language: node_js
node_js:
- "4.1"
- "4.4"
script:
- npm test
- npm run coverage
after_script:
- ./node_modules/.bin/coveralls < ./coverage/lcov.info
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
env:
- CXX=g++-4.8
|
Remove older versions of node from Travis testing regime
|
Remove older versions of node from Travis testing regime
|
YAML
|
apache-2.0
|
ProboCI/probo,ProboCI/probo
|
9b530808def97949ee5e432f9ef9f4b8a87e65af
|
.travis.yml
|
.travis.yml
|
language: python
python:
# This is not actually used. Because it would take an overly long time
# to build scipy we cannot use the virtual env of travis. Instead, we
# use miniconda.
- 2.7
- 3.3
- 3.4
notifications:
email: false
sudo: false
install:
# Install miniconda
# -----------------
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
# Create the basic testing environment
# ------------------------------------
- conda config --set always_yes yes --set changeps1 no --set show_channel_urls yes
- conda update conda
- conda create -n test-environment python=$TRAVIS_PYTHON_VERSION
- source activate test-environment
# Customise the testing environment
# ---------------------------------
- conda install pbr nose pip
- sed '/python-bidi\|regex/d' requirements.txt | xargs conda install
# Conda does not package everything, so we install a couple others via pip.
- pip install -r requirements.txt
# Package debug
# -------------
- conda list
- pip freeze
# Install kraken
# --------------
- python setup.py install
script:
- python setup.py nosetests
|
language: python
python:
# This is not actually used. Because it would take an overly long time
# to build scipy we cannot use the virtual env of travis. Instead, we
# use miniconda.
- 2.7
- 3.4
- 3.5
notifications:
email: false
sudo: false
install:
# Install miniconda
# -----------------
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
# Create the basic testing environment
# ------------------------------------
- conda config --set always_yes yes --set changeps1 no --set show_channel_urls yes
- conda update conda
- conda create -n test-environment python=$TRAVIS_PYTHON_VERSION
- source activate test-environment
# Customise the testing environment
# ---------------------------------
- conda install pbr nose pip
- sed '/python-bidi\|regex/d' requirements.txt | xargs conda install
# Conda does not package everything, so we install a couple others via pip.
- pip install -r requirements.txt
# Package debug
# -------------
- conda list
- pip freeze
# Install kraken
# --------------
- python setup.py install
script:
- python setup.py nosetests
|
Switch 3.3 for 3.5 in Travis testing.
|
Switch 3.3 for 3.5 in Travis testing.
|
YAML
|
apache-2.0
|
mittagessen/kraken,mittagessen/kraken,QuLogic/ocropy,QuLogic/ocropy,mittagessen/kraken,mittagessen/kraken
|
4946cd67d00334b629d8ebc293e48ebb4838386e
|
.travis.yml
|
.travis.yml
|
language: python
cache: pip
python:
- 2.7
- 3.5
- 3.6
install:
- pip install tox-travis
- pip install .
script:
- ros-get -h
- tox
|
sudo: false
dist: trusty
language: python
cache: pip
python:
- 2.7
- 3.5
- 3.6
install:
- pip install tox-travis
- pip install .
script:
- ros-get -h
- tox
|
Switch to the container based Travis CI environment
|
Switch to the container based Travis CI environment
|
YAML
|
mit
|
Rayman/ros-get,Rayman/ros-get
|
52c841a88b393da4aa1e8d1d85cfdef8ccc38bf2
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.10'
before_script:
- npm install -g grunt-cli
script:
- npm test
- ./bin/product-type-generator --types data/sample-product-types.csv --attributes data/sample-product-types-attributes.csv --target ./tmp --retailer true --zip true
notifications:
hipchat:
rooms:
- secure: BbMUlILTPGhOX0ZBNqyCq0LpqwRNTOmuqv8gsg83LiDPy4SI/YsjAOQLlrbnoXLECAQMfRBwnED1XVJnskgJbj/VFL+q0hAa0GWfp8gLj7PAv40TYM7+pj6KDxJMWh3ZMWrQ2ixNRAjbuGnP2AfL0Gn6hj6NaxFwyIGQrb7sHKo=
template:
- '%{repository}#%{build_number} (%{author}): %{message} (<a href="%{build_url}">Details</a>/<a href="%{compare_url}">Compare</a>)'
format: html
on_success: change
on_failure: change
|
language: node_js
node_js:
- '0.10'
before_script:
- npm install -g grunt-cli
script:
- npm test
- mkdir -p tmp && ./bin/product-type-generator --types data/sample-product-types.csv --attributes data/sample-product-types-attributes.csv --target ./tmp --retailer true --zip true
notifications:
hipchat:
rooms:
- secure: BbMUlILTPGhOX0ZBNqyCq0LpqwRNTOmuqv8gsg83LiDPy4SI/YsjAOQLlrbnoXLECAQMfRBwnED1XVJnskgJbj/VFL+q0hAa0GWfp8gLj7PAv40TYM7+pj6KDxJMWh3ZMWrQ2ixNRAjbuGnP2AfL0Gn6hj6NaxFwyIGQrb7sHKo=
template:
- '%{repository}#%{build_number} (%{author}): %{message} (<a href="%{build_url}">Details</a>/<a href="%{compare_url}">Compare</a>)'
format: html
on_success: change
on_failure: change
|
Make sure tmp folder exists before running command
|
Make sure tmp folder exists before running command
|
YAML
|
mit
|
sphereio/sphere-product-type-json-generator,sphereio/sphere-product-type-json-generator,sphereio/sphere-product-type-json-generator
|
4cf782cc3c9c87653c637564bc65b1f92ced7261
|
.travis.yml
|
.travis.yml
|
language: rust
cache: cargo
sudo: false
branches:
except:
- fuzzing
rust:
- stable
- beta
- nightly
os:
- linux
- osx
env:
- RUST_LOG=multipart=info RUST_BACKTRACE=1
script:
- cargo build -v --features all
- cargo test -v --features all
- cargo doc -v --no-deps --features all
- (cd nickel && cargo test -v)
|
language: rust
cache: cargo
sudo: false
branches:
except:
- fuzzing
rust:
- stable
- beta
# FIXME: when https://github.com/rust-lang/cargo/issues/3844 is closed
# - nightly
os:
- linux
- osx
env:
- RUST_LOG=multipart=info RUST_BACKTRACE=1
script:
- cargo build -v --features all
- cargo test -v --features all
- cargo doc -v --no-deps --features all
- (cd nickel && cargo test -v)
|
Disable nightly branch until Cargo fix hits the trains
|
Disable nightly branch until Cargo fix hits the trains
|
YAML
|
mit
|
cybergeek94/multipart,cybergeek94/multipart
|
c421485616110a99c2ba3cdc640e65f6e5f891ae
|
app-backend-tasks-b2.yaml
|
app-backend-tasks-b2.yaml
|
service: backend-tasks-b2
runtime: python27
api_version: 1
threadsafe: true
builtins:
- deferred: on
instance_class: B4_1G
basic_scaling:
max_instances: 1
libraries:
- name: django
version: "1.11"
- name: numpy
version: "1.6.1"
- name: jinja2
version: "2.6"
- name: pytz
version: "2016.4"
- name: MySQLdb
version: "latest"
handlers:
- url: /_ah/queue/deferred.*
script: google.appengine.ext.deferred.deferred.application
login: admin
- url: .*
script: backend_main_b2.app
login: admin
includes:
- app_shared.yaml
|
service: backend-tasks-b2
runtime: python27
api_version: 1
threadsafe: true
builtins:
- deferred: on
instance_class: B4_1G
basic_scaling:
max_instances: 1
libraries:
- name: django
version: "1.11"
- name: numpy
version: "1.6.1"
- name: jinja2
version: "2.6"
- name: pytz
version: "2016.4"
- name: MySQLdb
version: "latest"
handlers:
- url: /backend-tasks-b2/console/.*
script: google.appengine.ext.admin.application
login: admin
- url: /_ah/queue/deferred.*
script: google.appengine.ext.deferred.deferred.application
login: admin
- url: .*
script: backend_main_b2.app
login: admin
includes:
- app_shared.yaml
|
Enable console access from backend instance
|
Enable console access from backend instance
|
YAML
|
mit
|
bdaroz/the-blue-alliance,phil-lopreiato/the-blue-alliance,phil-lopreiato/the-blue-alliance,the-blue-alliance/the-blue-alliance,fangeugene/the-blue-alliance,phil-lopreiato/the-blue-alliance,the-blue-alliance/the-blue-alliance,phil-lopreiato/the-blue-alliance,bdaroz/the-blue-alliance,the-blue-alliance/the-blue-alliance,bdaroz/the-blue-alliance,phil-lopreiato/the-blue-alliance,fangeugene/the-blue-alliance,fangeugene/the-blue-alliance,bdaroz/the-blue-alliance,the-blue-alliance/the-blue-alliance,fangeugene/the-blue-alliance,fangeugene/the-blue-alliance,bdaroz/the-blue-alliance,bdaroz/the-blue-alliance,fangeugene/the-blue-alliance,the-blue-alliance/the-blue-alliance,the-blue-alliance/the-blue-alliance,phil-lopreiato/the-blue-alliance
|
05ed7e22f05cf803154147173b259fd74668ea8e
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.6
- 2.7
- pypy
- 3.3
- 3.4
before_script:
- pip install -r requirements.txt
script:
- flake8 .
- isort --recursive --diff . && isort --recursive --check-only .
- py.test
|
language: python
python:
- 2.6
- 2.7
- pypy
- 3.3
- 3.4
script:
- flake8 .
- isort --recursive --diff . && isort --recursive --check-only .
- py.test
|
Remove duplicate "pip install -r requirements.txt"
|
Remove duplicate "pip install -r requirements.txt"
|
YAML
|
mit
|
SiviVuk/inflection,ascott1/inflection,jpvanhal/inflection,panvagenas/inflection,willbarton/inflection
|
0fddeeaab6e4dd98edf737efb00f621898dbd180
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: xcode611
env:
- LC_CTYPE=en_US.UTF-8 LANG=en_US.UTF-8
before_install:
- gem install xcpretty -N
script:
- set -o pipefail
- xcodebuild -project HPFastTouchButton.xcodeproj -scheme "HPFastTouchButton" -sdk iphonesimulator
- pod lib lint --quick
|
language: objective-c
osx_image: xcode611
env:
- LC_CTYPE=en_US.UTF-8 LANG=en_US.UTF-8
before_install:
- gem install xcpretty -N
script:
- set -o pipefail
- xcodebuild -project HPFastTouchButton.xcodeproj -scheme "HPFastTouchButton" -sdk iphonesimulator
|
Update - Travis build config.
|
Update - Travis build config.
|
YAML
|
mit
|
huyphams/HPFastTouchButton,huyphams/HPFastTouchButton
|
73421cd860bfbbd1201a4fc2111cf7fbff62b9aa
|
.travis.yml
|
.travis.yml
|
# Travis CI Configuration
language: node_js
node_js:
- "7"
- "6"
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- npm install
- npm install coveralls
before_script:
- brunch build
script:
- npm run lint
- npm run coverage
after_success:
- cat coverage/lcov.info | coveralls
|
# Travis CI Configuration
language: node_js
node_js:
- "8"
- "7"
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- npm install
- npm install coveralls
before_script:
- brunch build
script:
- npm run lint
- npm run coverage
after_success:
- cat coverage/lcov.info | coveralls
|
Remove Node 6 from CI testing; add node 8
|
Remove Node 6 from CI testing; add node 8
|
YAML
|
mit
|
caleb531/connect-four
|
35e554b428cf9a03a72a777590a595ff33a139c9
|
app/config/config_dev.yml
|
app/config/config_dev.yml
|
imports:
- { resource: config.yml }
framework:
router:
resource: "%kernel.root_dir%/config/routing_dev.yml"
strict_requirements: true
profiler: { only_exceptions: false }
web_profiler:
toolbar: "%debug_toolbar%"
intercept_redirects: "%debug_redirects%"
# The monolog configuration below overwrites the in logging.yml that
# is normally used for production.
monolog:
handlers:
prod-signaler:
type: fingers_crossed
action_level: ERROR
passthru_level: DEBUG # DEV setting: this means that all message of level DEBUG or higher are always logged
#passthru_level: NOTICE # PROD setting this means that all message of level NOTICE or higher are always logged
handler: main_syslog
bubble: false # if we handle it, nothing else should
main_syslog:
type: syslog
ident: stepup-ra
facility: user
formatter: surfnet_stepup.monolog.json_formatter
assetic:
use_controller: "%use_assetic_controller%"
nelmio_security:
csp:
img: [ self, 'data:' ]
script: [ self, unsafe-inline ]
style: [ self, unsafe-inline ]
|
imports:
- { resource: config.yml }
framework:
router:
resource: "%kernel.root_dir%/config/routing_dev.yml"
strict_requirements: true
profiler: { only_exceptions: false }
web_profiler:
toolbar: "%debug_toolbar%"
intercept_redirects: "%debug_redirects%"
# The monolog configuration below overwrites the in logging.yml that
# is normally used for production.
monolog:
handlers:
prod-signaler:
type: fingers_crossed
action_level: ERROR
passthru_level: DEBUG # DEV setting: this means that all message of level DEBUG or higher are always logged
#passthru_level: NOTICE # PROD setting this means that all message of level NOTICE or higher are always logged
handler: main_syslog
bubble: true
main_syslog:
type: syslog
ident: stepup-ra
facility: user
formatter: surfnet_stepup.monolog.json_formatter
main_logfile:
type: stream
handler: logfile
level: NOTICE
path: %kernel.logs_dir%/%kernel.environment%.log
assetic:
use_controller: "%use_assetic_controller%"
nelmio_security:
csp:
img: [ self, 'data:' ]
script: [ self, unsafe-inline ]
style: [ self, unsafe-inline ]
|
Enable file logging for development
|
Enable file logging for development
The development configuration now logs to two destinations:
- fingers crossed to syslog (DEBUG and higher, action leven ERROR)
- log all notices and higher to app/logs/dev.log
|
YAML
|
apache-2.0
|
SURFnet/Stepup-RA,SURFnet/Stepup-RA,SURFnet/Stepup-RA,SURFnet/Stepup-RA
|
2cf48303febf4f7934c4aac9fd9dfb56f642154f
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.7-dev"
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
install:
- pip install nose
script: python setup.py test
|
language: python
python:
- "3.8-dev"
- "3.7"
- "3.6"
- "3.5"
- "3.4"
- "2.7"
install:
- pip install nose
script: python setup.py test
|
Delete Python 3.3 and add Python 3.8-dev on Travis
|
Delete Python 3.3 and add Python 3.8-dev on Travis
Currently Travis fails with:
Downloading archive: https://storage.googleapis.com/travis-ci-language-archives/python/binaries/ubuntu/16.04/x86_64/python-3.3.tar.bz2
$ curl -sSf -o python-3.3.tar.bz2 ${archive_url}
curl: (22) The requested URL returned error: 404 Not Found
Unable to download 3.3 archive. The archive may not exist. Please consider a different version.
|
YAML
|
mit
|
sumerc/yappi,sumerc/yappi
|
46e2b5aa87817d0de5810f8d3933ea67dea1bd64
|
.travis.yml
|
.travis.yml
|
language: node_js
notifications:
email:
on_success: never
on_failure: change
node_js:
- 0.12
git:
depth: 10
|
language: node_js
notifications:
email:
on_success: never
on_failure: change
node_js:
- 0.12
- 4.0
git:
depth: 10
|
Add node 4 to Travis build.
|
Add node 4 to Travis build.
|
YAML
|
mit
|
atom/scrollbar-style,atom/scrollbar-style,atom/scrollbar-style
|
67563e044c54e7bd97135957787f641c59e2e7ca
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.7
compiler:
- clang
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install python-numpy python-coverage
# - wget -O - http://llvm.org/releases/3.2/clang+llvm-3.2-x86-linux-ubuntu-12.04.tar.gz | tar xz
# - export PATH=$(pwd)/clang+llvm-3.2-x86-linux-ubuntu-12.04/bin:$PATH
script:
- python setup.py nosetests -s -x
|
language: python
python:
- 2.7
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install python-numpy python-coverage
- wget -O - http://llvm.org/releases/3.2/clang+llvm-3.2-x86-linux-ubuntu-12.04.tar.gz | tar xz
- export PATH=$(pwd)/clang+llvm-3.2-x86-linux-ubuntu-12.04/bin:$PATH
script:
- python setup.py nosetests -s -x
|
Revert to wget'ting LLVM zip file.
|
CI: Revert to wget'ting LLVM zip file.
|
YAML
|
mit
|
dtcaciuc/nitrous,dtcaciuc/nitrous
|
0fbc7148cfe6a77351bd0533cac08afe425d5dc9
|
.travis.yml
|
.travis.yml
|
language: nix
sudo: required
script: nix-build --verbose --no-out-link
# see https://github.com/travis-ci/travis-ci/issues/6604#issuecomment-419653267
install: |
if [ "$(ls -A $HOME/nix-cache)" ]; then
sudo rm -rf /nix/*
cp -a $HOME/nix-cache/* /nix
fi
before_cache: |
if [ ! "$(ls -A $HOME/nix-cache)" ]; then
cp -a /nix/* $HOME/nix-cache
fi
cache:
directories:
- $HOME/nix-cache
|
language: nix
sudo: required
script: nix-build --no-out-link
# see https://github.com/travis-ci/travis-ci/issues/6604#issuecomment-419653267
install: |
if [ "$(ls -A $HOME/nix-cache)" ]; then
sudo rm -rf /nix/*
cp -a $HOME/nix-cache/* /nix
fi
before_cache: |
if [ ! "$(ls -A $HOME/nix-cache)" ]; then
cp -a /nix/* $HOME/nix-cache
fi
cache:
directories:
- $HOME/nix-cache
|
Reduce noise in builds now that they are working
|
Reduce noise in builds now that they are working
|
YAML
|
apache-2.0
|
ascander/dotfiles
|
f6702385308397529a4c80eb960cf68f9389b2cf
|
.travis.yml
|
.travis.yml
|
language: php
php:
- "5.6"
- "nightly"
- "hhvm"
sudo: false
before_script:
# Set the GitHub OAuth token to make use of the 6000 per hour rate limit
- cat ~/.composer/config.json
- printf '{"config":{"github-oauth":{"github.com":"%s"}}}' "$COMPOSER_GITHUB_API"
- printf '{"config":{"github-oauth":{"github.com":"%s"}}}' "$COMPOSER_GITHUB_API" > ~/.composer/config.json
- cat ~/.composer/config.json
- composer install --no-interaction
- cp config/app_travis.php config/app.php
- cp config/oauth_example.php config/oauth.php
- mysql -e 'create database pmaerr;'
- wget https://scrutinizer-ci.com/ocular.phar
script:
- bin/cake migrations migrate
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml -c phpunit.xml.dist
after_script:
- php vendor/bin/coveralls -v
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
matrix:
allow_failures:
- php: "hhvm"
- php: "nightly"
cache:
directories:
- vendor
- $HOME/.composer/cache
|
language: php
php:
- "5.6"
- "nightly"
- "hhvm"
sudo: false
before_script:
# Set the GitHub OAuth token to make use of the 6000 per hour rate limit
- cat ~/.composer/config.json
- echo '{"config":{"github-oauth":{"github.com":"%s"}}}' "$COMPOSER_GITHUB_API"
- printf '{"config":{"github-oauth":{"github.com":"%s"}}}' "$COMPOSER_GITHUB_API"
- printf '{"config":{"github-oauth":{"github.com":"%s"}}}' "$COMPOSER_GITHUB_API" > ~/.composer/config.json
- cat ~/.composer/config.json
- composer install --no-interaction
- cp config/app_travis.php config/app.php
- cp config/oauth_example.php config/oauth.php
- mysql -e 'create database pmaerr;'
- wget https://scrutinizer-ci.com/ocular.phar
script:
- bin/cake migrations migrate
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml -c phpunit.xml.dist
after_script:
- php vendor/bin/coveralls -v
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
matrix:
allow_failures:
- php: "hhvm"
- php: "nightly"
cache:
directories:
- vendor
- $HOME/.composer/cache
|
Debug whats going on in printf
|
Debug whats going on in printf
Signed-off-by: Michal Čihař <[email protected]>
|
YAML
|
mit
|
madhuracj/error-reporting-server,madhuracj/error-reporting-server,ujjwalwahi/error-reporting-server,madhuracj/error-reporting-server,ujjwalwahi/error-reporting-server,ujjwalwahi/error-reporting-server,devenbansod/error-reporting-server,phpmyadmin/error-reporting-server,devenbansod/error-reporting-server,devenbansod/error-reporting-server,phpmyadmin/error-reporting-server,phpmyadmin/error-reporting-server
|
d3909f7fa449e0b0d109c09adf1aa96ab6b37aa6
|
.travis.yml
|
.travis.yml
|
sudo: false
dist: xenial
language: python
cache: pip
python:
- 3.6
- 3.7
- pypy3
before_install:
- pip install -r ci/requirements.txt
install:
- pip install .
script:
- coverage run --source=pronto -m unittest discover -v
- coverage xml --include "pronto/*"
after_success:
- codecov
- python-codacy-coverage -r coverage.xml
before_deploy:
- python setup.py sdist bdist_wheel
- twine check dist/*
deploy:
provider: script
script: twine upload --skip-existing dist/*
skip_cleanup: true
on:
python: "3.7"
tags: true
repo: althonos/pronto
notifications:
email:
- [email protected]
|
sudo: false
dist: xenial
language: python
cache: pip
addons:
apt:
packages:
- pandoc
python:
- 3.6
- 3.7
- pypy3
before_install:
- pip install -r ci/requirements.txt
install:
- pip install .
script:
- coverage run --source=pronto -m unittest discover -v
- coverage xml --include "pronto/*"
after_success:
- codecov
- python-codacy-coverage -r coverage.xml
before_deploy:
- python setup.py sdist bdist_wheel
- twine check dist/*
deploy:
provider: script
script: twine upload --skip-existing dist/*
skip_cleanup: true
on:
python: "3.7"
tags: true
repo: althonos/pronto
notifications:
email:
- [email protected]
|
Add `pandoc` to Travis-CI APT packages
|
Add `pandoc` to Travis-CI APT packages
|
YAML
|
mit
|
althonos/pronto
|
1d33d27c5904eab53b92175cc371b3cfc221737f
|
.travis.yml
|
.travis.yml
|
---
language: ruby
sudo: false
cache: bundler
before_script:
- sh -e /etc/init.d/xvfb start
- export DISPLAY=:99.0
- bundle exec rake test_app
script:
- bundle exec rspec spec
rvm:
- 2.1
- 2.2
|
---
language: ruby
sudo: false
cache: bundler
before_script:
- sh -e /etc/init.d/xvfb start
- export DISPLAY=:99.0
- bundle exec rake test_app
script:
- bundle exec rspec spec
rvm:
- 2.2.4
- 2.3.0
|
Test against ruby 2.2.4 and 2.3.0
|
Test against ruby 2.2.4 and 2.3.0
|
YAML
|
bsd-3-clause
|
spree-contrib/spree-product-assembly,spree-contrib/spree-product-assembly,spree-contrib/spree-product-assembly
|
1d0f2f65d93874ad57543d3bedb653355ada7f36
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.12'
- '0.10'
- '0.8'
- 'iojs'
before_install:
- npm install -g npm@~1.4.6
|
sudo: false
language: node_js
node_js:
- '4'
- '0.12'
- '0.10'
- '0.8'
before_install:
- 'if [ "${TRAVIS_NODE_VERSION}" == "0.8" ]; then npm install -g [email protected]; fi'
|
Add testing on Node v4
|
Travis-CI: Add testing on Node v4
|
YAML
|
mit
|
watson/git-state,Torthu/git-state
|
66f3276ae8920fc5c9228764377746fc64772a1c
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
env:
# Test in Symfony LTS and latest stable release
- SYMFONY_VERSION="2.3.*"
- SYMFONY_VERSION="2.6.*"
before_script:
- composer self-update
- composer require --dev --prefer-dist symfony/symfony:${SYMFONY_VERSION}
script:
# Run the tests
- php ./vendor/phpunit/phpunit/phpunit --coverage-clover=build/logs/clover.xml
after_script:
# Upload code coverage to Scrutinizr.com
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
# Upload code coverage to Coveralls.io
- php vendor/satooshi/php-coveralls/composer/bin/coveralls -v
matrix:
# Also Build with PHP latest and Symfony next
include:
- php: 5.6
env: SYMFONY_VERSION="2.7.*@dev"
allow_failures:
- php: hhvm
- env: SYMFONY_VERSION="2.7.*@dev"
fast_finish: true
|
language: php
php:
- 5.4
- hhvm
env:
- SYMFONY_VERSION="2.3.*"
- SYMFONY_VERSION="2.6.*"
- LOWEST=1
before_script:
- composer self-update
- if [ ! -z $SYMFONY_VERSION ]; then composer require symfony/symfony:${SYMFONY_VERSION} --prefer-dist; fi
- if [ ! -z $LOWEST ]; then composer update --prefer-dist --prefer-lowest; fi
script:
# - phpunit -c phpunit.dist.xml
- php ./vendor/bin/phpunit --coverage-clover=build/logs/clover.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
- php ./vendor/bin/coveralls -v
matrix:
# Build with PHP 5.5 and Symfony LTS
include:
- php: 5.5
env: SYMFONY_VERSION="2.3.*"
- php: 5.6
env: SYMFONY_VERSION="2.7.*@dev"
exclude:
- php: hhvm
env: LOWEST=1
# Test the latest PHP and Symfony Next
allow_failures:
- env: SYMFONY_VERSION="2.7.*@dev"
- php: hhvm
fast_finish: true
notifications:
email:
- [email protected]
branches:
only:
- develop
- master
|
Update Travis CI config to build lowest dependancies too.
|
Update Travis CI config to build lowest dependancies too.
|
YAML
|
mit
|
dankempster/axstrad-content-bundle,dankempster/axstrad-content-bundle
|
5e7e343d9eeb1ae603d9f599e36c58e03500beac
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2
services:
- mysql
script:
- ./travis-build.sh
|
language: ruby
rvm:
- 2.2
services:
- mysql
script:
- ./travis-build.rb
|
Fix name of build script
|
Fix name of build script
|
YAML
|
mit
|
CDLUC3/stash,CDLUC3/stash,CDLUC3/stash,CDLUC3/stash
|
368fe77b3dfdd1a8808b8dbeb36539758c5d9100
|
manifest.yml
|
manifest.yml
|
---
language: staticfile
default_versions:
- name: nginx
version: 1.13.8
dependencies:
- name: nginx
version: 1.13.8
uri: https://buildpacks.cloudfoundry.org/dependencies/nginx/nginx-1.13.8-linux-x64-9585c5f4.tgz
sha256: 9585c5f4a76a66174303648e474d05b611948816e122faf9bc5e23f5715edbb1
cf_stacks:
- cflinuxfs2
pre_package: scripts/build.sh
include_files:
- CHANGELOG
- CONTRIBUTING.md
- ISSUE_TEMPLATE
- LICENSE
- NOTICE
- PULL_REQUEST_TEMPLATE
- README.md
- VERSION
- bin/compile
- bin/detect
- bin/finalize
- bin/release
- bin/supply
- manifest.yml
|
---
language: staticfile
default_versions:
- name: nginx
version: 1.13.9
dependencies:
- name: nginx
version: 1.13.9
uri: https://buildpacks.cloudfoundry.org/dependencies/nginx/nginx-1.13.9-linux-x64-21ff4d0f.tgz
sha256: 21ff4d0f5a04eea7e7eec96f64333da16d275ffb6d6cb1b42cd18e99b02815d7
cf_stacks:
- cflinuxfs2
pre_package: scripts/build.sh
include_files:
- CHANGELOG
- CONTRIBUTING.md
- ISSUE_TEMPLATE
- LICENSE
- NOTICE
- PULL_REQUEST_TEMPLATE
- README.md
- VERSION
- bin/compile
- bin/detect
- bin/finalize
- bin/release
- bin/supply
- manifest.yml
|
Add nginx 1.13.9, remove nginx 1.13.8
|
Add nginx 1.13.9, remove nginx 1.13.8
source url: http://nginx.org/download/nginx-1.13.9.tar.gz
source gpg-signature:
-----BEGIN PGP SIGNATURE-----
iQEcBAABAgAGBQJajCw/AAoJEFIKmZOhwFL44XoH/jRx2DtVS1DQUWqhke0ntVUD
KC13k63u4OGcf32qk/T7BeUb+09nuQ/K3Z43yN4qxprPby2RimEnOxrzh3bBaPNn
9m3jLEN84ARq0oWws95L0ITMxWI3KCDjZ16KrRD6HzZ3pNA+/+uwqilkl0+si7iK
sXbE8FNL+4w+fMz0NBG+l/x1wGdL8vbodbKji3BNYxleSn5t2AwTpYv6xEUEl8aT
2EnzUC0JAwpiJIgC7ExNX7sN5mG/hha2qfXIVIynEf2bmHN6GT3K4ywSZaQohbJr
QOp7LrGTDFIGi3SduqgNUMsWb6KXdY0niIrMlL9cE1BHO17fAIsbIWFUVDRVoEE=
=coXe
-----END PGP SIGNATURE-----
[#155362465]
|
YAML
|
apache-2.0
|
cloudfoundry/staticfile-buildpack,cloudfoundry/staticfile-buildpack,cloudfoundry/staticfile-buildpack,cloudfoundry/staticfile-buildpack
|
260cb0a970e73528e9e9adf2d9b6d0b527ca3b8d
|
.travis.yml
|
.travis.yml
|
language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.20"
|
language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
|
Load Perl helpers in Travis
|
Load Perl helpers in Travis
|
YAML
|
artistic-2.0
|
jmaslak/PerlPowerTools,jmaslak/PerlPowerTools
|
52310432d6cca88d4aed877b2924500ca4c9913a
|
.travis.yml
|
.travis.yml
|
language: python
- "3.2"
- "3.4"
- "3.5"
- "3.6"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python3-pip python3-numpy python3-scipy python3-matplotlib python3-nose
- sudo pip3 install codecov rednose nose coverage six toolz nose-parameterized codeclimate-test-reporter
cache: pip
script: nosetests3
dist: trusty
after_success:
codecov --token=e3a3e622-b5b4-40a0-b0be-f427bbb23449
CODECLIMATE_REPO_TOKEN=71eb68ef3ba1f85d8e92407d03e43df51deb6f14a870ada23e8530a16d438eae codeclimate-test-reporter
|
language: python
- "3.2"
- "3.4"
- "3.5"
- "3.6"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python3-pip python3-numpy python3-scipy python3-matplotlib python3-nose
- sudo pip3 install codecov rednose nose coverage six toolz nose-parameterized codeclimate-test-reporter
cache: pip
script: nosetests3
dist: trusty
after_success:
- codeclimate-test-reporter --token 71eb68ef3ba1f85d8e92407d03e43df51deb6f14a870ada23e8530a16d438eae
- codecov --token=e3a3e622-b5b4-40a0-b0be-f427bbb23449
|
Use codeclimate token as CLI arg rather than as env variable
|
Use codeclimate token as CLI arg rather than as env variable
|
YAML
|
apache-2.0
|
ulikoehler/UliEngineering
|
c9be2cb36c1c39ac659721501b977d3475b75237
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
jdk:
- openjdk7
virtualenv:
system_site_packages: true
install:
# Install Spark
- wget http://d3kbcqa49mib13.cloudfront.net/spark-1.1.0-bin-hadoop1.tgz
- tar -xzf spark-1.1.0-bin-hadoop1.tgz
- sudo apt-get install -qq python-numpy python-scipy python-sklearn
- pip install -r python/requirements.txt
# Workaround for Travis issue with POSIX semaphores; see
# https://github.com/travis-ci/travis-cookbooks/issues/155
- "sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm"
script:
- export SPARK_HOME=`pwd`/spark-1.1.0-bin-hadoop1
- cd python/test
- ./run_tests.sh
|
language: python
python:
- "2.7"
jdk:
- openjdk7
virtualenv:
system_site_packages: true
install:
# Install Spark
- wget http://d3kbcqa49mib13.cloudfront.net/spark-1.1.0-bin-hadoop1.tgz
- tar -xzf spark-1.1.0-bin-hadoop1.tgz
- sudo apt-get install -qq python-numpy python-scipy python-sklearn
- pip install -r python/requirements.txt
# Workaround for Travis issue with POSIX semaphores; see
# https://github.com/travis-ci/travis-cookbooks/issues/155
- "sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm"
script:
- export SPARK_HOME=`pwd`/spark-1.1.0-bin-hadoop1
- cd python/test
- ./run_tests.sh -v --verbosity=2
|
Add some test verbosity back in
|
Add some test verbosity back in
|
YAML
|
apache-2.0
|
poolio/thunder,broxtronix/thunder,kcompher/thunder,jwittenbach/thunder,kunallillaney/thunder,mikarubi/thunder,kunallillaney/thunder,thunder-project/thunder,j-friedrich/thunder,pearsonlab/thunder,zhwa/thunder,broxtronix/thunder,oliverhuangchao/thunder,mikarubi/thunder,j-friedrich/thunder,zhwa/thunder,kcompher/thunder,pearsonlab/thunder,oliverhuangchao/thunder,poolio/thunder
|
51eba0dbabb21b0d94c64c4aa7947c4f0b1ff4d7
|
.travis.yml
|
.travis.yml
|
sudo: false
cache: bundler
language: ruby
bundler_args: --without local_development
script: bundle exec rake
rvm:
- 2.0.0
- 2.1
- 2.2
- jruby-19mode
- rbx-2
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
fast_finish: true
notifications:
recipients:
- [email protected]
- [email protected]
- [email protected]
- [email protected]
irc: "irc.freenode.org#reek"
|
sudo: false
cache: bundler
language: ruby
bundler_args: --without local_development
script: bundle exec rake
rvm:
- 2.0.0
- 2.1
- 2.2
- rbx-2
- ruby-head
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS='--server -Xcompile.invokedynamic=false'
- rvm: jruby-head
env: JRUBY_OPTS='--server -Xcompile.invokedynamic=false'
allow_failures:
- rvm: jruby-head
env: JRUBY_OPTS='--server -Xcompile.invokedynamic=false'
- rvm: ruby-head
fast_finish: true
notifications:
recipients:
- [email protected]
- [email protected]
- [email protected]
- [email protected]
irc: "irc.freenode.org#reek"
|
Fix Travis on JRuby-HEAD using explicit opts
|
Fix Travis on JRuby-HEAD using explicit opts
See https://travis-ci.org/troessner/reek/jobs/67756300#L297-L307
This is really only an issue on JRUBY-HEAD where cext.enabled property no longer exists.
```ruby
expected: ""
got: "jruby: warning: unknown property jruby.cext.enabled\njruby: warning: unknown property jruby.cext.enabled\njruby: warning: unknown property jruby.cext.enabled\njruby: warning: unknown property jruby.cext.enabled\n"
(compared using ==)
Diff:
@@ -1 +1,5 @@
+jruby: warning: unknown property jruby.cext.enabled
+jruby: warning: unknown property jruby.cext.enabled
+jruby: warning: unknown property jruby.cext.enabled
+jruby: warning: unknown property jruby.cext.enabled
(RSpec::Expectations::ExpectationNotMetError)
./features/step_definitions/reek_steps.rb:58:in `/^it reports no errors$/'
features/configuration_loading.feature:29:in `Then it reports no errors'
```
ref: https://github.com/rspec/rspec-dev/pull/115
```ru
|
YAML
|
mit
|
apuratepp/reek,andyw8/reek,troessner/reek,skywinder/reek,apuratepp/reek,HParker/reek,skywinder/reek,andyw8/reek,tansaku/reek,apuratepp/reek,tansaku/reek,weby/reek,HParker/reek,weby/reek,tansaku/reek,HParker/reek,skywinder/reek,weby/reek,andyw8/reek,troessner/reek
|
4d948ac6e93b35613f26089121c5aa3a3961c8a5
|
.travis.yml
|
.travis.yml
|
---
sudo: false
language: ruby
cache: bundler
bundler_args: --without development system_tests
before_install: rm Gemfile.lock || true
script: bundle exec rake test SPEC_OPTS='--format documentation'
matrix:
fast_finish: true
include:
- rvm: 2.1
env: PUPPET_VERSION="~> 3"
- rvm: 2.3
env: PUPPET_VERSION="~> 4"
# Beaker tests
- env: BEAKER_set=debian-7-64
bundler_args: --without development
script: bundle exec rake beaker
dist: trusty
services: docker
sudo: required
- env: BEAKER_set=default # Debian 8
bundler_args: --without development
script: bundle exec rake beaker
dist: trusty
services: docker
sudo: required
- env: BEAKER_set=ubuntu-1204-64
bundler_args: --without development
script: bundle exec rake beaker
dist: trusty
services: docker
sudo: required
- env: BEAKER_set=ubuntu-1404-64
bundler_args: --without development
script: bundle exec rake beaker
dist: trusty
services: docker
sudo: required
|
---
sudo: false
language: ruby
cache: bundler
bundler_args: --without development system_tests
before_install: rm Gemfile.lock || true
script: bundle exec rake test SPEC_OPTS='--format documentation'
matrix:
fast_finish: true
include:
- rvm: 2.1
env: PUPPET_VERSION="~> 3"
- rvm: 2.3
env: PUPPET_VERSION="~> 4"
# Beaker tests
- env: BEAKER_set=debian-7-64
bundler_args: --without development
script: bundle exec rake beaker
dist: trusty
services: docker
sudo: required
- env: BEAKER_set=default # Debian 8
bundler_args: --without development
script: bundle exec rake beaker
dist: trusty
services: docker
sudo: required
- env: BEAKER_set=ubuntu-1404-64
bundler_args: --without development
script: bundle exec rake beaker
dist: trusty
services: docker
sudo: required
|
Disable currently broken Ubuntu 12.04 setup
|
Disable currently broken Ubuntu 12.04 setup
Travis fails with a 403 when trying to fetch the php packages. Given
this will go away soo anyway not worth investing too much effort.
|
YAML
|
apache-2.0
|
tohuwabohu/puppet-drupal,tohuwabohu/puppet-drupal,tohuwabohu/puppet-drupal
|
83f9c43e00b89b205e380139f027ebc22a4799a5
|
.travis.yml
|
.travis.yml
|
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
branches:
only:
- master
before_install:
- gem install bundler
|
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
- 2.2
branches:
only:
- master
before_install:
- gem install bundler
|
Add more Rubies to CI
|
Add more Rubies to CI
(Travis doesn't have Ruby 2.3 yet)
|
YAML
|
mit
|
tduehr/omniauth-cas3,dlindahl/omniauth-cas,1dtouch/omniauth-cas
|
895d6e3a003789beeb23e441a221d8808e0f7b69
|
.travis.yml
|
.travis.yml
|
rvm:
- 2.2
- 2.1
- 2.0
- 1.9.3
- jruby-1.7.12
# whitelist
branches:
only:
- master
- v1.3.x-bugfix
- add-fail-fast-switch
|
rvm:
- 2.2
- 2.1
- 2.0
- 1.9.3
- jruby-1.7.12
# whitelist
branches:
only:
- master
- v1.3.x-bugfix
|
Remove temporary branch from build
|
Remove temporary branch from build
|
YAML
|
mit
|
marxarelli/cucumber,shadow000902/cucumber-ruby,enkessler/cucumber-ruby,cucumber/cucumber-ruby,danascheider/cucumber-ruby,cucumber/cucumber-ruby,phoebeclarke/cucumber-ruby,marxarelli/cucumber,cucumber/cucumber-ruby,twalpole/cucumber,shadow000902/cucumber-ruby,danascheider/cucumber-ruby,richarda/cucumber,phoebeclarke/cucumber-ruby,enkessler/cucumber-ruby,enkessler/cucumber-ruby,twalpole/cucumber,richarda/cucumber
|
4900f4cd2b32e72b8a25b94f75700620653bcba3
|
.travis.yml
|
.travis.yml
|
language: java
script: ./.travis-build.sh
sudo: false
jdk:
- oraclejdk8
# - oraclejdk7
- openjdk7
after_script:
- |
declare exitCode;
curl -sSL https://raw.githubusercontent.com/mernst/travis-after-all/master/lib/travis-after-all.js | node
exitCode=$?
if [ "$exitCode" -eq 0 ]; then
if [[ ($TRAVIS_BRANCH == master) &&
($TRAVIS_PULL_REQUEST == false) ]] ; then
curl -LO https://raw.github.com/mernst/plume-lib/master/bin/trigger-travis.sh
SLUGOWNER=${TRAVIS_REPO_SLUG%/*}
sh trigger-travis.sh ${SLUGOWNER} checker-framework $TRAVISTOKEN
fi
fi
git:
depth: 9
|
language: java
script: ./.travis-build.sh
sudo: false
jdk:
- oraclejdk8
# - oraclejdk7
- openjdk7
after_script:
- |
set +e
declare exitCode;
curl -sSL https://raw.githubusercontent.com/mernst/travis-after-all/master/lib/travis-after-all.js | node
exitCode=$?
if [ "$exitCode" -eq 0 ]; then
if [[ ($TRAVIS_BRANCH == master) &&
($TRAVIS_PULL_REQUEST == false) ]] ; then
curl -LO https://raw.github.com/mernst/plume-lib/master/bin/trigger-travis.sh
SLUGOWNER=${TRAVIS_REPO_SLUG%/*}
sh trigger-travis.sh ${SLUGOWNER} checker-framework $TRAVISTOKEN
fi
fi
git:
depth: 9
|
Add "set +e" in after_script
|
Add "set +e" in after_script
|
YAML
|
mit
|
eisop/annotation-tools,eisop/annotation-tools,eisop/annotation-tools,typetools/annotation-tools,typetools/annotation-tools,typetools/annotation-tools
|
8ec1bf5f634d1ac01cc2cb9547eb90755bc9b975
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
sudo: false
cache:
directories:
- node_modules
env:
- DIALECT=mysql
- DIALECT=postgres
- DIALECT=postgres-native
- DIALECT=sqlite
- DIALECT=mariadb
- DIALECT=mssql
addons:
postgresql: "9.4"
before_script:
- "mysql -e 'create database sequelize_test;'"
- "psql -c 'create database sequelize_test;' -U postgres"
script:
- "make test"
branches:
only:
- master
- 1.7.0
matrix:
fast_finish: true
include:
- node_js: "0.10"
env: COVERAGE=true
allow_failures:
- node_js: "0.10"
env: COVERAGE=true
notifications:
hipchat:
- 40e8850aaba9854ac4c9963bd33f8b@253477
irc:
- "chat.freenode.net#sequelizejs"
|
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs-v1.8"
# - "iojs" # iojs 2.0 is failing because of pg-native and nan
sudo: false
cache:
directories:
- node_modules
env:
- DIALECT=mysql
- DIALECT=postgres
- DIALECT=postgres-native
- DIALECT=sqlite
- DIALECT=mariadb
- DIALECT=mssql
addons:
postgresql: "9.4"
before_script:
- "mysql -e 'create database sequelize_test;'"
- "psql -c 'create database sequelize_test;' -U postgres"
script:
- "make test"
branches:
only:
- master
- 1.7.0
matrix:
fast_finish: true
include:
- node_js: "0.10"
env: COVERAGE=true
allow_failures:
- node_js: "0.10"
env: COVERAGE=true
notifications:
hipchat:
- 40e8850aaba9854ac4c9963bd33f8b@253477
irc:
- "chat.freenode.net#sequelizejs"
|
Fix build script for now
|
Fix build script for now
Add the 1.7 branch back into travis config
|
YAML
|
mit
|
eventhough/sequelize,angelxmoreno/sequelize,joe-at-fiziico/sequelize-point-support,lukealbao/sequelize,elijah513/sequelize,jessicalc/sequelize,darwinserrano/sequelize,peachworks/sequelize,ojolabs/sequelize,scottty881/sequelize,cschwarz/sequelize,wKich/sequelize,JYzor/sequelize,atorkhov/sequelize,rpaterson/sequelize,yelmontaser/sequelize,smokeelow/sequelize,savageautomate/sequelize,DavidMorton/sequelize,mvnnn/sequelize,johanneswuerbach/sequelize,mdarveau/sequelize,Daimonos/sequelize,pola88/sequelize,jasonku/sequelize,alexbooker/sequelize,meetearnest/sequelize,botter-workshop/sequelize,oss92/sequelize,seegno-forks/sequelize,tornillo/sequelize,seanjh/sequelize,SerkanSipahi/sequelize,rfink/sequelize,jchbh-duplicate/sequelize,kenjitayama/sequelize,subjectix/sequelize,abossard/sequelize,mliszewski/sequelize,pentium100/sequelize,overlookmotel/sequelize,3032441712/sequelize,imjerrybao/sequelize,growaspeople/sequelize,alitaheri/sequelize,Bibernull/sequelize,jayprakash1/sequelize,3ch01c/sequelize,sankethkatta/sequelize,janmeier/sequelize,braddunbar/sequelize,yotamofek/sequelize,majorleaguesoccer/sequelize,bangbang93/sequelize,seshness/sequelize,Americas/sequelize,jungseob86/sequelize,Ghost141/sequelize,calvintwr/sequelize,sorin/sequelize,alanhoff/patch-sequelize-3489,pedrox-3w/sequelize,alekbarszczewski/sequelize,sobotklp/sequelize,hariprasadkulkarni/sequelize,lebretr/sequelize-oracle,czardoz/sequelize,topikachu/sequelize,pensierinmusica/sequelize,toddsby/sequelize,jayprakash1/sequelize,mikeringrose/sequelize,Alexsey/sequelize,PhinCo/sequelize,camhux/sequelize,gintsgints/sequelize,p0vidl0/sequelize,yjwong/sequelize,scboffspring/sequelize,felixfbecker/sequelize,sequelize/sequelize,abegines/sequelize,nemisj/sequelize,dbirchak/sequelize,Americas/sequelize,phanect/sequelize,linalu1/sequelize,rodrigoapereira/sequelize,briandamaged/sequelize,chauthai/sequelize,skv-headless/sequelize,chriszs/sequelize,quiddle/sequelize,yonjah/sequelize,sequelize/sequelize,xpepermint/sequelize,adeo-proxideco/sequelize-oracle,overlookmotel/sequelize,sequelize/sequelize,dantman/sequelize,konnecteam/sequelize,mendenhallmagic/sequelize,globesherpa/sequelize,paolord/sequelize,oshoemaker/sequelize,adeo-proxideco/sequelize-oracle,andywhite37/sequelize,ziflex/sequelize,appleboy/sequelize,pixel2/sequelize,Znarkus/sequelize,crzidea/sequelize,keik/sequelize,baotingfang/sequelize,gorangajic/sequelize,bassarisse/sequelize,inDream/sequelize,eddieajau/sequelize,Wsiegenthaler/sequelize,konnecteam/sequelize,ReikoR/sequelize,emhagman/sequelize,sreucherand/sequelize,inDream/sequelize,cbauerme/sequelize,gutobortolozzo/sequelize,treejames/sequelize,StefanoDalpiaz/sequelize,Verdier/sequelize,givery-technology/sequelize,bomattin/sequelize,johngiudici/sequelize,grimurd/sequelize,Aweary/sequelize,pimterry/sequelize,mcanthony/sequelize,denim2x/sequelize,tedjt/sequelize,treythomas123/sequelize,arcana261/sequelize,codyrigney92/sequelize,PsiXdev/sequelize,venkatesh-tr/sequelize,toddbluhm/sequelize,lebretr/sequelize-oracle,bulkan/sequelize,festo/sequelize,tmcleroy/sequelize,FredKSchott/sequelize,jingpei/sequelize
|
1d839d02ecad455f2b68fb0fd3b6f1e7a9c4306a
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
matrix:
allow_failures:
- rvm: 1.9.2
- rvm: jruby-19mode
|
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
matrix:
allow_failures:
- rvm: 1.9.2
|
Remove jruby-19mode from allowed failures in tarvis.yml.
|
Remove jruby-19mode from allowed failures in tarvis.yml.
|
YAML
|
bsd-3-clause
|
Altonymous/sidetiq,stanchan/sidetiq,grzlus/sidetiq,akhiln/sidetiq,tomoyuki-yanagisawa/sidetiq-mod,brennovich/sidetiq,slategroup/sidetiq,PaulMest/sidetiq,b1tw1se/sidetiq,danilogcarolino/sidetiq,sfroehler/sidetiq,tobiassvn/sidetiq,flowerett/sidetiq,kickserv/sidetiq,akhiln/sidetiq,atpay/sidetiq,kickserv/sidetiq,brennovich/sidetiq,danilogcarolino/sidetiq,endofunky/sidetiq,atpay/sidetiq,tobiassvn/sidetiq,flowerett/sidetiq,stanchan/sidetiq,rjocoleman/sidetiq,endofunky/sidetiq,rjocoleman/sidetiq,vayu-technology/sidetiq,PaulMest/sidetiq,sfroehler/sidetiq,talentpad/sidetiq,b1tw1se/sidetiq,tomoyuki-yanagisawa/sidetiq-mod,talentpad/sidetiq,grzlus/sidetiq,vayu-technology/sidetiq,slategroup/sidetiq
|
28c0f174ee0961c6fe07ec19bbde7f7b1f6412ae
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
- ruby-head
- jruby-9.2.8.0
- jruby-head
before_install:
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
script: bundle exec rake test
cache: bundler
env:
- RACK_ENV=development
|
language: ruby
sudo: false
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
- ruby-head
- jruby-9.2.8.0
- jruby-head
before_install:
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-9.2.8.0 # temporary
- rvm: jruby-head
script: bundle exec rake test
cache: bundler
env:
- RACK_ENV=development
|
Allow test failures on JRuby 9.2.8.0
|
Allow test failures on JRuby 9.2.8.0
JRuby has some obscure error on Travis that I don't have time to fix
right now, so we'll allow test failures on JRuby for the time being.
|
YAML
|
mit
|
janko-m/shrine,janko-m/shrine
|
dd4564e9498ecafb0574f55b745d8c447967874c
|
.travis.yml
|
.travis.yml
|
---
language: node_js
node_js:
- '5.6'
- '4.3'
- '0.12'
- '0.10'
|
---
language: node_js
node_js:
- '5.6'
- '4.3'
- '0.12'
- '0.10'
deploy:
provider: npm
email:
secure: RJkmOloAFQadJX52ryfgznBfB/2GBtJ+37V7wATp8/JqH/gXRuWeh/oTBO/Z8xbD9mXMkmsW6GNqzXu6GAEj1l1mB7VZGelYg0oOyHGdjP2DiuaU9PQ/WYDqmWddFhM2cuDNiXADSpL97ANam3Hs+GO5ufHOvhFCdLGBrH0UbB4=
api_key:
secure: cA+pCw3TABQ5+F4zxvoTrOl6lq+BEJUO+IrajeMdhGl8dMjDIBk7x7PFqZCkWRE/RLuqhpT6A0/CmEH3d7hOO8cVyotxU+/bRO8AoYifl0u7B1Qt6qVgb46P0VV/fd6QoWKyebZBAyFY+secgbyxc6UPpNYuEd2SCPbJpE73m1I=
on:
node: '5.6'
tags: true
repo: thelounge/lounge
|
Add npm deployment step when a Travis CI build passes on a tag
|
Add npm deployment step when a Travis CI build passes on a tag
|
YAML
|
mit
|
sebastiencs/lounge,williamboman/lounge,rockhouse/lounge,ScoutLink/lounge,rockhouse/lounge,MaxLeiter/lounge,rockhouse/lounge,libertysoft3/lounge-autoconnect,MaxLeiter/lounge,libertysoft3/lounge-autoconnect,realies/lounge,FryDay/lounge,MaxLeiter/lounge,ScoutLink/lounge,realies/lounge,realies/lounge,metsjeesus/lounge,thelounge/lounge,metsjeesus/lounge,FryDay/lounge,williamboman/lounge,libertysoft3/lounge-autoconnect,metsjeesus/lounge,sebastiencs/lounge,sebastiencs/lounge,ScoutLink/lounge,williamboman/lounge,FryDay/lounge,thelounge/lounge
|
7b3d839375ababe6ff818340862c97f7f495f607
|
.travis.yml
|
.travis.yml
|
language: cpp
sudo: false
script:
- wget https://github.com/bweir/OpenSpin/releases/download/qt-0.1.0/openspin
- chmod a+x ./openspin
- SPINC=./openspin make -f scripts/makefile
- make -f scripts/makefile clean
- git clone https://github.com/lamestation/lamestation-sdk "lamestation-sdk-${TRAVIS_TAG}" --recursive
- echo "lamestation-sdk-${TRAVIS_TAG}"
- zip "lamestation-sdk-${TRAVIS_TAG}.zip" lamestation-sdk-${TRAVIS_TAG}/
after_script:
- ls *.zip
deploy:
provider: releases
api_key:
secure: NEA2RzoKNiT4JL1d6iJFNeZksns5m9AaVT2hA1CljJzhOjUJ7o4zhfyOI0Ev61M5WAKOEyKNQSh4dvXiFr37xuWVNAiSxUIKID2QZ7FMm2933lzxYhztA6HLChb/qSGrHluJmOsxr9Cz3GbaWCPARjbnPMtbl2l5hszykxCAMPo=
file_glob: true
file: lamestation-sdk-${TRAVIS_TAG}.zip
skip_cleanup: true
on:
repo: lamestation/lamestation-sdk
tags: true
all_branches: true
|
language: cpp
sudo: false
script:
- wget https://github.com/bweir/OpenSpin/releases/download/qt-0.1.0/openspin
- chmod a+x ./openspin
- SPINC=./openspin make -f scripts/makefile -j
- make -f scripts/makefile clean
- git clone https://github.com/lamestation/lamestation-sdk "lamestation-sdk-${TRAVIS_TAG}" --recursive
- echo "lamestation-sdk-${TRAVIS_TAG}"
- zip -R "lamestation-sdk-${TRAVIS_TAG}.zip" lamestation-sdk-${TRAVIS_TAG}/
- ls *.zip
deploy:
provider: releases
api_key:
secure: NEA2RzoKNiT4JL1d6iJFNeZksns5m9AaVT2hA1CljJzhOjUJ7o4zhfyOI0Ev61M5WAKOEyKNQSh4dvXiFr37xuWVNAiSxUIKID2QZ7FMm2933lzxYhztA6HLChb/qSGrHluJmOsxr9Cz3GbaWCPARjbnPMtbl2l5hszykxCAMPo=
file_glob: true
file: lamestation-sdk-${TRAVIS_TAG}.zip
skip_cleanup: true
on:
repo: lamestation/lamestation-sdk
tags: true
all_branches: true
|
Fix zip archive and add jobs back in
|
Fix zip archive and add jobs back in
|
YAML
|
mit
|
lamestation/lamestation-sdk,lamestation/lamestation-sdk,konimaru/lamestation-sdk,konimaru/lamestation-sdk
|
861816c2c82e11ea3a4e8db8f990ac03238c5123
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: bionic
language: c
install:
- sudo apt-get install -y --force-yes gcc make cmake libglib2.0-dev
- sudo apt-get install -y --force-yes autoconf automake libtool xutils-dev
- sudo apt-get install -y --force-yes jq
env:
matrix:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
before_script:
- set -e
- mkdir /tmp/oio
- export CMAKE_OPTS='-DCMAKE_INSTALL_PREFIX=/tmp/ROOT'
- cmake ${CMAKE_OPTS} -DCMAKE_BUILD_TYPE=$BUILD_TYPE .
- make all
- make install
script:
- set -e
- export PATH="$PATH:/tmp/ROOT/bin" TMPDIR=/tmp
- ./tools/gridinit-genconf.sh 15
- gridinit -d -s gridinit /tmp/gridinit/gridinit.conf
- ./tools/cycle.sh
- pkill gridinit
|
sudo: required
dist: bionic
language: c
install:
- sudo apt-get install -y --force-yes gcc make cmake libglib2.0-dev
- sudo apt-get install -y --force-yes clang
- sudo apt-get install -y --force-yes autoconf automake libtool xutils-dev
- sudo apt-get install -y --force-yes jq
env:
matrix:
- BUILD_TYPE=Debug COMPILER=gcc
- BUILD_TYPE=Release COMPILER=gcc
- BUILD_TYPE=Debug COMPILER=clang
- BUILD_TYPE=Release COMPILER=clang
before_script:
- set -ex
- mkdir /tmp/oio
- export CMAKE_OPTS='-DCMAKE_INSTALL_PREFIX=/tmp/ROOT' CC=$COMPILER
- cmake ${CMAKE_OPTS} -DCMAKE_BUILD_TYPE=$BUILD_TYPE .
- make all
- make install
script:
- set -e
- export PATH="$PATH:/tmp/ROOT/bin" TMPDIR=/tmp
- ./tools/gridinit-genconf.sh 15
- gridinit -d -s gridinit /tmp/gridinit/gridinit.conf
- ./tools/cycle.sh
- pkill gridinit
|
Build with gcc and clang
|
ci: Build with gcc and clang
|
YAML
|
agpl-3.0
|
open-io/gridinit,open-io/gridinit,open-io/gridinit
|
f679c5357df3c53269d875d8fc72b5d5adc9eafc
|
.travis.yml
|
.travis.yml
|
osx_image: xcode8.2
language: objective-c
cache:
- bundler
- cocoapods
branches:
only:
- develop
- master
notifications:
email: false
before_install:
- gem install bundler
- bundle install
script:
- bundle exec fastlane bonjour
after_success:
- bundle exec fastlane deploy
|
osx_image: xcode8.2
language: objective-c
cache:
- bundler
- cocoapods
branches:
only:
- develop
- master
notifications:
email: false
before_install:
- gem install bundler
- bundle install
script:
- bundle exec fastlane tests
after_success:
- bundle exec fastlane deploy
|
Fix bug with Travis and Fastlane
|
Fix bug with Travis and Fastlane
|
YAML
|
bsd-3-clause
|
ESGIProjects/SwifTools,ESGIProjects/SwifTools
|
5415e9487a57bf3d34c73c611cd42d730660fbf8
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "8"
after_success: npm run coverage
|
language: node_js
node_js:
- "10"
after_success: npm run coverage
|
Increase build node version to 10
|
Increase build node version to 10
|
YAML
|
apache-2.0
|
Cheevr/Config
|
accb9aa7323ff1d9b1c0b00f08dca3d3d5773c7a
|
.travis.yml
|
.travis.yml
|
language: android
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- build-tools-25.0.2
- android-25
- extra-android-m2repository
- extra-google-m2repository
- sys-img-armeabi-v7a-android-16
env:
global:
ADB_INSTALL_TIMEOUT=6
before_install:
- script/accept_constraintlayout_license_workaround
before_script:
- script/run_emulator
script:
- ./gradlew build connectedCheck --info
after_success:
- script/upload_apk_crashlytics
- script/upload_coverage_codecov
- script/upload_coverage_coveralls
after_script:
- adb logcat -d
- cat app/build/reports/lint-results.xml
|
language: android
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- build-tools-25.0.2
- android-25
- extra-android-m2repository
- extra-google-m2repository
- sys-img-armeabi-v7a-android-16
env:
global:
ADB_INSTALL_TIMEOUT=6
before_install:
- script/accept_constraintlayout_license_workaround
before_script:
- script/run_emulator
after_success:
- script/upload_apk_crashlytics
- script/upload_coverage_codecov
- script/upload_coverage_coveralls
after_script:
- adb logcat -d
- cat app/build/reports/lint-results.xml
|
Revert "Display test results in real time on Travis."
|
Revert "Display test results in real time on Travis."
This reverts commit 3473566b845b0d5db91657132882ceb1a92a8c36.
|
YAML
|
apache-2.0
|
mg6maciej/fluffy-octo-rotary-phone,mg6maciej/fluffy-octo-rotary-phone,mg6maciej/fluffy-octo-rotary-phone
|
509841a867c2505adca37f3a6b964a29353830d2
|
spec/config_defaults.yml
|
spec/config_defaults.yml
|
broker:
url: http://10.244.3.58
username: admin
password: admin
cloud_foundry:
url: https://api.10.244.0.34.xip.io
username: admin
password: admin
|
broker:
url: http://10.244.3.58
username: admin
password: admin
cloud_foundry:
url: http://api.10.244.0.34.xip.io
username: admin
password: admin
|
Change CC URL to use HTTP instead of HTTPS to match tests
|
Change CC URL to use HTTP instead of HTTPS to match tests
Signed-off-by: Daniel Jones <[email protected]>
|
YAML
|
apache-2.0
|
pivotal-cf/broker-registrar,pivotal-cf/broker-registrar
|
6a83fb5cec47bb12db972544094dbd29caf14732
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
matrix:
include:
- python: 3.4.3
env: TOXENV=py34
- python: 2.7
env: TOXENV=py27
fast_finish: true
allow_failures:
- env:
- TOX_ENV=pypy
- TOX_ENV=build_docs
install:
- pip install --upgrade pip setuptools tox virtualenv coveralls
script:
- tox -v -v -e $TOX_ENV
after_success:
coveralls
after_failure:
- for X in .tox/$TOX_ENV/log/*; do echo "$X\n"; cat "$X"; echo "\n\n"; done
- echo "pip.log\n"; cat $HOME/.pip/pip.log
notifications:
irc: "chat.freenode.net#pipr"
|
sudo: false
language: python
matrix:
include:
- python: 3.4
env: TOX_ENV=py34
- python: 2.7
env: TOX_ENV=py27
fast_finish: true
allow_failures:
- env:
- TOX_ENV=pypy
- TOX_ENV=build_docs
install:
- pip install --upgrade pip setuptools tox virtualenv coveralls
script:
- tox -v -v -e $TOX_ENV
after_success:
coveralls
after_failure:
- for X in .tox/$TOX_ENV/log/*; do echo "$X\n"; cat "$X"; echo "\n\n"; done
- echo "pip.log\n"; cat $HOME/.pip/pip.log
notifications:
irc: "chat.freenode.net#pipr"
|
Fix typo in environment variable name
|
Fix typo in environment variable name
|
YAML
|
bsd-3-clause
|
yashbathia/pipr,yahoo/pipr
|
ddc9a893fc49e7fb8cef01efbd554a4a48ff3a8c
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 'node'
addons:
apt:
packages:
- curl
branches:
only:
- master
- gh-pages
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
- JEKYLL_ENV=production
before_install:
- rvm install 2.2.2
install:
- npm install
- gem install bundler
- bundle install
script:
- npm run build --production
- htmlproofer --assume-extension ./_site --internal-domains www.simonmoles.com,simie.github.io
sudo: false
cache:
bundler: true
directories:
- $TRAVIS_BUILD_DIR/tmp/.htmlproofer
deploy:
local_dir: "_site"
target_branch: "gh-pages"
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
on:
branch: master
|
language: node_js
node_js:
- 'node'
addons:
apt:
packages:
- curl
branches:
only:
- master
- gh-pages
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
- JEKYLL_ENV=production
before_install:
- rvm install 2.2.2
install:
- npm install
- gem install bundler
- bundle install
script:
- npm run build --production
- htmlproofer --assume-extension ./_site --internal-domains www.simonmoles.com,simie.github.io --url-swap "simonmoles.com\/":""
sudo: false
cache:
bundler: true
directories:
- $TRAVIS_BUILD_DIR/tmp/.htmlproofer
deploy:
local_dir: "_site"
target_branch: "gh-pages"
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
on:
branch: master
|
Fix htmlproofer (while on github pages)
|
Fix htmlproofer (while on github pages)
|
YAML
|
mit
|
Simie/simonmoles.com,Simie/simonmoles.com,Simie/simonmoles.com
|
5855d9a2a979e50b0b64e6f0e1bb38ea2c0d3d55
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.0.0
- 2.1
notifications:
email:
on_success: always
on_failure: always
|
language: ruby
rvm:
- 2.1
notifications:
email:
on_success: always
on_failure: always
|
Drop support for Ruby 2.0
|
Drop support for Ruby 2.0
I'm looking at you 1.8.6...
|
YAML
|
mit
|
infertux/ordinalize_full
|
dbc9b9f19f6f71c99f09de2ff714741d90dd5070
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
script: phpunit --coverage-text
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
script: phpunit --coverage-text
|
Add PHP 7.1 to Travis
|
Add PHP 7.1 to Travis
|
YAML
|
mit
|
geggleto/Slim,Alex2147483647/Slim
|
466be6546e20bb4bb2da2c3ee5c518e930af32c5
|
.travis.yml
|
.travis.yml
|
language: cpp
compiler:
- gcc
- clang
script: ./waf configure --prefix=jsonhandle; ./waf; ./waf install; tar czf jsonhandle-Linux-x64.tar.gz
jsonhandle
os:
- linux
- osx
deploy:
provider: releases
api_key:
secure: e3QvwVcTXnUyqvoJpaiGQ5HHxE6Yj5V8MVslyIoJaMU8cragcX/TQ2wjJYXJhQ9sW73qIGtX3lwKyovw4zRYR2+n201s9McGqjVd7LzirRQWYEkp/Aacjk83uYiY+aNjSIMNyTZOf4gdbpRM/zPUzCovf0FinX8v6niiceNUuZA=
skip_cleanup: true
file: jsonhandle-Linux-x64.tar.gz
on:
tags: true
all_branches: true
|
language: cpp
compiler:
- gcc
- clang
sudo: false
script: ./waf configure --prefix=jsonhandle; ./waf; ./waf install; tar czf jsonhandle-Linux-x64.tar.gz
jsonhandle
os:
- linux
- osx
deploy:
provider: releases
api_key:
secure: e3QvwVcTXnUyqvoJpaiGQ5HHxE6Yj5V8MVslyIoJaMU8cragcX/TQ2wjJYXJhQ9sW73qIGtX3lwKyovw4zRYR2+n201s9McGqjVd7LzirRQWYEkp/Aacjk83uYiY+aNjSIMNyTZOf4gdbpRM/zPUzCovf0FinX8v6niiceNUuZA=
skip_cleanup: true
file: jsonhandle-Linux-x64.tar.gz
on:
tags: true
all_branches: true
|
Use new Travis CI infrastructure.
|
Use new Travis CI infrastructure.
|
YAML
|
mit
|
DoomHammer/jsonhandle,sunsetbrew/jsonhandle,sunsetbrew/jsonhandle,DoomHammer/jsonhandle,sunsetbrew/jsonhandle,DoomHammer/jsonhandle
|
b3cdee4c7881162bdeaf433d1708dda965b53844
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: trusty
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=default-debian-7
- INSTANCE=default-debian-8
- INSTANCE=default-fedora-latest
# - INSTANCE=default-opensuse-leap
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
matrix:
include:
- script:
- /opt/chefdk/bin/chef exec delivery local all
env: UNIT_AND_LINT=1
|
sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=default-debian-7
- INSTANCE=default-debian-8
- INSTANCE=default-fedora-latest
# - INSTANCE=default-opensuse-leap
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
|
Simplify Travis config and fix ChefDK 2.0 failures
|
Simplify Travis config and fix ChefDK 2.0 failures
|
YAML
|
apache-2.0
|
chef-cookbooks/users,opscode-cookbooks/users,opscode-cookbooks/users,wegtam/users,chef-cookbooks/users,wegtam/users,nkadel-skyhook/nkadel-chef-users,nkadel-skyhook/nkadel-chef-users
|
53366f4a2c58de93cfb793634c3271a8da223952
|
.travis.yml
|
.travis.yml
|
sudo: required
language: node_js
os:
- linux
- osx
node_js:
- "5.9"
env:
- CXX=g++-4.8
addons:
artifacts:
paths:
- ./releases/
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script:
- npm run build
- npm run lint
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then npm run package-osx; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then npm run package-linux; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then zip -r ./releases/postgis-editor-darwin-x64.zip ./releases/postgis-editor-darwin-x64; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then zip -r ./releases/postgis-editor-linux-x64.zip ./releases/postgis-editor-linux-x64; fi
- rm -rf ./releases/postgis-editor-linux-x64
- rm -rf ./releases/postgis-editor-darwin-x64
|
sudo: required
matrix:
include:
- os: linux
env: CXX=g++-4.8
allow_failures:
- os: osx
language: node_js
os:
- linux
- osx
node_js:
- "5.9"
addons:
artifacts:
paths:
- ./releases/
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script:
- npm run build
- npm run lint
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then npm run package-osx; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then npm run package-linux; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then zip -r ./releases/postgis-editor-darwin-x64.zip ./releases/postgis-editor-darwin-x64; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then zip -r ./releases/postgis-editor-linux-x64.zip ./releases/postgis-editor-linux-x64; fi
- rm -rf ./releases/postgis-editor-linux-x64
- rm -rf ./releases/postgis-editor-darwin-x64
|
Use clang for OSX and gcc for Linux
|
Use clang for OSX and gcc for Linux
|
YAML
|
mit
|
lukasmartinelli/postgis-editor,lukasmartinelli/postgis-editor
|
8992c27388365d7241db0e8effc4ca8f88170757
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
python:
- "3.5.1" # for Heroku
- "3.4.3" # for production
script: py.test
addons:
postgresql: "9.4"
services:
- postgres
|
sudo: false
language: python
python: 3.5
script: py.test
addons:
postgresql: "9.4"
services:
- postgres
|
Revert "Run CI in Python 3.4 and 3.5"
|
Revert "Run CI in Python 3.4 and 3.5"
|
YAML
|
mpl-2.0
|
Osmose/normandy,Osmose/normandy,mozilla/normandy,Osmose/normandy,mozilla/normandy,mozilla/normandy,mozilla/normandy,Osmose/normandy
|
2c36dcce57979e7696bc9a4a8ee6174a18cf7535
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --dev --prefer-source
script: bin/phpspec run -fpretty --verbose
|
language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --no-interaction --prefer-source
script: bin/phpspec run -fpretty --verbose
|
Fix invalid deps and move AttributeFactory to component
|
Fix invalid deps and move AttributeFactory to component
|
YAML
|
mit
|
Sylius/Product
|
6c1248cf5688b7325b3a0e44b819331421909172
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.8
- 1.9
- "1.10"
- tip
|
language: go
go:
- 1.8
- 1.9
- "1.10"
- tip
addons:
postgresql: "10"
apt:
packages:
- postgresql-10
|
Declare PostgreSQL 10 dependencies explicitly
|
Declare PostgreSQL 10 dependencies explicitly
See travis-ci/travis-ci#9011
|
YAML
|
agpl-3.0
|
hockeypuck/pghkp
|
4802065a385c5e5063833bfce0fddbad562d928a
|
.travis.yml
|
.travis.yml
|
language: python
sudo: false
matrix:
include:
- python: 3.5
env:
- TOX_ENV=py35
fast_finish: true
env:
global:
- secure: "Zmj7rrKx4z3JyaKNJUzILhMSESf7tCPBt9ad67veaX+fwYlJzrHUq+iy+5RXSye/g3vpsfehpKs/F2bAQcmX1ysLDOvd8w+UvwQPRi/GXxvVn7CHD6C4rpiSJAJHbCk7FZwQlo8P6VE8qiqUMCJcXjnjl63egkvJlkl6+rbE00E="
matrix:
- TOX_ENV=py27
- TOX_ENV=pypy
- TOX_ENV=py27
- TOX_ENV=pypy
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pyflakes
- TOX_ENV=cov
- TOX_ENV=docs
- TOX_ENV=apidocs
- PUSH_DOCS=true
install:
- pip install tox
script:
- if [[ -n "${TOX_ENV}" ]]; then tox -e $TOX_ENV; fi
- if [[ "$PUSH_DOCS" == "true" ]]; then ./.travis/build_docs.sh; fi
notifications:
email: false
|
language: python
sudo: false
matrix:
include:
- python: 2.7
env: TOX_ENV=py27
- python: pypy
env: TOX_ENV=pypy
- python: 3.3
env: TOX_ENV=py33
- python: 3.4
env: TOX_ENV=py34
- python: 3.5
env: TOX_ENV=py35
- python: 2.7
env: TOX_ENV=pyflakes
- python: 2.7
env: TOX_ENV=cov
- python: 2.7
env: TOX_ENV=docs
- python: 2.7
env: TOX_ENV=apidocs
- python: 2.7
env: PUSH_DOCS=true
fast_finish: true
env:
global:
- secure: "Zmj7rrKx4z3JyaKNJUzILhMSESf7tCPBt9ad67veaX+fwYlJzrHUq+iy+5RXSye/g3vpsfehpKs/F2bAQcmX1ysLDOvd8w+UvwQPRi/GXxvVn7CHD6C4rpiSJAJHbCk7FZwQlo8P6VE8qiqUMCJcXjnjl63egkvJlkl6+rbE00E="
install:
- pip install tox
script:
- if [[ -n "${TOX_ENV}" ]]; then tox -e $TOX_ENV; fi
- if [[ "$PUSH_DOCS" == "true" ]]; then ./.travis/build_docs.sh; fi
notifications:
email: false
|
Switch to explicit build matrix and remove duplicate py27.
|
Switch to explicit build matrix and remove duplicate py27.
|
YAML
|
mit
|
twisted/constantly,twisted/constantly
|
5d9b08078432eecbe6e459ef54e14ea3dcf86955
|
.travis.yml
|
.travis.yml
|
language: clojure
jdk:
- oraclejdk8
install:
- wget -O boot https://github.com/boot-clj/boot/releases/download/2.4.0/boot.sh
- chmod 755 boot
- ./boot -V
script:
- ./boot produce
after_success:
- cd target
- git init
- git config user.name "Travis CI"
- git config user.email "[email protected]"
- git add .
- git commit -m "Deploy to GitHub Pages"
- git push --force --quiet "https://${GH_TOKEN}@${GH_REF}" > /dev/null 2>&1
env:
global:
- GH_REF: github.com/adolby/adolby.github.io.git
- secure: fb5H/gY3gBWSEUbsQQ0oivWZ4O+dSMtN/zXbRqznc3ySvUsTV/W7F96GqnNqgM8j56H+AEhcM59A6JfGGNlo1xKaPzG7TvKAt9gruLgEUfhZDxnu628NCBxJ9vj0T2Xsn/7PNOPlPyJVwnXnQKzmCMc3LM9zpiJjzVLkUqfRWHE=
|
language: clojure
jdk:
- oraclejdk8
install:
- wget -O boot https://github.com/boot-clj/boot/releases/download/2.4.0/boot.sh
- chmod 755 boot
- ./boot -V
script:
- ./boot produce
after_success:
- cd target
- git init
- git config user.name "Travis CI"
- git config user.email "[email protected]"
- echo "andrewdolby.com" > CNAME
- touch .
- git add -A .
- git commit -m "Deploy to GitHub Pages"
- git push --force --quiet "https://${GH_TOKEN}@${GH_REF}" > /dev/null 2>&1
env:
global:
- GH_REF: github.com/adolby/adolby.github.io.git
- secure: fb5H/gY3gBWSEUbsQQ0oivWZ4O+dSMtN/zXbRqznc3ySvUsTV/W7F96GqnNqgM8j56H+AEhcM59A6JfGGNlo1xKaPzG7TvKAt9gruLgEUfhZDxnu628NCBxJ9vj0T2Xsn/7PNOPlPyJVwnXnQKzmCMc3LM9zpiJjzVLkUqfRWHE=
|
Add CNAME file to GitHub pages
|
Add CNAME file to GitHub pages
|
YAML
|
mit
|
adolby/AndrewDolby.com,adolby/AndrewDolby.com
|
094ffa52c16aa5ac98c934b7904a577c4afa5454
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.4"
- "2.7"
addons:
postgresql: "9.3"
before_install:
- export PATH=/usr/lib/postgresql/9.3/bin:$PATH
- sudo locale-gen --no-archive fr_FR.UTF-8
- sudo mkdir -p /extra/pg/ts1 /extra/pg/ts2
- sudo chown postgres:postgres /extra/pg/ts1 /extra/pg/ts2
- sudo apt-get update -qq
- sudo apt-get install -qq postgresql-plperl-9.3 postgresql-plpython-9.3
before_script:
- psql -Upostgres -c "CREATE TABLESPACE ts1 LOCATION '/extra/pg/ts1'"
- psql -Upostgres -c "CREATE TABLESPACE ts2 LOCATION '/extra/pg/ts2'"
script:
- python setup.py test
|
language: python
python:
- "3.5"
- "2.7"
addons:
postgresql: "9.4"
before_install:
- export PATH=/usr/lib/postgresql/9.4/bin:$PATH
- sudo locale-gen --no-archive fr_FR.UTF-8
- sudo mkdir -p /extra/pg/ts1 /extra/pg/ts2
- sudo chown postgres:postgres /extra/pg/ts1 /extra/pg/ts2
- sudo apt-get update -qq
- sudo apt-get install -qq postgresql-plperl-9.4 postgresql-plpython-9.4
before_script:
- psql -Upostgres -c "CREATE TABLESPACE ts1 LOCATION '/extra/pg/ts1'"
- psql -Upostgres -c "CREATE TABLESPACE ts2 LOCATION '/extra/pg/ts2'"
script:
- python setup.py test
|
Upgrade Travis-CI builds to PG 9.4 and Python 3.5. (merge master)
|
Upgrade Travis-CI builds to PG 9.4 and Python 3.5. (merge master)
|
YAML
|
bsd-3-clause
|
perseas/Pyrseas,dvarrazzo/Pyrseas
|
fe8c50031d9cc115be6070362309bab6bc452ab5
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- jruby-18mode
- jruby-19mode
- jruby-head
- ruby-head
- rbx-2
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: rbx-2
gemfile: .travis.gemfile
before_install:
- gem install bundler
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- jruby-18mode
- jruby-19mode
- jruby-9.0.5.0
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
gemfile: .travis.gemfile
before_install:
- gem install bundler
|
Remove testing of rbx on Travis, add testing on JRuby 9.0.5.0
|
Remove testing of rbx on Travis, add testing on JRuby 9.0.5.0
rbx-2 has internal failures in sort_by, rbx-3 doesn't install
correctly.
|
YAML
|
mit
|
celsworth/roda,jeremyevans/roda,celsworth/roda,celsworth/roda,jeremyevans/roda,jeremyevans/roda
|
6f18572ee1cb88a57314ebb1fcd42de111dffc9c
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 4
- 5
before_script:
- npm install -g grunt-cli
|
language: node_js
node_js:
- 4
- 5
- 6
- 7
before_script:
- npm install -g grunt-cli
|
Support Node 6 and 7
|
Support Node 6 and 7
Fixes #17
|
YAML
|
apache-2.0
|
cettia/cettia-protocol
|
8a1967fb4191416d463186fe2ef075e8cbfa2e88
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- "2.0.0"
script: "bundle exec ruby ./spec_helper.rb"
|
language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- "2.0.0"
script: "bundle exec ruby ./spec_helper.rb"
before_install:
- "# This entry was added for connecting to the Acquia Cloud API\nmachine cloudapi.acquia.com\n login [email protected]\n password t0ps3cret" > ~/.netrc
|
Add in custom netrc file for builds
|
Add in custom netrc file for builds
|
YAML
|
mit
|
jacobbednarz/acquia-toolbelt,jacobbednarz/acquia-toolbelt
|
abab85ee45e6668974d23d5f7724e2163e5d1fc6
|
.travis.yml
|
.travis.yml
|
rvm:
- 1.8.7
- 1.9.2
- ree
#- jruby
|
rvm:
- 1.8.7
- 1.9.2
- ree
- rbx
- jruby
|
Enable JRuby and Rubinius on Travis.
|
Enable JRuby and Rubinius on Travis.
|
YAML
|
mit
|
netzpirat/guard-coffeescript,guard/guard-coffeescript
|
7c4811fb3436bf6005a6af96b0e1a80f19d5c5f9
|
.travis.yml
|
.travis.yml
|
script: 'ci/travis.rb'
before_install:
- gem install bundler
rvm:
- 1.9.3
- 2.0.0
env:
- "GEM=railties"
- "GEM=ap,am,amo,as,av"
- "GEM=ar:mysql"
- "GEM=ar:mysql2"
- "GEM=ar:sqlite3"
- "GEM=ar:postgresql"
notifications:
email: false
irc:
on_success: change
on_failure: always
channels:
- "irc.freenode.org#rails-contrib"
campfire:
on_success: change
on_failure: always
rooms:
- secure: "YA1alef1ESHWGFNVwvmVGCkMe4cUy4j+UcNvMUESraceiAfVyRMAovlQBGs6\n9kBRm7DHYBUXYC2ABQoJbQRLDr/1B5JPf/M8+Qd7BKu8tcDC03U01SMHFLpO\naOs/HLXcDxtnnpL07tGVsm0zhMc5N8tq4/L3SHxK7Vi+TacwQzI="
bundler_args: --path vendor/bundle --without test
|
script: 'ci/travis.rb'
before_install:
- travis_retry gem install bundler
rvm:
- 1.9.3
- 2.0.0
env:
- "GEM=railties"
- "GEM=ap,am,amo,as,av"
- "GEM=ar:mysql"
- "GEM=ar:mysql2"
- "GEM=ar:sqlite3"
- "GEM=ar:postgresql"
notifications:
email: false
irc:
on_success: change
on_failure: always
channels:
- "irc.freenode.org#rails-contrib"
campfire:
on_success: change
on_failure: always
rooms:
- secure: "YA1alef1ESHWGFNVwvmVGCkMe4cUy4j+UcNvMUESraceiAfVyRMAovlQBGs6\n9kBRm7DHYBUXYC2ABQoJbQRLDr/1B5JPf/M8+Qd7BKu8tcDC03U01SMHFLpO\naOs/HLXcDxtnnpL07tGVsm0zhMc5N8tq4/L3SHxK7Vi+TacwQzI="
bundler_args: --path vendor/bundle --without test
|
Add retry to `gem install bundler` for Travis
|
Add retry to `gem install bundler` for Travis
This adds the retry behaviour used for other commands to the bundler installation.
|
YAML
|
mit
|
iainbeeston/rails,repinel/rails,deraru/rails,Erol/rails,flanger001/rails,sergey-alekseev/rails,printercu/rails,gauravtiwari/rails,betesh/rails,tgxworld/rails,yahonda/rails,arunagw/rails,gavingmiller/rails,voray/rails,gauravtiwari/rails,starknx/rails,Erol/rails,deraru/rails,sealocal/rails,eileencodes/rails,kachick/rails,coreyward/rails,travisofthenorth/rails,yhirano55/rails,yawboakye/rails,fabianoleittes/rails,ledestin/rails,xlymian/rails,flanger001/rails,Vasfed/rails,MichaelSp/rails,tijwelch/rails,ngpestelos/rails,travisofthenorth/rails,alecspopa/rails,kenta-s/rails,rafaelfranca/omg-rails,aditya-kapoor/rails,mohitnatoo/rails,matrinox/rails,esparta/rails,bogdanvlviv/rails,illacceptanything/illacceptanything,deraru/rails,maicher/rails,bolek/rails,palkan/rails,coreyward/rails,gfvcastro/rails,notapatch/rails,Stellenticket/rails,MichaelSp/rails,illacceptanything/illacceptanything,Sen-Zhang/rails,aditya-kapoor/rails,yahonda/rails,tgxworld/rails,gfvcastro/rails,rossta/rails,vassilevsky/rails,Edouard-chin/rails,Spin42/rails,yawboakye/rails,felipecvo/rails,Vasfed/rails,mtsmfm/rails,kenta-s/rails,matrinox/rails,flanger001/rails,aditya-kapoor/rails,MSP-Greg/rails,illacceptanything/illacceptanything,schuetzm/rails,voray/rails,Edouard-chin/rails,notapatch/rails,arjes/rails,xlymian/rails,lcreid/rails,Envek/rails,felipecvo/rails,kaspth/rails,shioyama/rails,mohitnatoo/rails,baerjam/rails,palkan/rails,kamipo/rails,kmcphillips/rails,jeremy/rails,yhirano55/rails,fabianoleittes/rails,aditya-kapoor/rails,starknx/rails,riseshia/railsguides.kr,matrinox/rails,sealocal/rails,prathamesh-sonpatki/rails,stefanmb/rails,mechanicles/rails,mechanicles/rails,betesh/rails,illacceptanything/illacceptanything,baerjam/rails,kenta-s/rails,kaspth/rails,vassilevsky/rails,illacceptanything/illacceptanything,88rabbit/newRails,yahonda/rails,gavingmiller/rails,gauravtiwari/rails,MSP-Greg/rails,vipulnsward/rails,iainbeeston/rails,yahonda/rails,iainbeeston/rails,rbhitchcock/rails,kachick/rails,sealocal/rails,coreyward/rails,gcourtemanche/rails,jeremy/rails,ledestin/rails,esparta/rails,MSP-Greg/rails,alecspopa/rails,illacceptanything/illacceptanything,fabianoleittes/rails,utilum/rails,yasslab/railsguides.jp,printercu/rails,georgeclaghorn/rails,jeremy/rails,marklocklear/rails,mechanicles/rails,tjschuck/rails,travisofthenorth/rails,mathieujobin/reduced-rails-for-travis,untidy-hair/rails,odedniv/rails,illacceptanything/illacceptanything,Spin42/rails,hanystudy/rails,mtsmfm/railstest,mathieujobin/reduced-rails-for-travis,deraru/rails,baerjam/rails,elfassy/rails,arunagw/rails,mechanicles/rails,88rabbit/newRails,yasslab/railsguides.jp,Erol/rails,arjes/rails,rails/rails,pschambacher/rails,yalab/rails,mijoharas/rails,amoody2108/TechForJustice,yawboakye/rails,samphilipd/rails,BlakeWilliams/rails,lcreid/rails,hanystudy/rails,schuetzm/rails,ledestin/rails,eileencodes/rails,bolek/rails,assain/rails,assain/rails,hanystudy/rails,kddeisz/rails,Vasfed/rails,gcourtemanche/rails,utilum/rails,kmcphillips/rails,betesh/rails,vipulnsward/rails,mtsmfm/rails,lucasmazza/rails,MSP-Greg/rails,yhirano55/rails,arunagw/rails,stefanmb/rails,lcreid/rails,illacceptanything/illacceptanything,ngpestelos/rails,rails/rails,travisofthenorth/rails,joonyou/rails,lucasmazza/rails,marklocklear/rails,fabianoleittes/rails,starknx/rails,pschambacher/rails,maicher/rails,Sen-Zhang/rails,kmayer/rails,yhirano55/rails,sergey-alekseev/rails,tjschuck/rails,illacceptanything/illacceptanything,Envek/rails,rails/rails,kamipo/rails,kaspth/rails,pvalena/rails,richseviora/rails,kirs/rails-1,rossta/rails,yalab/rails,bradleypriest/rails,elfassy/rails,Sen-Zhang/rails,prathamesh-sonpatki/rails,kmcphillips/rails,yalab/rails,pvalena/rails,tjschuck/rails,EmmaB/rails-1,notapatch/rails,rafaelfranca/omg-rails,untidy-hair/rails,xlymian/rails,ttanimichi/rails,amoody2108/TechForJustice,illacceptanything/illacceptanything,elfassy/rails,shioyama/rails,BlakeWilliams/rails,koic/rails,georgeclaghorn/rails,kirs/rails-1,stefanmb/rails,utilum/rails,bolek/rails,mtsmfm/railstest,mtsmfm/rails,88rabbit/newRails,EmmaB/rails-1,shioyama/rails,Edouard-chin/rails,rossta/rails,tijwelch/rails,kmayer/rails,lcreid/rails,georgeclaghorn/rails,Stellenticket/rails,vipulnsward/rails,untidy-hair/rails,mathieujobin/reduced-rails-for-travis,printercu/rails,utilum/rails,gfvcastro/rails,BlakeWilliams/rails,arjes/rails,rafaelfranca/omg-rails,brchristian/rails,gavingmiller/rails,illacceptanything/illacceptanything,bradleypriest/rails,yasslab/railsguides.jp,kirs/rails-1,kachick/rails,joonyou/rails,bogdanvlviv/rails,brchristian/rails,kamipo/rails,samphilipd/rails,assain/rails,brchristian/rails,yasslab/railsguides.jp,prathamesh-sonpatki/rails,rails/rails,palkan/rails,esparta/rails,illacceptanything/illacceptanything,georgeclaghorn/rails,schuetzm/rails,assain/rails,Erol/rails,kddeisz/rails,repinel/rails,mijoharas/rails,rbhitchcock/rails,richseviora/rails,riseshia/railsguides.kr,yalab/rails,repinel/rails,ttanimichi/rails,arunagw/rails,yawboakye/rails,voray/rails,betesh/rails,koic/rails,richseviora/rails,kddeisz/rails,Envek/rails,vassilevsky/rails,rbhitchcock/rails,notapatch/rails,tjschuck/rails,kddeisz/rails,pvalena/rails,gcourtemanche/rails,vipulnsward/rails,schuetzm/rails,pschambacher/rails,illacceptanything/illacceptanything,mohitnatoo/rails,joonyou/rails,tgxworld/rails,printercu/rails,palkan/rails,EmmaB/rails-1,Stellenticket/rails,ngpestelos/rails,riseshia/railsguides.kr,iainbeeston/rails,marklocklear/rails,mtsmfm/railstest,bogdanvlviv/rails,maicher/rails,sergey-alekseev/rails,repinel/rails,flanger001/rails,Vasfed/rails,riseshia/railsguides.kr,mijoharas/rails,MichaelSp/rails,tgxworld/rails,lucasmazza/rails,Stellenticket/rails,eileencodes/rails,eileencodes/rails,untidy-hair/rails,shioyama/rails,ttanimichi/rails,bradleypriest/rails,odedniv/rails,odedniv/rails,prathamesh-sonpatki/rails,kmcphillips/rails,gfvcastro/rails,esparta/rails,Envek/rails,Spin42/rails,koic/rails,kmayer/rails,illacceptanything/illacceptanything,felipecvo/rails,samphilipd/rails,jeremy/rails,amoody2108/TechForJustice,illacceptanything/illacceptanything,BlakeWilliams/rails,alecspopa/rails,joonyou/rails,pvalena/rails,tijwelch/rails,baerjam/rails,Edouard-chin/rails,bogdanvlviv/rails,mohitnatoo/rails
|
51af5687e57b0c347aa391f3a2729149cdb978a4
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js: "node"
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
|
sudo: required
language: node_js
node_js: "node"
before_install:
- sudo apt-get install python-software-properties
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -y
- sudo apt-get install gcc-4.9 g++-4.9 -y
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 20
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 20
- sudo update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-4.9 20
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
|
Use a gcc version that can build bcrypt
|
Use a gcc version that can build bcrypt
|
YAML
|
mit
|
feathersjs/feathers-client,jonlambert/feathers-client,jonlambert/feathers-client,feathersjs/feathers-client
|
1b860d27a7fae512f389edade6c9a8d5f8b7b19f
|
.travis.yml
|
.travis.yml
|
language: rust
rust:
- stable
- beta
- nightly
install:
- git clone https://github.com/sass/sass-spec.git
- cd sass-spec
- bundle install
- cd ..
script: cargo build --verbose
|
language: rust
rust:
- beta
- nightly
install:
- git clone https://github.com/sass/sass-spec.git
- cd sass-spec
- bundle install
- cd ..
script: cargo build --verbose && cargo test && cd sass-spec && ./sass-spec.rb -c '../target/debug/sassers'
|
Build and test everything, but just beta and nightly
|
Build and test everything, but just beta and nightly
imports are failing on 1.3.0????? o.O
|
YAML
|
mit
|
carols10cents/sassers
|
8b66c6f6a670ae15059301a1cab2baffb66d6f95
|
.travis.yml
|
.travis.yml
|
language: c
sudo: required
dist: trusty
compiler:
- clang
- gcc
script:
- mkdir -p build/doc
- cd build
- cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTS=ON -DBUILD_CLIENT=ON -DBUILD_SERVER=ON ..
- make
- ctest -V
- make doc
- cat doxylog && [ ! -s doxylog ]
env:
- CFLAGS="-O3"
- CFLAGS="-O2"
-
addons:
apt:
packages:
- cmake
- protobuf-c-compiler
- libprotobuf-c0-dev
- libssh-4
- libssh-dev
- doxygen
|
language: c
sudo: required
dist: trusty
compiler:
- clang
- gcc
before_install:
- pip install --user cpp-coveralls
script:
- mkdir -p build/doc
- cd build
- cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTS=ON -DBUILD_CLIENT=ON -DBUILD_SERVER=ON -DCOVERAGE=On ..
- make
- ctest -V
- make doc
- cat doxylog && [ ! -s doxylog ]
after_success:
- coveralls --exclude tests --gcov-options '\-lp'
env:
- CFLAGS="-O3"
- CFLAGS="-O2"
-
addons:
apt:
packages:
- cmake
- protobuf-c-compiler
- libprotobuf-c0-dev
- libssh-4
- libssh-dev
- doxygen
|
Send coverage data to coveralls
|
Send coverage data to coveralls
|
YAML
|
mit
|
worr/wsh,elentar/wsh,elentar/wsh,worr/wsh,worr/wsh,elentar/wsh
|
627f50d471fe119de6a827f987aa22d4f05f2289
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
- "3.5"
install:
- pip install -r requirements.txt
script: coverage run --source=whereismybus230 --omit whereismybus230/test_main.py whereismybus230/test_main.py
after_success:
- coveralls
|
language: python
python:
- "3.4"
- "3.5"
install:
- pip install -r requirements.txt
script: coverage run --source=whereismybus230 --omit whereismybus230/test_main.py whereismybus230/test_main.py
after_success:
- coveralls
|
Drop support for Python 2
|
Drop support for Python 2
|
YAML
|
mit
|
paraita/whereismybus230
|
268efd613f91469519ecff7bd032d3a707c52ea3
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
sudo: false
install:
- bundle install
before_script:
- psql -c 'create database scoped_search_test;' -U postgres
- mysql -e 'create database scoped_search_test;'
script:
- bundle exec rake
rvm:
- "1.9"
- "2.0"
- "2.1"
- "2.2.2"
- "2.3.0"
- ruby-head
- jruby-19mode
- jruby-head
gemfile:
- Gemfile.activerecord32
- Gemfile.activerecord40
- Gemfile.activerecord41
- Gemfile.activerecord42
- Gemfile.activerecord50
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-19mode
exclude:
- rvm: "1.9"
gemfile: Gemfile.activerecord50
- rvm: "2.0"
gemfile: Gemfile.activerecord50
- rvm: "2.1"
gemfile: Gemfile.activerecord50
|
language: ruby
cache: bundler
sudo: false
install:
- bundle install
before_script:
- psql -c 'create database scoped_search_test;' -U postgres
- mysql -e 'create database scoped_search_test;'
script:
- bundle exec rake
rvm:
- "1.9"
- "2.0"
- "2.1"
- "2.2.2"
- "2.3.1"
- ruby-head
- jruby-19mode
- jruby-head
gemfile:
- Gemfile.activerecord32
- Gemfile.activerecord40
- Gemfile.activerecord41
- Gemfile.activerecord42
- Gemfile.activerecord50
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-19mode
exclude:
- rvm: "1.9"
gemfile: Gemfile.activerecord50
- rvm: "2.0"
gemfile: Gemfile.activerecord50
- rvm: "2.1"
gemfile: Gemfile.activerecord50
- rvm: "2.3.1"
gemfile: Gemfile.activerecord32
|
Exclude activerecord 3.2 from running of ruby 2.3.1
|
Exclude activerecord 3.2 from running of ruby 2.3.1
|
YAML
|
mit
|
wvanbergen/scoped_search,wvanbergen/scoped_search
|
1ad97f7004164150ca6349337f549274857bb4b8
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "6.*"
- "4.*"
services:
- mysql
before_script:
- mysql -e 'create database momy;'
after_success:
- bash <(curl -s https://codecov.io/bash)
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
|
language: node_js
node_js:
- "6.*"
- "4.*"
services:
- mysql
before_script:
- mysql -e 'create database momy;'
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Revert "Adds gcc to Travis manually"
|
Revert "Adds gcc to Travis manually"
This reverts commit 47b577941b9c0870a680601fbcba5f8d305f46e9.
|
YAML
|
mit
|
cognitom/momy,cognitom/momy
|
b76525cfd8d8a793e2698b9fddab91d2ad708354
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "7.7.3"
|
language: node_js
node_js:
- "7.7.3"
addons:
code_climate:
repo_token: 34d7a7423409180c47b106b12a4db36271a9dbb743913aa2f4b2894d4c0bf967
|
Add Code Climate to Travis CI.
|
Add Code Climate to Travis CI.
|
YAML
|
mit
|
nerdnoir/beatlab,nerdnoir/beatlab
|
09042f8eef43abbfbab89daef2cdb8e96b24252f
|
.travis.yml
|
.travis.yml
|
language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: 7.0
fast_finish: true
include:
- php: 7.1
env:
- COVERALLS=1
before_script:
- composer self-update
- rm composer.lock
- composer install --prefer-dist --no-interaction
- sh -c "if [ '$COVERALLS' = '1' ]; then composer require --dev php-coveralls/php-coveralls:"^2.1.0"; fi"
- sh -c "if [ '$COVERALLS' = '1' ]; then mkdir -p build/logs; fi"
script:
- phpunit
- sh -c "if [ '$COVERALLS' = '1' ]; then phpunit --stderr --coverage-clover build/logs/clover.xml; fi"
- sh -c "if [ '$COVERALLS' = '1' ]; then php vendor/bin/coveralls -c .coveralls.yml -v; fi"
notifications:
email: false
|
language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
fast_finish: true
include:
- php: 7.1
env:
- COVERALLS=1
before_script:
- composer self-update
- rm composer.lock
- composer install --prefer-dist --no-interaction
- sh -c "if [ '$COVERALLS' = '1' ]; then composer require --dev php-coveralls/php-coveralls:"^2.1.0"; fi"
- sh -c "if [ '$COVERALLS' = '1' ]; then mkdir -p build/logs; fi"
script:
- phpunit
- sh -c "if [ '$COVERALLS' = '1' ]; then phpunit --stderr --coverage-clover build/logs/clover.xml; fi"
- sh -c "if [ '$COVERALLS' = '1' ]; then php vendor/bin/coveralls -c .coveralls.yml -v; fi"
notifications:
email: false
|
Allow failures when building with PHP nightly
|
Allow failures when building with PHP nightly
|
YAML
|
mit
|
burzum/cakephp-file-storage
|
b52725d9297a1930091cf9d5cecbfd32a1ea6f22
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: false
node_js:
- "stable"
script:
- npm run ci
|
language: node_js
sudo: false
node_js:
- "stable"
- "4.2"
script:
- npm run ci
|
Add Node 4.2 in Travis.yml
|
Add Node 4.2 in Travis.yml
|
YAML
|
mit
|
Pearson-Higher-Ed/compounds
|
0c382c3dac058b553870f4f5a67201f34ab735a3
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
Test with Node.js 0.12 on Travis CI.
|
Test with Node.js 0.12 on Travis CI.
|
YAML
|
mit
|
bigeasy/packet,bigeasy/packet
|
6bb67f19f2a972f2cd583306b004d3719448cffc
|
.travis.yml
|
.travis.yml
|
language:
ruby
cache:
bundler
rvm:
- '2.1'
- '2.2'
- '2.3.0'
- '2.4.0'
- '2.5.0'
script:
- bundle exec rubocop
- bundle exec rspec
- rake install
- colorls
- colorls -1
- colorls -a
- colorls -A
- colorls -d
- colorls -f
- colorls -l
- colorls -l spec/fixtures/symlinks
- ( cd spec/fixtures ; colorls .hidden-file ) | fgrep '.hidden-file'
- colorls -l README.md
- colorls -r
- colorls --sd
- colorls --sf
- colorls --hyperlink
- colorls -t
- colorls --sort=time
- colorls -U
- colorls --sort=none
- colorls -S
- colorls --sort=size
- colorls -h
- colorls --gs
- colorls spec/fixtures/symlinks
- colorls README.md
- colorls *
- colorls | grep /
- colorls --color
- colorls --color=auto
- colorls --color=never
- colorls --color=always
|
language:
ruby
cache:
bundler
rvm:
- '2.1'
- '2.2'
- '2.3.0'
- '2.4.0'
- '2.5.0'
script:
- bundle exec rubocop
- bundle exec rspec
- bundle exec rake install
- bundle binstubs colorls
- PATH=$PWD/bin:$PATH
- colorls
- colorls -1
- colorls -a
- colorls -A
- colorls -d
- colorls -f
- colorls -l
- colorls -l spec/fixtures/symlinks
- ( cd spec/fixtures ; colorls .hidden-file ) | fgrep '.hidden-file'
- colorls -l README.md
- colorls -r
- colorls --sd
- colorls --sf
- colorls --hyperlink
- colorls -t
- colorls --sort=time
- colorls -U
- colorls --sort=none
- colorls -S
- colorls --sort=size
- colorls -h
- colorls --gs
- colorls spec/fixtures/symlinks
- colorls README.md
- colorls *
- colorls | grep /
- colorls --color
- colorls --color=auto
- colorls --color=never
- colorls --color=always
|
Fix build failure on `rake install`
|
Fix build failure on `rake install`
```
$ rake install
rake aborted!
Gem::LoadError: You have already activated rake 12.3.0, but your Gemfile requires rake 12.3.1. Prepending `bundle exec` to your command may solve this.d
```
* use `bundle exec rake install` instead as suggested
* generate binstubs with bundler and prepend `bin/` to `PATH`
|
YAML
|
mit
|
athityakumar/colorls,athityakumar/colorls
|
9966568cc777770726b8dc6d32865d5d30b009ae
|
.travis.yml
|
.travis.yml
|
language: d
d:
# order: latest DMD, oldest DMD, LDC/GDC, remaining DMD versions
# this way the overall test time gets cut down (GDC/LDC are a lot
# slower tham DMD, so they should be started early), while still
# catching most DMD version related build failures early
- dmd-2.070.0
- dmd-2.067.1
- ldc-0.17.0
- ldc-0.16.1
- dmd-2.069.2
- dmd-2.068.2
env:
- VIBED_DRIVER=libevent BUILD_EXAMPLE=1 RUN_TEST=1
- VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
matrix:
exclude:
- d: ldc-0.16.1
env: VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
- d: ldc-0.17.0
env: VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
script: ./travis-ci.sh
services:
- mongodb
- redis-server
sudo: false
|
language: d
d:
# order: latest DMD, oldest DMD, LDC/GDC, remaining DMD versions
# this way the overall test time gets cut down (GDC/LDC are a lot
# slower tham DMD, so they should be started early), while still
# catching most DMD version related build failures early
- dmd-2.071.0
- dmd-2.067.1
- ldc-0.17.0
- ldc-0.16.1
- dmd-2.070.0
- dmd-2.069.2
- dmd-2.068.2
env:
- VIBED_DRIVER=libevent BUILD_EXAMPLE=1 RUN_TEST=1
- VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
matrix:
exclude:
- d: dmd-2.067.1
env: VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
- d: ldc-0.16.1
env: VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
- d: ldc-0.17.0
env: VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
script: ./travis-ci.sh
services:
- mongodb
- redis-server
sudo: false
|
Test on 2.071.0 and skip testing libasync on 2.067.1.
|
Test on 2.071.0 and skip testing libasync on 2.067.1.
|
YAML
|
mit
|
chalucha/vibe.d,DBankov/vibe.d,Mihail-K/vibe.d,etcimon/vibe.d,schuetzm/vibe.d,rejectedsoftware/vibe.d,gedaiu/vibe.d,AndreyMZ/vibe.d,Geod24/vibe.d,etcimon/vibe.d
|
9a9361727784d233fb60b1b8865c99530523b2ff
|
.travis.yml
|
.travis.yml
|
language: node_js
branches:
except:
- gh-pages
node_js:
- 4
- 5
- 6
- 7
before_script:
- npm run tsc
script:
- npm run cover
after_success:
- npm run cover:up
notifications:
email: false
|
language: node_js
branches:
except:
- gh-pages
node_js:
- 4
- 6
- 7
before_script:
- npm run tsc
script:
- npm run cover
after_success:
- npm run cover:up
notifications:
email: false
|
Drop support for node v5; fix
|
Drop support for node v5; fix
|
YAML
|
mit
|
json-schema-faker/json-schema-faker,pateketrueke/json-schema-faker,rlugojr/json-schema-faker,rlugojr/json-schema-faker,json-schema-faker/json-schema-faker,rlugojr/json-schema-faker
|
098b6b25b7a3661bf83336791a275bb9b192dde0
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
# command to install dependencies
install: pip install -r requirements.txt
# command to prepare for tests
before_script:
- export DATABASE_URL='sqlite:///local.db'
- python models.py
# command to run tests
script: python -m unittest discover tests
|
language: python
python:
- "2.7"
sudo: false
# command to install dependencies
install: pip install -r requirements.txt
# command to prepare for tests
before_script:
- export DATABASE_URL='sqlite:///local.db'
- python models.py
# command to run tests
script: python -m unittest discover tests
|
Upgrade to Travis CI containers
|
Upgrade to Travis CI containers
http://docs.travis-ci.com/user/migrating-from-legacy/?utm_source=legacy-notice&utm_medium=banner&utm_campaign=legacy-upgrade
|
YAML
|
mit
|
esegal/anyway,esegal/anyway,hasadna/anyway,boazin/anyway,yosinv/anyway,OmerSchechter/anyway,hasadna/anyway,yosinv/anyway,HamutalCohen3/anyway,HamutalCohen3/anyway,hasadna/anyway,OmerSchechter/anyway,hasadna/anyway,omerxx/anyway,boazin/anyway,boazin/anyway,HamutalCohen3/anyway,omerxx/anyway,esegal/anyway,yosinv/anyway,OmerSchechter/anyway,omerxx/anyway
|
0cf3861ae0d54610a62b5ca93187ee8c13cb65d3
|
.travis.yml
|
.travis.yml
|
language: rust
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
rust:
- stable
- beta
- nightly
- 1.13.0
before_script:
- |
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH
script:
- |
travis-cargo build &&
travis-cargo test &&
travis-cargo --only nightly bench
after_success:
# the first command below appears to be broken and does not upload code coverage to coveralls
# for the time being so we need to use the latter command
# see https://github.com/huonw/travis-cargo/issues/58 for more details
- travis-cargo coveralls --no-sudo --verify
- ./kcov/build/src/kcov --verify --coveralls-id=$TRAVIS_JOB_ID --exclude-pattern=/.cargo target/kcov target/debug/gimli-*
env:
global:
# override the default `--features unstable` used for the nightly branch (optional)
- TRAVIS_CARGO_NIGHTLY_FEATURE=nightly
|
language: rust
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
rust:
- stable
- beta
- nightly
- 1.13.0
before_script:
- |
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH
script:
- |
travis-cargo build &&
travis-cargo test &&
travis-cargo --only nightly bench
after_success:
# the first command below appears to be broken and does not upload code coverage to coveralls
# for the time being so we need to use the latter command
# see https://github.com/huonw/travis-cargo/issues/58 for more details
- travis-cargo coveralls --no-sudo --verify
- ./kcov/build/src/kcov --verify --coveralls-id=$TRAVIS_JOB_ID --exclude-pattern=/.cargo target/kcov target/debug/circbuf-*
env:
global:
# override the default `--features unstable` used for the nightly branch (optional)
- TRAVIS_CARGO_NIGHTLY_FEATURE=nightly
|
Fix typo in kcov command
|
Fix typo in kcov command
|
YAML
|
mit
|
jeromefroe/circbuf-rs
|
5faede27b6a165cb241bd03ec9080805b5f9c5a0
|
.travis.yml
|
.travis.yml
|
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
language: scala
scala:
- "2.11"
env:
global:
- COURSIER_NO_TERM=1
- TOREE_RESOLUTION_VERBOSITY=0
- TEST_DILATION=3
jdk:
- oraclejdk8
services:
- docker
script:
- make all-travis
before_cache:
- make clean-travis
sudo: required
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
- $HOME/.coursier/cache/v1
#branches:
# only:
# - master
|
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
dist: trusty
language: scala
scala:
- "2.11"
env:
global:
- COURSIER_NO_TERM=1
- TOREE_RESOLUTION_VERBOSITY=0
- TEST_DILATION=3
jdk:
- oraclejdk8
services:
- docker
script:
- make all-travis
before_cache:
- make clean-travis
sudo: required
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
- $HOME/.coursier/cache/v1
#branches:
# only:
# - master
|
Fix Oracle JDK8 in Travis CI
|
[TOREE-505] Fix Oracle JDK8 in Travis CI
Install of Oracle JDK 8 Failing in Travis CI and as a result,
build is failing for new pull requests.
We just need to add `dist: trusty` in the .travis.yml file
as mentioned in the issue below:
https://travis-ci.community/t/install-of-oracle-jdk-8-failing/3038
|
YAML
|
apache-2.0
|
lresende/incubator-toree,lresende/incubator-toree,apache/incubator-toree,lresende/incubator-toree,apache/incubator-toree,apache/incubator-toree,lresende/incubator-toree
|
561c0ed9945f74777f1f10933af155e01c80010d
|
.travis.yml
|
.travis.yml
|
language: cpp
compiler:
- gcc
- clang
before_script:
- sudo apt-get -qq update
- sudo apt-get -qq install octave
script: make && make check
|
language: cpp
compiler:
- gcc
- clang
before_script:
- sudo apt-get -qq update
- sudo apt-get -qq install octave
script: make && make check && make stress
|
Add stress test to CI
|
Add stress test to CI
|
YAML
|
mpl-2.0
|
RhysU/ar,RhysU/ar
|
dac860d356c854fecfb168b2cafdd57d509d396d
|
.travis.yml
|
.travis.yml
|
# https://docs.travis-ci.com/user/customizing-the-build/
language: node_js
# Be aware of https://github.com/nodejs/LTS when choosing versions to test
# Update engines.node in package.json if removing old versions.
node_js:
- node
- 0.12
# If the package has OS-dependent features, uncomment this.
#os:
# - linux
# - osx
# Note: semantic-release caches node_modules and `npm prune` in before_script
# https://github.com/semantic-release/semantic-release/blob/v6.2.0/.travis.yml#L3
# Since cache is stored in S3 and npm repository is a caching proxy, why bother?
sudo: false
script:
- npm run test-cov
# Note: Both codecov and coveralls detect branch/PR info from Travis CI
# https://github.com/codecov/codecov-node/blob/v1.0.1/lib/services/travis.js
# https://github.com/nickmerwin/node-coveralls/blob/2.11.5/lib/getOptions.js#L18
after_success:
- npm run upload-cov
|
# https://docs.travis-ci.com/user/customizing-the-build/
language: node_js
# Be aware of https://github.com/nodejs/LTS when choosing versions to test
# Update engines.node in package.json if removing old versions.
node_js:
- node
- 7 # Test on 7 until nock supports 8
- 0.12
# If the package has OS-dependent features, uncomment this.
#os:
# - linux
# - osx
# Note: semantic-release caches node_modules and `npm prune` in before_script
# https://github.com/semantic-release/semantic-release/blob/v6.2.0/.travis.yml#L3
# Since cache is stored in S3 and npm repository is a caching proxy, why bother?
sudo: false
script:
- npm run test-cov
# Note: Both codecov and coveralls detect branch/PR info from Travis CI
# https://github.com/codecov/codecov-node/blob/v1.0.1/lib/services/travis.js
# https://github.com/nickmerwin/node-coveralls/blob/2.11.5/lib/getOptions.js#L18
after_success:
- npm run upload-cov
|
Test with Node 7 on Travis CI
|
Test with Node 7 on Travis CI
To catch errors on newish Node versions, add 7 to the test matrix until
8 covers everything.
Signed-off-by: Kevin Locke <[email protected]>
|
YAML
|
mit
|
kevinoid/swagger-spec-validator,kevinoid/swagger-spec-validator,kevinoid/swagger-spec-validator
|
fdbe89a4c22f6065ff1f12c3a1acedb6a490a340
|
.kitchen.docker.yml
|
.kitchen.docker.yml
|
settings:
parallel: true
driver:
name: docker
# privileged is required otherwise the container doesn't boot right
privileged: true
platforms:
- name: centos-6
driver:
image: centos:6
platform: rhel
run_command: /sbin/init
provision_command:
- /usr/bin/yum install -y initscripts net-tools wget
- name: centos-7
driver:
image: centos:7
platform: rhel
run_command: /usr/lib/systemd/systemd
provision_command:
- /bin/yum install -y initscripts net-tools wget
- name: ubuntu-12.04
driver:
image: ubuntu-upstart:12.04
platform: ubuntu
disable_upstart: false
run_command: /sbin/init
provision_command:
- /usr/bin/apt-get update
- /usr/bin/apt-get install apt-transport-https net-tools -y
- name: ubuntu-14.04
driver:
image: ubuntu-upstart:14.04
platform: ubuntu
disable_upstart: false
run_command: /sbin/init
provision_command:
- /usr/bin/apt-get update
- /usr/bin/apt-get install apt-transport-https net-tools -y
suites:
- name: default
run_list: openssh::default
|
settings:
parallel: true
driver:
name: docker
# privileged is required otherwise the container doesn't boot right
privileged: true
verifier:
name: inspec
platforms:
- name: centos-6
driver:
image: centos:6
platform: rhel
run_command: /sbin/init
provision_command:
- /usr/bin/yum install -y initscripts net-tools wget
- name: centos-7
driver:
image: centos:7
platform: rhel
run_command: /usr/lib/systemd/systemd
provision_command:
- /bin/yum install -y initscripts net-tools wget
- name: ubuntu-12.04
driver:
image: ubuntu-upstart:12.04
platform: ubuntu
disable_upstart: false
run_command: /sbin/init
provision_command:
- /usr/bin/apt-get update
- /usr/bin/apt-get install apt-transport-https net-tools -y
- name: ubuntu-14.04
driver:
image: ubuntu-upstart:14.04
platform: ubuntu
disable_upstart: false
run_command: /sbin/init
provision_command:
- /usr/bin/apt-get update
- /usr/bin/apt-get install apt-transport-https net-tools -y
suites:
- name: default
run_list: openssh::default
|
Set the verifier to inspec
|
Set the verifier to inspec
|
YAML
|
apache-2.0
|
chef-cookbooks/openssh,opscode-cookbooks/openssh,juliandunn/openssh,opscode-cookbooks/openssh,juliandunn/openssh,juliandunn/openssh,chef-cookbooks/openssh
|
f3a4d1383f63065ac578476eba2ac1eb3e1483e3
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.4.4
before_install:
- curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - && sudo apt-get install -y nodejs
before_script:
- cd lib/assets && npm install && npm run bundle -- -p && cd -
- cp config/database_example.yml config/database.yml
- cp config/secrets_example.yml config/secrets.yml
- cp config/branding_example.yml config/branding.yml
- cp config/initializers/devise.rb.example config/initializers/devise.rb
- cp config/initializers/recaptcha.rb.example config/initializers/recaptcha.rb
- cp config/initializers/wicked_pdf.rb.example config/initializers/wicked_pdf.rb
- bundle exec rake db:drop RAILS_ENV=test
- bundle exec rake db:create RAILS_ENV=test
- bundle exec rake db:schema:load RAILS_ENV=test
- bundle exec rake db:migrate RAILS_ENV=test
script:
- bundle exec rspec spec
|
language: ruby
addons:
chrome: beta
rvm:
- 2.4.4
before_install:
- curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - && sudo apt-get install -y nodejs
before_script:
- cd lib/assets && npm install && npm run bundle -- -p && cd -
- cp config/database_example.yml config/database.yml
- cp config/secrets_example.yml config/secrets.yml
- cp config/branding_example.yml config/branding.yml
- cp config/initializers/devise.rb.example config/initializers/devise.rb
- cp config/initializers/recaptcha.rb.example config/initializers/recaptcha.rb
- cp config/initializers/wicked_pdf.rb.example config/initializers/wicked_pdf.rb
- bundle exec rake db:drop RAILS_ENV=test
- bundle exec rake db:create RAILS_ENV=test
- bundle exec rake db:schema:load RAILS_ENV=test
- bundle exec rake db:migrate RAILS_ENV=test
script:
- bundle exec rspec spec
|
Add Google chrome to Travis CI config
|
Add Google chrome to Travis CI config
|
YAML
|
mit
|
CDLUC3/dmptool,DigitalCurationCentre/roadmap,CDLUC3/dmptool,DMPRoadmap/roadmap,DigitalCurationCentre/roadmap,CDLUC3/roadmap,CDLUC3/roadmap,CDLUC3/roadmap,CDLUC3/roadmap,DMPRoadmap/roadmap,CDLUC3/dmptool,CDLUC3/dmptool,DigitalCurationCentre/roadmap,DMPRoadmap/roadmap
|
f6b56d6092baf8e1de26b8ab7fc4c5b4a19ad29f
|
.travis.yml
|
.travis.yml
|
sudo: required
language: java
services:
- docker
before_install:
- openssl aes-256-cbc -K $encrypted_062685903f37_key -iv $encrypted_062685903f37_iv -in whitesource-docker-agent.config.enc -out whitesource-docker-agent.config -d
- wget https://s3.amazonaws.com/docker-agent/whitesource-docker-agent-1.0.2.jar
- DOCKER_OPTS="-H tcp://127.0.0.1:2375 -H unix:///var/run/docker.sock"
- docker -H tcp://127.0.0.1:2375 version
- docker build -t rigoford/gitlab-ce .
- docker run --detach --name gitlab-ce rigoford/gitlab-ce
before_script:
- sleep 30
script:
- java -jar whitesource-docker-agent-1.0.2.jar
after_script:
- docker stop gitlab-ce
- docker rm gitlab-ce
|
sudo: required
language: java
services:
- docker
before_install:
- openssl aes-256-cbc -K $encrypted_062685903f37_key -iv $encrypted_062685903f37_iv -in whitesource-docker-agent.config.enc -out whitesource-docker-agent.config -d
- wget https://s3.amazonaws.com/docker-agent/whitesource-docker-agent-1.0.2.jar
- DOCKER_OPTS="-H tcp://127.0.0.1:2375 -H unix:///var/run/docker.sock"
- docker -H tcp://127.0.0.1:2375 version
- docker build -t rigoford/gitlab-ce .
- docker run --detach --name gitlab-ce rigoford/gitlab-ce
before_script:
- sleep 30
script:
# - java -jar whitesource-docker-agent-1.0.2.jar
after_script:
- docker stop gitlab-ce
- docker rm gitlab-ce
|
Disable out the WhiteSource analysis
|
Disable out the WhiteSource analysis
|
YAML
|
mit
|
rigoford/gitlab-ce
|
1eb797841e4b40a9fd8ffe24c80c8fb2cfc7619b
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
rvm:
- 2.4.5
- 2.5.3
- 2.6.0
before_install:
- if [ ! -e "$HOME/.cargo/bin" ]; then curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y; fi
- export PATH="$HOME/.cargo/bin:$PATH"
- rustup default stable
- rustc --version
install:
- bundle install --path vendor/bundle
- bundle exec rake helix:copy_dll build
after_success:
- ruby ./bin/ci-publish $TRAVIS_TAG
matrix:
include:
- os: linux
rvm: 2.3.8
env:
- GEM_PUBLISH=true
- os: linux
rvm: 2.3.8
env:
- NATIVE_BUNDLE=true
- GEM_PUBLISH=true
- os: osx
osx_image: xcode9.2
rvm: 2.3.8
env:
- NATIVE_BUNDLE=true
- GEM_PUBLISH=true
- os: osx
osx_image: xcode10.1
rvm: 2.3.8
env:
- NATIVE_BUNDLE=true
- GEM_PUBLISH=true
|
sudo: false
language: ruby
rvm:
- 2.4.5
- 2.5.5
- 2.6.2
before_install:
- if [ ! -e "$HOME/.cargo/bin" ]; then curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y; fi
- export PATH="$HOME/.cargo/bin:$PATH"
- rustup default stable
- rustc --version
install:
- bundle install --path vendor/bundle
- bundle exec rake helix:copy_dll build
after_success:
- ruby ./bin/ci-publish $TRAVIS_TAG
matrix:
include:
- os: linux
rvm: 2.3.8
env:
- GEM_PUBLISH=true
- os: linux
rvm: 2.3.8
env:
- NATIVE_BUNDLE=true
- GEM_PUBLISH=true
- os: osx
osx_image: xcode9.2
rvm: 2.3.8
env:
- NATIVE_BUNDLE=true
- GEM_PUBLISH=true
- os: osx
osx_image: xcode10.1
rvm: 2.3.8
env:
- NATIVE_BUNDLE=true
- GEM_PUBLISH=true
|
Update Travis CI Ruby versions
|
Update Travis CI Ruby versions
|
YAML
|
mit
|
lautis/rscsv,lautis/rscsv,lautis/rscsv
|
926f3314d602d25705c4992b08b57a7d648feebc
|
.travis.yml
|
.travis.yml
|
language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
sudo: false
cache: bundler
rvm:
- 2.0
- 2.1
- 2.2.4
- 2.3.0
- jruby-9.0.4.0
- rbx-2
matrix:
allow_failures:
- rvm: jruby-9.0.4.0
- rvm: rbx-2
|
language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
sudo: false
cache: bundler
rvm:
- 2.2.4
- 2.3.0
- jruby-9.0.4.0
- rbx-2
matrix:
allow_failures:
- rvm: jruby-9.0.4.0
- rvm: rbx-2
|
Remove testing for Ruby 2.0 and 2.1 since they are EOL
|
Remove testing for Ruby 2.0 and 2.1 since they are EOL
|
YAML
|
mit
|
ld4l/works_rdf
|
6220e9f829819e40b7a29bbe5ed4f998237736ab
|
.travis.yml
|
.travis.yml
|
# Configuration file for building this project with Travis CI
language: python
python:
- "2.7"
install: pip install -r REQUIREMENTS --use-mirrors
script: python manage.py test --settings=settings.travis
postgres:
adapter: postgresql
database: atlas_test
username: postgres
before_install:
- "sudo apt-get install binutils gdal-bin libproj-dev postgis"
- "sudo apt-get install libfreetype6-dev zlib1g-dev libjpeg8-dev"
- "sudo bash ./scripts/create_template_postgis-debian.sh"
before_script:
- "createdb -T template_postgis atlas_test -U postgres"
branches:
only:
- develop
|
# Configuration file for building this project with Travis CI
language: python
python:
- "2.7"
install: pip install -r REQUIREMENTS --use-mirrors
script: python manage.py test --settings=settings.travis
postgres:
adapter: postgresql
database: atlas_test
username: postgres
before_install:
- "sudo apt-get install binutils gdal-bin libproj-dev postgis"
- "sudo apt-get install libfreetype6-dev zlib1g-dev libjpeg8-dev"
- "sudo bash ./scripts/create_template_postgis-debian.sh"
before_script:
- "createdb -T template_postgis atlas_test -U postgres"
branches:
only:
- master
- develop
|
Add master to branches that get built with Travis.
|
Add master to branches that get built with Travis.
|
YAML
|
mit
|
denverfoundation/storybase,denverfoundation/storybase,denverfoundation/storybase,denverfoundation/storybase
|
bef1439f0b7967c032d1bfbb5a443704e558cf6b
|
.travis.yml
|
.travis.yml
|
language: java
install: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
matrix:
fast_finish: true
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/endpoint/c6cc872b193cbad86273/529f9078ed5ab0b3bf04ef9a/
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
script:
- mvn cobertura:cobertura -Dsurefire.useFile=false
after_build:
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi
|
language: java
install: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
matrix:
fast_finish: true
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/endpoint/c6cc872b193cbad86273/529f9078ed5ab0b3bf04ef9a/
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
script:
- mvn cobertura:cobertura -Dsurefire.useFile=false
after_script:
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi
|
Fix after script for Travis CI
|
Fix after script for Travis CI
|
YAML
|
bsd-3-clause
|
koraktor/mavanagaiata
|
a468d4bc92d70a651acd1b9623e46d036de3297d
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- jruby-19mode
- 2.1
|
language: ruby
rvm:
- 1.9.3
- jruby-19mode
- 2.1
jdk:
- openjdk7
- openjdk6
|
Check to see if jruby failures are jdk-dependent
|
Check to see if jruby failures are jdk-dependent
|
YAML
|
mit
|
billdueber/line_iterator
|
599fce81cf3356ef48dcf7e44c3552106705ad9b
|
.travis.yml
|
.travis.yml
|
dist: xenial
sudo: false
cache:
directories:
- $HOME/.cache/pip
language: python
matrix:
include:
- python: "2.7"
env: TOXENV=py2
- python: "3.5"
env: TOXENV=py3
- python: "3.6"
env: TOXENV=py3
- python: "3.7"
env: TOXENV=py3
# Meta
- python: "3.7"
env: TOXENV=flake8
- python: "3.7"
env: TOXENV=manifest
- python: "3.7"
env: TOXENV=docs
- python: "3.7"
env: TOXENV=readme
install:
- pip install tox
script:
- tox
before_install:
- pip install codecov
after_success:
- tox -e coverage-report
- codecov
|
dist: xenial
sudo: false
cache:
directories:
- $HOME/.cache/pip
language: python
matrix:
include:
- python: "2.7"
env: TOXENV=py2
- python: "3.5"
env: TOXENV=py3
- python: "3.6"
env: TOXENV=py3
- python: "3.7"
env: TOXENV=py3
- python: "3.8"
env: TOXENV=py3
# Meta
- python: "3.8"
env: TOXENV=flake8
- python: "3.8"
env: TOXENV=manifest
- python: "3.8"
env: TOXENV=docs
- python: "3.8"
env: TOXENV=readme
install:
- pip install tox
script:
- tox
before_install:
- pip install codecov
after_success:
- tox -e coverage-report
- codecov
|
Add Python 3.8 to test matrix.
|
Add Python 3.8 to test matrix.
|
YAML
|
isc
|
nfcpy/ndeftool
|
eaaaa0044968a3e675165c6d72305165cfd19d6e
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
- '0.12'
- '0.10'
|
sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
- '0.12'
|
Remove test for Node.js 0.10
|
Remove test for Node.js 0.10
|
YAML
|
mit
|
mrmlnc/posthtml-attrs-sorter
|
4e55aedecbb85f01844ebf3803f07f7a01cff118
|
.travis.yml
|
.travis.yml
|
language: php
sudo: false
php:
- 7.1
- 7.2
env:
global:
- coverage=no
matrix:
- setup=basic
- setup=lowest
- setup=stable
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
- if [[ $setup = 'coveralls' ]]; then travis_retry composer require "php-coveralls/php-coveralls=^2.1" --prefer-dist --no-interaction --dev; fi
script:
- if [[ $coverage = 'yes' ]]; then vendor/bin/phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml; fi
- if [[ $coverage = 'no' ]]; then vendor/bin/phpunit -c phpunit.xml --testdox --verbose; fi
after_script:
- if [[ $setup = 'coveralls' ]]; then php vendor/bin/php-coveralls -v; fi
matrix:
include:
- php: 7.1
env: setup=coveralls coverage=yes
allow_failures:
- env: setup=coveralls coverage=yes
fast_finish: true
|
language: php
sudo: false
php:
- 7.1
- 7.2
- 7.3
- nightly
env:
global:
- coverage=no
matrix:
- setup=basic
- setup=lowest
- setup=stable
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
- if [[ $setup = 'coveralls' ]]; then travis_retry composer require "php-coveralls/php-coveralls=^2.1" --prefer-dist --no-interaction --dev; fi
script:
- if [[ $coverage = 'yes' ]]; then vendor/bin/phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml; fi
- if [[ $coverage = 'no' ]]; then vendor/bin/phpunit -c phpunit.xml --testdox --verbose; fi
after_script:
- if [[ $setup = 'coveralls' ]]; then php vendor/bin/php-coveralls -v; fi
matrix:
include:
- php: 7.1
env: setup=coveralls coverage=yes
allow_failures:
- env: setup=coveralls coverage=yes
fast_finish: true
|
Test againsts php 7.3 and nightly
|
Test againsts php 7.3 and nightly
Signed-off-by: Mior Muhammad Zaki <[email protected]>
|
YAML
|
mit
|
orchestral/installer,orchestral/installer
|
2115c9c39a48ae26174b982e477dd17d8c6d84a7
|
.travis.yml
|
.travis.yml
|
language: scala
scala:
- 2.11.4
jdk:
- openjdk7
install:
- npm install
script:
- activator "test-only *Spec"
- grunt test
notifications:
recipients:
- [email protected]
email:
on_success: change
on_failure: always
template:
- "%{repository}/%{branch} (%{commit} - %{author}): %{message}"
|
language: scala
scala:
- 2.11.4
jdk:
- openjdk7
env:
- ACTIVATOR_VERSION=1.2.12
install:
- wget http://downloads.typesafe.com/typesafe-activator/${ACTIVATOR_VERSION}/typesafe-activator-${ACTIVATOR_VERSION}-minimal.zip
- unzip -q typesafe-activator-${ACTIVATOR_VERSION}-minimal.zip
- npm install
script:
- typesafe-activator-${ACTIVATOR_VERSION}-minimal/activator "test-only *Spec"
- grunt test
notifications:
recipients:
- [email protected]
email:
on_success: change
on_failure: always
template:
- "%{repository}/%{branch} (%{commit} - %{author}): %{message}"
|
Add Play in Travis configuration
|
Add Play in Travis configuration
|
YAML
|
agpl-3.0
|
MatthieuNICOLAS/webPLM,BuggleInc/webPLM,BenjaminThirion/webPLM,BuggleInc/webPLM,BaptisteMounier/webPLM,MatthieuNICOLAS/webPLM,polux/webPLM,BuggleInc/webPLM,BenjaminThirion/webPLM,BuggleInc/webPLM,BuggleInc/webPLM,BaptisteMounier/webPLM,polux/webPLM,BenjaminThirion/webPLM,BenjaminThirion/webPLM,MatthieuNICOLAS/webPLM,BaptisteMounier/webPLM,polux/webPLM,polux/webPLM,MatthieuNICOLAS/webPLM,polux/webPLM
|
6e8c930ef69a6e255ed95204e6a0d8d1c346d214
|
.travis.yml
|
.travis.yml
|
language: node_js
install: npm install && npm run build
jobs:
include:
- stage: tests
name: "Unit - Node 8"
script: npm run test
node_js: "8"
- script: npm run test
name: "Unit - Node 10"
node_js: "10"
- script: npm run test
name: "Unit - Node 11"
node_js: "11.0.0"
- script: npm run lint
name: "Linting"
node_js: "10"
- script: npm run coverage
name: "Coverage"
node_js: "10"
notifications:
webhooks:
urls:
- "https://scalar.vector.im/api/neb/services/hooks/dHJhdmlzLWNpLyU0MEhhbGYtU2hvdCUzQWhhbGYtc2hvdC51ay8lMjFxUE5PblVzTnNaclRvRlpxeEIlM0FoYWxmLXNob3QudWs"
on_success: change # always|never|change
on_failure: always
on_start: never
|
language: node_js
install: npm install && npm run build
jobs:
- script: npm run test
name: "Unit - Node 10"
node_js: "10"
- script: npm run test
name: "Unit - Node 12"
node_js: "12"
- script: npm run lint
name: "Linting"
node_js: "12"
- script: npm run coverage
name: "Coverage"
node_js: "12"
notifications:
webhooks:
urls:
- "https://scalar.vector.im/api/neb/services/hooks/dHJhdmlzLWNpLyU0MEhhbGYtU2hvdCUzQWhhbGYtc2hvdC51ay8lMjFxUE5PblVzTnNaclRvRlpxeEIlM0FoYWxmLXNob3QudWs"
on_success: change # always|never|change
on_failure: always
on_start: never
|
Test against 10 and 12
|
Test against 10 and 12
|
YAML
|
apache-2.0
|
Half-Shot/matrix-appservice-discord
|
0ebe3115e4699a4b0aa65695a98d9dd7a68d1dee
|
.travis.yml
|
.travis.yml
|
language : node_js
node_js :
- "0.10"
before_install:
- "npm install -g grunt-cli"
|
language : node_js
node_js :
- "5"
before_install:
- "npm install -g grunt-cli"
|
Use Node 5.x and npm 3.x for TravisCI builds.
|
Use Node 5.x and npm 3.x for TravisCI builds.
|
YAML
|
mit
|
stefcameron/yllr
|
8d7c9ff10a64d66d743afd1da5f57354ddd88da5
|
.travis.yml
|
.travis.yml
|
language: php
php:
- hhvm
- 7.0
- 5.6
- 5.5
- 5.4
- 5.3
matrix:
include:
- php: 5.6
env: dependencies=lowest
- php: 7
env: dependencies=lowest
- php: 5.6
env: dependencies=highest
- php: 7
env: dependencies=highest
install:
- if [ -z "$dependencies" ]; then travis_retry composer install --prefer-dist; fi;
- if [ "$dependencies" = "lowest" ]; then travis_retry composer update --prefer-dist --prefer-lowest -n; fi;
- if [ "$dependencies" = "highest" ]; then travis_retry composer update --prefer-dist -n; fi;
before_script:
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" && "$TRAVIS_PHP_VERSION" != "7.0" ]]; then echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;
script:
- phpunit --coverage-clover=coverage.clover
after_script:
- if [[ "$TRAVIS_PHP_VERSION" = "5.6" ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi;
- if [[ "$TRAVIS_PHP_VERSION" = "5.6" ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi;
cache:
directories:
- $HOME/.composer
|
language: php
php:
- hhvm
- 5.5
- 5.4
- 5.3
matrix:
include:
- php: 5.6
env: dependencies=lowest
- php: 7
env: dependencies=lowest
- php: 5.6
env: dependencies=highest
- php: 7
env: dependencies=highest
install:
- if [ -z "$dependencies" ]; then travis_retry composer install --prefer-dist; fi;
- if [ "$dependencies" = "lowest" ]; then travis_retry composer update --prefer-dist --prefer-lowest -n; fi;
- if [ "$dependencies" = "highest" ]; then travis_retry composer update --prefer-dist -n; fi;
before_script:
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" && "$TRAVIS_PHP_VERSION" != "7.0" ]]; then echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;
script:
- phpunit --coverage-clover=coverage.clover
after_script:
- if [[ "$TRAVIS_PHP_VERSION" = "5.6" ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi;
- if [[ "$TRAVIS_PHP_VERSION" = "5.6" ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi;
cache:
directories:
- $HOME/.composer
|
Remove duplicate instances from the build matrix
|
Remove duplicate instances from the build matrix
|
YAML
|
mit
|
kgilden/pager
|
888d8454e540c4b3eddd5ce5c0d3d46aeb1e33e1
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.5"
# command to install dependencies
install:
./configure
make
# command to run tests
script:
make test
addons:
apt:
packages:
- nginx
|
language: python
python:
- "2.7"
- "3.5"
# command to install dependencies
before_install: ./configure
install: make
# command to run tests
script:
make test
addons:
apt:
packages:
- nginx
|
Fix split of ./configure and make.
|
Travis: Fix split of ./configure and make.
|
YAML
|
mit
|
tchalvak/fractalish,tchalvak/fractalish,tchalvak/tinker-engine,tchalvak/fractalish,tchalvak/tinker-engine
|
f0e119fc22172c9279d8242c31c7a5d2940e4c2e
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
env:
- DB=sqlite
- DB=mysql
- DB=postgres
before_script:
- mysql -e 'create database sentry;'
- psql -c 'create database sentry;' -U postgres
install:
- pip install mysql-python
- pip install psycopg2
- make develop
script:
- make test
notifications:
irc:
channels: "irc.freenode.org#sentry"
on_success: change
on_failure: change
|
language: python
python:
- "2.6"
- "2.7"
env:
- DB=sqlite
- DB=mysql
- DB=postgres
before_script:
- mysql -e 'create database sentry;'
- psql -c 'create database sentry;' -U postgres
install:
- make develop dev-postgres dev-mysql
script:
- make test
notifications:
irc:
channels: "irc.freenode.org#sentry"
on_success: change
on_failure: change
|
Use standardized make commands for mysql and postgres
|
Use standardized make commands for mysql and postgres
|
YAML
|
bsd-3-clause
|
jean/sentry,ifduyue/sentry,1tush/sentry,JamesMura/sentry,wujuguang/sentry,kevinlondon/sentry,wong2/sentry,hongliang5623/sentry,boneyao/sentry,looker/sentry,zenefits/sentry,camilonova/sentry,JamesMura/sentry,JamesMura/sentry,NickPresta/sentry,BayanGroup/sentry,looker/sentry,imankulov/sentry,mvaled/sentry,llonchj/sentry,JackDanger/sentry,Kryz/sentry,beni55/sentry,gg7/sentry,gencer/sentry,ifduyue/sentry,felixbuenemann/sentry,fotinakis/sentry,mvaled/sentry,zenefits/sentry,Natim/sentry,mvaled/sentry,korealerts1/sentry,pauloschilling/sentry,SilentCircle/sentry,vperron/sentry,llonchj/sentry,TedaLIEz/sentry,zenefits/sentry,JackDanger/sentry,zenefits/sentry,Kryz/sentry,vperron/sentry,drcapulet/sentry,rdio/sentry,jean/sentry,imankulov/sentry,gencer/sentry,nicholasserra/sentry,ngonzalvez/sentry,ifduyue/sentry,BuildingLink/sentry,nicholasserra/sentry,beeftornado/sentry,looker/sentry,NickPresta/sentry,argonemyth/sentry,kevinlondon/sentry,wong2/sentry,daevaorn/sentry,fotinakis/sentry,kevinastone/sentry,argonemyth/sentry,mvaled/sentry,beeftornado/sentry,fotinakis/sentry,jokey2k/sentry,imankulov/sentry,BuildingLink/sentry,kevinastone/sentry,fuziontech/sentry,boneyao/sentry,JamesMura/sentry,looker/sentry,hongliang5623/sentry,drcapulet/sentry,alexm92/sentry,gencer/sentry,camilonova/sentry,gg7/sentry,fuziontech/sentry,NickPresta/sentry,zenefits/sentry,Natim/sentry,fotinakis/sentry,NickPresta/sentry,JackDanger/sentry,ewdurbin/sentry,daevaorn/sentry,BuildingLink/sentry,JTCunning/sentry,TedaLIEz/sentry,kevinastone/sentry,wujuguang/sentry,pauloschilling/sentry,gencer/sentry,alexm92/sentry,songyi199111/sentry,ifduyue/sentry,BayanGroup/sentry,kevinlondon/sentry,ifduyue/sentry,beni55/sentry,rdio/sentry,ngonzalvez/sentry,alexm92/sentry,jokey2k/sentry,argonemyth/sentry,1tush/sentry,ngonzalvez/sentry,gg7/sentry,jean/sentry,beni55/sentry,ewdurbin/sentry,Natim/sentry,SilentCircle/sentry,camilonova/sentry,mvaled/sentry,looker/sentry,BayanGroup/sentry,rdio/sentry,hongliang5623/sentry,SilentCircle/sentry,songyi199111/sentry,mitsuhiko/sentry,JTCunning/sentry,BuildingLink/sentry,ewdurbin/sentry,daevaorn/sentry,Kryz/sentry,jean/sentry,fuziontech/sentry,drcapulet/sentry,vperron/sentry,nicholasserra/sentry,boneyao/sentry,BuildingLink/sentry,mitsuhiko/sentry,felixbuenemann/sentry,gencer/sentry,korealerts1/sentry,mvaled/sentry,songyi199111/sentry,JamesMura/sentry,wong2/sentry,felixbuenemann/sentry,1tush/sentry,llonchj/sentry,korealerts1/sentry,pauloschilling/sentry,wujuguang/sentry,rdio/sentry,TedaLIEz/sentry,daevaorn/sentry,jokey2k/sentry,JTCunning/sentry,beeftornado/sentry,SilentCircle/sentry,jean/sentry
|
b09130589a4db62e12eab5bfe80d3b2cb4d86369
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "node"
- "lts/*"
cache:
yarn: true
directories:
- "node_modules"
script:
- npm run build
|
language: node_js
node_js:
- "lts/*"
- "node"
cache:
yarn: true
directories:
- "node_modules"
before_install:
- yarn global add greenkeeper-lockfile@1
before_script:
- greenkeeper-lockfile-update
after_script:
- greenkeeper-lockfile-upload
script:
- npm run build
|
Add yarn lockfile support for greenkeeper
|
Add yarn lockfile support for greenkeeper
|
YAML
|
mit
|
paulsmirnov/proto-deep
|
f758df0c4fe79c3b5fe86c03bb50fcd46b615393
|
.travis.yml
|
.travis.yml
|
branches:
only:
- master
language: ruby
matrix:
allow_failures:
- rvm: ruby-head
install:
- gem install bundler
# Disable support for sudo to get faster builds with Docker
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.3.0
- jruby
- ruby-head
|
branches:
only:
- master
language: ruby
matrix:
allow_failures:
- rvm: ruby-head
before_install:
- gem install bundler
# Disable support for sudo to get faster builds with Docker
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.3.0
- jruby
- ruby-head
|
Install bundler as `before_install` hook on Travis.
|
Install bundler as `before_install` hook on Travis.
By overriding the `install` hook, Travis won't run `bundle install`.
Either we could add that or just run before the install step.
|
YAML
|
mit
|
deadmanssnitch/snitcher
|
05865e92855d3002317f7f283701b0280426940f
|
.travis.yml
|
.travis.yml
|
sudo: required
arch:
packages:
- qt5-declarative
- qt5-quickcontrols2
- qt5-graphicaleffects
- qt5-svg
- cmake
- extra-cmake-modules
- xorg-server-xvfb
- git
script:
- scripts/fetch_icons.sh
- cmake . -DKDE_INSTALL_USE_QT_SYS_PATHS=ON -DCMAKE_INSTALL_PREFIX=/usr
- make
- sudo make install
- xvfb-run -a -s "-screen 0 800x600x24" make check
script:
- "curl -s https://raw.githubusercontent.com/mikkeloscar/arch-travis/master/arch-travis.sh | bash"
notifications:
email: false
slack: qmlos:fdUqVmPzqPskEL1UBhqapZ0w
|
language: c
compiler:
- clang
- gcc
sudo: required
arch:
packages:
- qt5-declarative
- qt5-quickcontrols2
- qt5-graphicaleffects
- qt5-svg
- cmake
- extra-cmake-modules
- xorg-server-xvfb
- git
- clang
- clazy-git
script:
- scripts/fetch_icons.sh
- if [ "$CC" = "gcc" ]; then cmake . -DKDE_INSTALL_USE_QT_SYS_PATHS=ON -DCMAKE_INSTALL_PREFIX=/usr; fi
- if [ "$CC" = "clang" ]; then env CLAZY_CHECKS="level1" cmake . -DCMAKE_CXX_COMPILER=clazy -DKDE_INSTALL_USE_QT_SYS_PATHS=ON -DCMAKE_INSTALL_PREFIX=/usr; fi
- make
- sudo make install
- xvfb-run -a -s "-screen 0 800x600x24" make check
script:
- "curl -s https://raw.githubusercontent.com/mikkeloscar/arch-travis/master/arch-travis.sh | bash"
notifications:
email: false
slack: qmlos:fdUqVmPzqPskEL1UBhqapZ0w
|
Enable clang and clazy for CI
|
Enable clang and clazy for CI
|
YAML
|
mpl-2.0
|
oKcerG/fluid,territorium/fluid,territorium/fluid,oKcerG/fluid
|
ca01ea773bf9fab43584bb574f8b777883ef7e4c
|
.travis.yml
|
.travis.yml
|
language: scala
env:
- PLAY_VERSION=2.2.2
scala:
- "2.10.3"
jdk:
- oraclejdk7
- openjdk7
- openjdk6
services: mongodb
before_script:
- wget http://downloads.typesafe.com/play/${PLAY_VERSION}/play-${PLAY_VERSION}.zip
- unzip -q play-${PLAY_VERSION}.zip
script:
- sbt test
- cd servers/admin
- ../../play-${PLAY_VERSION}/play test
- cd ../api
- ../../play-${PLAY_VERSION}/play test
- cd ../scheduler
- ../../play-${PLAY_VERSION}/play test
|
language: scala
env:
- PLAY_VERSION=2.2.2
scala:
- "2.10.3"
jdk:
- oraclejdk7
- openjdk7
- openjdk6
services: mongodb
before_script:
- wget http://downloads.typesafe.com/play/${PLAY_VERSION}/play-${PLAY_VERSION}.zip
- unzip -q play-${PLAY_VERSION}.zip
script:
- sbt test
- sbt commons/publish
- sbt output/publish
- cd servers/admin
- ../../play-${PLAY_VERSION}/play test
- cd ../api
- ../../play-${PLAY_VERSION}/play test
- cd ../scheduler
- ../../play-${PLAY_VERSION}/play test
|
Add missing sbt publish commands
|
Add missing sbt publish commands
|
YAML
|
apache-2.0
|
alex9311/PredictionIO,initChan/PredictionIO,shimamoto/incubator-predictionio,TheDataShed/PredictionIO,druzbikova/PredictionIO,nvoron23/PredictionIO,atyenoria/PredictionIO,akaash-nigam/PredictionIO,EmergentOrder/PredictionIO,mars/incubator-predictionio,sekaiamber/PredictionIO,cristiancrc/PredictionIO,BuildAPE/PredictionIO,codingang/PredictionIO,ionux/PredictionIO,wangmiao1981/PredictionIO,indranig/PredictionIO,Ribeiro/PredictionIO,takeshineshiro/PredictionIO,stephen-corgiat/PredictionIO,zafarella/PredictionIO,Ribeiro/PredictionIO,EmergentOrder/PredictionIO,BojianLi/PredictionIO,prmdsharma/PredictionIO,ch33hau/PredictionIO,wenaz/PredictionIO,takeshineshiro/PredictionIO,biddyweb/PredictionIO,biddyweb/PredictionIO,doron123/PredictionIO,elkingtonmcb/PredictionIO,shimamoto/incubator-predictionio,BojianLi/PredictionIO,initChan/PredictionIO,EmergentOrder/PredictionIO,djeraseit/PredictionIO,ydanilenko/PredictionIO,BojianLi/PredictionIO,beni55/PredictionIO,ydanilenko/PredictionIO,arudenko/PredictionIO,codingang/PredictionIO,michaelshing/PredictionIO,ch33hau/PredictionIO,dszeto/incubator-predictionio,schon/PredictionIO,wenaz/PredictionIO,Ribeiro/PredictionIO,Emaasit/PredictionIO,tuxdna/PredictionIO,rsganesh83/PredictionIO,jingyidata/PredictionIO,takezoe/incubator-predictionio,skmezanul/PredictionIO,Emaasit/PredictionIO,djeraseit/PredictionIO,doron123/PredictionIO,takezoe/incubator-predictionio,thiagoveras/PredictionIO,rsganesh83/PredictionIO,wenaz/PredictionIO,sevenihust/PredictionIO,ionux/PredictionIO,marevol/incubator-predictionio,dszeto/incubator-predictionio,druzbikova/PredictionIO,stephen-corgiat/PredictionIO,jlegendary/PredictionIO,takezoe/incubator-predictionio,mars/incubator-predictionio,TheDataShed/PredictionIO,schon/PredictionIO,alex9311/PredictionIO,sevenihust/PredictionIO,net-shell/PredictionIO,jingyidata/PredictionIO,himanshudhami/PredictionIO,akaash-nigam/PredictionIO,marevol/incubator-predictionio,adamharish/PredictionIO,elkingtonmcb/PredictionIO,nvoron23/PredictionIO,ydanilenko/PredictionIO,shimamoto/incubator-predictionio,dszeto/incubator-predictionio,clemp6r/PredictionIO,PredictionIO/PredictionIO,biddyweb/PredictionIO,ydanilenko/PredictionIO,pferrel/PredictionIO,rsganesh83/PredictionIO,alex9311/PredictionIO,clemp6r/PredictionIO,ch33hau/PredictionIO,djeraseit/PredictionIO,himanshudhami/PredictionIO,rbo7nik/PredictionIO,dszeto/incubator-predictionio,marevol/incubator-predictionio,indranig/PredictionIO,atyenoria/PredictionIO,BuildAPE/PredictionIO,sekaiamber/PredictionIO,sekaiamber/PredictionIO,mars/incubator-predictionio,net-shell/PredictionIO,mars/incubator-predictionio,Emaasit/PredictionIO,atyenoria/PredictionIO,tuxdna/PredictionIO,michaelshing/PredictionIO,skmezanul/PredictionIO,tuxdna/PredictionIO,himanshudhami/PredictionIO,pferrel/PredictionIO,BojianLi/PredictionIO,atyenoria/PredictionIO,beni55/PredictionIO,codingang/PredictionIO,ydanilenko/PredictionIO,akaash-nigam/PredictionIO,michaelshing/PredictionIO,zafarella/PredictionIO,sevenihust/PredictionIO,arudenko/PredictionIO,himanshudhami/PredictionIO,net-shell/PredictionIO,PredictionIO/PredictionIO,net-shell/PredictionIO,adamharish/PredictionIO,wangmiao1981/PredictionIO,marevol/incubator-predictionio,doron123/PredictionIO,hsavit1/PredictionIO,b-cuts/PredictionIO,thiagoveras/PredictionIO,pferrel/PredictionIO,initChan/PredictionIO,Ribeiro/PredictionIO,net-shell/PredictionIO,thiagoveras/PredictionIO,indranig/PredictionIO,TheDataShed/PredictionIO,skmezanul/PredictionIO,akaash-nigam/PredictionIO,prmdsharma/PredictionIO,rbo7nik/PredictionIO,jlegendary/PredictionIO,schon/PredictionIO,jlegendary/PredictionIO,cristiancrc/PredictionIO,jlegendary/PredictionIO,tastatur/PredictionIO,nvoron23/PredictionIO,takezoe/incubator-predictionio,jasonchaffee/PredictionIO,BuildAPE/PredictionIO,doron123/PredictionIO,b-cuts/PredictionIO,indranig/PredictionIO,clemp6r/PredictionIO,akaash-nigam/PredictionIO,tastatur/PredictionIO,elkingtonmcb/PredictionIO,codingang/PredictionIO,b-cuts/PredictionIO,prmdsharma/PredictionIO,stephen-corgiat/PredictionIO,takeshineshiro/PredictionIO,nvoron23/PredictionIO,tastatur/PredictionIO,atyenoria/PredictionIO,nvoron23/PredictionIO,shimamoto/incubator-predictionio,beni55/PredictionIO,Ribeiro/PredictionIO,PredictionIO/PredictionIO,jingyidata/PredictionIO,jasonchaffee/PredictionIO,wangmiao1981/PredictionIO,jasonchaffee/PredictionIO,ionux/PredictionIO,arudenko/PredictionIO,prmdsharma/PredictionIO,hsavit1/PredictionIO,jlegendary/PredictionIO,druzbikova/PredictionIO,prmdsharma/PredictionIO,hsavit1/PredictionIO,codingang/PredictionIO,rbo7nik/PredictionIO,adamharish/PredictionIO,indranig/PredictionIO,cristiancrc/PredictionIO,doron123/PredictionIO,TheDataShed/PredictionIO,BojianLi/PredictionIO,TheDataShed/PredictionIO,zafarella/PredictionIO
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.