commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
ec6feea0bd8d04dd64d1d7efb38a61062a51bebb | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Test with latest Node.js 4 on Travis CI. | Test with latest Node.js 4 on Travis CI.
| YAML | mit | bigeasy/sequester |
912dff3377d9549de946f679d8ff5d4ca1101997 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7
- 7.1
- hhvm
env:
- CALCULATOR=GMP
- CALCULATOR=BCMath
- CALCULATOR=Native
before_script:
- composer install
script:
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/coveralls -v
| language: php
sudo: false
php:
- 5.6
- 7
- 7.1
- hhvm
env:
- CALCULATOR=GMP
- CALCULATOR=BCMath
- CALCULATOR=Native
before_script:
- composer install
script:
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/coveralls -v
| Use the container-based infrastructure on Travis CI | Use the container-based infrastructure on Travis CI
| YAML | mit | brick/math |
de8017ff0e02b29423b01ed3be0bd2e375bf728f | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
- openjdk7
before_install:
- sudo apt-get update -qq
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch; fi
- wget http://dl.google.com/android/android-sdk_r21.0.1-linux.tgz
- echo "Installing android SDK into ... | language: java
jdk:
- oraclejdk7
- openjdk7
before_install:
- sudo apt-get install -qq libstdc++6:i386 lib32z1
- export COMPONENTS=build-tools-19.0.1,android-16
- curl -L https://raw.github.com/embarkmobile/android-sdk-installer/version-1/android-sdk-installer | bash /dev/stdin --install=$COMPONENTS
- sou... | Use a simpler means of installing the Android SDK. | Use a simpler means of installing the Android SDK.
| YAML | apache-2.0 | gk5885/dagger,e10dokup/dagger,Suninus/dagger,hansonchar/dagger,goinstant/dagger,DirtyUnicorns/android_external_square_dagger,vamsirajendra/dagger,b-cuts/dagger,elijah513/dagger,ze-pequeno/dagger,dushmis/dagger,msdgwzhy6/dagger,Jalsoncc/dagger,tasomaniac/dagger,Jalsoncc/dagger,MaTriXy/dagger,Gurtz/dagger,jgabrielfreitas... |
05c60ab9d0e23176f0ddabf689fb2559a358975f | .travis.yml | .travis.yml | language: python
python:
- "3.5"
- "3.6"
# This, with tox-travis, and our tox.ini, will test on these Django versions
# across all our specified python versions:
env:
- DJANGO=1.11
- DJANGO=2.0
matrix:
include:
# This will also run the coverage test only on this python version:
- python: "3.6"
e... | language: python
python:
- '3.5'
- '3.6'
env:
- DJANGO=1.11
- DJANGO=2.0
matrix:
include:
- python: '3.6'
env: TOXENV="coverage"
install:
- pip install tox tox-travis coverage coveralls
script:
- tox
after_success:
- coveralls
sudo: false
cache: pip
notifications:
slack:
secure: QKqSaM/Om3Lem5H9OgT9EdgOXt... | Add Slack notifications to Travis setup | Add Slack notifications to Travis setup
| YAML | mit | philgyford/django-spectator,philgyford/django-spectator,philgyford/django-spectator |
49a190fdd5a680eadcd6a41989864ee0c6ca564b | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0
- 2.1
gemfile:
- gemfiles/rails2.3.gemfile
- gemfiles/rails3.0.gemfile
- gemfiles/rails3.2.gemfile
- gemfiles/rails4.0.gemfile
matrix:
exclude:
- rvm: 2.0
gemfile: gemfiles/rails2.3.gemfile
- rvm: 2.0
gemfile: gemfiles/rails3.0.gemfile
- rvm: 2.1
gemfile:... | language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
gemfile:
- gemfiles/rails2.3.gemfile
- gemfiles/rails3.0.gemfile
- gemfiles/rails3.2.gemfile
- gemfiles/rails4.0.gemfile
sudo: false
bundler_args: --no-deployment
script: bundle exec rake test
matrix:
exclude:
- rvm: 2.0
gemfile: gemfiles/rails2.3.... | Use the new build env on Travis | Use the new build env on Travis
more ram, dedicated cpu cores, faster vm boot times, better networking | YAML | mit | bquorning/ar_mysql_flexmaster,gabetax/ar_mysql_flexmaster,osheroff/ar_mysql_flexmaster |
21469ebf01306a7a9ad072a1d499c3d7ed9be282 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
- jruby-9.1.8.0
services:
- mongodb
sudo: false
bundler_args: --without development
# Gitter integration
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/4d6749e48eb60321640e
on_success: change # options: [always|never|c... | language: ruby
rvm:
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
- jruby-9.1.8.0
jdk:
- oraclejdk8
services:
- mongodb
sudo: false
bundler_args: --without development
# Gitter integration
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/4d6749e48eb60321640e
on_success: change # opt... | Use Java 8 for JRuby | Use Java 8 for JRuby
| YAML | apache-2.0 | reidmorrison/semantic_logger,rocketjob/semantic_logger |
13ec565ba0159cf7f81fb2651aac396bce55c1db | .travis.yml | .travis.yml | language: node_js
node_js:
- node
- lts/*
script:
- npm install
- npm run build
before_install:
- npm install -g npm
- npm install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
after_success: 'npm run coveralls'
| language: node_js
node_js:
- node
- lts/*
script:
- npm install
- npm run test
- npm run build
- npm run build-example
before_install:
- npm install -g npm
- npm install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
after_success: 'npm run... | Add test and build-example scripts | Add test and build-example scripts
| YAML | mit | ua-oira/react-super-responsive-table |
a023e1ebbf653e1dc01d40c0cbb977283dea29c6 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
# use it to install system wide python packages such as scipy
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install -qq python-numpy python-scipy python-glpk libglpk-dev glpk-utils
# command to install dependencies, e.g. pip install -r requirements.txt --... | language: python
python:
- "2.7"
# use it to install system wide python packages such as scipy
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install -qq python-numpy python-scipy python-glpk libglpk-dev glpk-utils
# command to install dependencies, e.g. pip install -r requirements.txt --... | Remove temporary call to test_all | Remove temporary call to test_all
| YAML | mit | sildar/potara |
88697a015cc042a3f9322f2306fed03c883c3e47 | roles/sudo/tasks/main.yml | roles/sudo/tasks/main.yml | ---
- name: Enable sudo access for wheel group
become: yes
copy:
content: '%wheel ALL=(ALL) ALL'
dest: /etc/sudoers.d/10-grant-wheel-group
validate: 'visudo -cf %s'
tags:
- sudo
| ---
# Using multiline for content is important, sudo needs newline
- name: Enable sudo access for wheel group
become: yes
copy:
content: |
%wheel ALL=(ALL) ALL
dest: /etc/sudoers.d/10-grant-wheel-group
validate: 'visudo -cf %s'
tags:
- sudo
- name: Use neovim as editor
become: yes
copy:... | Configure neovim as editor for sudo/visudo | Configure neovim as editor for sudo/visudo
| YAML | mit | henrik-farre/ansible,henrik-farre/ansible,henrik-farre/ansible |
b077fe7e30c966f2a4c3101677de95e4e21ff518 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.8"
- "iojs"
- "iojs-v1.0.4" | language: node_js
node_js:
- 0.10
- 0.12
- iojs | Use same Travis CI config as hapi.js | Use same Travis CI config as hapi.js
| YAML | mit | GamingCoder/hapi-features |
4695416b71d3577c7d3bc8fa05901fa8fc8fc7a8 | .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 ... | # 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 ... | Add OpenJDK 12 to Travis builds. | Add OpenJDK 12 to Travis builds. | YAML | apache-2.0 | apache/commons-fileupload,apache/commons-fileupload |
fe9a84019cf3e8c9185465c2e2d238e1a22c8fac | .travis.yml | .travis.yml | language: python
python:
- "3.8"
install:
- pip install -r dev-requirements.txt
script:
py.test -v --pep8 guestbook
| language: python
python:
- "3.8"
install:
- pip install -r dev-requirements.txt
script:
py.test -v --pycodestyle guestbook
| Migrate checking pep8 tool from '--pep8' to '--pycodestyle' | Migrate checking pep8 tool from '--pep8' to '--pycodestyle'
| YAML | bsd-3-clause | raimon49/pypro2-guestbook-webapp,raimon49/pypro2-guestbook-webapp |
3a22892f2fc9b9c96bf280242000cfd6873efe2c | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
coverage run --source=rest_framework_se runtests.py
after_success:
coveralls
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
env:
- DJANGO_VERSION=1.4.19
- DJANGO_VERSION=1.6.10
- DJANGO_VERSION=1.7.4
- REST_FRAMEWORK_VERSION=3.0.5
matrix:
exclude:
- python: "2.6"
env: DJANGO_VERSION=1.7.4
- python: "3.2"
env: DJANGO_VERSION=1.4.19
- ... | Set up Travis build matrix | Set up Travis build matrix
| YAML | bsd-2-clause | JamesRitchie/django-rest-framework-sav |
585d6d60d87d908360f029ed26701c5dce77b821 | .travis.yml | .travis.yml | language: python
env:
global:
- COVERAGE_CMD="coverage run -m"
- COVERAGE_DEP="coverage"
matrix:
include:
- python: "2.7"
env: TOX_ARGS="-e py27-install-extensions,py27-disable-extensions,py27-without-extensions"
- python: "3.4"
env: TOX_ARGS="-e py34-install-extensions,py34-disable-extensions,p... | language: python
env:
global:
- COVERAGE_CMD="coverage run -m"
- COVERAGE_DEP="coverage"
matrix:
include:
- python: "2.7"
env: TOX_ARGS="-e py27-install-extensions,py27-disable-extensions,py27-without-extensions"
- python: "3.4"
env: TOX_ARGS="-e py34-install-extensions,py34-disable-extensions,p... | Add TravisCI test for Python 3.7. | Add TravisCI test for Python 3.7.
| YAML | bsd-2-clause | GrahamDumpleton/wrapt,GrahamDumpleton/wrapt |
7d837a3ffae03a34ff6e8c2d512d7534aee164e7 | .travis.yml | .travis.yml | # This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0
language: python
sudo: required
dist: bionic
python:
- "3.6"
- "3.7"
- "3.8"
- "3.... | # This file is part of BenchExec, a framework for reliable benchmarking:
# https://github.com/sosy-lab/benchexec
#
# SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0
language: python
sudo: required
dist: bionic
python:
- "3.6"
- "3.7"
- "3.8"
- "3.... | Fix yaml syntax (it was accidentally creating a comment) | Fix yaml syntax (it was accidentally creating a comment)
| YAML | apache-2.0 | sosy-lab/benchexec,dbeyer/benchexec,sosy-lab/benchexec,sosy-lab/benchexec,ultimate-pa/benchexec,sosy-lab/benchexec,sosy-lab/benchexec,ultimate-pa/benchexec,ultimate-pa/benchexec,dbeyer/benchexec,dbeyer/benchexec,ultimate-pa/benchexec,ultimate-pa/benchexec,ultimate-pa/benchexec,sosy-lab/benchexec,dbeyer/benchexec |
5120497bc97c1ed4c762d355a84dac9ca4e37dda | .travis.yml | .travis.yml | language: ruby
before_install:
- gem update bundler
cache: bundler
matrix:
include:
- rvm: 2.4.9
- rvm: 2.5.7
- rvm: 2.6.5
- rvm: jruby-9.2.9.0
- rvm: 2.6.5
install: true # This skips 'bundle install'
script: gem build *.gemspec && gem install *.gem
notifications:
email: false
| language: ruby
before_install:
- gem update bundler
cache: bundler
matrix:
include:
- rvm: 2.5.8
- rvm: 2.6.6
- rvm: 2.7.1
- rvm: jruby-9.2.11.1
- rvm: 2.7.1
install: true # This skips 'bundle install'
script: gem build *.gemspec && gem install *.gem
notifications:
email: false
| Test with latest Ruby/JRuby versions | Test with latest Ruby/JRuby versions
Removed 2.4 as its EOL since 2020-03-31.
https://www.ruby-lang.org/en/downloads/branches/
| YAML | mit | twingly/twingly-search-api-ruby,twingly/twingly-analytics-api-ruby |
80b43c2cd6cee13f3bedb4f4248422a0c9ae60b9 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
script:
sh -x ./test_opensips.sh
| language: python
python:
- "2.7"
before_install:
- apt-get install -qq python-twisted
script:
sh -x ./test_opensips.sh
| Use before_install in order to install python-twisted. | Use before_install in order to install python-twisted.
| YAML | bsd-2-clause | hongbinz/voiptests,sippy/voiptests,sippy/voiptests,hongbinz/voiptests |
0676239f4bb5fc23da719f26b02b7f24af5621ee | .travis.yml | .travis.yml | language: ruby
script:
- bundle exec rspec
- bundle exec rubocop --display-cop-names
sudo: false
rvm:
- ruby-1.9.3-p551
- ruby-2.0.0-p648
- ruby-2.1.10
- ruby-2.2.7
- ruby-2.3.4
- ruby-2.4.1
- jruby-9.1.5.0
| language: ruby
script:
- bundle exec rspec
- bundle exec rubocop --display-cop-names
sudo: false
rvm:
- jruby-9.2
- ruby-2.3
- ruby-2.4
- ruby-2.5
| Drop support for old rubies | Drop support for old rubies
- try to start JRuby first, cuz it slower in Travis
- add Ruby 2.5
- use RVM version specifiers that allow newer versions
| YAML | mit | covermymeds/fetching-gem |
c2b751f3b8a014a19b6656875a62b792df4bde06 | .travis.yml | .travis.yml | language: python
env:
- PYTHON_VERSION=3.4
- PYTHON_VERSION=2.7
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-2.2.2-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/anaconda/bin:$PATH
# Update conda itself
- conda update --yes c... | language: python
env:
- PYTHON_VERSION=3.3
- PYTHON_VERSION=2.7
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-2.2.2-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/anaconda/bin:$PATH
# Update conda itself
- conda update --yes c... | Change python 3 testing to version 3.3 | Change python 3 testing to version 3.3
Used to be 3.4, which was breaking pyqi, which is required for biom
| YAML | bsd-3-clause | RNAer/qiita,biocore/qiita,wasade/qiita,RNAer/qiita,antgonza/qiita,josenavas/QiiTa,ElDeveloper/qiita,squirrelo/qiita,squirrelo/qiita,antgonza/qiita,biocore/qiita,adamrp/qiita,biocore/qiita,antgonza/qiita,wasade/qiita,squirrelo/qiita,adamrp/qiita,wasade/qiita,squirrelo/qiita,ElDeveloper/qiita,adamrp/qiita,josenavas/QiiTa... |
63620dbb3b1b6528591b57c08bfb1013a8414c69 | .travis.yml | .travis.yml | language: node_js
cache: yarn
node_js:
- 8
- 10
- 11
- node
install:
- yarn
script:
- yarn ci
| language: node_js
cache: yarn
node_js:
- 8
- 10
- 11
- 12
- node
install:
- yarn
script:
- yarn ci
| Add Node 12 to CI config. | Add Node 12 to CI config.
| YAML | mit | octet-stream/form-data,octet-stream/form-data |
f62e95d79c6068a62461700f8c9b31edff798eb5 | .travis.yml | .travis.yml | sudo: required
language: go
services:
- docker
go:
- 1.16.x
arch:
- amd64
- arm64
os:
- linux
jobs:
include:
- os: linux
arch: amd64
- os: linux
arch: arm64
- stage: Push Docker manifest
env:
- DOCKER_CLI_EXPERIMENTAL=enabled
script:
- if [ "$TRAVIS_OS_NAME" ... | sudo: required
language: go
services:
- docker
go:
- 1.19.x
arch:
- amd64
- arm64
os:
- linux
jobs:
include:
- os: linux
arch: amd64
- os: linux
arch: arm64
- stage: Push Docker manifest
env:
- DOCKER_CLI_EXPERIMENTAL=enabled
script:
- if [ "$TRAVIS_OS_NAME" ... | Upgrade Travis to use go 1.19.x | Upgrade Travis to use go 1.19.x
| YAML | bsd-3-clause | jtblin/kube2iam,jtblin/kube2iam |
93cd4fa571ed8e0b64ebe2d77577cb7f71450d3b | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.4
script: bundle exec rake test
| language: ruby
branches:
only:
- master
rvm:
- 2.1.4
script: bundle exec rake test
| Enable `Build pushes` when only master branch | Enable `Build pushes` when only master branch
| YAML | mit | gongo/itamae-plugin-resource-firewalld,hanazuki/itamae-plugin-resource-firewalld |
2803f6c81befbed9a36e071bd8c85797842a23c8 | .travis.yml | .travis.yml | language: python
# Python releases to test
python:
- 2.5
- 2.6
- 2.7
- 3.2
# Django releases
env:
- DJANGO_VERSION=Django==1.3.5
- DJANGO_VERSION=Django==1.4.3
# 1.5 release candidate
- DJANGO_VERSION=git+git://github.com/django/django.git@f23d3ce8d47cc3ec58cb7fb1b32d3d3237c025f5
# Exclude some Django r... | language: python
# Python releases to test
python:
- 2.5
- 2.6
- 2.7
- 3.2
# Django releases
env:
- DJANGO_VERSION=Django==1.3.5
- DJANGO_VERSION=Django==1.4.3
# 1.5 release candidate
- DJANGO_VERSION=git+git://github.com/django/django.git@f23d3ce8d47cc3ec58cb7fb1b32d3d3237c025f5
# Exclude some Django r... | Fix Python < 2.7 testing | Fix Python < 2.7 testing
| YAML | bsd-3-clause | nkuttler/django-webmaster-verification,nkuttler/django-webmaster-verification |
8876cce6a0f6224374ec93006af29350caf5e63d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.12"
- iojs
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.12"
- "4.0"
- "4.1"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| Drop iojs and add v4.0 and v4.1 to CI run. | Drop iojs and add v4.0 and v4.1 to CI run.
| YAML | mit | cliffano/bagofcli |
815dfe9ddc87502bc02d7b791502cafdad96c758 | .travis.yml | .travis.yml | dist: trusty
language: python
cache:
directories:
- /home/travis/download
- /home/travis/.cache/pip
# This matrix tests that the code works on Python 2.7,
# 2.7.8, 3.5, 3.6, and passes lint.
matrix:
fast_finish: true
include:
- env: PYTHON_VERSION="2.7"
- env: PYTHON_VERSION="2.7.8"
- env: PYTH... | dist: trusty
language: python
cache:
directories:
- /home/travis/download
- /home/travis/.cache/pip
# This matrix tests that the code works on Python 2.7,
# 2.7.8, 3.5, 3.6, and passes lint.
matrix:
fast_finish: true
include:
- env: PYTHON_VERSION="2.7" COVERAGE="true"
- env: PYTHON_VERSION="2.7.8"... | Add COVERAGE=true env vars to test matrix | Add COVERAGE=true env vars to test matrix
| YAML | bsd-3-clause | pytorch/text,pytorch/text,pytorch/text,pytorch/text |
00ea9067c26f3910321e4747f3ee781e7ecfe13d | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1.5
- 2.2.0
gemfile:
- Gemfile
- gemfiles/Gemfile.rails-3.2.x
- gemfiles/Gemfile.rails-4.0.x
- gemfiles/Gemfile.rails-4.1.x
- gemfiles/Gemfile.rails-5.0.x
matrix:
exclude:
# has test/unit/testcase removed, and also 3.2.x is too old to support
# ruby 2.2.0. so i... | language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.9
- 2.3.6
gemfile:
- Gemfile
- gemfiles/Gemfile.rails-3.2.x
- gemfiles/Gemfile.rails-4.0.x
- gemfiles/Gemfile.rails-4.1.x
- gemfiles/Gemfile.rails-5.0.x
matrix:
exclude:
# has test/unit/testcase removed, and also 3.2.x is too old to support
# ruby ... | Update ruby 2.1.5 > 2.1.10, 2.2.0 > 2.2.9 & add 2.3.6 | Update ruby 2.1.5 > 2.1.10, 2.2.0 > 2.2.9 & add 2.3.6
| YAML | mit | code-mancers/invoicing,code-mancers/invoicing,code-mancers/invoicing |
91e7213c515d1beb81c5611c28140ae19c8d1af7 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
env:
- CI=true
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
- jruby
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: jruby
dist: trusty
| language: ruby
bundler_args: --without debug
env:
- CI=true
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
- jruby
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: jruby
- rvm: 2.7
dist: trusty
| Allow 2.7 to fail, for now. | Allow 2.7 to fail, for now.
| YAML | unlicense | ruby-rdf/rdf-trig |
3842901080220388c674d532ff93783a46730498 | .travis.yml | .travis.yml | language: ruby
before_install: 'gem update bundler'
install: 'bundle install --jobs=3 --retry=3' # Suppress the --deployment flag'
rvm:
- 2.2.2
- 2.3.0
- 2.3.1
notifications:
irc: "irc.freenode.org#jeweler"
| language: ruby
before_install: 'gem update bundler'
install: 'bundle install --jobs=3 --retry=3' # Suppress the --deployment flag'
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
notifications:
irc: "irc.freenode.org#jeweler"
| Test on new Ruby versions | Test on new Ruby versions | YAML | mit | technicalpickles/jeweler,technicalpickles/jeweler |
9cc3d4b672385130e33a62ab4d1852561ae7edd3 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.4.3
- 1.5.3
- 1.6
- tip
before_script:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
script:
- go test -v -covermode=count -coverprofil... | language: go
sudo: false
go:
- 1.4.3
- 1.5.3
- 1.6
- 1.7
- tip
before_script:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
script:
- go test -v -covermode=count -c... | Add support to test with go 1.7 | Add support to test with go 1.7 | YAML | mit | scorphus/gothumbor,globocom/gothumbor,scorphus/gothumbor,globocom/gothumbor |
00afc2092ecc6ffd93b37eba73a8b8079565f03b | .travis.yml | .travis.yml | language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- tip
os:
- linux
- osx
script:
- go test -v ./...
| language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- tip
script:
- go test -v ./...
| Remove Mac OS test from Travis (for now) | Remove Mac OS test from Travis (for now)
| YAML | bsd-3-clause | yookoala/gofast,yookoala/gofast,yookoala/gofast,yookoala/gofast |
6b651e87b093288bf39ad5ef5c3fad313931ee95 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- "4"
sudo: false
cache:
directories:
- $HOME/.npm
- $HOME/.cache # includes bowers cache
env:
# we recommend testing LTS's and latest stable release (bonus points to beta/canary)
- EMBER_TRY_SCENARIO=ember-1.13
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARI... | ---
language: node_js
node_js:
- "4"
sudo: false
cache:
directories:
- $HOME/.npm
- $HOME/.cache # includes bowers cache
env:
# we recommend testing LTS's and latest stable release (bonus points to beta/canary)
- EMBER_TRY_SCENARIO=ember-1.13
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARI... | Make Ember 1.13 optional and ember-beta required | Make Ember 1.13 optional and ember-beta required
| YAML | mit | cowboyd/ember-microstates,cowboyd/ember-microstates |
c3d641a8f234b86e20c2601bc527d0206c604e0a | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libgirepository1.0-dev gobject-introspection
- sudo apt-get install -y gir1.2-gtk-3.0 gir1.2-gtk-2.0
- gem update --system
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- ruby-head
- jruby-9.1.15.0
- jr... | sudo: required
dist: trusty
language: ruby
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libgirepository1.0-dev gobject-introspection
- sudo apt-get install -y gir1.2-gtk-3.0 gir1.2-gtk-2.0
- gem update --system
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- ruby-head
- jruby-9.1
- jruby-9... | Test on JRuby 9.1 and 9.2 | Test on JRuby 9.1 and 9.2
| YAML | lgpl-2.1 | mvz/gir_ffi-gtk |
e9f85d9bc70fd00f7771daa25bed3885ee968818 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
cache:
directories:
- $HOME/.gradle
# workaround for buffer overflow
# see https://github.com/travis-ci/travis-ci/issues/5227
before_install:
- cat /etc/hosts # optionally check the content *before*
- sudo hostname "$(hostname | cut -c... | language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
cache:
directories:
- $HOME/.gradle
# workaround for buffer overflow
# see https://github.com/travis-ci/travis-ci/issues/5227
before_install:
- cat /etc/hosts # optionally check the content *before*
- sudo hostname "$(hostname | cut -c1-63)"
- se... | Remove openjdk6 from Travis CI | Remove openjdk6 from Travis CI
| YAML | apache-2.0 | michel-kraemer/bson4jackson |
3836e23d2fd82c87ff59ac4bbe839c50db543b9a | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "4"
- "0.12"
| language: node_js
node_js:
- "6"
- "4"
| Remove node.js 0.12 from Travis CI because of ESLint | Remove node.js 0.12 from Travis CI because of ESLint
| YAML | mit | postcss/postcss-simple-vars |
3da7d342bb8d515bf43e007469ddf911c65b25ac | .travis.yml | .travis.yml | matrix:
include:
- os: linux
dist: trusty
sudo: required
language: node_js
node_js:
- '6'
# Install dependencies for snaps
# before_install:
# - sudo add-apt-repository -y ppa:snappy-dev/tools
# - sudo apt-get -qq update
# - sudo apt-get install -y rpm g++-multilib snapcraft
... | matrix:
include:
- os: linux
dist: trusty
sudo: required
language: node_js
node_js:
- '6'
# Install dependencies for snaps
# before_install:
# - sudo add-apt-repository -y ppa:snappy-dev/tools
# - sudo apt-get -qq update
# - sudo apt-get install -y rpm g++-multilib snapcraft
... | Fix build for linux 32 bits | Fix build for linux 32 bits
| YAML | mit | RocketChat/Rocket.Chat.Electron,ZedTheYeti/Rocket.Chat.Electron,ZedTheYeti/Rocket.Chat.Electron,RocketChat/Rocket.Chat.Electron,ZedTheYeti/Rocket.Chat.Electron,RocketChat/Rocket.Chat.Electron |
c08ef35508a4b7b89b3a90744ee74e2f41710dc7 | .travis.yml | .travis.yml | language: php
sudo: false
dist: trusty
php:
- 7.1
- 7.2
- 7.3
- nightly
cache:
directories:
- $HOME/.composer/cache
matrix:
include:
- php: 7.1
env: deps=low
fast_finish: true
before_script:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php... | language: php
sudo: false
dist: trusty
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
cache:
directories:
- $HOME/.composer/cache
matrix:
include:
- php: 7.1
env: deps=low
fast_finish: true
before_script:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc... | Test on php 7.4 only | Test on php 7.4 only
| YAML | mit | Seldaek/monolog,pomaxa/monolog |
31553846007f3161877f55c6c43f5c88fdc6280b | .travis.yml | .travis.yml | # Travis CI build file for Kitura HTTP2 package.
# Kitura runs on OS X and Linux (Ubuntu).
# See the following URLs for further details on Travis CI
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/docker/
# https://docs.travis-ci.com/user/multi-os/
# whitelist (branches that ... | # Travis CI build file for Kitura HTTP2 package.
# Kitura runs on OS X and Linux (Ubuntu).
# See the following URLs for further details on Travis CI
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/docker/
# https://docs.travis-ci.com/user/multi-os/
# whitelist (branches that ... | Install curl with nghttp2 on MacOS for the tests | Install curl with nghttp2 on MacOS for the tests
| YAML | apache-2.0 | ymesika/Kitura-HTTP2,ymesika/Kitura-HTTP2,ymesika/Kitura-HTTP2 |
be73ee84a5dd4aebfb8ea61165353b0a8a73c239 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0-rc1
branches:
only:
- master
script: rake
env:
- DB=mysql
- DB=postgresql
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
branches:
only:
- master
script: rake
env:
- DB=mysql
- DB=postgresql
| Build against Ruby 2.1.0 \o/ | Build against Ruby 2.1.0 \o/
| YAML | bsd-3-clause | mixandgo/alchemy_cms,mamhoff/alchemy_cms,nielspetersen/alchemy_cms,IngoAlbers/alchemy_cms,heisam/alchemy_cms,akra/alchemy_cms,clst/alchemy_cms,AlchemyCMS/alchemy_cms,mtomov/alchemy_cms,getkiwicom/alchemy_cms,heisam/alchemy_cms,watg/alchemy_cms,robinboening/alchemy_cms,akra/alchemy_cms,thomasjachmann/alchemy_cms,jsqu99/... |
40759f14c8fc89973203e2e89635ccad2ed77af8 | .travis.yml | .travis.yml | os: osx
osx_image: xcode10.2
language: cpp
compiler:
- clang
install:
- git submodule update --init
- git submodule update --init --recursive dependencies/mbedtls
env:
matrix:
- XCODE_PROJECT=build/PomdogTest.xcodeproj BUILD_CONFIG=Debug TEST_APP=build/build/Debug/PomdogUnitTest
... | os: osx
osx_image: xcode10.2
language: cpp
compiler:
- clang
addons:
homebrew:
packages:
- cmake
update: true
install:
- git submodule update --init
- git submodule update --init --recursive dependencies/mbedtls
env:
matrix:
- XCODE_PROJECT=build/PomdogTest.xcodeproj ... | Use homebrew package for using latest cmake | Use homebrew package for using latest cmake
| YAML | mit | mogemimi/pomdog,mogemimi/pomdog,mogemimi/pomdog |
cafee3ef98db9f85ae591c80f21f9ec4e92478b9 | .travis.yml | .travis.yml | before_install:
- git lfs pull
- sudo apt-get update
- sudo apt-get install -y syslinux cmake libcap-dev libbz2-dev zlib1g-dev
- pushd vendor
- tar -xvf cdrkit-1.1.11-fedora29-patched.tar.gz
- pushd cdrkit-1.1.11
- mkdir build
- pushd build
- cmake ..
- make
- popd
- popd
- popd
language: pyth... | before_install:
- sudo apt-get update
- sudo apt-get install -y cmake git-lfs libbz2-dev libcap-dev syslinux zlib1g-dev
- git lfs pull
- pushd vendor
- tar -xvf cdrkit-1.1.11-fedora29-patched.tar.gz
- pushd cdrkit-1.1.11
- mkdir build
- pushd build
- cmake ..
- make
- popd
- popd
- popd
langua... | Make sure to install git-lfs | Make sure to install git-lfs
Signed-off-by: Chris Lalancette <281cd07d7578d97c83271fbbf2faddb83ab3791c@openrobotics.org>
| YAML | lgpl-2.1 | clalancette/pycdlib,clalancette/pyiso |
33198503698bbac703b52d03903db9b6b7b33316 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 7.1
- nightly
cache:
directories:
- $HOME/.composer/cache
before_script:
- pecl install ds
- mkdir -p build-logs
- composer install --prefer-source --no-interaction
matrix:
allow_failures:
- php: nightly
fast_finish: true
notifications:
email: true
scrip... | language: php
sudo: false
php:
- 7.1
- nightly
cache:
directories:
- $HOME/.composer/cache
before_script:
- pecl install ds
- mkdir -p build-logs
- composer install --prefer-source --no-interaction
matrix:
allow_failures:
- php: nightly
fast_finish: true
notifications:
email: true
scrip... | Add code sniffing to Travis tests | Add code sniffing to Travis tests
| YAML | mit | rubberydub/snout |
7ec0d9d1063647b2e2ce60100a30882b68f1d3d2 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
before_script:
- cp spec/db/database.yml{.example,}
- mysql -e 'create database acts_as_geocodable_test;'
- createdb acts_as_geocodable_test -U postgres
notifications:
webhooks:
urls:
- http://buildlight.collectiveidea.com/
on_start: true
| language: ruby
rvm:
- 1.9.3
- "2.0"
- "2.1"
before_script:
- cp spec/db/database.yml{.example,}
- mysql -e 'create database acts_as_geocodable_test;'
- createdb acts_as_geocodable_test -U postgres
notifications:
webhooks:
urls:
- http://buildlight.collectiveidea.com/
on_start: true
| Test against Ruby 2.0 and 2.1 | Test against Ruby 2.0 and 2.1
| YAML | mit | collectiveidea/acts_as_geocodable,kornhammer/acts_as_geocodable |
7386aa917c78c53b1c4f71e6edb61c6d8f43b56a | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- rbx-2
- rbx
- jruby-1
- jruby
| language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- 2.3
- rbx-2
- rbx
- jruby-1
- jruby
| Test Ruby 2.3 in Travis | Test Ruby 2.3 in Travis
| YAML | mit | chaps-io/access-granted |
17f9344626ae07e0a187c2ba4079e2090f4ab9b4 | .travis.yml | .travis.yml | language: php
php:
- 7.1
services:
- rabbitmq
before_script:
- composer self-update
- cd ui/console && composer install --prefer-source --no-interaction
- cd ../messaging && composer install --prefer-source --no-interaction
- cp .env.travis .env.tests
- cd ../web && composer install --prefer-source --n... | language: php
php:
- 7.2
services:
- rabbitmq
before_script:
- composer self-update
- cd ui/console && composer install --prefer-source --no-interaction
- cd ../messaging && composer install --prefer-source --no-interaction
- cp .env.travis .env.tests
- cd ../web && composer install --prefer-source --n... | Update PHP version for Travis | chore: Update PHP version for Travis
| YAML | mit | MontealegreLuis/php-testing-tools,MontealegreLuis/php-testing-tools |
50786a3692250d34105162fed4696b55548d77cc | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.8'
before_install: npm install
sudo: false
env:
global:
- secure: Us1Ti22sb1n8tDbVlV9W0nVEVZIRGskDTirk6q+G1W+XwL+8LyV++pkxZjiWmnjmGEkaSxZmjt8vdN9WbnqhYqFA4QeeNY9VlcnN3wFN1vWD3u0K2zE9mKFLBXjKlWxp75BgJnL/1Y+j3Vx/0sKniYK1zTtKwI6oEUrDIVA3LjY=
- secure: W03n0vCsdL9bWsSs... | language: node_js
node_js:
- '0.10'
- '0.8'
sudo: false
before_install: npm install -g npm@'=1.4.3'
env:
global:
- secure: Us1Ti22sb1n8tDbVlV9W0nVEVZIRGskDTirk6q+G1W+XwL+8LyV++pkxZjiWmnjmGEkaSxZmjt8vdN9WbnqhYqFA4QeeNY9VlcnN3wFN1vWD3u0K2zE9mKFLBXjKlWxp75BgJnL/1Y+j3Vx/0sKniYK1zTtKwI6oEUrDIVA3LjY=
- secure: ... | Revert "Testing npm install without prefix." | Revert "Testing npm install without prefix."
This reverts commit 722242b8c1cff29283abc97691cbea600e7a4cd6.
| YAML | apache-2.0 | stormpath/stormpath-sdk-node,stormpath/stormpath-sdk-node,ck-lee/stormpath-sdk-node,peebles/stormpath-sdk-node,peebles/stormpath-sdk-node |
c4c83493b85943a15f2006aa25e0130ce6aaae32 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
before_install:
- gem update --system
before_script:
- "mysql -e 'create database thinking_sphinx;' > /dev/null"
- "psql -c 'create database thinking_sphinx;' -U postgres >/dev/null"
env:
- DATABASE=mysql2 SPHINX_BIN=/usr/local/sphinx-2.0.10/bin... | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
before_install:
- gem update --system
before_script:
- "mysql -e 'create database thinking_sphinx;' > /dev/null"
- "psql -c 'create database thinking_sphinx;' -U postgres >/dev/null"
env:
- DATABASE=mysql2 SPHINX_BIN=/usr/local/sphinx-2.0.10/bin... | Include -beta in path for Sphinx 2.2.2 | Include -beta in path for Sphinx 2.2.2
| YAML | mit | jdelStrother/thinking-sphinx,ghedamat/thinking-sphinx,musik/thinking-sphinx,pat/thinking-sphinx,pat/thinking-sphinx |
7f19870e6d43de3ffd54694005f0903ca0e5719a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.0
- 1.9.3
- rbx-19mode
- jruby-19mode
env:
- DB=mysql
- DB=postgres
gemfile:
- Gemfile
- ci/gemfiles/rspec2_14_rails4_0.gemfile
- ci/gemfiles/rspec2_14_rails3_2.gemfile
before_script:
- ci/script/create_db.sh
- bundle exec rake db:test:reset ... | language: ruby
rvm:
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.0
- 1.9.3
- rbx-2
- jruby-19mode
env:
- DB=mysql
- DB=postgres
gemfile:
- Gemfile
- ci/gemfiles/rspec2_14_rails4_0.gemfile
- ci/gemfiles/rspec2_14_rails3_2.gemfile
before_script:
- ci/script/create_db.sh
- bundle exec rake db:test:reset --tra... | Change rubinius to 2.y.z version in ci test group | Change rubinius to 2.y.z version in ci test group
| YAML | mit | yellow5/foreigner-matcher,yellow5/foreigner-matcher |
c072f9e8c4ad38485ed04e5738a66d5615574037 | .travis.yml | .travis.yml | sudo: false
dist: xenial
language: php
services:
- mysql
php:
- 7.4
- 7.3
- 7.2
- 7.1
env:
- LARAVEL_VERSION=7.* PHPUNIT_VERSION=~8.0
- LARAVEL_VERSION=6.* PHPUNIT_VERSION=~8.0
- LARAVEL_VERSION=5.8.* PHPUNIT_VERSION=~7.0
- LARAVEL_VERSION=5.7.* PHPUNIT_VERSION=~7.0
- LARAVEL_VERSION=5.6.* PHPUNI... | sudo: false
dist: xenial
language: php
services:
- mysql
php:
- 7.4
- 7.3
- 7.2
env:
- LARAVEL_VERSION=7.* PHPUNIT_VERSION=~8.0
- LARAVEL_VERSION=6.* PHPUNIT_VERSION=~8.0
before_script:
- echo 'memory_limit = -1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- composer require "... | Test only supported Laravel versions | Test only supported Laravel versions
| YAML | mit | aimeos/aimeos-laravel |
0917e6d8aae5a918017646f0951ea83c72f4e053 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanb... | sudo: false
language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm i... | Build on Travis CI without `sudo`. | Build on Travis CI without `sudo`.
| YAML | mit | bigeasy/indexeddb,bigeasy/indexeddb |
fb523a29885e45ceee576ff79883f113d9d7c993 | .travis.yml | .travis.yml | language: minimal
git:
submodules: false
dist: xenial
install:
- wget -c https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
- chmod a+x Miniconda3-latest-Linux-x86_64.sh
- ./Miniconda3-latest-Linux-x86_64.sh -p ~/conda -b -f
- ~/conda/bin/conda init bash
- source ~/.bashrc
- conda env crea... | language: minimal
git:
submodules: false
dist: xenial
install:
- wget -c https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
- chmod a+x Miniconda3-latest-Linux-x86_64.sh
- ./Miniconda3-latest-Linux-x86_64.sh -p ~/conda -b -f
- ~/conda/bin/conda init bash
- source ~/.bashrc
- conda env crea... | Disable the Avalanche board for now. | Disable the Avalanche board for now.
| YAML | bsd-2-clause | litex-hub/linux-on-litex-vexriscv,litex-hub/linux-on-litex-vexriscv |
6d82f2703aa43b21003b15c5ecbf2d021e1ee1ae | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
- "5"
- "4"
- "0.12"
- "0.10"
before_install: npm install -g grunt-cli
| language: node_js
node_js:
- "node"
- "5"
- "4"
before_install: npm install -g grunt-cli
| Stop testing on Node version lower than 4 | Stop testing on Node version lower than 4
| YAML | mit | firstandthird/load-grunt-config,firstandthird/load-grunt-config |
05c11f3513a57b4cb66a64ed65497c4307634ff5 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
before_script:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- npm install
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script: gulp karma
branches:
only:
- master
| language: node_js
node_js:
- "6"
before_script:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- npm install
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script: gulp karma
branches:
only:
- master
| Change Node version for Travis CI | Change Node version for Travis CI
Former-commit-id: 8a7597678afb7b5679b0c48ce3d0c47e5990d145 | YAML | mit | WhitestormJS/whs.js,WhitestormJS/whs.js |
fe1d1995effa4b95f47550571548ffe27b0bbfe4 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.0
- jruby-9.0.4.0
env:
- DB=postgres
- DB=mysql
gemfile:
- gemfiles/Gemfile.rails-4.0.rb
- gemfiles/Gemfile.rails-4.1.rb
- gemfiles/Gemfile.rails-4.2.rb
- gemfiles/Gemfile.rails-5.0.rb
matrix:
allow_failures:
- rvm: jruby-1... | language: ruby
cache: bundler
rvm:
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.0
- jruby-9.0.4.0
env:
- DB=postgres
- DB=mysql
gemfile:
- gemfiles/Gemfile.rails-4.0.rb
- gemfiles/Gemfile.rails-4.1.rb
- gemfiles/Gemfile.rails-4.2.rb
- gemfiles/Gemfile.rails-5.0.rb
matrix:
allow_failures:
- rvm: jruby-1... | Exclude rails 5 gemfile for ruby < 2.2.2 | Exclude rails 5 gemfile for ruby < 2.2.2
* Rails 5 only supports ruby 2.2.2 and up. Don't use Gemfile.rails-5.0.rb with
older unsupported versions
| YAML | mit | norman/friendly_id |
e390aff461f9e699c799cecb2232713afd053a49 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
before_install:
- mkdir build
- wget -P build http://dl.google.com/closure-compiler/compiler-latest.zip
- unzip build/compiler-latest.zip -d build/
- rm build/compiler-latest.zip
- sudo apt-get update -qq
- sudo apt-get install -qq libncurses5-dev libssl-dev libnss3-dev... | language: node_js
node_js:
- '0.12'
before_install:
- mkdir build
- wget -P build http://dl.google.com/closure-compiler/compiler-latest.zip
- unzip build/compiler-latest.zip -d build/
- rm build/compiler-latest.zip
- sudo apt-get update -qq
- sudo apt-get install -qq libncurses5-dev libssl-dev libnss3-dev libexpat-dev
... | Add Slack notifications for Travis | Add Slack notifications for Travis
| YAML | mit | peeracle/legacy |
ac650fe08880b7ac8357a02bdd50309ea1a85b50 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "pypy"
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "3.2"
- "2.7"
before_install:
- wget https://releases.hashicorp.com/serf/0.7.0/serf_0.7.0_linux_amd64.zip
- unzip serf_0.7.0_linux_amd64.zip
- ./serf agent &
- sleep 1 ; ./serf tags -set foo=bar
install:
- pip instal... | sudo: false
language: python
python:
- "pypy"
- "3.7"
- "3.6"
- "2.7"
before_install:
- wget https://releases.hashicorp.com/serf/0.7.0/serf_0.7.0_linux_amd64.zip
- unzip serf_0.7.0_linux_amd64.zip
- ./serf agent &
- sleep 1 ; ./serf tags -set foo=bar
install:
- pip install 'coverage<4.0.0' coveralls p... | Build against Python 3.7, 3.6, and 2.7 | Build against Python 3.7, 3.6, and 2.7 | YAML | mit | KushalP/serfclient-py |
6569018de7658bddf1ea1afd7d65b79009df1485 | .travis.yml | .travis.yml | install:
- pip install pbs
- python provision.py --travis
cache: apt
language: python
python:
- "2.7"
# command to run tests
script:
- source /srv/zulip-venv/bin/activate && env PATH=$PATH:/srv/zulip-venv/bin ./tools/test-all
sudo: required
services:
- docker
addons:
postgresql: "9.3"
| install:
- pip install pbs
- python provision.py --travis
cache:
- apt: false
language: python
python:
- "2.7"
# command to run tests
script:
- source /srv/zulip-venv/bin/activate && env PATH=$PATH:/srv/zulip-venv/bin ./tools/test-all
sudo: required
services:
- docker
addons:
postgresql: "9.3"
| Disable apt caching in Travis CI configuration. | Disable apt caching in Travis CI configuration.
Apparently it isn't supposed to work reliably with the container-based
infrastructure that we're using and empirically it's causing build
failures.
Thanks to @mijime for tracking this down.
| YAML | apache-2.0 | joyhchen/zulip,jrowan/zulip,synicalsyntax/zulip,timabbott/zulip,KingxBanana/zulip,jackrzhang/zulip,andersk/zulip,Diptanshu8/zulip,Frouk/zulip,amanharitsh123/zulip,ashwinirudrappa/zulip,jainayush975/zulip,rishig/zulip,SmartPeople/zulip,zulip/zulip,grave-w-grave/zulip,zacps/zulip,KingxBanana/zulip,KingxBanana/zulip,ahmad... |
5d66c5d6fcfa40effe1c35de75ea197cb477aa6e | .travis.yml | .travis.yml | language: rust
notifications:
email:
on_success: never
| language: rust
rust:
- 1.0.0
- beta
- nightly
sudo: false
notifications:
email:
on_success: never
| Test on rust 1.0.0, nightly, and beta | Test on rust 1.0.0, nightly, and beta
| YAML | mit | conduit-rust/conduit-test,conduit-rust/conduit |
1b3268811b85fd483ef777e4942741346f033a6d | .travis.yml | .travis.yml | language: go
go:
- 1.13.x
cache:
directories:
- $GOPATH/pkg/mod
- $HOME/.cache/go-build
env:
- GO111MODULE=on
script:
- go build ./...
- go test -race -coverprofile=coverage.txt -covermode=atomic ./...
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: go
go:
- 1.13.x
cache:
directories:
- $GOPATH/pkg/mod
- $HOME/.cache/go-build
env:
- GO111MODULE=on
script:
- go build ./...
- go test -coverprofile=coverage.txt -covermode=atomic ./...
after_success:
- bash <(curl -s https://codecov.io/bash)
| Test without race detector until fixed | Test without race detector until fixed
| YAML | mit | hsanjuan/go-dcc |
a355af7538f2a188d0eeb00203ddc2acd44a4ec9 | .travis.yml | .travis.yml | language: rust
sudo: false
cache: cargo
rust:
- nightly
- 1.13.0
matrix:
include:
- os: osx
- os: osx
env: TARGET=x86_64-apple-ios RUST_BACKTRACE=1 RUST_TEST_THREADS=1
- os: linux
env:
- RUST_BACKTRACE=1 RUST_TEST_THREADS=1
before_script:
- if [ ! -z "$TARGET" ]; then rustup target add $TARGET; fi
script:
-... | language: rust
sudo: false
cache: cargo
rust:
- nightly
- 1.13.0
matrix:
include:
- os: osx
- os: osx
env: TARGET=x86_64-apple-ios RUST_BACKTRACE=1 RUST_TEST_THREADS=1
- os: linux
env: TARGET=x86_64-apple-ios RUST_BACKTRACE=1 RUST_TEST_THREADS=1
env:
- RUST_BACKTRACE=1 RUST_TEST_THREADS=1
before_script:... | Remove excess target list check | Remove excess target list check
| YAML | apache-2.0 | sfackler/rust-native-tls |
36c875590a125c52eb824cd6268b9d7613a6ca5e | .travis.yml | .travis.yml | language: python
python: 3.5.0
dist: trusty
sudo: false
addons:
postgresql: "9.4"
services:
- postgresql
cache:
directories:
- ~/.cache/pip
install:
- pip install -U pip setuptools wheel codecov
- pip install -r requirements/docs.txt -r requirements/lint.txt -r requirements/main.txt -r requirements/t... | language: python
python: 3.5.0
dist: trusty
sudo: false
addons:
postgresql: "9.4"
services:
- postgresql
cache:
directories:
- ~/.cache/pip
install:
- pip install -U pip setuptools wheel codecov
- pip install -r requirements/docs.txt -r requirements/lint.txt -r requirements/main.txt -r requirements/t... | Build the dist files on Travis | Build the dist files on Travis
| YAML | apache-2.0 | karan/warehouse,karan/warehouse,ismail-s/warehouse,ismail-s/warehouse,dstufft/warehouse,dstufft/warehouse,alex/warehouse,dstufft/warehouse,wlonk/warehouse,alex/warehouse,dstufft/warehouse,ismail-s/warehouse,pypa/warehouse,pypa/warehouse,wlonk/warehouse,karan/warehouse,ismail-s/warehouse,alex/warehouse,ismail-s/warehous... |
91c662e8c19bbf4dfe1cf2b420b593df15c0abb5 | .travis.yml | .travis.yml | language: [ ruby, node_js ]
rvm: [ 2.1.1 ]
node_js: [ 0.10 ]
before_script:
- npm install bower -g
- bower install
install:
- bundle update
script: bundle exec rake travis
# set the branch that will be built and published to GitHub pages
branches:
only:
- demo
# create a GitHub Personal Access Token
# ... | language: [ ruby, node_js ]
rvm: [ 2.1.1 ]
node_js: [ 0.10 ]
before_script:
- npm install bower -g
- bower install
before_install:
- 'echo ''gem: --no-document'' > ~/.gemrc'
install:
- bundle update
script: bundle exec rake travis
# set the branch that will be built and published to GitHub pages
branches:
... | Set --no-document in .gemrc for Travis builds. | Set --no-document in .gemrc for Travis builds.
| YAML | mit | razor-x/jekyll-and-deck.js,razor-x/jekyll-and-deck.js,razor-x/jekyll-and-deck.js |
2c46bca54cc62b40c55c9c92d6a5163a6c2e0b85 | .travis.yml | .travis.yml | # Travis CI
language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.6"
- "iojs"
sudo: false
git:
submodules: false
notifications:
email:
recipients:
- SuriyaaKudoIsc@users.noreply.github.com
on_success: change # default: change
on_failure: always # default: always
before_script:
... | # Travis CI
language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "iojs"
sudo: false
git:
submodules: false
notifications:
email:
recipients:
- SuriyaaKudoIsc@users.noreply.github.com
on_success: change # default: change
on_failure: always # default: always
before_script:
- npm in... | Drop support for Node.js 0.6 | Drop support for Node.js 0.6 | YAML | apache-2.0 | SuriyaaKudoIsc/animate-a-name,SuriyaaKudoIsc/animate-a-name,SuriyaaKudoIsc/animate-a-name |
59a10544a3e6b3a9cadc4f5d0024004b7b55f26c | .travis.yml | .travis.yml | language: php
sudo: false
dist: trusty
git:
depth: 5
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- nightly
env:
- DEPS=latest
- DEPS=lowest
jobs:
include:
- dist: precise
php: 5.3
fast_finish: true
allow_failures:
- php: nightly
before_script:
- composer self-update... | language: php
dist: trusty
git:
depth: 5
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- nightly
env:
- DEPS=--prefer-lowest
- DEPS=
jobs:
include:
- dist: precise
php: 5.3
env: DEPS=
- dist: precise
php: 5.3
env: DEPS=--prefer-lowest
fast_finish: true
a... | Fix deps in build matrix | Fix deps in build matrix
| YAML | mit | composer/installers |
78859ad2f9335e3cabe0b6f074f3ee35c3041885 | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: node_js
env:
global:
- TEST_INTEGRATION_KONG_HOST="127.0.0.1:8001"
- KONG_VERSION=latest
matrix:
- EXPERIMENTAL_USE_LOCAL_STATE=0
- EXPERIMENTAL_USE_LOCAL_STATE=1
node_js:
- stable
- "8"
- "6"
before_install:
- docker run -d --name kong-... | sudo: required
services:
- docker
language: node_js
env:
global:
- TEST_INTEGRATION_KONG_HOST="127.0.0.1:8001"
- KONG_VERSION=0.12
matrix:
- EXPERIMENTAL_USE_LOCAL_STATE=0
- EXPERIMENTAL_USE_LOCAL_STATE=1
node_js:
- stable
- "8"
- "6"
before_install:
- docker run -d --name kong-da... | Change kong target to current stable | Change kong target to current stable
| YAML | mit | mybuilder/kongfig |
516649ade0ab64544ded46630f4bb01d34fb6a58 | .travis.yml | .travis.yml | dist: xenial
language: go
go:
- "1.12.x"
matrix:
fast_finish: true
allow_failures:
- go: tip
install:
- make tools
script:
- make lint
- go test -timeout=30s -parallel=4 -v ./...
branches:
only:
- master
| dist: xenial
language: go
go:
- "1.13.x"
matrix:
fast_finish: true
allow_failures:
- go: tip
install:
- make tools
script:
- make lint
- go test -timeout=30s -parallel=4 -v ./...
branches:
only:
- master
| Update CI config to use Go 1.13.x | Update CI config to use Go 1.13.x
| YAML | mpl-2.0 | hashicorp/aws-sdk-go-base |
58b7949901ecab76da39b8e970dea6e6912dcdae | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '8'
- '10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install --n... | sudo: false
language: node_js
node_js:
- '10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install --no-save -... | Drop support for Node.js 8 early. | Drop support for Node.js 8 early.
| YAML | mit | bigeasy/hash,bigeasy/hash,bigeasy/hash,bigeasy/hash |
ae39ad0e206cf251f7ed4039b11202e298b79013 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.3
# comment out pypy until travis updates to pypy 2.0/2.1, cffi doesn't work
# on PyPy 1.9
# - pypy
env:
- REACTOR=select
- REACTOR=epoll
install:
- sudo apt-get install libzmq3-dev
- pip install -r requirements.txt --use-mirrors
script:
... | language: python
python:
- 2.6
- 2.7
- 3.3
# comment out pypy until travis updates to pypy 2.0/2.1, cffi doesn't work
# on PyPy 1.9
# - pypy
env:
- REACTOR=select
- REACTOR=epoll
install:
- sudo apt-get install libzmq3-dev
- pip install -r requirements.txt --use-mirrors
script:
... | Make python 3.3 allowed to fail. | Make python 3.3 allowed to fail.
| YAML | mpl-2.0 | smira/txZMQ |
ca4797297af2c7102479b48fd2b02770c3c2ad73 | .travis.yml | .travis.yml | language: node_js
# test on two node.js versions: 0.6 and 0.8
node_js:
- 0.6
- 0.8
| language: node_js
# test on two node.js versions: 0.6 and 0.8
node_js:
- 0.6
- 0.8
- 0.10
| Add Node.js 0.10 to Travis-CI | Add Node.js 0.10 to Travis-CI | YAML | bsd-3-clause | vpetrov/survana-study |
f17baf13f646f618939e93914e4bd124de729297 | .travis.yml | .travis.yml | language: csharp
matrix:
fast_finish: true
allow_failures:
- os: osx
include:
- os: linux
dotnet: 2.0.0
mono: none
- os: osx
dotnet: 2.0.0
mono: none
branches:
only:
- master
script:
- dotnet test -c Release -f netcoreapp2.0 test/Castle.Core.AsyncInterceptor.Tests/Castle... | language: csharp
matrix:
fast_finish: true
allow_failures:
- os: osx
include:
- os: linux
dotnet: 2.1
mono: none
- os: osx
dotnet: 2.1.506
mono: none
branches:
only:
- master
script:
- ./coverage.sh netcoreapp2.1 Release
| Use a common code coverage build script | :construction_worker: Use a common code coverage build script
| YAML | apache-2.0 | JSkimming/Castle.Core.AsyncInterceptor,JSkimming/Castle.Core.AsyncInterceptor |
ceda430172967e5edf64434fd6831acf577ce7f9 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# - "3.7" # see https://github.com/travis-ci/travis-ci/issues/9815
- "nightly"
- "pypy"
- "pypy3"
install:
- pip install pytest pytest-cov codecov
script:
- pytest --cov=sqlparse
after_success:
- codecov
notifications:
email: false... | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# - "3.7" # see https://github.com/travis-ci/travis-ci/issues/9815
- "nightly"
- "pypy"
- "pypy3"
install:
- pip install pytest pytest-cov codecov
script:
- pytest --cov=sqlparse
after_success:
- codecov
| Enable mail notifications on Travis. | Enable mail notifications on Travis.
| YAML | bsd-3-clause | andialbrecht/sqlparse |
a2aa057032b871f6e1e1d677dad37146342ea582 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "5"
- "4"
after_success:
- 'npm run coveralls'
script:
npm run ci
| language: node_js
node_js:
- "6"
- "5"
- "4"
script:
npm run ci
after_success:
npm run coveralls
cache:
directories:
- node_modules
| Use cache of node_modules for Travis build | Use cache of node_modules for Travis build
| YAML | mit | BlackDice/b3-chief |
af27fd2bd536f6b776e777f31c1b548b22dfac01 | .travis.yml | .travis.yml | language: objective-c
before_install:
- gem install xcpretty
- gem install cocoapods
- pod install
script: xcodebuild -workspace pop.xcworkspace -scheme pop -sdk iphonesimulator7.0 test | xcpretty -c
| language: objective-c
before_install:
- brew update
- brew upgrade xctool
- gem update cocoapods
xcode_workspace: pop.xcworkspace
xcode_scheme: pop
xcode_sdk:
- iphonesimulator7.0
- iphonesimulator7.1
| Use Travis CI's default xctool support | Use Travis CI's default xctool support
Details @ http://docs.travis-ci.com/user/languages/objective-c/.
| YAML | bsd-3-clause | qiuqiyuan/pop,cstars135/pop,ycaihua/pop,jflinter/pop,jflinter/pop,youprofit/pop,mtxs007/pop,CoderJFCK/pop,seem-sky/pop,telly/pop,DevSonw/pop,mumer92/pop,imjerrybao/pop,niuxinghua/pop,Vanejay/pop,j364960953/pop,BNakum/pop,h136799711/pop,eeschimosu/pop,zhukaixy/pop,yuyangit/pop,dawangjiaowolaixunshan/pop,mumer92/pop,mist... |
cd2128e9e102ae1bad2c7aa354b00ddf76228c37 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
script:
- bundle exec rake test
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.0
- 2.1
- 2.2
script:
- bundle exec rake test
| Test in Travis with the latest bugfix versions of ruby | Test in Travis with the latest bugfix versions of ruby | YAML | apache-2.0 | inviqa/chef-serverdensity-inviqa,inviqa/chef-serverdensity-inviqa |
502e3d46adcf98a2799896e376d976b7d24d1ad2 | .travis.yml | .travis.yml | # Travis CI configuration for remote testing.
# See:
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/languages/python
# http://lint.travis-ci.org
language: python
python:
- "pypy"
- "pypy3"
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
... | # Travis CI configuration for remote testing.
# See:
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/languages/python
# http://lint.travis-ci.org
language: python
python:
- "pypy"
- "pypy3"
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
... | Fix coverage command; remove 3.6-dev | Travis: Fix coverage command; remove 3.6-dev
| YAML | bsd-3-clause | araile/see |
b7639194638f00cd8923674021bb38cdb10734fe | .travis.yml | .travis.yml | language: android
jdk:
- oraclejdk8
#before_script:
# - echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a
# - emulator -avd test -no-skin -no-audio -no-window &
# - android-wait-for-emulator
# - adb shell input keyevent 82 &
android:
components:
- tools
- platform-tools
... | language: android
jdk:
- oraclejdk8
android:
components:
- tools
- platform-tools
- build-tools-24.0.0
- android-24
- extra-android-m2repository
- extra-google-m2repository
- extra-google-google_play_services
notifications:
email: false | Update Travis configuration for Android Nougat | Update Travis configuration for Android Nougat
| YAML | apache-2.0 | jraska/github-client |
8365d7c429a349c8031b86020dd3b7b6b0a06e27 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- ree
- jruby
- rbx
branches:
only:
- master
- guard_dependencies
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- yann.lugrin@sans-savoir.net
irc: "irc.freenode.org#guard"
| rvm:
- 1.8.7
- 1.9.2
- ree
- jruby
- rbx
branches:
only:
- master
- guard_dependencies
env:
- GUARD_SPEC_SLEEP=2
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- yann.lugrin@sans-savoir.net
irc: "irc.freenode.org#guard"
| Set a generous spec sleep time on Travis. | Set a generous spec sleep time on Travis. | YAML | mit | baberthal/guard,guard/guard,yujinakayama/guard,garettarrowood/guard,sdgdsffdsfff/guard,pjump/guard,ginkel/guard,sideci-sample/sideci-sample-guard,100star/guard |
2566e9706a6e1033f899ab720e5e759885b9ead1 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- rbx-19mode
- 1.8.7
- ree
| language: ruby
rvm:
- 1.9.3
- rbx-19mode
- 1.8.7
- ree
before_install:
- sudo apt-get install -y libicu-dev
| Add build step on Travis | Add build step on Travis
| YAML | agpl-3.0 | Gitorious-backup/dolt,rae/gitorious-dolt |
86b0c855660e1ed446763e30d79212f53476f64f | .travis.yml | .travis.yml | dist: bionic
addons:
apt:
sources:
- sourceline: 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main'
key_url: 'https://dl.google.com/linux/linux_signing_key.pub'
packages:
- google-chrome-stable
services:
- xvfb
language: python
python:
- '3.7.9'
before_install:
- wg... | dist: bionic
addons:
apt:
sources:
- sourceline: 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main'
key_url: 'https://dl.google.com/linux/linux_signing_key.pub'
packages:
- google-chrome-stable
services:
- xvfb
language: python
python:
- '3.7.9'
before_install:
- wg... | Migrate from PWS to PCFOne | Migrate from PWS to PCFOne
Pivotal Web Services is only available until 2021/01/15 per:
https://blog.run.pivotal.io/pivotal-web-services-end-of-availability-announcement-and-timeline/
| YAML | isc | textbook/flash,textbook/flash,textbook/flash |
4a611dad2eeb4c353bb772e45fd30d2440cc4cb4 | .travis.yml | .travis.yml | before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libmagic-dev curl wget
language: ruby
bundler_args: --without development
script: "bundle exec rake spec:ci"
env:
global:
- "JRUBY_OPTS=-Xcext.enabled=true"
rvm:
- 2.2.2
- 2.1.6
- 2.0.0
- 1.9.3
- rbx
gemfile:
- Gemfile
notificatio... | before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libmagic-dev curl wget
language: ruby
bundler_args: --without development
script: "bundle exec rake spec:ci"
rvm:
- 2.3.0
- 2.2.4
- 2.1.8
- 2.0.0
- 1.9.3
- rbx
gemfile:
- Gemfile
notifications:
recipients:
- xeron.oskom@gmail.co... | Add ruby 2.3.0, bump others. | Add ruby 2.3.0, bump others.
| YAML | mit | xeron/danbooru-ruby-grabber |
c1f6f2c9e7e25a684b61d5c5bfc6d918b2e81cf2 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
script: "bundle exec rake"
# Source: <https://docs.travis-ci.com/user/languages/ruby/#bundler-20>
before_install:
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v '< 2'
install: "bundle install --jobs=3 --retry=3"
env:
- DATA... | language: ruby
sudo: false
cache: bundler
script: "bundle exec rake"
# Source: <https://docs.travis-ci.com/user/languages/ruby/#bundler-20>
before_install:
- gem update --system '2.7.8' --no-document
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v '< 2' --no-document... | Update Travis to install the correct version of RubyGems | Update Travis to install the correct version of RubyGems
| YAML | mit | reacuna/shoulda-matchers,biow0lf/shoulda-matchers,guialbuk/shoulda-matchers,biow0lf/shoulda-matchers,guialbuk/shoulda-matchers,biow0lf/shoulda-matchers,guialbuk/shoulda-matchers,thoughtbot/shoulda-matchers,reacuna/shoulda-matchers,thoughtbot/shoulda-matchers,thoughtbot/shoulda-matchers,reacuna/shoulda-matchers,guialbuk... |
0842090c78d9719ccfda41914daed19ef81df515 | .travis.yml | .travis.yml | language: c
compiler: gcc
script: cd test && ./testing.sh --travis --lua 5.2.3 && ./testing.sh --travis --lua 5.1.5
| language: c
compiler: gcc
env:
matrix:
- LUA_VER=5.1.5
- LUA_VER=5.2.3
script: cd test && ./testing.sh --travis --lua $LUA_VER
| Use a test matrix in Travis | Use a test matrix in Travis
| YAML | mit | coderstudy/luarocks,xpol/luarocks,keplerproject/luarocks,usstwxy/luarocks,aryajur/luarocks,luarocks/luarocks,xiaq/luarocks,xpol/luainstaller,luarocks/luarocks,coderstudy/luarocks,robooo/luarocks,xpol/luarocks,leafo/luarocks,aryajur/luarocks,robooo/luarocks,tarantool/luarocks,leafo/luarocks,usstwxy/luarocks,xpol/luavm,l... |
3df6a5bcf5d4e0110ae224aa3d2cb5b83cfa979a | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.4
before_install:
- composer self-update
- cp app/config/parameters.yml.dist app/config/parameters.yml
- psql -c "CREATE USER forex_test WITH PASSWORD 'forex_test';" -U postgres
- psql -c 'CREATE DATABASE forex_test;' -U postgres
- psql -c 'GRANT ALL PRIVILEGES ON ... | language: php
php:
- 5.5
- 5.4
before_install:
- composer self-update
- cp app/config/parameters.yml.dist app/config/parameters.yml
- psql -c "CREATE USER forex_test WITH PASSWORD 'forex_test';" -U postgres
- psql -c 'CREATE DATABASE forex_test;' -U postgres
- psql -c 'GRANT ALL PRIVILEGES ON ... | Split into functional and non-functional groups | Split into functional and non-functional groups
| YAML | mit | ForexCashBack/forex,ForexCashBack/forex |
13596c0ba689635994fcab425122daff15e4822e | .travis.yml | .travis.yml | os:
- linux
- osx
sudo: false
language: cpp
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
env:
matrix:
- TRAVIS_NODE_VERSION="0.8"
- TRAVIS_NODE_VERSION="0.10"
- TRAVIS_NODE_VERSION="0.12"
- TRAVIS_NODE_VERSION="iojs-1"
- TRAVIS_NODE_VERSION="iojs-2"
- TRAVIS_NO... | os:
- linux
- osx
sudo: false
language: cpp
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
env:
matrix:
- TRAVIS_NODE_VERSION="0.8"
- TRAVIS_NODE_VERSION="0.10"
- TRAVIS_NODE_VERSION="0.12"
- TRAVIS_NODE_VERSION="iojs-1"
- TRAVIS_NODE_VERSION="iojs-2"
- TRAVIS_NO... | Test using version of tap installed by npm install | Test using version of tap installed by npm install
Use `node_modules/.bin/tap` instead of just `tap`
so that testing works even without a globally set up
Node.js environment.
| YAML | mit | sanemat/nan,LinusU/nan,guymguym/nan,guymguym/nan,lovell/nan,guymguym/nan,eljefedelrodeodeljefe/nan,mikolalysenko/nan,ipmobiletech/nan,mikolalysenko/nan,saper/nan,mscdex/nan,nodejs/nan,thefourtheye/nan,ipmobiletech/nan,Jonekee/nan,lovell/nan,sesh-kebab/nan,nodejs/nan,LinusU/nan,lovell/nan,eljefedelrodeodeljefe/nan,saper... |
99dcc4b301c3c59a5616263a9d9b055e3ebc3928 | .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 ... | # 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 ... | Add oraclejdk7 to Travis CI. | Add oraclejdk7 to Travis CI.
git-svn-id: fd8f2b076f92628f09589a903dd666b39f6e6a5e@1790600 13f79535-47bb-0310-9956-ffa450edef68
| YAML | apache-2.0 | apache/commons-ognl,apache/commons-ognl |
a521f03889f4e290f1cd3952832bc8945c94a28c | .travis.yml | .travis.yml | language:
- c
compiler: gcc
env: CFLAGS='-Wall -Werror'
matrix:
include:
- compiler: clang
env: CFLAGS='-Wall -Werror' CMAKE_OPTIONS='-DCMAKE_C_FLAGS=-fsanitize=address -DUSE_VALGRIND=no'
- compiler: gcc
env: CFLAGS='-Wall -Werror' COVERALLS=yes CMAKE_OPTIONS='-DENABLE_GCOV... | language:
- c
compiler: gcc
env: CFLAGS='-Wall -Werror'
matrix:
include:
- compiler: clang
env: CFLAGS='-Wall -Werror' CMAKE_OPTIONS='-DCMAKE_C_FLAGS=-fsanitize=address -DUSE_VALGRIND=no'
- compiler: gcc
env: CFLAGS='-Wall -Werror' COVERALLS=yes CMAKE_OPTIONS='-DENABLE_GCOV... | Use $CMAKE_OPTIONS in cmake instead of make | Use $CMAKE_OPTIONS in cmake instead of make
| YAML | lgpl-2.1 | pcman-bbs/libbbs,pcman-bbs/libbbs,pcman-bbs/libbbs |
6d127e28e7fd5ebd0c631b5d8bfc8a0595766c9c | .travis.yml | .travis.yml | language: ruby
bundler_args: --without integration
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
script: bundle exec rake travis
| # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefd... | Test in ChefDK to avoid Ruby dep pain | Test in ChefDK to avoid Ruby dep pain
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | redguide/cpu |
e6483e0c4ff4ff6d5771da53ae0afd7c8fa019ff | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 1.9.2
- rbx-19mode
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| rvm:
- 1.9.3
- 1.9.2
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
| Disable Jruby builds for now. | Disable Jruby builds for now.
Running tests on Jruby would require test apps with jdbcsqlite3 adapter.
| YAML | mit | drugpl/bbq-core |
080a614806157ee6e06b99a8b9eabc9c0645ce77 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "4.0.0"
script: "make travis"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
script: "make travis"
| Build on the latest node.js 4 and 5 release (instead of only 4.0.0). | Travis: Build on the latest node.js 4 and 5 release (instead of only 4.0.0).
| YAML | mit | unexpectedjs/unexpected,alexjeffburke/unexpected,alexjeffburke/unexpected |
359ab904b7a72686de329b22704de92052faa687 | .travis.yml | .travis.yml | language: node_js
dist: trusty
sudo: false
node_js:
- '8'
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
| language: node_js
sudo: false
node_js:
- '12'
install:
- npm ci
| Switch to Node 12, tweak config | Travis: Switch to Node 12, tweak config
| YAML | mit | mzgol/jquery-wheel,mgol/jquery-wheel |
c47c09ba7c536f68f13a6f1bdfcf91f4c31e68f0 | .travis.yml | .travis.yml | language: ruby
env:
- CODECLIMATE_REPO_TOKEN=f7c652b65a700fcf1032174afc5ea243b991e48bf73077cc34c148e1c800a2f7
bundler_args: --without sql benchmarks console tools
script: "bundle exec rake spec"
rvm:
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-hea... | language: ruby
env:
- CODECLIMATE_REPO_TOKEN=f7c652b65a700fcf1032174afc5ea243b991e48bf73077cc34c148e1c800a2f7
bundler_args: --without sql benchmarks console tools
script: "bundle exec rake spec"
rvm:
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
notifications... | Revert "Run tests on upcoming JRuby 9000" | Revert "Run tests on upcoming JRuby 9000"
It seems that defining `jruby` in .travis.yml already runs
JRuby 9000.
See https://travis-ci.org/rom-rb/rom/jobs/45789302#L102
This reverts commit dfd264fd2b8536d4e6c849d01837eca62af763cd.
| YAML | mit | pxlpnk/rom,dekz/rom,rom-rb/rom,cored/rom,pdswan/rom,pvcarrera/rom,kwando/rom,Snuff/rom,rom-rb/rom,vrish88/rom,dcarral/rom,endash/rom,jeremyf/rom,denyago/rom,rom-rb/rom |
eb6c9527d9b62e5b575aecfc179d5ec5ef0bdaef | spec/database.yml | spec/database.yml | mysql:
adapter: mysql
database: delayed_job_test
username: root
encoding: utf8
mysql2:
adapter: mysql2
database: delayed_job_test
username: root
encoding: utf8
postgresql:
adapter: postgresql
database: delayed_job_test
username: postgres
sqlite3:
adapter: sqlite3
database: ":memory:"
| mysql:
adapter: mysql
host: 127.0.0.1
database: delayed_job_test
username: root
port: 3306
encoding: utf8
mysql2:
adapter: mysql2
host: 127.0.0.1
database: delayed_job_test
username: root
port: 3306
encoding: utf8
postgresql:
adapter: postgresql
host: 127.0.0.1
database: delayed_job_test... | Update db config for Github actions | Update db config for Github actions
| YAML | mit | collectiveidea/delayed_job_active_record |
c79be1bbde0934621b9077cb76e135012fdd2068 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
install:
- python setup.py install
# command to run tests
script: python${PY:-} test/test.py
| language: python
sudo: false
python:
- "2.7"
install:
- python setup.py install
# command to run tests
script: python${PY:-} test/test.py
| Remove Travis CI tests for python3 and pypy for now | Remove Travis CI tests for python3 and pypy for now
| YAML | mit | infincia/NetRNG |
d16b7e5f075fcbd16e6aacb804af1d664e2f197d | .travis.yml | .travis.yml | language: ruby
before_script:
- mysql -e 'create database `acts_as_interval-test`;'
- cd spec/dummy; RAILS_ENV=test bundle exec rake db:setup
rvm:
- 2.0.0
- 2.1.5
- 2.2.0
| language: ruby
before_script:
- mysql -e 'create database `acts_as_interval-test`;'
- cd spec/dummy; RAILS_ENV=test bin/rake db:setup
rvm:
- 2.0.0
- 2.1.5
- 2.2.0
| Use bin/rake instead of bundle exec | Use bin/rake instead of bundle exec
| YAML | mit | coalwater/acts_as_interval,coalwater/acts_as_interval,coalwater/acts_as_interval |
c7775b636ad1d1425983ac8173e33ffc55827bd3 | .travis.yml | .travis.yml | sudo: false
language: node
cache:
yarn: true
directories:
- test/elm-stuff/build-artifacts
- elm-stuff
- node_modules
install:
- yarn install
- elm package install --yes
script:
- yarn elm-test
| sudo: false
language: node_js
cache:
yarn: true
directories:
- test/elm-stuff/build-artifacts
- elm-stuff
- node_modules
install:
- yarn install
- elm package install --yes
script:
- yarn elm-test
| Use correct name for node | Use correct name for node
| YAML | mit | mattiaslundberg/trellooverview,mattiaslundberg/trellooverview |
3d293bd0a069346bdd3c4ffb67e1117fb75b3b42 | .travis.yml | .travis.yml | rvm:
- 1.9.3
| before_script: cd test_app && ./script/rails generate impressionist && bundle exec rake db:migrate
language: ruby
rvm:
- 1.9.3
| Add setup steps to CI configuration | Add setup steps to CI configuration
| YAML | mit | charlotte-ruby/impressionist,charlotte-ruby/impressionist,firmanm/impressionist,guodongme/impressionist,charlotte-ruby/impressionist,firmanm/impressionist,samchen2009/impressionist,firmanm/impressionist,samchen2009/impressionist,guodongme/impressionist,guodongme/impressionist,samchen2009/impressionist |
51ee1e6fd56aba570f3d2dc77de02530a535e3ce | .travis.yml | .travis.yml | language: python
dist: trusty
sudo: false
python:
- "3.5"
- "3.6"
- "3.7"
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.... | language: python
dist: trusty
sudo: false
python:
- "3.5"
- "3.6"
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O mi... | Remove 3.7 testing as Travis doesn't support it | Remove 3.7 testing as Travis doesn't support it | YAML | apache-2.0 | eEcoLiDAR/eEcoLiDAR |
4b7b2b450a80c5e6fce08484f9383ff6f945edcf | .travis.yml | .travis.yml | language: php
php:
- '5.6'
- '7.0'
- '7.1'
env:
- NO_INTERACTION=1
matrix:
include:
- os: osx
language: generic
php: '7.1'
before_install:
- brew tap homebrew/php
- brew update
- brew install php71
before_script:
- phpize
- ./configure --enable-sha3
- make
s... | language: php
php:
- '5.6'
- '7.0'
- '7.1'
- '7.2'
env:
- NO_INTERACTION=1
matrix:
include:
- os: osx
language: generic
php: '7.2'
before_install:
- brew update
- brew install php
before_script:
- phpize
- ./configure --enable-sha3
- make
script: make test
| Add PHP 7.2 to Travis build | Add PHP 7.2 to Travis build | YAML | mit | strawbrary/php-sha3,strawbrary/php-sha3,strawbrary/php-sha3 |
48fda8772ba3137c22ba16d1bc177013e2d5f8cf | .travis.yml | .travis.yml | sudo: required
language: bash
services:
- docker
install:
- git clone https://github.com/thyrlian/AndroidSDK.git ~/AndroidSDK
script:
- docker build -t android-sdk ~/AndroidSDK/android-sdk
- docker images
- docker run -it --rm android-sdk bash -c 'cat /etc/*release | grep VERSION= && java -version && grad... | sudo: required
language: bash
services:
- docker
install:
- git clone https://github.com/thyrlian/AndroidSDK.git ~/AndroidSDK
script:
- docker build -t android-sdk ~/AndroidSDK/android-sdk
- docker images
- cmd=$(cat ~/AndroidSDK/version_inspector.sh)
- docker run -it --rm android-sdk bash -c "$cmd"
| Call version_inspector script in Travis file | Call version_inspector script in Travis file
| YAML | apache-2.0 | thyrlian/AndroidSDK,thyrlian/AndroidSDK |
57557892af817bc434cd6c44ce1acd0dbd3ad360 | .travis.yml | .travis.yml | language: python
matrix:
include:
- python: 3.6
- python: 3.7
- python: 3.8
- python: 3.9
install:
- pip install -U setuptools pip pipenv
- pipenv install
script:
- pipenv run test
jobs:
include:
- if: branch = master
stage: deploy-docs
python: 3.9
install:
- p... | language: python
matrix:
include:
- python: 3.6
- python: 3.7
- python: 3.8
install:
- pip install -U setuptools pip pipenv
- pipenv install
script:
- pipenv run test
jobs:
include:
- if: branch = master
stage: deploy-docs
python: 3.8
install:
- pip install -U setu... | Revert "Add Python 3.9 to the build matrix" | Revert "Add Python 3.9 to the build matrix"
This reverts commit 693d40cc
| YAML | apache-2.0 | browncoat-ninjas/nimoy |
702debbcc052204493e2aa44cb4e1536c5811f21 | .travis.yml | .travis.yml | language: c
os:
- linux
- osx
env:
matrix:
- PYTHON_VERSION=2.7
- PYTHON_VERSION=3.3
- PYTHON_VERSION=3.4
- PYTHON_VERSION=3.5
global:
- CONDA_DEPENDENCIES='numpy matplotlib psutil'
- PIP_DEPENDENCIES='coveralls pytest-cov'
- SETUP_XVFB=True
bef... | language: c
os:
- linux
- osx
env:
matrix:
- PYTHON_VERSION=2.7 PSUTIL_VERSION=1
- PYTHON_VERSION=2.7 PSUTIL_VERSION=2
- PYTHON_VERSION=2.7 PSUTIL_VERSION=3
- PYTHON_VERSION=3.4 PSUTIL_VERSION=4
- PYTHON_VERSION=3.5 PSUTIL_VERSION=5
global:
- CONDA_DEPEN... | Add builds for different versions of psutil | Add builds for different versions of psutil | YAML | bsd-2-clause | saimn/psrecord,astrofrog/psrecord |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.