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 |
|---|---|---|---|---|---|---|---|---|---|
4f90c0ecff052ca0a92373e12f5f2bd455fcc2a5 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk11
install:
- mvn -N io.takari:maven:wrapper -Dmaven=3.3.9
- ./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
notifications:
email:
recipients:
- travis-ci.eclipse-augments@hohenegger.eu
on_success: change
on_failure: always
| language: java
jdk:
- openjdk11
notifications:
email:
recipients:
- travis-ci.eclipse-augments@hohenegger.eu
on_success: change
on_failure: always
| Remove deprecated Maven version workaround. | Remove deprecated Maven version workaround. | YAML | epl-1.0 | Treehopper/EclipseAugments |
7c4601da305a9b75274dab6f099a725fa3152272 | .travis.yml | .travis.yml | language: ruby
rvm:
- ruby-1.9.3
- ruby-2.0.0
- ruby-2.1.4
- ruby-2.2-head
- jruby
- rbx-2.4.1
- rbx-2.5.2
before_install: gem install bundler -v 1.10.5
| language: ruby
rvm:
- ruby-1.9.3
- ruby-2.0.0
- ruby-2.1.5
- ruby-2.2.1
- jruby
- rbx-2.4.1
- rbx-2.5.2
before_install: gem install bundler -v 1.10.5
| Update TravisCI version to latest | Update TravisCI version to latest
| YAML | mit | zenkay/dandelionapi-ruby,zenkay/dandelionapi-ruby |
2a7f77ec621868f6b3b4b76935440877a7b2dd28 | .travis.yml | .travis.yml | # Configuration file to run tests on Travis-CI via GitHub notifications
# See http://travis-ci.org/
language: python
python:
# No skiptest in 2.6 so ignore for now
# - "2.6"
- "2.7"
install:
- "pip install ."
script:
# Run the unit tests for bcftbx
- "python setup.py test"
| # Configuration file to run tests on Travis-CI via GitHub notifications
# See http://travis-ci.org/
language: python
python:
# No skiptest in 2.6 so ignore for now
# - "2.6"
- "2.7"
install:
- "pip install ."
script:
# Run the unit tests for bcftbx
- "python setup.py test"
# Run the best_exons example
- "cd... | Add test script for best_exons.py to the Travis testing. | Add test script for best_exons.py to the Travis testing.
| YAML | artistic-2.0 | fw1121/genomics,fw1121/genomics,fw1121/genomics,fw1121/genomics,fw1121/genomics |
f43326f2f6fc8d5cf2b370242f9683bf2a9a34b3 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2 ordereddict; fi
- python setup.py -q install
script:
- py.test tests
| language: python
python:
- 3.6
- 2.7
- 3.5
- 3.4
- 3.3
- 3.2
- 2.6
- pypy
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2 ordereddict; fi
- python setup.py -q install
- pip install -U pytest
script:
- py.test tests
| Build more important python versions first. | TRAVIS_CI: Build more important python versions first.
| YAML | bsd-3-clause | jenisys/parse_type,jenisys/parse_type |
d1c7a8256ab387559dbe6fd890330977b626717c | .travis.yml | .travis.yml | language: python
python: 3.4
cache: pip
script: python manage.py test
sudo: false
notifications:
slack: djangogirls:f5ZWSNUTwKp1C8L8rr3PYjg7
cache:
directories:
- $HOME/virtualenv
addons:
postgresql: "9.3"
services:
- postgresql
before_script:
- psql -c 'create database djangogirls;' -U postgres
| language: python
python: 3.4
cache: pip
script: python manage.py test
sudo: false
notifications:
slack: djangogirls:f5ZWSNUTwKp1C8L8rr3PYjg7
cache:
directories:
- $HOME/virtualenv
addons:
postgresql: "9.3"
services:
- postgresql
env:
- COVERAGE=TRUE
before_script:
- psql -c 'create database djangogirls;... | Set COVERAGE=TRUE for Travis build | Set COVERAGE=TRUE for Travis build
| YAML | bsd-3-clause | DjangoGirls/djangogirls,DjangoGirls/djangogirls,patjouk/djangogirls,DjangoGirls/djangogirls,patjouk/djangogirls,patjouk/djangogirls,patjouk/djangogirls |
59ab2b034fe3510ef22f7c4d0611e1a5585c6a8b | .travis.yml | .travis.yml | ---
language: ruby
dist: trusty
before_install:
- gem install bundler
- export CXX="g++-4.8"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- pandoc
rvm:
- 2.3.8
- 2.4.9
- 2.5.7
- 2.6.5
- ruby-head
- rbx-3
- jruby-9.2.11.0
- jruby-head
script: ./.travis.sh
matrix... | ---
language: ruby
dist: trusty
before_install:
- gem install bundler
- export CXX="g++-4.8"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- pandoc
rvm:
- 2.3.8
- 2.4.9
- 2.5.7
- 2.6.5
- 2.7.0
- ruby-head
- rbx-3
- jruby-9.2.11.0
- jruby-head
script: ./.travis.... | Add Ruby 2.7 to build matrix | Add Ruby 2.7 to build matrix
| YAML | mit | jkowens/sinatra,ryanshaw/sinatra,sinatra/sinatra,sinatra/sinatra,jkowens/sinatra,ryanshaw/sinatra,jkowens/sinatra |
c47692c5c283c5afd6245224dd686b6cd2f3c666 | .travis.yml | .travis.yml | language: python
sudo: false
cache: pip
python:
- '3.6'
env:
matrix:
- TOXENV=qa
- DJANGO=111
- DJANGO=20
- DJANGO=master
matrix:
fast_finish: true
allow_failures:
- env: DJANGO=master
install:
- pip install --upgrade pip tox
- pip install -U coveralls
before_script:
- |
if [[ -z $TOXENV ]]; then
... | language: python
sudo: false
cache: pip
python:
- '3.6'
env:
matrix:
- TOXENV=qa
- DJANGO=111
- DJANGO=20
- DJANGO=master
matrix:
fast_finish: true
allow_failures:
- env: DJANGO=master
install:
- pip install --upgrade codecov tox
before_script:
- |
if [[ -z $TOXENV ]]; then
export TOXENV=py$(echo ... | Switch to CodeCov for coverage tracking | Switch to CodeCov for coverage tracking
| YAML | mit | KristianOellegaard/django-health-check,KristianOellegaard/django-health-check |
0533003ff268228f62306f4dd3cc69eb7777693b | .travis.yml | .travis.yml | language: cpp
sudo: required
compiler:
- clang
- gcc
env:
global:
- secure: "SnIBG/xLIHX3CSvUbqqsX8xTVqIqQ7fFS6HWO6KZQVBsT6yugTwYHbyhNiU531JejYJ/I3ZrDhXfYH3qFZiYxnH1sifvwV+fnTtMXpPN7qPZwIymkjcmm6gJF51e0C7VOfUbvKFv0ngwj+ul21rgZSMuoEvxPK0WxtE3/ZSfn9c="
- "APT_DEPENDENCIES=doxygen doxygen-latex libboost-all-dev libeigen3-... | language: cpp
sudo: required
compiler:
- clang
- gcc
env:
global:
- secure: "SnIBG/xLIHX3CSvUbqqsX8xTVqIqQ7fFS6HWO6KZQVBsT6yugTwYHbyhNiU531JejYJ/I3ZrDhXfYH3qFZiYxnH1sifvwV+fnTtMXpPN7qPZwIymkjcmm6gJF51e0C7VOfUbvKFv0ngwj+ul21rgZSMuoEvxPK0WxtE3/ZSfn9c="
- "APT_DEPENDENCIES=doxygen doxygen-latex libboost-all-dev libeigen3-... | Correct indirect call to custom_build | [Travis] Correct indirect call to custom_build
| YAML | bsd-2-clause | fvalenza/pinocchio,fvalenza/pinocchio,aelkhour/pinocchio,aelkhour/pinocchio,fvalenza/pinocchio,aelkhour/pinocchio,fvalenza/pinocchio,aelkhour/pinocchio |
4a11bc91280af53ad4098f35338a0424af714d82 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
install:
- pip install coveralls --use-mirrors
script: py.test test_schedule.py --pep8 coveralls -v --cov coveralls --cov-report term-missing
after_success:
- coveralls
| language: python
python:
- "2.7"
- "3.3"
install:
- pip install pytest-cov --use-mirrors
- pip install pytest-pep8 --use-mirrors
- pip install coveralls --use-mirrors
script: py.test test_schedule.py --pep8 schedule -v --cov schedule --cov-report term-missing
after_success:
- coveralls
| Fix py.test command to generate coverage data. | Fix py.test command to generate coverage data.
| YAML | mit | dylwhich/schedule,dbader/schedule,chop-dbhi/schedule,imiric/schedule,cfrco/schedule,mrhwick/schedule,seemethere/schedule |
56359afa2a2312e756b6a1cbf2768c1a31c4c900 | .travis.yml | .travis.yml | ---
language: ruby
bundler_args: --without development
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
... | ---
language: ruby
bundler_args: --without development
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 2.7"
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 3.0"
... | Use modulesync to manage meta files | Use modulesync to manage meta files
| YAML | apache-2.0 | camptocamp/puppet-kmod,fuel-infra/puppet-kmod,camptocamp/puppet-kmod,buzzdeee/puppet-kmod,fuel-infra/puppet-kmod,buzzdeee/puppet-kmod,redhat-cip/puppet-kmod,redhat-cip/puppet-kmod |
268eaf6bd6700f308720b3c8de31125d61a3a267 | .travis.yml | .travis.yml | language: node_js
node_js:
- '5'
- '4'
| language: node_js
node_js:
- '10'
- '8'
- '6'
- '4'
| Test all major recent node versions | Test all major recent node versions | YAML | mit | dawsonbotsford/sist |
dcc4bc1c531eeb89f1c3b9e320587433ee14026d | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.4"
- "3.5"
install: "pip install -r requirements.txt"
script: py.test
| language: python
python:
- "3.3"
- "3.4"
- "3.5"
install: "pip install -r requirements.txt"
before_script: export PYTHONPATH=$PYTHONPATH:$(pwd)
script: py.test
| Fix failing tests in Travis | Fix failing tests in Travis
| YAML | mit | itcrab/dark_keeper,itcrab/dark-keeper |
be61566d0feba9d5b1d31d94d39b10b50d8664dd | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo apt-get -qq update
- sudo apt-get install -qq libhdf5-serial-dev python-h5py
- sudo apt-get install -qq libatlas-dev libatlas-base-de... | language: python
python:
- "2.6"
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo apt-get -qq update
- sudo apt-get install -qq libhdf5-serial-dev python-h5py
- sudo apt-get install -qq libatlas-dev libatlas-base-de... | Add gstreamer-plugins-bad dependency in Travis | Add gstreamer-plugins-bad dependency in Travis
| YAML | agpl-3.0 | Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide |
07ee2e66c0ff04adfa59949b29e73e87e3a25921 | playbooks/roles/common/tasks/main.yml | playbooks/roles/common/tasks/main.yml | ---
- name: Install zplug
command: curl -sL --proto-redir -all,https https://zplug.sh/installer | zsh
- name: Create local directories
file: path="{{ ansible_env.HOME | join('/workspace/git') }}" state=directory
- name: Restore dotfiles with Mackup
command: mackup restore
| ---
- name: Install zplug
git: repo=https://github.com/zplug/zplug dest=~/zplug
- name: Create local directories
file: path="{{ ansible_env.HOME | join('/workspace/git') }}" state=directory
- name: Restore dotfiles with Mackup
command: mackup restore
| Clone repo instead of running their installer | Clone repo instead of running their installer
| YAML | mit | benmezger/dotfiles,benmezger/dotfiles,benmezger/dotfiles,benmezger/dotfiles |
1caf00dc216def1f474086448f900b0b13f8c720 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
before_install:
- gem install bundler -v 1.17.3
- | # cached install of Neo4j locally:
if [ ! -d neo4j-community-2.3.3/bin ];
then
wget dist.neo4j.org/neo4j-community-2.3.3-unix.tar.gz;
tar -xzf neo4j-community-2.3.... | dist: trusty
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
before_install:
- gem install bundler -v 1.17.3
- | # cached install of Neo4j locally:
if [ ! -d neo4j-community-2.3.3/bin ];
then
wget dist.neo4j.org/neo4j-community-2.3.3-unix.tar.gz;
tar -xzf neo4j-community-2.3.3-unix.tar.g... | Drop unused sudo: false directive | CI: Drop unused sudo: false directive | YAML | mit | DatabaseCleaner/database_cleaner,DatabaseCleaner/database_cleaner |
68ad62275c80585d8fe244613bede9c3f9977d83 | .travis.yml | .travis.yml | language: php
php: [5.3, 5.4, 5.5, 5.6, hhvm, hhvm-nightly]
matrix:
include:
- php: 5.3.3
env: DEPENDENCIES='low'
- php: 5.6
env: DEPENDENCIES='dev'
allow_failures:
- php: hhvm-nightly
- env: DEPENDENCIES='dev'
fast_finish: true
sudo: false
cache:
directories:
- $HOME/.compos... | language: php
php: [5.3, 5.4, 5.5, 5.6, hhvm, hhvm-nightly]
matrix:
include:
- php: 5.3.3
env: DEPENDENCIES='low'
- php: 5.6
env: DEPENDENCIES='dev'
allow_failures:
- php: hhvm-nightly
- env: DEPENDENCIES='dev'
fast_finish: true
sudo: false
cache:
directories:
- $HOME/.compos... | Remove config that was fixing an old HHVM issue | Remove config that was fixing an old HHVM issue
| YAML | mit | Harrisonbro/phpspec,gnugat-forks/phpspec,nosun/phpspec,rawkode/phpspec,gnugat-forks/phpspec,jon-acker/phpspec,ulabox/phpspec,iakio/phpspec,rawkode/phpspec,bestform/phpspec,jon-acker/phpspec,ghamoron/phpspec,iakio/phpspec,javi-dev/phpspec,danielkmariam/phpspec,localheinz/phpspec,Dragonrun1/phpspec,pamil/phpspec,bestform... |
e6c2f6c5e8a0b9cee3c5f3761fdbd778a459ca01 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
sudo: false
env:
- DJANGO=1.5.12 TEST_DATABASE_NAME=serrano TEST_DATABASE_USER=postgres
- DJANGO=1.6.10 TEST_DATABASE_NAME=serrano TEST_DATABASE_USER=postgres
- DJANGO=1.7.10 TEST_DATABASE_NAME=serrano TEST_DATABASE_USER=postgres
addons:
postgresql: "... | language: python
python:
- "2.6"
- "2.7"
sudo: false
env:
- DJANGO=1.5.12 TEST_DATABASE_NAME=serrano TEST_DATABASE_USER=postgres
- DJANGO=1.6.10 TEST_DATABASE_NAME=serrano TEST_DATABASE_USER=postgres
- DJANGO=1.7.10 TEST_DATABASE_NAME=serrano TEST_DATABASE_USER=postgres
addons:
postgresql: "... | Use flake8 2.6.x for Python 2.6 support | Use flake8 2.6.x for Python 2.6 support
Signed-off-by: Byron Ruth <e9d71f5ee7c92d6dc9e92ffdad17b8bd49418f98@devel.io>
| YAML | bsd-2-clause | chop-dbhi/serrano,chop-dbhi/serrano |
f5fa1f38e31348d86cc9084d8a73174fcdca21c7 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- stable
- "0.12"
| sudo: false
language: node_js
node_js:
- "5"
- "4"
- "0.12"
| Add Node.js 4 and 5 to Travis CI | Add Node.js 4 and 5 to Travis CI
| YAML | mit | postcss/postcss-scss |
020d11c3b9c0c7a3c2efcc8e5cf5b9ef7bcea21f | .travis.yml | .travis.yml | language: go
go:
- 1.0
- 1.1
- 1.2
- 1.3
- 1.4
sudo: false
| language: go
go:
- 1.0
- 1.1
- 1.2
- 1.3
- 1.4
- 1.5
sudo: false
| Add Go 1.5 to Travis | ci: Add Go 1.5 to Travis | YAML | mit | renstrom/dedent,lithammer/dedent |
a04990863403818ba41e1d3a3f66c3db868fefbb | .travis.yml | .travis.yml | language: go
go:
- 1.3
- release
- tip
install: go get -d -t -v ./... | language: go
go:
- 1.3.3
- 1.4.1
install: go get -d -t -v ./...
| Fix Go versions for Travis. | Fix Go versions for Travis.
| YAML | isc | Stash-Crypto/btcwallet,btcsuite/btcwallet,synrg-labs/btcwallet,Stash-Crypto/btcwallet,btcsuite/btcwallet,jrick/dcrwallet,jrick/btcwallet,decred/dcrwallet,jrick/btcwallet,Roasbeef/btcwallet,synrg-labs/btcwallet,jrick/dcrwallet,decred/dcrwallet,Roasbeef/btcwallet |
e13f595ff17adc149ae66f89be388c0759dc1495 | .travis.yml | .travis.yml | language: cpp
compiler:
- clang
before_install:
- sudo apt-get install cmake libsfml-dev
script:
- mkdir _build && cd _build
- cmake ..
- make Aquila aquila_test
- ctest
| language: cpp
compiler:
- clang
- gcc
before_install:
- sudo apt-get install cmake libsfml-dev
script:
- mkdir _build && cd _build
- cmake ..
- make Aquila aquila_test
- ctest
| Build with gcc, not only clang. | Build with gcc, not only clang.
| YAML | apache-2.0 | zsiciarz/aquila,synkarae/Quasar,tempbottle/aquila,tempbottle/aquila,sav6622/aquila,synkarae/Quasar,Aldor007/aquila,zsiciarz/aquila,tempbottle/aquila,synkarae/aquila,zsiciarz/aquila,synkarae/Quasar,Aldor007/aquila,sav6622/aquila,Aldor007/aquila,zsiciarz/aquila,synkarae/aquila,sav6622/aquila,synkarae/aquila |
b78f5d482fa0361728fa38a4392d2beddd089528 | .travis.yml | .travis.yml | language: node_js
node_js:
- "5"
- "4"
- "0.12"
- "0.11"
- "0.10"
| language: node_js
node_js:
- "node"
- "6"
- "5"
| Update CI to test node 5, 6 and future latest version. | Update CI to test node 5, 6 and future latest version.
| YAML | mit | ashi009/node-fast-crc32c |
59eb9129fc61497d3bcea3a6efd558bcfe5f1ef4 | .travis.yml | .travis.yml | sudo: required
services:
- docker
notifications:
slack:
on_success: never
on_failure: always
rooms:
- oicr:S9k4EowgQv9AnbCfEZHSzCsg
language: java
jdk:
- oraclejdk8
install: pip install --user cwltools
script:
- cd launcher
- mvn -B clean install -DskipITs=false
after_success:
- m... | sudo: required
services:
- docker
notifications:
slack:
on_success: never
on_failure: always
rooms:
- oicr:S9k4EowgQv9AnbCfEZHSzCsg
language: java
jdk:
- oraclejdk8
install:
- pip install --upgrade
- pip install --user cwl-runner
script:
- cd launcher
- mvn -B clean install -Dsk... | Fix name of cwltool from | Fix name of cwltool from
https://pypi.python.org/pypi/cwltool
| YAML | apache-2.0 | ga4gh/dockstore,ga4gh/dockstore,ga4gh/dockstore |
720c414b76e86961f262dcd4513ab1ff49724263 | .travis.yml | .travis.yml | language: ruby
cache: bundler
script:
- bundle exec rake
- bundle exec rspec
rvm:
- 2.0.0
| language: ruby
cache: bundler
script:
- bundle exec rake
- bundle exec rspec
- bundle exec cucumber
rvm:
- 2.0.0
| Add Cucumber to Travis build | Add Cucumber to Travis build
| YAML | agpl-3.0 | valeriecodes/refugerestrooms,azelma/refugerestrooms,azelma/refugerestrooms,cllns/refugerestrooms,mathonsunday/welcomehome,azelma/refugerestrooms,cllns/refugerestrooms,cllns/refugerestrooms,mathonsunday/welcomehome,valeriecodes/refugerestrooms,azelma/refugerestrooms,RefugeRestrooms/refugerestrooms,RefugeRestrooms/refuge... |
015290bb61b84f0302270a2cc3a3c56044f78f58 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
| language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
| Add 0.12 into test environments | Add 0.12 into test environments | YAML | mit | greyhwndz/node.bcrypt.js,listepo/node.bcrypt.js,linalu1/node.bcrypt.js,DJMcK/node.bcrypt.js,nullivex/node.bcrypt.js,kelektiv/node.bcrypt.js,listepo/node.bcrypt.js,nullivex/node.bcrypt.js,kelektiv/node.bcrypt.js,greyhwndz/node.bcrypt.js,kelektiv/node.bcrypt.js,nullivex/node.bcrypt.js,nullivex/node.bcrypt.js,ksmyth/node.... |
bb037262c43b1dab10084f5241fcd81a5b2e4642 | .travis.yml | .travis.yml | language: c
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
global:
- ALCOTEST_SHOW_ERRORS=1
- REVDEPS="irmin-indexeddb"
- PINS="irmin.dev:. irmin-mem.dev:. irmin-fs.dev:. irmin-http.dev:. irmin-git.dev:. irmin-mirage.dev... | language: c
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
global:
- ALCOTEST_SHOW_ERRORS=1
- REVDEPS="irmin-indexeddb"
- PINS="irmin.dev:. irmin-mem.dev:. irmin-fs.dev:. irmin-http.dev:. irmin-git.dev:. irmin-mirage.dev... | Test 4.05 and 4.06 in Travis | Test 4.05 and 4.06 in Travis
| YAML | isc | mirage/irmin,mirage/irmin |
e3525c7cfa88b27cf0a5f55c7218e7295e7bf4cb | .travis.yml | .travis.yml | language: java
os: linux
dist: trusty
sudo: required
cache:
directories:
- $HOME/.m2
install: /bin/true
before_script:
- "sudo apt install -qq -y maven gtk+3.0 stalonetray ubuntu-gnome-desktop chromium-browser"
- "touch ~/.stalonetrayrc"
- "export DISPLAY=:99.0"
- "Xvfb :99 -screen 0 1024x768x24 > /dev/... | language: java
os: linux
dist: trusty
sudo: required
cache:
directories:
- $HOME/.m2
install: /bin/true
before_script:
- "apt-get install -qq -o=Dpkg::Use-Pty=0 -y maven gtk+3.0 stalonetray ubuntu-gnome-desktop chromium-browser"
- "touch ~/.stalonetrayrc"
- "export DISPLAY=:99.0"
- "Xvfb :99 -screen 0 1... | Make aptitude even less noisy | Make aptitude even less noisy
| YAML | apache-2.0 | Tristan971/EasyFXML,Tristan971/EasyFXML |
8ffcd18dc0c955a964fb9f7cc1f68b63040d538d | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
env:
- DJANGO="1.8"
- DJANGO="1.9"
- DJANGO="1.10"
- DJANGO="1.11"
install: pip install tox-travis codecov
script: tox
after_success: coverage combine && codecov
matrix:
fast_finish: true
include:
- python: 3.6
en... | sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
env:
- DJANGO="1.8"
- DJANGO="1.9"
- DJANGO="1.10"
- DJANGO="1.11"
install: pip install tox-travis codecov
script: tox
after_success: coverage combine && codecov
matrix:
fast_finish: true
include:
- python: 3.6
en... | Make Travis build master again | Make Travis build master again
| YAML | apache-2.0 | tarkatronic/django-excel-response |
99569115e0a2d9c00dd46a56e3a58092396a2847 | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
install:
- composer install --no-interaction --prefer-dist --no-suggest
script: vendor/bin/phpunit
| language: php
php:
- 7.0
- 7.1
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini
- travis_retry composer self-update
install:
- composer install --no-interaction --prefer-dist --no-suggest
script: vendor/bin/phpunit
| Disable xdebug on Travis CI | Disable xdebug on Travis CI
| YAML | mit | thecrypticace/lazy |
c01efc3f3bbf3e81307e0adb9d47bc9e3dc548cc | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
# Enable container-based architecture.
sudo: false
addons:
apt:
packages:
# Travis is on 64bit and there will be a cryptic aapt error w/o these libs.
# For native code tests, we need some additional libraries if we are in a 64-bit environment.
- libgd2-xpm
... | language: java
jdk:
- oraclejdk8
# Enable container-based architecture.
sudo: false
addons:
apt:
packages:
# Travis is on 64bit and there will be a cryptic aapt error w/o these libs.
# For native code tests, we need some additional libraries if we are in a 64-bit environment.
- libgd2-xpm
... | Use newer java 8 on Travis CI | Use newer java 8 on Travis CI
Summary:
Per https://github.com/travis-ci/travis-ci/issues/4042, this should
give us a newer jdk on Travis CI.
Closes https://github.com/facebook/buck/pull/968
Reviewed By: marcinkosiba
fbshipit-source-id: 918b1bb
| YAML | apache-2.0 | illicitonion/buck,davido/buck,davido/buck,facebook/buck,grumpyjames/buck,dsyang/buck,LegNeato/buck,grumpyjames/buck,romanoid/buck,shybovycha/buck,shybovycha/buck,darkforestzero/buck,kageiit/buck,clonetwin26/buck,marcinkwiatkowski/buck,k21/buck,shybovycha/buck,robbertvanginkel/buck,davido/buck,k21/buck,k21/buck,ilya-kly... |
e0909f16d6d2c8801ae0119c36486019cfd8cf31 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
| language: node_js
node_js:
- "8"
- "9"
| Test against less ancient node versions | Test against less ancient node versions
| YAML | mit | dpw/node-buffer-more-ints |
861e025449e1d3fdf48b433bdb649c7d4db93569 | .travis.yml | .travis.yml | language: objective-c
#language: objective-c
#xcode_project: FDSoundActivatedRecorder.xcodeproj
#xcode_scheme: FDSoundActivatedRecorder
#xcode_sdk: iphonesimulator7.0
# PER https://github.com/travis-ci/travis-ci/issues/2197
# https://github.com/jessesquires/BButton/blob/54a8b3eb1f237a502201910f455a030800956ebe/.travi... | language: objective-c
xcode_project: FDTakeExample.xcodeproj
xcode_scheme: FDTakeExample
notifications:
email:
fdtake@phor.net
| Update Travis for more vanilla setup | Update Travis for more vanilla setup
| YAML | mit | Lily418/FDTake,wyszo/FDTake,fulldecent/FDTake,kobim/FDTake,Lily418/FDTake,eumlab/FDTake,fulldecent/FDTake,LaserPatrick/FDTake,LaserPatrick/FDTake,eumlab/FDTake,Lily418/FDTake,masd-duc/FDTake,eumlab/FDTake,fulldecent/FDTake |
cf691faab8d18ba109f4caac120970837b4ced98 | .travis.yml | .travis.yml | language: node_js
node_js:
- '4.0'
- '8.0'
after_script: bash <(curl -s https://codecov.io/bash)
sudo: false
deploy:
- provider: npm
email: tituswormer@gmail.com
api_key:
secure: Q6JtoC1bAeMqQmw2fl+xdFxv4wScuUmjNgr/Fc8rLT0z+i84Rp1rJayojOBgFVkpLO5rhJ71OrP4NN4vpAtSp6+hvIqhFNAT98DQqFh6VKEa0TCRFTYzKiCLlKKfM... | language: node_js
node_js:
- '4.0'
- '8.0'
after_script: bash <(curl -s https://codecov.io/bash)
sudo: false
deploy:
provider: releases
api_key:
secure: X6QF7zle+i+uRKy4c1km2m6ZH2AmbFQqnqP4BGoI4CBB+6tRiQCGoz8wd8LkfBemJcaAaS5O/g9ltb/n+QLHG1sMo8pTy0p4YVGOz6Jp8W0JspSkd9J4gEflTqJ0N7ONXCfHbhb9Lq399OkNyR8lc9432bbLv35... | Remove npm deployment from Travis | Remove npm deployment from Travis
| YAML | mit | wooorm/plain-text-data-to-json |
a758f56c90313069cc47236141712093c59eaf7c | .travis.yml | .travis.yml | language: android
android:
components:
- tools
- tools
- platform-tools
- build-tools-24.0.3
- android-24
- sys-img-armeabi-v7a-google_apis-24
- extra
- extra-android-m2repository
script:
./gradlew build test
jdk:
- oraclejdk8
sudo: false
before_cache:
- rm -rf $HOME/.m2/rep... | language: android
android:
components:
- tools
- tools
- platform-tools
- build-tools-24.0.3
- android-24
- sys-img-armeabi-v7a-google_apis-24
- extra
- extra-android-m2repository
script:
./gradlew build test
jdk:
- oraclejdk8
sudo: false
before_cache:
- rm -rf $HOME/.m2/rep... | Remove non-working -no-audio flag for emulator | Remove non-working -no-audio flag for emulator
| YAML | apache-2.0 | MichaelRocks/lightsaber,MichaelRocks/lightsaber |
155471ba2f1838d777cd701ffbed4ea63640b60e | .travis.yml | .travis.yml | language: perl
perl:
- "5.20"
- "5.18"
- "5.16"
- "5.14"
before_install:
- sudo apt-get install build-essential libpng-dev zlib1g-dev libgd2-xpm-dev
- cpanm PerlIO::gzip
- cpanm GD::Image
- ./setup.sh
install: true
script:
- prove -I src/perl5 -r tests/perl_tests
| language: perl
perl:
- "5.20"
- "5.18"
- "5.16"
- "5.14"
before_install:
- sudo apt-get install build-essential libpng-dev zlib1g-dev libgd2-xpm-dev
- cpanm PerlIO::gzip
- cpanm GD::Image
- cpanm DB_File.pm
- ./setup.sh
install: true
script:
- prove -I src/perl5 -r tests/perl_tests
| Add dependencies for perl tests | Add dependencies for perl tests
| YAML | lgpl-2.1 | erasche/jbrowse,erasche/jbrowse,GMOD/jbrowse,nathandunn/jbrowse,nathandunn/jbrowse,limeng12/jbrowse,GMOD/jbrowse,GMOD/jbrowse,Arabidopsis-Information-Portal/jbrowse,Arabidopsis-Information-Portal/jbrowse,Arabidopsis-Information-Portal/jbrowse,nathandunn/jbrowse,Arabidopsis-Information-Portal/jbrowse,erasche/jbrowse,GMO... |
c94992a8f594ca58a1460cfcc9e6ca75d1e1a340 | .travis.yml | .travis.yml | language: perl
perl:
- 5.16
install:
- cpanm --quiet --notest IO::Prompt::Tiny
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
after_success:
- cover -report coveralls
| language: perl
perl:
- 5.16
install:
- cpanm --quiet --notest IO::Prompt::Tiny
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
- cpanm --quiet --notest --installdeps .
after_success:
- cover -report coveralls
| Update install deps for Travis. | Update install deps for Travis.
| YAML | artistic-2.0 | tscornpropst/App-Module-Template |
321f29a1863101ec649980d1583ab08417a94c87 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-2.2
env:
- ACTIVE_RECORD_BRANCH="master"
- ACTIVE_RECORD_BRANCH="4-0-stable"
- ACTIVE_RECORD_VERSION="~> 4.0.0"
- ACTIVE_RECORD_VERSION="~> 3.2.0"
- ACTIVE_RECORD_VERSION="~> 3.1.0"
matrix:
allow_failures:
- rvm: rbx-2.2
- rvm: jrub... | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-2.2
env:
- ACTIVE_RECORD_BRANCH="master"
- ACTIVE_RECORD_BRANCH="4-0-stable"
- ACTIVE_RECORD_VERSION="~> 4.0.0"
- ACTIVE_RECORD_VERSION="~> 3.2.0"
- ACTIVE_RECORD_VERSION="~> 3.1.0"
matrix:
allow_failures:
- rvm: 2.1.0
- r... | Add Ruby 2.1.0 to Travis build | Add Ruby 2.1.0 to Travis build | YAML | mit | mpivaa/pg_search,undergroundwebdesigns/pg_search,savef/pg_search,paultyng/pg_search,rigoleto/pg_search,rigoleto/pg_search,savef/pg_search,undergroundwebdesigns/pg_search,Casecommons/pg_search,zvikamenahemi/pg_search,paultyng/pg_search,Casecommons/pg_search,zvikamenahemi/pg_search,mpivaa/pg_search |
02bf3f298b1d08fb047012b866128c287e6d41c8 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6.1"
before_install:
- npm -g install bower gulp
install:
- npm install && bower install
script:
- gulp | language: node_js
node_js:
- '6.1'
before_install:
- npm -g install bower gulp
install:
- npm install && bower install
script:
- gulp package
deploy:
provider: releases
api_key:
secure: FCAib0wYdzVYa/8pfszmxfarWQWP6GbWvNPetGpczvvNR0ASF30gDAkzAqRSrI+3aPdPEx5pDfAiIyE1FZ4ldi5aRLDOdM9aJX94yioRt1zYOYPmoFMu6e... | Add tag-based GH release to Travis build | Add tag-based GH release to Travis build
| YAML | mit | kog/js-tda,kog/js-tda,kog/js-tda |
87b65259931b727b5c1d62927e12be6934754298 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: node_js
node_js:
- "6"
- "6.1"
- "5.11"
- "0.6"
- "iojs"
os:
- osx
- linux
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
fi
install:
- npm ... | sudo: false
dist: trusty
language: node_js
node_js:
- "6"
- "6.1"
- "5.11"
- "0.6"
- "iojs"
os:
- osx
- linux
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
fi
install:
- npm ... | Remove prebulish script from Travis config | Remove prebulish script from Travis config
| YAML | mit | hasit/vscode-gi |
829f1e806fcbcb507450b253ea7a8d7b43856692 | .travis.yml | .travis.yml | ---
sudo: required
services:
- docker
env:
matrix:
- distribution: centos
version: 7
init: /usr/lib/systemd/systemd
run_opts: "--privileged --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro"
before_install:
- 'docker pull ${distribution}:${version}'
- container_id=$(mktemp)
- 'docker run --d... | ---
sudo: required
services:
- docker
env:
matrix:
- distribution: centos
version: 7
init: /usr/lib/systemd/systemd
run_opts: "--privileged --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro"
before_install:
- docker pull ${distribution}:${version}
- container_id=$(mktemp)
- docker run --deta... | Revert "add quote for docker command" | Revert "add quote for docker command"
This reverts commit 4ba55bf7f8a8b6bed7b8f604f678275f0f68e65d.
| YAML | mit | IMOKURI/dotfiles,IMOKURI/dotfiles |
ed4b9d43b2402cad8c56f892ead3a5d454b54a61 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- phpenv config-add ./app/config/php.ini
- composer install --prefer-source
script:
- find ./src -name "*.php" -exec php -l {} \;
- ./bin/phpspec run --format=pretty
- ./bin/phpunit --printer PHPUnit_Util_TestDox_ResultPrinter_Text
- php ./coverag... | language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- phpenv config-add ./app/config/php.ini
- composer install --prefer-source
script:
- find ./src -name "*.php" -exec php -l {} \;
- ./bin/phpspec run --format=pretty
- ./bin/phpunit --printer PHPUnit_Util_TestDox_ResultPrinter_Text
- ./bin/phpcpd ... | Add check for how much code coverage the PHP spec tests are generating. | Add check for how much code coverage the PHP spec tests are generating.
| YAML | mit | jojo1981/playyard |
bc040d0b95cba119f5fd4b55cc574802cd41ce5d | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- node
addons:
firefox: '42.0'
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && ... | language: node_js
sudo: false
node_js:
- node
addons:
firefox: '49.0.2'
apt:
packages:
- oracle-java8-installer
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(proces... | Update Firefox to 49.0.2 and make wct happy again | Update Firefox to 49.0.2 and make wct happy again
| YAML | apache-2.0 | Collaborne/d3-progress-meter |
0fae271b92004fe115ac4f461868f2b968cb3639 | .travis.yml | .travis.yml | os:
- linux
- osx
# Enable Trusty dist, Standard is ancient.
dist: trusty
# Enable C++ support
language: cpp
# # Compiler selection
compiler:
- clang
- gcc
# Build steps
script:
- mkdir build && cd build
- if [[ $TRAVIS_OS_NAME = osx ]]; then cmake ..; else cmake -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl/ .... | os:
- linux
- osx
# Enable Trusty dist, Standard is ancient.
dist: trusty
# Enable C++ support
language: cpp
# # Compiler selection
compiler:
- clang
- gcc
# Build steps
script:
- mkdir build && cd build
- if [[ $TRAVIS_OS_NAME = osx ]]; then cmake ..; else cmake -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl/ -... | Add explicit OPENSSL_INCLUDE_DIR on OSX. | Add explicit OPENSSL_INCLUDE_DIR on OSX.
| YAML | mit | madf/jwtxx,madf/jwtxx |
92dcc80186e478ff605118610d71f4cf8851ca3c | .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"
- iojs
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
- sudo apt-get install libusb-dev
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| Add libusb installation as a pre step. | Add libusb installation as a pre step.
| YAML | mit | cliffano/buildlight |
378d35fee1df353e9f8b56b30a98002f112a40d0 | .travis.yml | .travis.yml | language: rust
rust:
- nightly
- beta
addons:
rethinkdb: '2.3.5'
before_script:
- rethinkdb --port-offset 1 --directory rethinkdb_data1 --join localhost:29015 > /dev/null 2>&1 &
- rethinkdb --port-offset 2 --directory rethinkdb_data2 --join localhost:29015 > /dev/null 2>&1 &
script:
- cargo test
- cargo doc --no-... | language: rust
rust:
- nightly
- beta
- stable
- 1.15.0
addons:
rethinkdb: '2.3.5'
before_script:
- rethinkdb --port-offset 1 --directory rethinkdb_data1 --join localhost:29015 > /dev/null 2>&1 &
- rethinkdb --port-offset 2 --directory rethinkdb_data2 --join localhost:29015 > /dev/null 2>&1 &
script:
- cargo test... | Add Rust v1.15.0 as minimum supported version | Add Rust v1.15.0 as minimum supported version
| YAML | apache-2.0 | rust-rethinkdb/reql,rust-rethinkdb/reql,rust-rethinkdb/reql,rust-rethinkdb/reql,rust-rethinkdb/reql,rust-rethinkdb/reql |
db37f9539d34df9b60130faf4d127c2912969105 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
before_script:
"pushd spec/dummy && RAILS_ENV=test bundle exec rake db:create db:migrate; popd"
notifications:
recipients:
- alerts@oneclickorgs.com
| language: ruby
rvm:
- 1.9.3
- 2.0.0
before_install:
- gem install bundler
before_script:
"pushd spec/dummy && RAILS_ENV=test bundle exec rake db:create db:migrate; popd"
notifications:
recipients:
- alerts@oneclickorgs.com
| Use latest version of Bundler. | Travis: Use latest version of Bundler.
Travis is currently using Bundler 1.13.6 on Ruby 2.0.0, and 1.7.6 on
Ruby 1.9.3. These versions have a bug where Bundler will try to install
the latest version of a gem that satisfies the dependencies even if that
version is incompatible with the Ruby version.
| YAML | agpl-3.0 | oneclickorgs/rticles,oneclickorgs/rticles,oneclickorgs/rticles |
f2727a354a6e99f6acb907b1f084aef2b3bec617 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
env:
- DJANGO="Django<1.5"
- DJANGO="Django<1.6"
- DJANGO="Django<1.7"
- DJANGO="Django<1.8"
install:
- pip install $DJANGO --use-mirrors
script:
- python runtests.py
before_script:
- sh -c "if [ '$DJANGO' = 'Django<1.5' -o '$DJANGO' = '... | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
env:
- DJANGO="Django<1.6"
- DJANGO="Django<1.7"
- DJANGO="Django<1.8"
install:
- pip install $DJANGO --use-mirrors
script:
- python runtests.py
before_script:
- sh -c "if [ '$DJANGO' = 'Django<1.6' ]; then pip install django-discover-runn... | Remove testing on Django 1.4 | Remove testing on Django 1.4
| YAML | bsd-2-clause | funkybob/formulation |
704e4f42fe2fbbe141c52b6ea89575e63ca24046 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
env:
- NODE_ENV=development
| language: node_js
node_js:
- '0.10'
env:
- NODE_ENV=development
notifications:
slack:
secure: fsCX0/TDE9TAJR0S91dboOZ4expmCc8o6joVzsHNJYTJfDtSJehdKjTzYuO/vsRigOOoQZ0dJEPl+D4fysBDV+jkOT5sTjp/uKtcfwHwPi03K8GauwvyW0x4N1M+mY+5jN2ZyBZXqVM5dc0wbgldP9QOg5UpB80hfWUZ+0F1MTM=
| Send notifiction to Slack after CI build | script: Send notifiction to Slack after CI build
| YAML | mit | bpytlik/abao,cybertk/abao |
0393acfee72c191e94d1e8071e5ae0acd86b7a06 | .travis.yml | .travis.yml |
language: go
go:
- 1.6
- 1.7
- 1.8.x
| language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x
| Use wildcard versions for Go in Travis config. | Use wildcard versions for Go in Travis config.
So that the latest patch version is tested.
| YAML | apache-2.0 | google/pprof,google/pprof,rauls5382/pprof,google/pprof,google/pprof,rauls5382/pprof |
af1061ff19e7e005826e7b10664824ee724f0960 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- 'iojs'
before_script: npm config set coverage true
after_success: npm run-script coveralls
env:
- DEBUG="yeoman:generator"
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
before_script: npm config set coverage true
after_success: npm run-script coveralls
env:
- DEBUG="yeoman:generator"
| Test on node v4 and v5 instead of iojs | Test on node v4 and v5 instead of iojs
| YAML | mit | janraasch/generator-reveal,janraasch/generator-reveal,slara/generator-reveal,riezebosch/generator-reveal-infosupport,riezebosch/generator-reveal-infosupport,slara/generator-reveal |
38bc480a8619b6bda1ed6d0481599735bf7af5d8 | .travis.yml | .travis.yml | # WARNING:
# Do not use this file as a template for you repository TravisCI configuration
# Instead use the files under the "/sample_files" directory for that purpose.
language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
env:
- VERSION="master"
- VERSION="8.0"
- VERSION="7.0"
- VERSIO... | # WARNING:
# Do not use this file as a template for you repository TravisCI configuration
# Instead use the files under the "/sample_files" directory for that purpose.
language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
env:
- VERSION="master"
- VERSION="8.0"
- VERSION="7.0"
- VERSIO... | Remove duplicate call to install script | Remove duplicate call to install script
| YAML | agpl-3.0 | suvit/maintainer-quality-tools,OCA/maintainer-quality-tools,suvit/maintainer-quality-tools,kittiu/maintainer-quality-tools,ERP-Ukraine/maintainer-quality-tools,ilyasProgrammer/maintainer-quality-tools,dreispt/maintainer-quality-tools,acsone/maintainer-quality-tools,ERP-Ukraine/maintainer-quality-tools,hbrunn/maintainer... |
10dbc2450532e03efc1c0d1c9fb346631ddb74ef | .travis.yml | .travis.yml | language: python
python:
- pypy
- 2.6
- 2.7
env: SYNTAX=true
install: "pip install -r requirements.txt"
script: nosetests
| language: python
python:
- pypy
- pypy3
- 2.6
- 2.7
- 3.5
- 3.6
env: SYNTAX=true
install: "pip install -r requirements.txt"
script: nosetests
| Add pypy3, 3.5 and 3.6 | Add pypy3, 3.5 and 3.6
| YAML | apache-2.0 | devicehive/devicehive-python |
91d5c8dd636512628550311ff2cbb4f5271cf9ac | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "7"
cache:
directories:
- $HOME/.npm
- $HOME/.yarn-cache
- node_modules
script:
- npm run test:ci | language: node_js
node_js:
- "6"
- "7"
- "8"
cache:
directories:
- $HOME/.npm
- $HOME/.yarn-cache
- node_modules
script:
- npm run test:ci | Add CI test for Node 8 | Add CI test for Node 8
| YAML | mit | viralganatra/react-scrolling-lock,viralganatra/react-scrolling-lock |
1fa5add45b5ff259d15502102f9911ea64843de8 | .travis.yml | .travis.yml | # .travis.yml
language: node_js
node_js:
- 0.10
- 0.8
- 0.6
notifications:
email: false | # .travis.yml
language: node_js
node_js:
- 0.10
- 0.8
notifications:
email: false
| Remove 0.6 as a target for TravisCI | Remove 0.6 as a target for TravisCI | YAML | mit | tgriesser/checkit,rhys-vdw/checkit,tgriesser/checkit,Chubby-Chocobo/checkit,Chubby-Chocobo/checkit,rhys-vdw/checkit |
39068a9b359bf3ff6244a4627496e274f814667b | .travis.yml | .travis.yml | dist: trusty
language: scala
scala:
- 2.11.12
- 2.12.4
jdk:
- oraclejdk8
- openjdk8
test:
- sbt ++$TRAVIS_SCALA_VERSION test
- sbt ++$TRAVIS_SCALA_VERSION scalastyle
| ---
language: scala
scala:
- 2.11.12
- 2.12.4
jdk:
- oraclejdk8
- openjdk8
test:
- sbt ++$TRAVIS_SCALA_VERSION test
- sbt ++$TRAVIS_SCALA_VERSION scalastyle
| Remove Travis configuration that matches default | Remove Travis configuration that matches default
Trusty based container builds are the default as of August 2017.
| YAML | mit | ASIDataScience/scala-plotly-client,ASIDataScience/scala-plotly-client |
0bece0908f5080d8bc2047edb6522f3a77c44214 | .travis.yml | .travis.yml | dist: trusty
sudo: false
language: cpp
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
- libboost-program-options-dev
- libboost-regex-dev
- libboost-system-dev
- libpcap-dev
script:
- CXX=/usr/bin/g++-6 CC=/usr/bin/gcc-6 cmake .
- cmake --build .
| dist: trusty
sudo: false
language: cpp
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
- libboost-program-options-dev
- libboost-regex-dev
- libboost-system-dev
- libpcap-dev
- libpcre2-dev
script:
- CXX=/usr/bin/g++-6 CC=/usr/bin/gcc-6 cmake .
... | Add libpcre2-dev to Travis CI addons | Add libpcre2-dev to Travis CI addons
| YAML | apache-2.0 | petabi/regexbench,petabi/regexbench,petabi/regexbench,petabi/regexbench |
c3630b82f0972c6956a8a521c4f4d9e1ccbd4d69 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
sudo: false
addons:
code_climate:
repo_token: efb7522eec30499991fe74d59051679a9ae2b5caf53fbb004b62ea83825cdc56
after_success:
- node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info
| language: node_js
node_js:
- "0.12"
- "0.11"
sudo: false
addons:
code_climate:
repo_token: efb7522eec30499991fe74d59051679a9ae2b5caf53fbb004b62ea83825cdc56
after_success:
- node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info
| Drop support for old version of Node | Drop support for old version of Node
| YAML | bsd-3-clause | garious/poochie,poochiejs/poochie |
3d8d355cab61b8d6a5c47bebd311f6aa9201a494 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
install: pip install -r requirements.txt
script: nosetests test_fakeredis.py:TestFakeRedis
| language: python
python:
- "2.6"
- "2.7"
install: pip install -r requirements.txt
script: nosetests test_fakeredis.py:TestFakeRedis
notifications:
email:
- jls.npi@gmail.com
| Add explicit email address for CI notifications | Add explicit email address for CI notifications
| YAML | bsd-3-clause | ze-phyr-us/fakeredis,Tinche/fakeredis,pindia/fakeredis,fatelei/fakeredis,OnBeep/fakeredis,sam-untapt/fakeredis |
925382eefec943a44924d3a5b750eb4392de08f0 | .travis.yml | .travis.yml | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk... | # 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... | Use the pre-release builds of chefdk | Use the pre-release builds of chefdk
| YAML | apache-2.0 | chef-cookbooks/pkgutil,chef-cookbooks/pkgutil |
fb59e7a22ddd9fb2ab81f9d5162008f41f6f2bb5 | .travis.yml | .travis.yml | language: go
go:
- 1.x
- 1.6
- 1.7.x
- 1.8.x
- master
| language: go
go:
- 1.x
- 1.7.x
- 1.8.x
- master
| Drop support of Go 1.6 | Drop support of Go 1.6
| YAML | bsd-2-clause | dgryski/carbonapi,errx/carbonapi,errx/carbonapi |
18ab28e10081bd86b3da5ebf18ebe71a8230fe3f | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4
- nightly
before_script: composer install -n --dev
script:
- vendor/bin/phpcs
- vendor/bin/phpunit --coverage-text
allow_failures:
- php: nightly
| language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4
before_script: composer install -n --dev
script:
- vendor/bin/phpcs
- vendor/bin/phpunit --coverage-text
| Remove nightly PHP from Travis because dependencies don't support it | Remove nightly PHP from Travis because dependencies don't support it
| YAML | mit | javer/JaverSphinxBundle |
9423eb327d2c9eacad087aab9c383417b53ba7f0 | .travis.yml | .travis.yml | language: ruby
script: 'bundle exec rake'
gemfile:
- gemfiles/Gemfile.activesupport-3.x
- gemfiles/Gemfile.activesupport-4.x
- gemfiles/Gemfile.activesupport-5.x
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.4
- 2.3.0
- ruby-head
- rbx-19mode
- jruby-19mode
- jruby-head
services:
- redis-server
matrix:
... | language: ruby
script: 'bundle exec rake'
gemfile:
- gemfiles/Gemfile.activesupport-3.x
- gemfiles/Gemfile.activesupport-4.x
- gemfiles/Gemfile.activesupport-5.x
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.4
- 2.3.0
- ruby-head
- jruby-head
services:
- redis-server
matrix:
allow_failures:
- rvm: jrub... | Drop support for v1.9 mode of both juby and rubinius | Drop support for v1.9 mode of both juby and rubinius
| YAML | mit | redis-store/redis-activesupport |
4737e031df5eac270e02df4d26f04b2498e900b2 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-repository ppa:h-rayflood/llvm -y
- sudo apt-get update -qq
install:
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.7; fi
- if [ "$CXX" = "g++" ]; then export CXX="g+... | language: cpp
compiler:
- gcc
- clang
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.7" CC="gcc-4.7"; fi
- wget "https://googlemock.googlecode.com/files/gmock-1.7.0.zip"
- unzip gmock-1.7.0.zip
- sudo apt-get install valgrind
script:
- autoconf
- ./configure --with-gmock=gmock-1.7.0
- make
... | Install compilers through Travis Apt-addon. | Install compilers through Travis Apt-addon.
| YAML | bsd-2-clause | offa/seasocks,offa/seasocks,offa/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks,offa/seasocks,mattgodbolt/seasocks,offa/seasocks,offa/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks |
8b6dc387327d8308fc5780cd8f64b0900e91336a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.2
before_install: gem install bundler -v 1.10.5
| language: ruby
rvm:
- 2.2.2
before_install: gem install bundler -v 1.10.5
env:
secure: cuFj0+Ca3vL9/SE+FLm8gfaKOFyGVjY3zFcx7zqJ4dl1AiGM8mbl0SzV0tG+7Zvtrg+MnEl0I1TGaAyfGzNAbt+akue46h/fahhHGAMaR1Xi/3cwgjvderfZfRkDi57Vp8A+UD9PkNvFZRmpCpbBL/LpEBdRW4vWkIxENoCurJeKwIzLaaP/pHPA207eqbePUN8OF4WRHRBGXdAFAZq3SpuNZws4JE4yCPPivQh... | Add (encrypted) environment, for testing. | Add (encrypted) environment, for testing.
| YAML | mit | mdub/fake-aws-sdk-s3 |
7be5933eebdb8f0270bb1bc6b2249c0398be536c | .travis.yml | .travis.yml | language: php
php:
- '5.5'
- '5.6'
- '7.0'
- hhvm
- nightly
| language: php
php:
- '5.5'
- '5.6'
- '7.0'
- hhvm
- nightly
before_script:
- composer dump-autoload
| Make Travis do the right thing. | Make Travis do the right thing.
| YAML | mit | joseph-walker/vector,joseph-walker/vector |
2eb5cb50c69f7286730f97a6a7c9963bc89dcb12 | .travis.yml | .travis.yml | language: node_js
before_install:
- sudo apt-get install build-essential
- curl -sL https://github.com/Itseez/opencv/archive/2.4.6.2.zip > opencv.zip
- unzip opencv.zip
- rm opencv.zip
- mkdir opencv-build
- cd opencv-build/
- cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_DOCS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_SHARED... | language: node_js
before_install:
- sudo apt-get install build-essential
- curl -sL https://github.com/Itseez/opencv/archive/2.4.6.2.zip > opencv.zip
- unzip opencv.zip
- rm opencv.zip
- mkdir opencv-build
- cd opencv-build/
- cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_DOCS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_opencv... | Disable WebP, TIFF, Java, Jasper, 3rd party libs like zlib, PNG and JPEG codecs will be build from scratch | Disable WebP, TIFF, Java, Jasper, 3rd party libs like zlib, PNG and JPEG codecs will be build from scratch
| YAML | bsd-3-clause | BloodAxe/CloudCVBackend,BloodAxe/CloudCVBackend,BloodAxe/CloudCVBackend |
a753f953b242d115868fcf5d3815a99c2fb25db9 | .travis.yml | .travis.yml | language: scala
scala:
- 2.11.7
sudo: false
script: sbt "+ test" -Dloglevel=debug
jdk:
- oraclejdk8
- oraclejdk7
branches:
only:
- develop
| language: scala
scala:
- 2.11.8
sudo: false
script: sbt "+ test" -Dloglevel=debug
jdk:
- oraclejdk8
- oraclejdk7
branches:
only:
- develop
addons:
apt:
packages:
- oracle-java8-installer
| Use the latest jdk8 in TravisCI | Use the latest jdk8 in TravisCI
| YAML | apache-2.0 | xerial/larray,xerial/larray,xerial/larray,xerial/larray,xerial/larray |
85646e3cc06508b45c3ab35f73cc4f1067141bca | .travis.yml | .travis.yml | language: java
sudo: false
# Triggers an update of the OracleJDK distribution. Travis is currently running v8u31 which
# exposes problems with the instrumentation of invokedynamic call sites.
addons:
apt:
packages:
- oracle-java8-installer
branches:
only:
- master
jdk:
- oraclejdk8
- oraclejdk... | language: java
sudo: false
# Triggers an update of the OracleJDK distribution. Travis is currently running v8u31 which
# exposes problems with the instrumentation of invokedynamic call sites.
addons:
apt:
packages:
- oracle-java8-installer
branches:
only:
- master
jdk:
- oraclejdk8
- oraclejdk... | Remove duplicate build for JDK 7 from Travis. Hope to free sufficient resources to not kill build. | Remove duplicate build for JDK 7 from Travis. Hope to free sufficient resources to not kill build.
| YAML | apache-2.0 | raphw/byte-buddy,DALDEI/byte-buddy,raphw/byte-buddy,raphw/byte-buddy,CodingFabian/byte-buddy,mches/byte-buddy |
313c23361560318d794d1b1ffc06d71302f1281e | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development --deployment --jobs=3 --retry=10
cache: bundler
rvm:
- 2.1.5
- 2.2.4
- 2.3.0
script:
- RAILS_ENV=test bin/setup
- RAILS_ENV=test bundle exec rake --trace spec
before_script:
- psql -c 'create database fauna_development;' -U postgres
- psql -c 'create data... | language: ruby
bundler_args: --without development --deployment --jobs=3 --retry=10
cache: bundler
rvm:
- 2.1.5
- 2.2.4
- 2.3.0
script:
- RAILS_ENV=test bin/setup
- RAILS_ENV=test bundle exec rake --trace spec
before_script:
- psql -c 'create database fauna_development;' -U postgres
- psql -c 'create data... | Use Ubuntu Trusty in Travis | Use Ubuntu Trusty in Travis
| YAML | mit | initLab/fauna,user890104/fauna,initLab/fauna,initLab/fauna,user890104/fauna,user890104/fauna |
278f8fad5ade6ccc542dc0975a430700d672cc79 | .travis.yml | .travis.yml | sudo: false
language: perl
perl:
- '5.26'
- '5.24'
- '5.22'
- '5.20'
- '5.18'
- '5.16'
- '5.14'
before_script:
- git clone https://github.com/exercism/problem-specifications.git
- bin/fetch-configlet
script:
- bin/configlet .
- prove -r exercises/
| sudo: false
language: perl
perl:
- '5.26'
- '5.24'
- '5.22'
- '5.20'
- '5.18'
- '5.16'
- '5.14'
before_script:
- git clone https://github.com/exercism/problem-specifications.git
- bin/fetch-configlet
script:
- bin/configlet lint .
- prove -r exercises/
| Call configlet subcommand on CI | Call configlet subcommand on CI
This changes configlet to pass a subcommand.
For now, we've released a version of configlet which handles both the old command:
configlet path/to/track
as well as the new command:
configlet lint path/to/track
This will let us update all the travis files to include the subco... | YAML | mit | exercism/xperl5,exercism/xperl5,exercism/xperl5 |
6dccf7730041e07b583b56f7027402e3edf5c91f | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.2
node_js:
- "6"
before_script:
- npm install -g swiftx
script:
- ./scripts/build.sh
after_success:
- ./scripts/execute-on-packages.sh swiftx update-build-config
- ./scripts/execute-on-packages.sh swiftx update-dependency-graph
- ./scripts/execute-on-packages.sh sw... | language: objective-c
osx_image: xcode8.2
node_js:
- "6"
before_script:
- npm install -g swiftx
script:
- ./scripts/build.sh
after_success:
- ./scripts/exec-on-packages.sh swiftx update-build-config
- ./scripts/exec-on-packages.sh swiftx update-dependency-graph
- ./scripts/exec-on-packages.sh swiftx trig... | Use the correct script name, maybe. | Use the correct script name, maybe.
| YAML | mit | randymarsh77/amethyst,randymarsh77/amethyst,randymarsh77/amethyst,randymarsh77/amethyst |
477e1f5fb979221a01eb156f5ed8c3043c58f4a9 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.1.8
- 2.2.4
- 2.3.0
cache: bundler
script: "bundle exec rake test"
| sudo: false
language: ruby
rvm:
- 2.1.9
- 2.2.4
- 2.3.0
cache: bundler
script: "bundle exec rake test"
| Update Travis RVM targets for 2.1.9 | Update Travis RVM targets for 2.1.9
| YAML | mit | scour/feedjira-podcast,scour/feedjira-podcast |
6a7d1782826c002cd1f01066443c545e0b250927 | .travis.yml | .travis.yml | ---
language: ruby
bundler_args: --without system_tests --jobs 3 --retry 3
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
sudo: false
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION=... | ---
language: ruby
bundler_args: --without system_tests --jobs 3 --retry 3
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
sudo: false
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.0.0
en... | Remove support for Puppet 2.7 | Remove support for Puppet 2.7
| YAML | apache-2.0 | dhoppe/puppet-openvpn,dhoppe/puppet-openvpn |
b00a2b0d4f1cf2849c5e23b8c2c2814689cdbc9b | .travis.yml | .travis.yml | language: objective-c
xcode_project: DBNetworkStack+Sourcing.xcodeproj # path to your xcodeproj folder
xcode_scheme: DBNetworkStackSourcing
osx_image: xcode8.2
before_install:
- export SNAPSHOT_FORCE_DELETE=1
- fastlane snapshot reset_simulators
install:
- carthage update --platform ios
script:
- set -o pipefail... | language: objective-c
xcode_project: DBNetworkStack+Sourcing.xcodeproj # path to your xcodeproj folder
xcode_scheme: DBNetworkStackSourcing
osx_image: xcode8.2
before_install:
- export SNAPSHOT_FORCE_DELETE=1
- fastlane snapshot reset_simulators
install:
- carthage update --platform ios —no-use-binaries
script:
... | Disable binary load of carthage | Disable binary load of carthage
| YAML | mit | dbsystel/DBNetworkStack-Sourcing |
fa629e7c54927ddb7e51b8ed3fd9f11e081a2a13 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 5.5
- 5.4
- hhvm
before_script: composer install --dev | language: php
php:
- 5.6
- 5.5
- 5.4
- hhvm
before_script: composer install --dev
script: php vendor/phpunit/phpunit/phpunit.php --log-tap report.tap
after_script: curl -X POST --data-binary @report.tap http://dox.rtens.org/projects/watoki-stores/reports | Send test report to dox | Send test report to dox
| YAML | mit | watoki/stores |
3529659932f48a0d7abb0d502716cd0f316c7327 | .travis.yml | .travis.yml | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
services: docker
env:
matrix:
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1604
- INSTANCE=defa... | 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"
services: docker
env:
matrix:
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1604
- INSTANCE=defa... | Simplify Travis config and fix ChefDK 2.0 failures | Simplify Travis config and fix ChefDK 2.0 failures
| YAML | apache-2.0 | tas50/hubot |
cc6ba84fafab0aacb0097834ac02a315e0af5484 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
rvm:
- 1.9.3
- 2.0.0
- ruby-head
| language: ruby
bundler_args: --without development
rvm:
- 1.9.3
- 2.0.0
| Remove ruby-head from Travis matrix | Remove ruby-head from Travis matrix
| YAML | mit | springboardretail/springboard-client-ruby |
7e1dc7d29d3b030140e35bbe2d143411b9205c18 | .travis.yml | .travis.yml | language: rust
sudo: false
rust:
- stable
- beta
- nightly
matrix:
include:
- rust: 1.32.0
before_script: |
set -e
if [[ $TRAVIS_RUST_VERSION = 'stable' ]]; then
rustup component add rustfmt clippy
fi
script: |
set -e
cargo build
cargo test
ci/check-no-std.sh
cargo test --all-features
... | language: rust
sudo: false
rust:
- stable
- beta
- nightly
matrix:
include:
- rust: 1.36.0
before_script: |
set -e
if [[ $TRAVIS_RUST_VERSION = 'stable' ]]; then
rustup component add rustfmt clippy
fi
script: |
set -e
cargo build
cargo test
ci/check-no-std.sh
cargo test --all-features
... | Update minimum required Rust to 1.36 | Update minimum required Rust to 1.36
This is about a year old, so that seems fine.
| YAML | mit | shepmaster/twox-hash |
127047f407ebc84af0a38a81d42e6e12b698fe5a | kubernetes/jenkins/jenkins.yaml | kubernetes/jenkins/jenkins.yaml | apiVersion: v1
kind: Service
metadata:
name: jenkins-master
labels:
app: jenkins
namespace: ci
spec:
ports:
- port: 80
targetPort: 8080
protocol: TCP
selector:
app: jenkins
type: LoadBalancer
---
apiVersion: v1
kind: ReplicationController
metadata:
name: jenkins-master
labels:
... | apiVersion: v1
kind: Service
metadata:
name: jenkins-master
labels:
app: jenkins
namespace: ci
spec:
ports:
- port: 80
targetPort: 8080
protocol: TCP
name: http
- port: 50000
targetPort: 50000
protocol: TCP
name: jnlp
selector:
app: jenkins
type: LoadBalan... | Add jnlp port to service | Add jnlp port to service
| YAML | mit | sondabar/kubernetes-playground |
2cc6d6c01816a2a1cedc1bd3b6777d67722360d3 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: python
python:
- '2.7'
- '3.3'
- '3.4'
- '3.5'
matrix:
allow_failures:
- python: '2.7'
addons:
apt:
packages:
- libattr1-dev
- libfuse2
- libfuse-dev
- python-dev
- python3-dev
install:
- pip install --upgrade pip
- pip --vers... | sudo: required
dist: trusty
language: python
python:
- '2.6'
- '2.7'
- '3.2'
- '3.3'
- '3.4'
- '3.5'
- '3.5-dev'
- 'nightly'
- 'pypy'
- 'pypy3'
matrix:
allow_failures:
- python: '2.6'
- python: '3.2'
- python: '3.5-dev'
- python: 'nightly'
- python: 'pypy'
... | Add other python implementations as allowed failers and unallow 2.7 | Travis: Add other python implementations as allowed failers and unallow 2.7
| YAML | mit | JelteF/easyfuse,JelteF/easyfuse |
fb43f6838853f2a9f1bbe5fde5ba31f1f00c028c | .travis.yml | .travis.yml | language: cpp
compiler:
- clang
- gcc
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
before_install:
install:
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DBUILD_TESTS=on ..
- make
- cd ..
script:
- cd build
- ctest -V | language: cpp
compiler:
- clang
- gcc
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
before_install:
install:
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DBUILD_TESTS=on -DFIND_DEPEND=off ..
- make
- cd ..
script:
- cd build
- ctest -V | Switch off FIND_DEPEND option in Travis script. | Switch off FIND_DEPEND option in Travis script.
| YAML | mit | kartikkumar/cppbase,ennehekma/enne-stage,ennehekma/enne-stage,abhi-agrawal/ATOM_ADR,kartikkumar/cpp-project,kartikkumar/cpp-project,ennehekma/enne-stage,abhi-agrawal/ATOM_ADR,abhi-agrawal/TestAtomProject,abhi-agrawal/TestAtomProject |
327cfc495b9daa0412bad09c59d380e730428eed | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.1
- 1.9.2
- 1.9.3
| rvm:
- 1.9.2
- 1.9.3
| Revert "Testing the build on 1.8.7 and 1.9.1" | Revert "Testing the build on 1.8.7 and 1.9.1"
This reverts commit d3dbfb2b0d5d95d1354a990a22a54146bd3d0ba0.
| YAML | mit | mikesmayer/recommendable,AndyObtiva/recommendable,balmbees/recommendable,davidcelis/recommendable |
a551213eae097d35a336bcaf51eebe00290baa50 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- ruby-head
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=master"
matrix:
allow_failures:
- env: "RAILS_VERSION=master"
- rvm: ruby-head | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.1
- ruby-head
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=master"
matrix:
allow_failures:
- env: "RAILS_VERSION=master"
- rvm: ruby-head
| Update ruby versions in Travis matrix | Update ruby versions in Travis matrix | YAML | mit | jhnvz/retina_rails,testzugang/retina_rails |
e441fbcc5fdf0af0460d7b8ac210af3d96546287 | .travis.yml | .travis.yml | language: c
env:
- SMVERSION=1.5
- SMVERSION=1.6
- SMVERSION=1.7
before_install:
- sudo apt-get update
- sudo apt-get install gcc-multilib
- sudo apt-get install lynx
before_script:
- SMPATTERN="http:.*sourcemod-.*-linux.*"
- SMURL="http://www.sourcemod.net/smdrop/$SMVERSION/"
- S... | language: c
env:
- SMVERSION=1.5
- SMVERSION=1.6
- SMVERSION=1.7
matrix:
fast_finish: true
allow_failures:
- env: SMVERSION=1.7
before_install:
- sudo apt-get update
- sudo apt-get install gcc-multilib
- sudo apt-get install lynx
before_script:
- SMPATTERN="http:.*sourcem... | Allow failures for sourcemod 1.7 build | Allow failures for sourcemod 1.7 build
| YAML | mit | CrimsonTautology/sm_jetpack_plus |
be07c68123c5bb49202b10f2511de00b403563ec | .travis.yml | .travis.yml | language: php
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- hhvm
- nightly
sudo: true
addons:
mariadb: 10.1
before_install:
- mysql --version
- mysql -u root -e "create database if not exists test_audit character set = 'utf8' collate='utf8_general_ci';"
- mysql -u root -e "create database if not exist... | language: php
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- hhvm
- nightly
sudo: true
addons:
mariadb: 10.1
before_install:
- mysql --version
- mysql -u root -e "create database if not exists test_audit character set = 'utf8' collate='utf8_general_ci';"
- mysql -u root -e "create database if not exist... | Load all time zones into MySQL. | Load all time zones into MySQL.
| YAML | mit | SetBased/php-audit |
6cefa343510687bd95adb49cbf7b8c5c82677ce4 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- ree
- 1.9.3
| language: ruby
rvm:
- 1.8.7
- ree
- 1.9.2
- 1.9.3
| Revert "1.9.2 is not supported" | Revert "1.9.2 is not supported"
This reverts commit 24ebeeee6aa76332ca73b74c27d3f5741597aacd.
| YAML | mit | yakovenkodenis/statsd-instrument,Shopify/statsd-instrument |
1a459240de9a100bc195b7b4e7eb470067bb24d7 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "5"
after_script: "./node_modules/.bin/codecov"
branches:
only:
- master
before_script:
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.2.0.tgz -O /tmp/mongodb.tgz
- tar -xvf /tmp/mongodb.tgz
- mkdir /tmp/data
- ${PWD}/mongodb-linux-x86_64-3.2.0/bin/mon... | language: node_js
node_js:
- "4"
- "5"
- "6"
after_script: "./node_modules/.bin/codecov"
branches:
only:
- master
before_script:
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.2.0.tgz -O /tmp/mongodb.tgz
- tar -xvf /tmp/mongodb.tgz
- mkdir /tmp/data
- ${PWD}/mongodb-linux-x86_64-3.2.0... | Build against all recent node releases | Build against all recent node releases
| YAML | agpl-3.0 | gw2efficiency/gw2-api.com |
3fd86b4ea7da7aed6aecf9545a970174f05619f8 | .travis.yml | .travis.yml | # Travis CI Configuration
language: node_js
node_js:
- "10"
- "9"
- "8"
# Installing rsvg-brunch requires a C++11 compiler and librsvg
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- librsvg2-dev
env:
- CXX=g++-4.8
install:
- npm install
- npm install coveralls
s... | # Travis CI Configuration
language: node_js
node_js:
- "9"
- "8"
- "7"
- "6"
# Installing rsvg-brunch requires a C++11 compiler and librsvg
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- librsvg2-dev
env:
- CXX=g++-4.8
install:
- npm install
- npm install cove... | Replace Node 10 with Node 6 & 7 | Replace Node 10 with Node 6 & 7
| YAML | mit | caleb531/rsvg-brunch |
0064c2ce31b1b9a816ee95a1fbe87f2d9a4a62a2 | .travis.yml | .travis.yml | language: rust
script:
- cargo build
- cargo test
notifications:
email:
recipients:
- franklinchen@franklinchen.com
on_success: never
| language: rust
env:
global:
- secure: dmKHeOySluuwyXckc3YKl9wyfZSr1d8hMSDh4739MW6f1n5xYVXHKECPTnFSUPBjVNQ8Qahw48w2tnezGO1DvOOxYqPe69PGtpaLX3CoOZOvyCOoBgkH+MA8cjz3Ymk8uoPc97OZQdwQ+5XvW0BKsGxbUfnfX29kHewc3Hc+tkM=
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --verbose
after_script:
- cu... | Enable documentation upload for rust-ci. | Enable documentation upload for rust-ci.
| YAML | mit | FranklinChen/rust-tau |
c542acd8a3e98209a7ccb66d8ca56245016ad541 | .travis.yml | .travis.yml | language: go
go:
- 1.7.x
services:
- rabbitmq
env:
- AMQP_USERNAME=guest AMQP_PASSWORD=guest AMQP_DEFAULT_PORT=5672
before_install:
- go get github.com/streadway/amqp
- go get github.com/joho/godotenv
- go get -v github.com/golang/lint/golint
script: go test -v -cover -tags integration ./... -x
| language: go
go:
- 1.7.x
services:
- rabbitmq
env:
- AMQP_USERNAME=guest AMQP_PASSWORD=guest AMQP_DEFAULT_PORT=5672
before_install:
- go get github.com/streadway/amqp
- go get github.com/joho/godotenv
- go get -v github.com/golang/lint/golint
script: go test -v -cover -tags integration ./exchange ./ind... | Revert "Modifies script to run tests and build test binary" | Revert "Modifies script to run tests and build test binary"
This reverts commit d1ff3c2f028c397697c51cd969129ef3cc3eaa68.
| YAML | mit | docStonehenge/exchange_fetcher |
076a559dfa50fdb883c4e71af4f39ac3b4870d4c | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "3.5"
- "3.6"
- "nightly"
matrix:
allow_failures:
- python: "nightly"
env:
- INJECTOR_VERSION="<0.13" FLASK_VERSION=">0.11"
- INJECTOR_VERSION=">=0.13" FLASK_VERSION=">0.11"
- INJECTOR_VERSION="<0.13" FLASK_VERSION=">0.11,<1.0"
- INJECTOR_VERSION=">=0.13" FLASK... | language: python
sudo: false
python:
- "3.5"
- "3.6"
- "nightly"
matrix:
allow_failures:
- python: "nightly"
include:
- { python: "3.7", dist: xenial, sudo: true }
env:
- INJECTOR_VERSION="<0.13" FLASK_VERSION=">0.11"
- INJECTOR_VERSION=">=0.13" FLASK_VERSION=">0.11"
- INJECTOR_VERSION="<0.13" F... | Add Python 3.7 to Travis CI configuration | Add Python 3.7 to Travis CI configuration
| YAML | bsd-3-clause | alecthomas/flask_injector |
4be2444f15681db7481de4589a23e39f5c1018f5 | .travis.yml | .travis.yml | language: ruby
cache: bundler
env:
- CPLUS_INCLUDE_PATH=/usr/include/atlas C_INCLUDE_PATH=/usr/include/atlas
rvm:
- "1.9.2"
- "1.9.3"
- "2.0.0"
- "2.1.0"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-base-dev
script: bundle exec rake compile && bundle exec rake spec
| language: ruby
cache: bundler
env:
- CPLUS_INCLUDE_PATH=/usr/include/atlas C_INCLUDE_PATH=/usr/include/atlas
rvm:
- "1.9.2"
- "1.9.3"
- "2.0.0"
- "2.1.0"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-base-dev
script: bundle exec rake compile && bundle exec rake spec
notific... | Add IRC notifications to Travis | Add IRC notifications to Travis
According to Travis' documentation[1], this change should add
build results notifications to the #sciruby channel.
[1]: http://docs.travis-ci.com/user/notifications/#IRC-notification
| YAML | bsd-2-clause | thisMagpie/nmatrix,janusnic/nmatrix,wlevine/nmatrix,wlevine/nmatrix,agisga/nmatrix,johnmarinelli/nmatrix,johnmarinelli/nmatrix,johnmarinelli/nmatrix,wlevine/nmatrix,agisga/nmatrix,thisMagpie/nmatrix,thisMagpie/nmatrix,janusnic/nmatrix,johnmarinelli/nmatrix,janusnic/nmatrix,wlevine/nmatrix,agisga/nmatrix,janusnic/nmatri... |
7585d36a494f7b1461c97047216ddaba965b8e5d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '12'
- '14'
- '15'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
| sudo: false
language: node_js
node_js:
- '12'
- '14'
- '16'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
| Build with Node.js 16 on Travis CI. | Build with Node.js 16 on Travis CI.
| YAML | mit | bigeasy/eject,bigeasy/eject |
cffa04239fd64f687a13b1c6352d6c4fc43e879a | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.1.8
- 2.2.4
# install: 'gem install rake -v 10.5 && bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}'
# script: bundle exec rake
matrix:
include:
- rvm: 2.3.0
before_install:
- rvm reinstall ruby-2.3.0
| language: ruby
cache: bundler
rvm:
- 2.1.8
- 2.2.4
- 2.3.0
matrix:
allow_failures:
- rvm: 2.3.0
| Allow ruby 2.3.0 to fail | Allow ruby 2.3.0 to fail
Travis keeps erroring out on ruby-2.3.0 with `cannot load such file --
rake`. This is a placeholder until I can figure out how to get travis to
test this code properly with 2.3.
| YAML | mit | thejandroman/jira_dependency_visualizer |
acde669281501242ae922dfa30271a2aaf4292d5 | .travis.yml | .travis.yml | language: haskell
before_install:
# Uncomment whenever hackage is down.
# - mkdir -p ~/.cabal && cp config ~/.cabal/config && cabal update
# Try installing some of the build-deps with apt-get for speed.
- ./travis-cabal-apt-install --only-dependencies --force-reinstall $mode
install:
- cabal configure $mod... | language: haskell
before_install:
# Uncomment whenever hackage is down.
- mkdir -p ~/.cabal && cp config ~/.cabal/config && cabal update
# Try installing some of the build-deps with apt-get for speed.
- ./travis-cabal-apt-install --only-dependencies --force-reinstall $mode
install:
- cabal configure $mode
... | Add a workaround for the hackage outage | Add a workaround for the hackage outage
| YAML | bsd-3-clause | omefire/lens,hvr/lens,rpglover64/lens,cchalmers/lens,cdepillabout/lens,Fuuzetsu/lens,Icelandjack/lens,ddssff/lens,timjb/lens,hvr/lens,Gabriel439/lens,danidiaz/lens |
e9418b761033ac1e250a86a7b4a15a55d6469692 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.4"
env:
- DJANGO_VERSION="django>=1.7,<1.8"
- DJANGO_VERSION="django>=1.8,<1.9"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install $DJANGO_VERSION --use-mirrors
- python setup.py install
- pip insta... | sudo: false
language: python
python:
- "2.7"
- "3.4"
env:
- DJANGO_VERSION="django>=1.7,<1.8"
- DJANGO_VERSION="django>=1.8,<1.9"
- DJANGO_VERSION="django>=1.9,<1.10"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install $DJANGO_VERSION --use-mirrors
... | Add Django 1.9.x to the test matrix | Add Django 1.9.x to the test matrix
| YAML | bsd-3-clause | matthiask/django-admin-sso,matthiask/django-admin-sso,diegobz/django-admin-sso,diegobz/django-admin-sso |
394f8ac3fe38a65bc7b514de5a3ecd1d5d5b695b | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.1
before_script: gem install jekyll
script: bundle exec jekyll build
exclude: [vendor]
sudo: false
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
local_dir: _site
repo: alexis-hassler/alexis-hassler.github.io
target_branch:... | language: ruby
rvm:
- 2.3.1
before_script: gem install jekyll
script: bundle exec jekyll build
exclude: [vendor]
sudo: false
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
local_dir: _site
repo: alexis-hassler/alexis-hassler.github.io
target_branch:... | Support du custom domain dans Travis | Support du custom domain dans Travis
| YAML | mit | alexis-hassler/blog,alexis-hassler/blog |
86e9902dd883461fa9df10df8a0e93a945251564 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
| Remove nodejs 0.6 from Travis config | Remove nodejs 0.6 from Travis config
| YAML | mit | dubejf/js-quantities,dubejf/js-quantities,mickeyreiss/js-quantities,dubejf/js-quantities,mickeyreiss/js-quantities,gentooboontoo/js-quantities,gentooboontoo/js-quantities,jhericks/js-quantities,mickeyreiss/js-quantities,dubejf/js-quantities,gentooboontoo/js-quantities,jhericks/js-quantities,jhericks/js-quantities,jheri... |
4abb710af7bcc2bc81a15755ba3fabaf6507668d | .travis.yml | .travis.yml | matrix:
include:
- os: osx
osx_image: xcode8.3
language: generic
- os: osx
osx_image: xcode8.2
language: generic
- os: osx
osx_image: xcode8.1
language: generic
- os: osx
osx_image: xcode8
language: generic
- os: osx
osx_image: xcode7.3
l... | matrix:
include:
- os: osx
osx_image: xcode8.3
language: generic
- os: osx
osx_image: xcode8.2
language: generic
- os: osx
osx_image: xcode8.1
language: generic
- os: osx
osx_image: xcode8
language: generic
- os: osx
osx_image: xcode7.3
l... | Check that --version works too | Check that --version works too
| YAML | mit | jbarlow83/homebrew-ocrmypdf |
2c31fc69fb852ccb519d423ff99d8fcc11812256 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
| language: node_js
node_js:
- '0.10'
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
| Configure CI for virtual screen | Configure CI for virtual screen
| YAML | mit | dscout/osteo.js,dscout/immunid,dscout/immunid |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.