commit stringlengths 40 40 | old_file stringlengths 4 237 | new_file stringlengths 4 237 | old_contents stringlengths 1 4.24k | new_contents stringlengths 1 4.87k | subject stringlengths 15 778 | message stringlengths 15 8.75k | lang stringclasses 266 values | license stringclasses 13 values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
919f310ea7db994476f7cf8ca9a81fade59b61a5 | .travis.yml | .travis.yml | language: php
php:
- "5.3.3"
- "5.3"
- "5.4"
- "5.5"
- "5.6"
- "hhvm"
sudo: false
install:
- composer install
script:
- composer test
| sudo: false
language: php
php:
- "5.3"
- "5.4"
- "5.5"
- "5.6"
- "hhvm"
install:
- composer install
script:
- composer test
| Remove PHP 5.3.3 from Travis config (keep other 5.3.x) | build: Remove PHP 5.3.3 from Travis config (keep other 5.3.x)
This is a known issue. Already removed from other repos.
There is still a matrix entry for general 5.3 (a later minor build)
and 5.3.3 is broken for unrelated infrastructure reasons.
Change-Id: I05b9985db12efa84f4f2c55782e7d7c3a907fefe
| YAML | apache-2.0 | wikimedia/AhoCorasick,wikimedia/AhoCorasick |
41103fd6297e7c7c68cf972aa74c5f9718f118d3 | .travis.yml | .travis.yml | language: python
python:
- "2.5"
- "2.6"
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt --use-mirrors
# command to run tests, e.g. python setup.py test
script: nosetests
| language: python
python:
- "2.5"
- "2.6"
- "2.7"
services: mongodb
install: python setup.py install && pip install -r requirements.txt --use-mirrors
script: nosetests
| Install package nose-mongoengine before unit test. | Install package nose-mongoengine before unit test.
| YAML | apache-2.0 | mbanton/nose-mongoengine |
b4dd37b1dee4de7053cc22cac3a621dfc1f1bea2 | .travis.yml | .travis.yml | sudo: false
language: cpp
compiler: clang
before_install:
- curl --version
- curl -o test/catch.hpp https://raw.githubusercontent.com/philsquared/Catch/master/single_include/catch.hpp
- cmake --version
- cmake ./
- cd rethinkdb
- ./configure --allow-fetch
- make src/all -j2
- ./build/release_clang/rethinkdb --daemon
- cd ..
install:
- make libReQLtest
script:
- ./libReQLtest
| sudo: false
language: cpp
compiler: clang
before_install:
- curl --version
- curl -o test/catch.hpp https://raw.githubusercontent.com/philsquared/Catch/master/single_include/catch.hpp
- cmake --version
- cmake ./
# - cd rethinkdb
# - ./configure --allow-fetch
# - make src/all -j2
# - ./build/release_clang/rethinkdb --daemon
# - cd ..
install:
- make libReQLtest
script:
- ./libReQLtest
| Disable server tests for now on CI. | Disable server tests for now on CI.
| YAML | apache-2.0 | grandquista/ReQL-Core,grandquista/ReQL-Core,grandquista/ReQL-Core,grandquista/ReQL-Core |
bf4527bd741ee84120b8da22bb7646d875325582 | .travis.yml | .travis.yml | language: perl
perl:
- "5.16"
- "5.14"
- "5.12"
env:
- MAXIMUS_CONFIG_LOCAL_SUFFIX=testing
before_install:
- cpanm -n Module::Install
- cpanm -n Catalyst::Devel
- sudo apt-get install libdb-dev
- yes | cpanm --verbose local::lib
| language: perl
perl:
- "5.16"
- "5.14"
- "5.12"
env:
- MAXIMUS_CONFIG_LOCAL_SUFFIX=testing
before_install:
- cpanm -n Module::Install
- cpanm -n Catalyst::Devel
- sudo apt-get install libdb-dev
- yes | cpanm --verbose local::lib
notifications:
irc:
channels:
- "irc.blitzed.org#maximus"
use_notice: true
| Use IRC notification for Travis-ci build result | Use IRC notification for Travis-ci build result
| YAML | mit | maximos/maximus-web,maximos/maximus-web,maximos/maximus-web |
e611edaf69935e9fd4e9e3241d8eef8182ba9bcd | .travis.yml | .travis.yml | language: c
compiler:
- gcc
- clang
before_install:
- sudo apt-get -qq update
- cd ..
- git clone http://git.sv.gnu.org/r/autoconf.git
- cd autoconf
- ls
- aclocal -I m4
- autoconf
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
- git clone https://github.com/ImageMagick/ImageMagick
- cd ImageMagick
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
install:
- sudo apt-get -qq install rake bison git gperf libmagick++-dev libossp-uuid-dev
before_script:
- cd ../
- git clone https://github.com/mruby/mruby.git
- cd mruby
- cp -fp ../mruby-mrmagick/.travis_build_config.rb build_config.rb
script:
- make all test
| language: c
compiler:
- gcc
- clang
before_install:
- sudo apt-get -qq update
- cd ..
- git clone http://git.sv.gnu.org/r/autoconf.git
- cd autoconf
- ls
- aclocal -I m4
- automake
- autoconf
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
- git clone https://github.com/ImageMagick/ImageMagick
- cd ImageMagick
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
install:
- sudo apt-get -qq install rake bison git gperf libmagick++-dev libossp-uuid-dev
before_script:
- cd ../
- git clone https://github.com/mruby/mruby.git
- cd mruby
- cp -fp ../mruby-mrmagick/.travis_build_config.rb build_config.rb
script:
- make all test
| Fix install own autoconf on Travis-CI | Fix install own autoconf on Travis-CI
| YAML | mit | kjunichi/mruby-mrmagick,kjunichi/mruby-mrmagick,kjunichi/mruby-mrmagick |
24baeb5ae7f3bc08dfb340a9e72bfa42a1b71d3d | .travis.yml | .travis.yml | language: node_js
node_js:
- "stable"
- "4.2.3"
- "4.2.2"
- "4.2.1"
- "4.2.0"
- "4.1.2"
- "4.1.1"
- "4.1.0"
- "4.0.0"
- "0.12"
- "0.11"
- "0.10"
before_install:
- npm install -g tsd
- tsd install
| language: node_js
node_js:
- "stable"
- "4.2.3"
- "4.2.0"
- "4.1.2"
- "4.1.0"
- "4.0.0"
- "0.12"
- "0.11"
- "0.10"
before_install:
- npm install -g tsd
- tsd install
| Remove non-major and non-latest versions | Remove non-major and non-latest versions | YAML | mit | inversify/InversifyJS,Dirrk/InversifyJS,remojansen/InversifyJS,Dirrk/InversifyJS,remojansen/InversifyJS,inversify/InversifyJS |
1de45e279c4d3d82155026b60c0056062cdfb18b | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- rbx-2.1.1
- ruby-head
- jruby-head
| language: ruby
rvm:
- 2.0.0
- rbx-2.1.1
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: rbx-2.1.1
- rvm: jruby-head
| Allow failures on rbx and jruby | Allow failures on rbx and jruby
| YAML | mit | freemanoid/truncator |
9adf542db365121019bb6ab68c47ca088d67e6f3 | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.2
- 7.3
- nightly
allow_failures:
php: nightly
cache:
directories:
- $HOME/.composer/cache
install:
- composer install --no-interaction --no-progress || composer remove --dev friendsofphp/php-cs-fixer --no-interaction --no-progress
script:
- composer validate --strict
- vendor/bin/phpstan analyze -c phpstan.neon -l max src
- vendor/bin/phpcs src tests
- vendor/bin/phpunit --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: php
php:
- 7.1
- 7.2
- 7.3
allow_failures:
php: nightly
cache:
directories:
- $HOME/.composer/cache
install:
- composer install --no-interaction --no-progress || composer remove --dev friendsofphp/php-cs-fixer --no-interaction --no-progress
script:
- composer validate --strict
- vendor/bin/phpstan analyze -c phpstan.neon -l max src
- vendor/bin/phpcs src tests
- vendor/bin/phpunit --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov.io/bash)
| Remove nightly PHP version from build | Remove nightly PHP version from build
| YAML | lgpl-2.1 | johnzuk/GusApi |
33d71440c2905c071e3a31b8ef39e75979794e68 | .travis.yml | .travis.yml | language: node_js
node_js:
- '4'
- '6'
- '8'
deploy:
provider: script
script: ./node_modules/.bin/nlm release
skip_cleanup: true
'on':
branch: master
node: '8'
| language: node_js
node_js:
- '6'
- '8'
- '10'
deploy:
provider: script
script: ./node_modules/.bin/nlm release
skip_cleanup: true
'on':
branch: master
node: '8'
| Stop testing on node 4 (EOL) | chore: Stop testing on node 4 (EOL)
| YAML | bsd-3-clause | testiumjs/testium-driver-wd |
db8caec3bcb54d122d45ea72fd156bb16c844ab3 | .travis.yml | .travis.yml | language: ruby
before_script:
- "rake app:railties:install:migrations"
- "rake app:db:migrate"
script:
- "rake spec"
rvm:
- 2.0.0
- 1.9.3 | language: ruby
notifications:
email:
- ivanzotov@gmail.com
before_script:
- "rake app:railties:install:migrations"
- "rake app:db:migrate"
script: bundle exec rake spec
rvm:
- 2.0.0
- 1.9.3
- rbx-19mode
- jruby-19mode | Test rbx and jruby Travis | Test rbx and jruby Travis
| YAML | mit | ivanzotov/constructor,szyablitsky/constructor,ivanzotov/constructor,ivanzotov/constructor,szyablitsky/constructor,szyablitsky/constructor |
198ec31b296735a5eac8076f9a092f1929284ed7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx
| language: ruby
rvm:
- 2.3
- jruby
- rbx
sudo: false
| Drop support for ruby 1.9 and jruby19mode | Drop support for ruby 1.9 and jruby19mode
| YAML | mit | barnabyalter/omniauth-aleph |
419279c55f46f8e1e1b5c487da21dc49a5b4e705 | .travis.yml | .travis.yml | language: python
python:
- 3.2
- 3.3
- 3.4
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
- conda create --yes -n condaenv python=$TRAVIS_PYTHON_VERSION
- conda install --yes -n condaenv pip
- source activate condaenv
install:
- pip install -r requirements.txt
script: py.test --verbose
| language: python
python:
- 3.4
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
- conda create --yes -n test-env python=$TRAVIS_PYTHON_VERSION
- conda install --yes -n test-env pip pandas
- source activate test-env
install:
- pip install -r requirements.txt
script: py.test --verbose
| Install pandas from conda in Travis CI | Install pandas from conda in Travis CI
| YAML | apache-2.0 | yasserglez/configurator,yasserglez/configurator |
2546a717eb50fe55f46a519f70c3be28f7a1a9a5 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
install:
- composer install
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
install:
- composer install
| Add PHP 5.6 to build | Add PHP 5.6 to build
| YAML | mit | solvire/hal,blongden/hal |
6a73e1d3a2bcffd6d0f6ca27ea7cad2989d9a765 | .travis.yml | .travis.yml | language: node_js
node_js:
- 8
os:
- osx
- linux
sudo: required
dist: trusty
osx_image: xcode9
compiler:
- clang
addons:
apt:
packages:
- icnsutils
- xz-utils
before_install:
- openssl aes-256-cbc -K $encrypted_fc666da9e2f5_key -iv $encrypted_fc666da9e2f5_iv
-in .travis.env.enc -out .travis.env -d; source .travis.env;
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
rvm install 2.2.0;
ruby --version;
gem --version;
gem install fpm;
fi
- node --version
- yarn --version
install:
- yarn
before_script:
- yarn list
script:
- "./scripts/travis.sh"
| language: node_js
node_js:
- 8
os:
- osx
- linux
sudo: required
dist: trusty
osx_image: xcode9
compiler:
- clang
addons:
apt:
packages:
- icnsutils
- xz-utils
# For keyboard-layout < electron-spellchecker
- libxkbfile-dev
before_install:
- openssl aes-256-cbc -K $encrypted_fc666da9e2f5_key -iv $encrypted_fc666da9e2f5_iv
-in .travis.env.enc -out .travis.env -d; source .travis.env;
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
rvm install 2.2.0;
ruby --version;
gem --version;
gem install fpm;
fi
- node --version
- yarn --version
install:
- yarn
before_script:
- yarn list
script:
- "./scripts/travis.sh"
| Add missing dep for electron-spellchecker | Add missing dep for electron-spellchecker
| YAML | apache-2.0 | irccloud/irccloud-desktop |
6aebfbf18c544c1739a6cb963cc24c2a1d0e1b05 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 2.2.5
- 2.3.1
- jruby
- rbx
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: rbx
- rvm: jruby
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 2.2
- 2.3
- 2.4
- jruby-9
- rbx-3
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: jruby-9
- rvm: rbx-3
dist: trusty
| Use Travis "trusty" build and wildcard Ruby versions. | Use Travis "trusty" build and wildcard Ruby versions.
| YAML | unlicense | ruby-rdf/rdf-aggregate-repo |
6b9a0347b0fc84b02888b6cfafdbeae423174bc5 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0
- 2.2
gemfile:
- gemfiles/clean.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
script: 'bundle exec rspec'
notifications:
email: false
addons:
code_climate:
repo_token: def01fea93ef7e5af7b536817182cb7951f9aac0e151bf544584901a689ea8f3
| language: ruby
rvm:
- 2.0
- 2.2
- 2.3.1
gemfile:
- gemfiles/clean.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
script: 'bundle exec rspec'
notifications:
email: false
addons:
code_climate:
repo_token: def01fea93ef7e5af7b536817182cb7951f9aac0e151bf544584901a689ea8f3
| Stop testing under ruby 1.9, but test with 2.3 | Stop testing under ruby 1.9, but test with 2.3 | YAML | mit | stokarenko/ruby-features,stokarenko/ruby-features |
a55758753044c433fc0ce94e6b8f7df9b3fefd11 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
before_install:
- sudo add-apt-repository ppa:kalakris/cmake -y
- sudo apt-get update -qq
- sudo apt-get install -y cmake
- sudo apt-get install -y libqt4-dev libdcmtk2-dev libinsighttoolkit3-dev libgdcm2-dev
- sudo apt-get install -y xpra xserver-xorg-video-dummy
before_script:
- "ls"
- "xpra --xvfb=\"Xorg +extension GLX -config `pwd`/Applications/Testing/dummy.xorg.conf -logfile ${HOME}/.xpra/xorg.log\" start :9"
- mkdir build
- cd build
- "cmake -DCTK_ENABLE_DICOM:BOOL=ON .."
script: "make && (cd CTK-build; env DISPLAY=:9 make Experimental)"
after_script:
- "xpra stop :9"
- "cat ~/.xpra/*"
| language: cpp
compiler:
- gcc
before_install:
- sudo add-apt-repository ppa:kalakris/cmake -y
- sudo apt-get update -qq
- sudo apt-get install -y cmake
- sudo apt-get install -y libqt4-dev qt4-dev-tools libdcmtk2-dev libinsighttoolkit3-dev libgdcm2-dev
- sudo apt-get install -y xpra xserver-xorg-video-dummy
before_script:
- "ls"
- "xpra --xvfb=\"Xorg +extension GLX -config `pwd`/Applications/Testing/dummy.xorg.conf -logfile ${HOME}/.xpra/xorg.log\" start :9"
- mkdir build
- cd build
- "cmake -DCTK_ENABLE_DICOM:BOOL=ON .."
script: "make && (cd CTK-build; env DISPLAY=:9 make Experimental)"
after_script:
- "xpra stop :9"
- "cat ~/.xpra/*"
| Add qt4-dev-tools to get sqlite | Add qt4-dev-tools to get sqlite
http://packages.ubuntu.com/precise/qt4-dev-tools
| YAML | apache-2.0 | pieper/CTK,pieper/CTK,pieper/CTK,pieper/CTK |
9a67257a8879a5f2de00e63671d895f632722634 | .travis.yml | .travis.yml | # Travis-CI Build for libgit2sharp
# see travis-ci.org for details
language: csharp
dist: trusty
dotnet: 2.1.401
mono: none
osx_image: xcode8.3
os:
- osx
- linux
before_install:
- date -u
- uname -a
- env | sort
install:
- git fetch --unshallow
# Build libgit2, LibGit2Sharp and run the tests
script:
- ./buildandtest.sh 'LEAKS_IDENTIFYING'
# Only watch the development branch
branches:
only:
- master
- /^maint.*/
# Notify of build changes
notifications:
email:
- emeric.fermas@gmail.com
| # Travis-CI Build for libgit2sharp
# see travis-ci.org for details
language: csharp
dist: trusty
dotnet: 2.1.506
mono: none
osx_image: xcode8.3
os:
- osx
- linux
before_install:
- date -u
- uname -a
- env | sort
install:
- git fetch --unshallow
# Build libgit2, LibGit2Sharp and run the tests
script:
- ./buildandtest.sh 'LEAKS_IDENTIFYING'
# Only watch the development branch
branches:
only:
- master
- /^maint.*/
# Notify of build changes
notifications:
email:
- emeric.fermas@gmail.com
| Update Travis .NET Core SDK version | Update Travis .NET Core SDK version
| YAML | mit | libgit2/libgit2sharp,PKRoma/libgit2sharp |
108094b6499b48fa14f08f3a1f3bc45db4c2dfe5 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1.10
- 2.2.4
- 2.3.0
notifications:
on_success: change
on_failure: change
on_start: false
# NOTE: The `addons` section is a workaround for Ruby 2.1.10
# A build failes if this section is removed.
addons:
apt:
packages:
- libgmp-dev
| language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1.10
- 2.2.4
- 2.3.1
notifications:
on_success: change
on_failure: change
on_start: false
# NOTE: The `addons` section is a workaround for Ruby 2.1.10
# A build failes if this section is removed.
addons:
apt:
packages:
- libgmp-dev
| Bump Ruby version to 2.3.1 | Bump Ruby version to 2.3.1
| YAML | mit | mozamimy/rbtclk |
b86f7e0d7d2e5242924f33df82281e657f53d8dd | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.4
notifications:
email: false
# Setup anaconda
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
# The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
# Install packages
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION atlas numpy scipy matplotlib nose pip theano
- pip install coverage coveralls
# Run test
script:
- nosetests --with-coverage --logging-level=INFO
after_success:
- coveralls
| language: python
python:
- 2.7
- 3.4
notifications:
email: false
# Setup anaconda
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
# The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
# Install packages
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION atlas numpy scipy matplotlib nose pip theano flake8
- pip install coverage coveralls pep257
before_script:
- flake8 --max-line-length=99 .
- pep257 .
# Run test
script:
- nosetests --with-coverage --logging-level=INFO
after_success:
- coveralls
| Add flake8 and pep257 tests to Travis | Add flake8 and pep257 tests to Travis
| YAML | mit | ibab/python-mle |
02f02ee567a546147affe789f540eec1e906f5d8 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-18mode
- jruby-19mode
- rbx-2
- ruby-head
- jruby-head
- ree
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-18mode
- jruby-19mode
- rbx-2
- ruby-head
- jruby-head
- ree
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| Allow ruby-head and jruby-head to fail | Allow ruby-head and jruby-head to fail
We only care about released versions breaking our build, running against head is just a way to catch problems early. | YAML | mit | jartek/request_store,ipoval/request_store,kissrobber/request_store,pravi/request_store,steveklabnik/request_store |
63ebcadc3cf711f745b62cda2395d43ed9169d64 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.2
script:
- bundle exec rspec --no-drb --format progress
env:
global:
- secure: |-
dcN4p784cVCbAXVV9BW+VxViyGBPsbf+RaEjNh4i+0oTWSnlQfuE/+YbSKbYisxn4jd+E7VH7
/NKyNFdWl+Lxltmf5qyHxqDpHfJZFisQVPIg8DoAkH8TT8BFeohhSK7vY3qPvPTuRaKHJY4DE
9aOh6sKJMqcTP9FixIYFoYR18=
| language: ruby
rvm:
- 2.1.5
script:
- bundle exec rspec --no-drb --format progress
env:
global:
- secure: |-
dcN4p784cVCbAXVV9BW+VxViyGBPsbf+RaEjNh4i+0oTWSnlQfuE/+YbSKbYisxn4jd+E7VH7
/NKyNFdWl+Lxltmf5qyHxqDpHfJZFisQVPIg8DoAkH8TT8BFeohhSK7vY3qPvPTuRaKHJY4DE
9aOh6sKJMqcTP9FixIYFoYR18=
| Update Ruby version for use in Travis | Update Ruby version for use in Travis
| YAML | mit | paulfioravanti/toy_robot |
9d6f81bdb6f130920b9ef109284f9a8187924a25 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
env:
- PANDAS_VERSION=v0.13.1
- PANDAS_VERSION=v0.14.1
- PANDAS_VERSION=master
before_install:
- sudo add-apt-repository -y ppa:ubuntugis/ppa
- sudo apt-get update
- sudo apt-get install libgdal1h gdal-bin libgdal-dev libspatialindex-dev libspatialindex1
# - sudo -u postgres psql -c "drop database if exists test_geopandas"
# - sudo -u postgres psql -c "create database test_geopandas"
# - sudo -u postgres psql -c "create extension postgis" -d test_geopandas
install:
- pip install -r requirements.txt --use-mirrors
- pip install -r requirements.test.txt --use-mirrors
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install -r .requirements-2.6.txt --use-mirrors; fi
- git clone git://github.com/pydata/pandas.git
- cd pandas
- git checkout $PANDAS_VERSION
- python setup.py install
- cd ..
script:
- py.test tests --cov geopandas -v --cov-report term-missing
after_success:
- coveralls
| language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
env:
- PANDAS_VERSION=v0.15.2
- PANDAS_VERSION=v0.16.0
- PANDAS_VERSION=master
before_install:
- sudo add-apt-repository -y ppa:ubuntugis/ppa
- sudo apt-get update
- sudo apt-get install libgdal1h gdal-bin libgdal-dev libspatialindex-dev libspatialindex1
# - sudo -u postgres psql -c "drop database if exists test_geopandas"
# - sudo -u postgres psql -c "create database test_geopandas"
# - sudo -u postgres psql -c "create extension postgis" -d test_geopandas
install:
- pip install -r requirements.txt --use-mirrors
- pip install -r requirements.test.txt --use-mirrors
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install -r .requirements-2.6.txt --use-mirrors; fi
- git clone git://github.com/pydata/pandas.git
- cd pandas
- git checkout $PANDAS_VERSION
- python setup.py install
- cd ..
script:
- py.test tests --cov geopandas -v --cov-report term-missing
after_success:
- coveralls
| Update pandas versions on Travis CI to latest 2 major releases + master | TST: Update pandas versions on Travis CI to latest 2 major releases + master
| YAML | bsd-3-clause | ozak/geopandas,geopandas/geopandas,jorisvandenbossche/geopandas,jorisvandenbossche/geopandas,scw/geopandas,jorisvandenbossche/geopandas,micahcochran/geopandas,geopandas/geopandas,jdmcbr/geopandas,micahcochran/geopandas,snario/geopandas,jdmcbr/geopandas,IamJeffG/geopandas,maxalbert/geopandas,ozak/geopandas,perrygeo/geopandas,kwinkunks/geopandas,geopandas/geopandas,koldunovn/geopandas,urschrei/geopandas |
dbdb687f1a893164abb150fb0137813e478d7cc5 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- tip
branches:
only:
- master
- /^v?\d+\.\d+\.\d+(-\S*)?$/
matrix:
fast_finish: true
allow_failures:
- go: tip
install: make vendor
script: make test
| language: go
sudo: false
go:
- 1.10.x
- 1.11.x
- tip
branches:
only:
- master
- /^v?\d+\.\d+\.\d+(-\S*)?$/
matrix:
fast_finish: true
allow_failures:
- go: tip
install: make vendor
script: make test
| Drop support for old Go versions | Drop support for old Go versions
| YAML | mit | goph/emperror,goph/emperror |
03c3e6df881f4c3fd090d28e6c0b9ca7bc0fe9e2 | .travis.yml | .travis.yml | language: ruby
env:
global:
- PATH="/opt/chef/bin:$PATH"
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
script:
- make
- git diff --exit-code
- git diff --cached --exit-code
- bundle exec rake
- ./run-foodcritic cookbooks
- ./runtests
| language: generic
env:
global:
- PATH="/opt/chefdk/bin:/opt/chef/bin:$PATH"
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
install: bundle install --jobs=3 --retry=3
script:
- make
- git diff --exit-code
- git diff --cached --exit-code
- bundle exec rake
- ./run-foodcritic cookbooks
- ./runtests
| Use the rubocop that comes with chefdk | Use the rubocop that comes with chefdk
| YAML | mit | travis-ci/packer-templates,travis-ci/packer-templates,travis-ci/packer-templates |
f5881cca371eeafe672a9f6163644a25b323b71a | .travis.yml | .travis.yml | language: cpp
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-5']
env: COMPILER=g++-5
- os: linux
compiler: clang
addons:
apt:
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.8']
packages: ['clang-3.8']
env: COMPILER=clang++-3.8
before_script:
git clone https://github.com/siquel/kaluketju
script:
- if [ "$CXX" == "clang++" ]; then make CXX=$COMPILER linux-clang && .build/linux64_clang/bin/unit_testDebug; fi
- if [ "$CXX" == "g++" ]; then make CXX=$COMPILER linux-gcc && .build/linux64_gcc/bin/unit_testDebug; fi
- $COMPILER --version
branches:
only:
- master
notifications:
email: false | language: cpp
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-5']
env: COMPILER=g++-5
# - os: linux
# compiler: clang
# addons:
# apt:
# sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.8']
# packages: ['clang-3.8']
# env: COMPILER=clang++-3.8
before_script:
git clone https://github.com/siquel/kaluketju
script:
- if [ "$CXX" == "clang++" ]; then make CXX=$COMPILER linux-clang && .build/linux64_clang/bin/unit_testDebug; fi
- if [ "$CXX" == "g++" ]; then make CXX=$COMPILER linux-gcc && .build/linux64_gcc/bin/unit_testDebug; fi
- $COMPILER --version
branches:
only:
- master
notifications:
email: false
| Disable clang compiling while llvm apt repo is offline | Disable clang compiling while llvm apt repo is offline
| YAML | mit | siquel/kulma,siquel/kulma |
5445beb1546ab3c6923b6a8a787fe727c067ff76 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx
matrix:
allow_failures:
- rvm: rbx
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode # JRuby in 1.9 mode
- rbx
matrix:
allow_failures:
- rvm: rbx
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec
| Remove jRuby 1.8 and 1.9.2 from ci | Remove jRuby 1.8 and 1.9.2 from ci
| YAML | mit | razum2um/gon,be9/gon,avokhmin/gon,gazay/gon |
ad31d7662939f2246fd1e4671dd7632c92aedd91 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_install: "npm install -g bob --loglevel error"
script: "bob build"
| language: node_js
node_js:
- "0.11"
- "0.10"
before_install: "npm install -g bob --loglevel error"
script: "bob build"
| Add node 0.11 to CI runs. | Add node 0.11 to CI runs.
| YAML | mit | cliffano/breaker |
5b73ce69016ff501d2116e4225c83c077d796878 | .travis.yml | .travis.yml | # Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
sudo: required
services:
- docker
env:
- PLATFORM_LANGUAGE=cpp
- PLATFORM_LANGUAGE=java
cache:
timeout: 900
directories:
- $HOME/.m2
- $HOME/.ccache
branches:
only:
- master
before_cache:
- sudo rm -rf $HOME/.m2/repository/com/yahoo
- sudo rm -rf $HOME/.m2/repository/simple/dummy-persistence
- du --summarize --human-readable $HOME/.m2/repository
- ccache --show-stats
install: true
language: minimal
script: sh ./travis/travis.sh $PLATFORM_LANGUAGE
| # Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
sudo: required
services:
- docker
env:
- PLATFORM_LANGUAGE=cpp
- PLATFORM_LANGUAGE=java
cache:
timeout: 900
directories:
- $HOME/.m2
- $HOME/.ccache
git:
depth: 1
branches:
only:
- master
before_cache:
- sudo rm -rf $HOME/.m2/repository/com/yahoo
- sudo rm -rf $HOME/.m2/repository/simple/dummy-persistence
- du --summarize --human-readable $HOME/.m2/repository
- ccache --show-stats
install: true
language: minimal
script: sh ./travis/travis.sh $PLATFORM_LANGUAGE
| Reduce clone depth to 1 | Reduce clone depth to 1
| YAML | apache-2.0 | vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa |
09b62966ead00fb5224ff5a1472e6a10f057433a | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
matrix:
include:
- php: 5.6
env: SYMFONY_VERSION="2.3.*"
- php: 5.6
env: SYMFONY_VERSION="2.4.*"
- php: 5.6
env: SYMFONY_VERSION="2.5.*"
- php: 5.6
env: SYMFONY_VERSION="2.6.*"
- php: 5.6
env: SYMFONY_VERSION="2.7.*"
before_install:
- composer self-update
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/framework-bundle:$SYMFONY_VERSION symfony/console:$SYMFONY_VERSION symfony/dependency-injection:$SYMFONY_VERSION symfony/http-kernel:$SYMFONY_VERSION symfony/config:$SYMFONY_VERSION; fi
install:
- composer update --prefer-dist
script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/coveralls
| language: php
php:
- 5.5
- 5.6
- 7.0
matrix:
include:
- php: 5.6
env: SYMFONY_VERSION="2.5.*"
- php: 5.6
env: SYMFONY_VERSION="2.6.*"
- php: 5.6
env: SYMFONY_VERSION="2.7.*"
before_install:
- composer self-update
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/framework-bundle:$SYMFONY_VERSION symfony/console:$SYMFONY_VERSION symfony/dependency-injection:$SYMFONY_VERSION symfony/http-kernel:$SYMFONY_VERSION symfony/config:$SYMFONY_VERSION; fi
install:
- composer update --prefer-dist
script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/coveralls
| Remove running tests in environments with Symfony <2.5. | Remove running tests in environments with Symfony <2.5.
| YAML | mit | ClearcodeHQ/command-bus-console |
8980df5d5555f1aa1edf1c3faecab1af64383fbb | .travis.yml | .travis.yml | sudo: false
language: ruby
cache: bundler
matrix:
include:
- rvm: 2.2.10
- rvm: 2.3.7
- rvm: 2.4.4
- rvm: 2.5.1
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
branches:
only:
- master
bundler_args: --jobs 7 --without docs debug
script: bundle exec rake
| sudo: false
language: ruby
cache: bundler
matrix:
include:
- rvm: 2.2.10
- rvm: 2.3.7
- rvm: 2.4.4
- rvm: 2.5.1
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
branches:
only:
- master
bundler_args: --jobs 7 --without docs debug
script:
- bundle exec chefstyle
- bundle exec rake
| Add chefstyle testing to Travis | Add chefstyle testing to Travis
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef/knife-openstack,chef/knife-openstack |
021d49405d0f74782749aae7482c1798733558b9 | .travis.yml | .travis.yml | language: python
python:
- "3.5.2"
# - "nightly"
install:
# - pip3 install codecov pyyaml
- pip3 install pyyaml
script:
- python3 -m unittest discover
# - python3 -m doctest README.adoc
# - coverage run --source pylibofp -m test
#after_success:
# - if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then codecov; fi
before_install:
# Install libofp from launchpad.
- sudo add-apt-repository ppa:byllyfish/libofp-dev -y
- sudo apt-get update -qq
- sudo apt-get install libofp -y
- dpkg -L libofp
# Per https://docs.travis-ci.com/user/ci-environment/#Virtualization-environments
sudo: required
dist: trusty
| language: python
python:
- "3.5.2"
# - "nightly"
install:
# - pip3 install codecov pyyaml
- pip3 install pyyaml
script:
- libofp version
- libofp jsonrpc --loglevel=info < /dev/null
- python3 -m unittest discover
# - python3 -m doctest README.adoc
# - coverage run --source pylibofp -m test
#after_success:
# - if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then codecov; fi
before_install:
# Install libofp from launchpad.
- sudo add-apt-repository ppa:byllyfish/libofp-dev -y
- sudo apt-get update -qq
- sudo apt-get install libofp -y
- dpkg -L libofp
# Per https://docs.travis-ci.com/user/ci-environment/#Virtualization-environments
sudo: required
dist: trusty
| Check libofp version and default log settings. | Check libofp version and default log settings.
| YAML | mit | byllyfish/pylibofp,byllyfish/pylibofp |
355de682ea82238ed0a36a7a5b9f74f9a1a69bbe | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
# command to install dependencies
install: "pip install -r requirements-test.txt --use-mirrors"
# command to run tests
script: py.test test | language: python
python:
- "2.6"
- "2.7"
# command to install dependencies
install:
- "pip install . --use-mirrors"
- "pip install -r requirements-test.txt --use-mirrors"
# command to run tests
script: py.test test | Make sure to install self | Make sure to install self
| YAML | mit | tshlabs/avalonms |
e1b8e6d2e4d05ee26f526d556efa6df1f833de9c | .travis.yml | .travis.yml | language: php
sudo: required
dist: trusty
php:
- "7.2"
- "master"
- "nightly"
matrix:
fast_finish: true
allow_failures:
- php: "master"
- php: "nightly"
os:
- windows
- linux
before_install:
- git clone -b stable https://github.com/jedisct1/libsodium.git
- cd libsodium && sudo ./configure && sudo make check && sudo make install && cd ..
install:
- pecl install libsodium
- travis_retry composer install --no-interaction
- wget -c -nc --retry-connrefused --tries=0 https://github.com/php-coveralls/php-coveralls/releases/download/v2.0.0/php-coveralls.phar
- chmod +x php-coveralls.phar
- php php-coveralls.phar --version
script:
- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- ./vendor/bin/psalm
after_success:
- travis_retry php php-coveralls.phar -v
before_script:
- mkdir -p build/logs
- ls -al
cache:
directories:
- vendor
- $HOME/.cache/composer
| language: php
sudo: required
dist: trusty
php:
- "7.2"
- "master"
- "nightly"
matrix:
fast_finish: true
allow_failures:
- php: "master"
- php: "nightly"
os:
- windows
- linux
before_install:
- git clone -b stable https://github.com/jedisct1/libsodium.git
- cd libsodium && sudo ./configure && sudo make check && sudo make install && cd ..
install:
- pecl channel-update pecl.php.net
- pecl install libsodium
- travis_retry composer install --no-interaction
- wget -c -nc --retry-connrefused --tries=0 https://github.com/php-coveralls/php-coveralls/releases/download/v2.0.0/php-coveralls.phar
- chmod +x php-coveralls.phar
- php php-coveralls.phar --version
script:
- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- ./vendor/bin/psalm
after_success:
- travis_retry php php-coveralls.phar -v
before_script:
- mkdir -p build/logs
- ls -al
cache:
directories:
- vendor
- $HOME/.cache/composer
| Update the pecl channel before installing libsodium. | Update the pecl channel before installing libsodium. | YAML | mpl-2.0 | paragonie/halite,paragonie/halite |
e6c5971b89d7d6f5d8dba83782e25bf1fc372f32 | .travis.yml | .travis.yml | language: java
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
- os: linux
jdk: oraclejdk8
- os: linux
jdk: openjdk8
- os: linux
jdk: oraclejdk9
- os: linux
jdk: oraclejdk10
- os: linux
jdk: openjdk10
env:
- TERM=dumb
script:
- ./gradlew assemble
branches:
- master
- 1.x
| language: java
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
- os: linux
jdk: oraclejdk8
- os: linux
jdk: openjdk8
- os: linux
jdk: oraclejdk9
- os: linux
jdk: oraclejdk10
- os: linux
jdk: openjdk10
script:
- ./gradlew assemble
branches:
- master
- 1.x
| Use default terminal on Travis | Use default terminal on Travis
| YAML | bsd-3-clause | bwaldvogel/log4j-systemd-journal-appender,bwaldvogel/log4j-systemd-journal-appender |
09af823bea169a3339a8ba172b6fe59a47101f91 | .travis.yml | .travis.yml | sudo: false
language: php
php:
- '7.0'
- '7.1'
- '7.2'
- '7.3'
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
before_install:
- phpenv config-rm xdebug.ini || true
- "[[ $GITHUB_TOKEN ]] && composer config --global github-oauth.github.com $GITHUB_TOKEN"
install: composer install --no-interaction
script: make ci
after_script: bash <(curl -s https://codecov.io/bash)
env:
global:
- RECOIL_INSTRUMENTATION=none
- secure: qLa8aBWBXyBFMr1f7xo1TKiCGNllo5HtmLji7LEt5RvX7VzV29YJzFoy4f+ddAZOIUX4vwQVIzJRjrMx2ESJckORPiTF+sQFdt/Gi2Igz/8AVAH2Qj36IWln2aug1ZtvCZChwihW9ZF09v9JreZXYBIstLtGVc95yA5BIwoilhU=
cache:
directories:
- "$HOME/.composer/cache/files"
| sudo: false
language: php
php:
- '7.1'
- '7.2'
- '7.3'
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
before_install:
- phpenv config-rm xdebug.ini || true
- "[[ $GITHUB_TOKEN ]] && composer config --global github-oauth.github.com $GITHUB_TOKEN"
install: composer install --no-interaction
script: make ci
after_script: bash <(curl -s https://codecov.io/bash)
env:
global:
- RECOIL_INSTRUMENTATION=none
- secure: qLa8aBWBXyBFMr1f7xo1TKiCGNllo5HtmLji7LEt5RvX7VzV29YJzFoy4f+ddAZOIUX4vwQVIzJRjrMx2ESJckORPiTF+sQFdt/Gi2Igz/8AVAH2Qj36IWln2aug1ZtvCZChwihW9ZF09v9JreZXYBIstLtGVc95yA5BIwoilhU=
cache:
directories:
- "$HOME/.composer/cache/files"
| Remove PHP 7.0 from the build matrix. | Remove PHP 7.0 from the build matrix.
| YAML | mit | recoilphp/recoil |
e1a8b2ea5df6d5c4e32a8a86422f854dec550296 | .travis.yml | .travis.yml | language: node_js
node_js:
- "stable"
sudo: false | language: node_js
node_js:
- "stable"
- "0.12"
- "0.11"
- "0.10"
sudo: false | Build Matrix for Integration Tests | Build Matrix for Integration Tests
| YAML | isc | ShinyAds/node-google-dfp |
b68ca0ba3086c42180d664e324940012e3662b14 | .travis.yml | .travis.yml | language: node_js
cache:
yarn: true
directories:
- node_modules
node_js:
- "node"
script:
- yarn lint
- yarn test --coverage
after_success:
- "coveralls < coverage/lcov.info"
| language: node_js
cache:
yarn: true
directories:
- node_modules
script:
- yarn lint
- yarn test --coverage
after_success:
- "coveralls < coverage/lcov.info"
| Remove Node version from Travis CI config and defer to .nvmrc | Remove Node version from Travis CI config and defer to .nvmrc
| YAML | mit | wKovacs64/meetup-raffle,wKovacs64/meetup-raffle |
ffd15a4360cc70913061ff45e78acae47dc69f69 | .travis.yml | .travis.yml | language: python
python:
- '2.6'
- '2.7'
install: "python setup.py develop"
script: "python setup.py test"
deploy:
provider: pypi
user: allanino
password:
secure: f6A4pg0MWM11U4i+MViOMNe/YM9LT6v/jAFs6JRQ7jp+2eVjuzFlfByVn0sLdALExHi4sno66j7aLTGJcSlwlRZUt/Wss1C+4Rt1D+KrzriFdH8WANKzTF63fh8cZDYMdEerzCkcPwzcBB5tmdpMXq44LIaw/d4a7hF2L5bNqlc=
on:
all_branches: true
tags: true
repo: cloudwalkio/ddbscan | language: python
python:
- '2.7'
# Setup anaconda
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
# The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
# Install packages
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION atlas numpy scipy matplotlib nose dateutil pandas statsmodels
# Coverage packages are on my binstar channel
- conda install --yes -c dan_blanchard python-coveralls nose-cov
- python setup.py install
# Run test
script:
- nosetests --with-cov --cov ddbscan --cov-config .coveragerc --logging-level=INFO
# Calculate coverage
after_success:
- coveralls --config_file .coveragerc
deploy:
provider: pypi
user: allanino
password:
secure: f6A4pg0MWM11U4i+MViOMNe/YM9LT6v/jAFs6JRQ7jp+2eVjuzFlfByVn0sLdALExHi4sno66j7aLTGJcSlwlRZUt/Wss1C+4Rt1D+KrzriFdH8WANKzTF63fh8cZDYMdEerzCkcPwzcBB5tmdpMXq44LIaw/d4a7hF2L5bNqlc=
on:
all_branches: true
tags: true
repo: cloudwalkio/ddbscan | Use Miniconda to install Scipy | Use Miniconda to install Scipy
| YAML | mit | cloudwalkio/ddbscan,allanino/ddbscan |
1be228185a4043c9b19b5f7c152e465f1ffa9e5e | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
before_script:
- composer self-update
- composer install
script: phpunit --coverage-text -c test/
after_script:
# Merges the individual clover reports of each component into a single clover.xml
- php vendor/bin/phpcov.php --merge --clover build/logs/clover.xml --whitelist library build/coverage
- php vendor/bin/coveralls
| language: php
php:
- 5.5
- 5.6
- hhvm
before_script:
- composer self-update
- composer install
script: phpunit --coverage-text -c test/
after_script:
# Merges the individual clover reports of each component into a single clover.xml
- php vendor/bin/phpcov.php --merge --clover build/logs/clover.xml --whitelist library build/coverage
- php vendor/bin/coveralls
| Add Travis testing for HHVM | Add Travis testing for HHVM | YAML | bsd-3-clause | BitWeb/id-services |
5745b2881261bec52603cb86dbe19b6c34976da8 | .travis.yml | .travis.yml | language: go
go:
- 1.2
install:
- go get launchpad.net/goamz/aws
- go get -v -t ./...
- mkdir -p $HOME/gopath/bin
- go install
script:
- export PATH=$HOME/gopath/bin:$PATH
- go test ./... | language: go
go:
- 1.2
install:
- go get launchpad.net/goamz/aws
- go get -v -t ./...
- mkdir -p $HOME/gopath/bin
- go install
script:
- export PATH=$HOME/gopath/bin:$PATH
- go test ./...
| Fix missing newline at eof | Fix missing newline at eof
| YAML | mit | realestate-com-au/credulous,mefellows/credulous,mefellows/credulous,mbailey/credulous,mbailey/credulous,mefellows/credulous,realestate-com-au/credulous,mbailey/credulous,mbailey/credulous,realestate-com-au/credulous,realestate-com-au/credulous,mefellows/credulous |
bd1a201df11d9a460f1d9768b1673fc5bbd538da | .travis.yml | .travis.yml | language: java
sudo: false
before_install:
# - unset GEM_PATH
install:
# install without testing
- mvn install -U -Dmaven.test.skip=true -B -V -fae -q -T2
script:
# execute tests
- mvn -e verify -B
after_success:
# generate code coverage report
- mvn -B -e -fae -Ptravis-ci clean verify jacoco:report coveralls:report
#jdk:
# - openjdk7
# - oraclejdk7
# - oraclejdk8
os:
- linux
- osx
matrix:
fast_finish: true
cache:
directories:
- cache
- $HOME/.m2
| language: java
sudo: false
before_install:
# - unset GEM_PATH
install:
# install without testing
- mvn install -U -Dmaven.test.skip=true -B -V -fae -q -T2
script:
# execute tests
- mvn -e verify -B
after_success:
# generate code coverage report
- mvn -B -e -fae -Ptravis-ci clean verify jacoco:report coveralls:report
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
os:
- linux
# - osx
matrix:
fast_finish: true
cache:
directories:
- cache
- $HOME/.m2
| Revert "enable Travis-CI building/testing on osx" | Revert "enable Travis-CI building/testing on osx"
| YAML | apache-2.0 | GeoDienstenCentrum/sass-maven-plugin,GeoDienstenCentrum/sass-maven-plugin |
9b4dc9af9ad679b55925c1828913bd602481c254 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Build with Node.js 6 on Travis CI. | Build with Node.js 6 on Travis CI.
| YAML | mit | bigeasy/semblance |
489ebb7f1ee8a66e745e6155a81282cc8aad4c61 | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- yarn lint
- yarn test
- yarn build
- yarn profile
| language: node_js
node_js:
- "7"
script:
- yarn lint
- yarn test
- yarn build
- yarn profile
| Remove chrome installation in CI | Remove chrome installation in CI
| YAML | mit | sljavi/react-speech-recognition-status |
fb645bd43284fb2ae2010305ec8a8c49ff576d1e | .travis.yml | .travis.yml | language: python
python:
- 2.7
branches:
only:
- master
- develop
install: python setup.py install
script: nosetests -v
notifications:
email: false | language: python
python:
- 2.7
- 3.2
branches:
only:
- master
- develop
install: python setup.py install
script: nosetests -v
notifications:
email: false | Add python 3.2 just to experiment with matrix builds | Add python 3.2 just to experiment with matrix builds
| YAML | mit | guillermo-carrasco/pytravis |
6269904bc9d5919d065c6d9077764ed01e01247e | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
before_script:
- COMPOSER_ROOT_VERSION=dev-master composer install --dev
before_install:
- sudo apt-get install -qq php5-gd
- sudo apt-get install -qq php5-imagick
- sudo apt-get install -qq libgraphicsmagick1-dev
- printf "\n" | pecl install -f gmagick-1.1.7RC2
script: phpunit -c tests/
| language: php
php:
- 5.4
- 5.5
before_script:
- COMPOSER_ROOT_VERSION=dev-master composer install --dev
before_install:
- sudo apt-get install -qq php5-gd
- sudo apt-get install -qq imagemagick
- sudo apt-get install -qq php5-imagick
- sudo apt-get install -qq libgraphicsmagick1-dev
- printf "\n" | pecl install -f gmagick-1.1.7RC2
script: phpunit -c tests/
| Build failing; guess need to install Imagick | Build failing; guess need to install Imagick
| YAML | mit | bitheater/dummy-image |
3682038ecdd4b84e4c0d71e63da9a6af0efaf5f8 | .travis.yml | .travis.yml | language: scala
scala:
- 2.11.11
- 2.12.3
jdk:
- oraclejdk8
sudo: false
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
after_success:
- |
if [ -n "$TRAVIS_TAG" ] || ([ "$TRAVIS_PULL_REQUEST" == false ] && [ "$TRAVIS_BRANCH" == master ])
then
mkdir ~/.pgp
echo $PGP_PUBLIC | base64 --decode > ~/.pgp/pubring
echo $PGP_SECRET | base64 --decode > ~/.pgp/secring
echo "Publishing snapshot"
sbt ++$TRAVIS_SCALA_VERSION xtract/publishSigned xtractTesting/publishSigned
fi
deploy:
api_key: $GITHUB_AUTH
file:
- xtract-core/target/**/*.jar
- testing/target/**/*.jar
file_glob: true
provider: releases
skip_cleanup: true
on:
tags: true
install:
- sbt ++$TRAVIS_SCALA_VERSION update
script:
- sbt ++$TRAVIS_SCALA_VERSION test package
#Avoid unncessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
| language: scala
scala:
- 2.11.11
- 2.12.3
jdk:
- oraclejdk8
sudo: false
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
after_success:
- |
if [ -n "$TRAVIS_TAG" ] || ([ "$TRAVIS_PULL_REQUEST" == false ] && [ "$TRAVIS_BRANCH" == master ])
then
mkdir ~/.pgp
echo $PGP_PUBLIC | base64 --decode > ~/.pgp/pubring
echo $PGP_SECRET | base64 --decode > ~/.pgp/secring
echo "Publishing snapshot"
sbt ++$TRAVIS_SCALA_VERSION xtract/publishSigned xtractTesting/publishSigned
fi
deploy:
api_key: $GITHUB_AUTH
file:
- xtract-core/target/**/*.jar
- testing/target/**/*.jar
file_glob: true
provider: releases
skip_cleanup: true
on:
tags: true
install:
- sbt ++$TRAVIS_SCALA_VERSION update
script:
- sbt ++$TRAVIS_SCALA_VERSION test
- sbt ++$TRAVIS_SCALA_VERSION package
#Avoid unncessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
| Split test and package into seperate commands | Split test and package into seperate commands
in travis
| YAML | apache-2.0 | lucidsoftware/xtract |
7db31b4c2e90439f276fce49362afd7346871771 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- 1.8.0
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
| language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
| Drop Rust 1.8 from Travis | Drop Rust 1.8 from Travis
It can't compile new try syntax (expr?), so let's focus on supporting latest stable version of Rust.
| YAML | mit | dherman/kora,RReverser/esprit,dherman/kora,RReverser/esprit |
656abf109ca3387a3efb81687f0d9900d2c68a71 | .travis.yml | .travis.yml | language: node_js
sudo: false
before_install:
- npm update -g npm
node_js:
- "0.12"
- "0.10"
- "0.8"
| language: node_js
sudo: false
before_install:
- npm update -g npm
node_js:
- "6.0"
- "4.4"
- "0.12"
- "0.10"
- "0.8"
| Add 6.0 and 4.4 to versions we test with Travis. | Add 6.0 and 4.4 to versions we test with Travis.
| YAML | mit | eloquence/node-config |
85e18b8b0516263856a8aba49dc59be038d9db2e | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
before_script:
- mkdir cmake-build
- cd cmake-build
script: cmake -DOCE_ENABLE_DEB_FLAG:BOOL=OFF
-DCMAKE_BUILD_TYPE:STRING=Debug
-DOCE_TESTING:BOOL=ON
-DOCE_VISUALISATION:BOOL=OFF
-DOCE_OCAF:BOOL=ON
-DOCE_DATAEXCHANGE:BOOL=ON
-DOCE_DISABLE_X11:BOOL=ON
.. && echo "" &&
if test -x /usr/bin/getconf; then echo "Starting build with -j$(/usr/bin/getconf _NPROCESSORS_ONLN) ...";
make -j$(/usr/bin/getconf _NPROCESSORS_ONLN); else make; fi
after_script: make test
| language: cpp
compiler:
- gcc
- clang
before_script:
- mkdir cmake-build
- cd cmake-build
script: cmake -DOCE_ENABLE_DEB_FLAG:BOOL=OFF
-DCMAKE_BUILD_TYPE:STRING=Debug
-DOCE_TESTING:BOOL=ON
-DOCE_VISUALISATION:BOOL=OFF
-DOCE_OCAF:BOOL=ON
-DOCE_DATAEXCHANGE:BOOL=ON
-DOCE_DISABLE_X11:BOOL=ON
-DOCE_USE_PCH:BOOL=ON
.. && echo "" &&
if test -x /usr/bin/getconf; then echo "Starting build with -j$(/usr/bin/getconf _NPROCESSORS_ONLN) ...";
make -j$(/usr/bin/getconf _NPROCESSORS_ONLN); else make; fi
after_script: make test
| Enable precompiled headers to speed up builds | Enable precompiled headers to speed up builds
| YAML | lgpl-2.1 | EvgeneOskin/oce,Tridify/oce,Tech-XCorp/oce,BenoitPerrot/oce,finetjul/oce,BenoitPerrot/oce,finetjul/oce,EvgeneOskin/oce,tpaviot/oce,Tridify/oce,tpaviot/oce,BenoitPerrot/oce,tpaviot/oce,EvgeneOskin/oce,heartvalve/oce,heartvalve/oce,heartvalve/oce,Tridify/oce,Tridify/oce,mathstuf/oce,Tridify/oce,heartvalve/oce,EvgeneOskin/oce,EvgeneOskin/oce,mathstuf/oce,tpaviot/oce,Tech-XCorp/oce,mathstuf/oce,finetjul/oce,finetjul/oce,Tech-XCorp/oce,heartvalve/oce,mathstuf/oce,tpaviot/oce,Tech-XCorp/oce,finetjul/oce,BenoitPerrot/oce,Tech-XCorp/oce,mathstuf/oce,BenoitPerrot/oce |
0f600e8f2a0787bbe2308332b636be99023f60ac | .travis.yml | .travis.yml | matrix:
include:
- os: osx
language: objective-c
osx_image: xcode8.2
- os: osx
language: objective-c
osx_image: xcode8.3
script:
# The pipefail option sets the exit status to the last commond with a non-zero status code, which would usually be xcodebuild
- set -o pipefail && xcodebuild test -scheme Ampere -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 7,OS=10.1" | xcpretty
| matrix:
include:
- os: osx
language: objective-c
osx_image: xcode8.2
env:
- DESTINATION="platform=iOS Simulator,name=iPhone 7,OS=10.1"
- os: osx
language: objective-c
osx_image: xcode8.3
env:
- DESTINATION="platform=iOS Simulator,name=iPhone 7,OS=10.3"
script:
# Alternatively: set -o pipefail && xcodebuild ... | xcpretty
# The pipefail option sets the exit status to the last command with a non-zero status code, which would usually be xcodebuild.
# But xcpretty may also hide some logs we'd like to see.
- xcodebuild test -scheme Ampere -sdk iphonesimulator -destination "$DESTINATION"
| Disable xcpretty on Travis. Use iOS 10.3 in Xcode 8.3 | Disable xcpretty on Travis. Use iOS 10.3 in Xcode 8.3
| YAML | mit | ole/Ampere |
e27b1ca67fe02f6ef75d59f7708c0d7bf5038293 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.0.0"
sudo: false
before_install:
- cp config/config_travis-ci.js config/config.js
install:
- npm install
services:
- mongodb
- redis-server | language: node_js
node_js:
- "4.0.0"
sudo: false
before_install:
- cp config/config_travis-ci.js config/config.js
install:
- npm install
services:
- mongodb
- redis-server
notifications:
email: false
slack: khe:tfhhTbfsGC5sNlqxUbmU9OZF | Switch from email notifications to slack notifications from Travis | Switch from email notifications to slack notifications from Travis
| YAML | mit | hacksu/kenthackenough,hacksu/kenthackenough |
6ad5008c80a1d75d56d2e411c8ae87825ab7d048 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
before_install:
- gem install bundler
gemfile:
- .gemfiles/Gemfile.mongoid3
- .gemfiles/Gemfile.mongoid4
- .gemfiles/Gemfile.mongoid4_rails41
- .gemfiles/Gemfile.mongoid4_rails42
- .gemfiles/Gemfile.mongoid5_rails4
- .gemfiles/Gemfile.mongoid_head
matrix:
allow_failures:
- gemfile: .gemfiles/Gemfile.mongoid_head
include:
- rvm: 2.3.1
gemfile: .gemfiles/Gemfile.mongoid6_rails5
notifications:
recipients:
- jerry.clinesmith@koanhealth.com
services:
- mongodb
| language: ruby
bundler_args: --without development
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0
before_install:
- gem install bundler
gemfile:
- .gemfiles/Gemfile.mongoid3
- .gemfiles/Gemfile.mongoid4
- .gemfiles/Gemfile.mongoid4_rails41
- .gemfiles/Gemfile.mongoid4_rails42
- .gemfiles/Gemfile.mongoid5_rails4
- .gemfiles/Gemfile.mongoid_head
matrix:
allow_failures:
- gemfile: .gemfiles/Gemfile.mongoid_head
include:
- rvm: 2.3.1
gemfile: .gemfiles/Gemfile.mongoid6_rails5
notifications:
recipients:
- jerry.clinesmith@koanhealth.com
services:
- mongodb
| Test against newer versions of Ruby | Test against newer versions of Ruby
| YAML | mit | KoanHealth/mongoid-encrypted-fields |
7c82164c0f03275b8a4042e7b9c543b05ed6d25d | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
install:
- "pip install . --use-mirrors"
- "pip install django>=1.5 psycopg2==2.4.6"
env:
env:
global:
- DJANGO_SETTINGS_MODULE=test_project.settings
- REPO="chrislawlor/django-pachyderm"
- CI_HOME=`pwd`/$REPO
- PYTHONPATH=$PYTHONPATH:$CI_HOME/tests
before_script:
- psql -c 'CREATE DATABASE pachyderm;' -U postgres
script:
- django-admin.py test test_app | language: python
python:
- "2.6"
- "2.7"
- "3.2"
install:
- "pip install . --use-mirrors"
- "pip install django>=1.5 psycopg2==2.4.6"
env:
env:
global:
- DJANGO_SETTINGS_MODULE=test_project.settings
- REPO="chrislawlor/django-pachyderm"
- CI_HOME=`pwd`/$REPO
- PYTHONPATH=$PYTHONPATH:$CI_HOME/tests/:$CI_HOME/src/
before_script:
- psql -c 'CREATE DATABASE pachyderm;' -U postgres
script:
- django-admin.py test test_app | Add src dir to PYTHONPATH | Add src dir to PYTHONPATH
| YAML | bsd-2-clause | chrislawlor/django-pachyderm |
bbd25e1724386130436b37a8550aa33f023f2088 | .travis.yml | .travis.yml | language: node_js
before_install: 'npm i auto-package@^0.2.0 mightyiam@^1.1.5 policystat@^1.0.2 && node package.js'
env:
global:
- secure: SnpYBD6/J+Uct2LMvDWyGiUqyANrdT8cMxaocNIQenpkc2SVuK5A5PbUYRd2AkIYomjZffzdB/ljabUdXhofUZqdkHDDYDUg5/I9jUv/qO7HtMiKIgdmhKKHignvUII4G9tEm6rtpuZPZqi9XsH/lx+yMB1fGSlJfKwOpwrs3js=
- secure: jpZmm8VYIb18f94ntJ0NagvX2jlthoplW0KXu/l0BPKh8p/r2d+k+EL2gq2hm+Tbqk8/Jo+HZG44DfrX68efLmbUQwYTrGyldIY0Xk47Ynhf0pUD3zNiOB1jpAyGGGp92cw5ve0VUmPd9iPrXB8o0RKUZpYqYPCgXNyiTMpGATI=
| language: node_js
before_install: 'npm i auto-package@^0.2.0 mightyiam@^1.1.5 policystat@^1.0.2 && node package.js'
# temporarily disable unit testing in browsers until we get it running properly
script: 'npm run license && npm run docs && npm run lint'
env:
global:
- secure: SnpYBD6/J+Uct2LMvDWyGiUqyANrdT8cMxaocNIQenpkc2SVuK5A5PbUYRd2AkIYomjZffzdB/ljabUdXhofUZqdkHDDYDUg5/I9jUv/qO7HtMiKIgdmhKKHignvUII4G9tEm6rtpuZPZqi9XsH/lx+yMB1fGSlJfKwOpwrs3js=
- secure: jpZmm8VYIb18f94ntJ0NagvX2jlthoplW0KXu/l0BPKh8p/r2d+k+EL2gq2hm+Tbqk8/Jo+HZG44DfrX68efLmbUQwYTrGyldIY0Xk47Ynhf0pUD3zNiOB1jpAyGGGp92cw5ve0VUmPd9iPrXB8o0RKUZpYqYPCgXNyiTMpGATI=
| Disable browser testing in CI | Disable browser testing in CI
| YAML | bsd-3-clause | PolicyStat/edited |
4496e94e663cdd2e800ed88d5b91c5da4cc5c848 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
script: bundle exec rake test
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- rbx-19mode
- jruby-19mode
matrix:
allow_failures:
- rvm: 1.8.7
- rvm: rbx-18mode
- rvm: jruby-18mode
script: bundle exec rake test
| Add additional Rubies to test against | Add additional Rubies to test against
| YAML | mit | timkurvers/waddup |
627c2a21a42c474cee8fa3b7b4b1e3b979940538 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
script: 'bundle exec rake test:coverage --trace'
rvm:
- 2.2
- 2.3
- jruby-9000
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9000 # See https://github.com/department-of-veterans-affairs/connect_vbms/issues/15 and https://github.com/rvm/rvm/issues/3475
| language: ruby
sudo: false
cache: bundler
script: 'bundle exec rake test:coverage --trace'
rvm:
- 2.2.4
- 2.3.0
- jruby-9000
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9000 # See https://github.com/department-of-veterans-affairs/connect_vbms/issues/15 and https://github.com/rvm/rvm/issues/3475
| Fix supported versions for Travis CI | Fix supported versions for Travis CI
| YAML | mit | hanami/utils,vyper/utils,pascalbetz/hanami-utils,artofhuman/utils,hanami/utils,artofhuman/utils,lotus/utils,pascalbetz/hanami-utils |
c57bfc14aff7f2bdc494443ed2b743d26bf3182b | .travis.yml | .travis.yml | language: java
sudo: false
dist: trusty
before_install:
- unset _JAVA_OPTIONS
install: echo "The default Travis install script is being skipped!"
matrix:
include:
# Java 9
- jdk: oraclejdk9
env: TARGET='-Pjava9'
# Java 10
- env: TARGET='-Pjava10'
jdk: oraclejdk10
# Java 11
- env: TARGET='-Pjava11'
jdk: oraclejdk11
# Java 12
- env: TARGET='-Pjava11'
jdk: openjdk-ea
script:
- ./mvnw install ${TARGET} -DskipTests=true -Dmaven.javadoc.skip=true -Dnet.bytebuddy.test.ci=true -pl '!byte-buddy-gradle-plugin'
- ./mvnw verify ${TARGET} -Dnet.bytebuddy.test.ci=true -pl '!byte-buddy-gradle-plugin'
script:
- ./mvnw install ${TARGET} -DskipTests=true -Dmaven.javadoc.skip=true -Dnet.bytebuddy.test.ci=true -pl '!byte-buddy-gradle-plugin'
- ./mvnw jacoco:prepare-agent verify jacoco:report ${TARGET} -Pintegration -Dnet.bytebuddy.test.ci=true -pl '!byte-buddy-gradle-plugin'
| language: java
sudo: false
dist: trusty
before_install:
- unset _JAVA_OPTIONS
install: echo "The default Travis install script is being skipped!"
matrix:
include:
# Java 9
- jdk: oraclejdk9
env: TARGET='-Pjava9'
# Java 10
- env: TARGET='-Pjava10'
jdk: oraclejdk10
# Java 11
- env: TARGET='-Pjava10'
jdk: oraclejdk11
# Java 12
- env: TARGET='-Pjava10'
jdk: openjdk-ea
script:
- ./mvnw install ${TARGET} -DskipTests=true -Dmaven.javadoc.skip=true -Dnet.bytebuddy.test.ci=true -pl '!byte-buddy-gradle-plugin'
- ./mvnw jacoco:prepare-agent verify jacoco:report ${TARGET} -Pintegration -Dnet.bytebuddy.test.ci=true -pl '!byte-buddy-gradle-plugin'
| Use Java 10 target due to error in previous Byte Buddy version that is used by build plugin. | Use Java 10 target due to error in previous Byte Buddy version that is used by build plugin.
| YAML | apache-2.0 | raphw/byte-buddy,raphw/byte-buddy,DALDEI/byte-buddy,raphw/byte-buddy |
660aed300378c83c473c0ed9fc05e49d5795d7ff | .travis.yml | .travis.yml | language: ruby
before_install:
- "VBoxManage -v"
rvm:
- 1.9.3
- 2.0
- 2.1
notifications:
irc: "chat.freenode.net#veewee"
| language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
notifications:
irc: "chat.freenode.net#veewee"
| Revert "check vbox version before doing anything" | Revert "check vbox version before doing anything"
This reverts commit 920eec4db3432008927d3156fa7799c4fd0a151e.
| YAML | mit | mcnster/veewee,courtney-miles/veewee,cliffrowley/veewee,fxposter/veewee,cgvarela/veewee,cgvarela/veewee,nitrocode/veewee,Falkor/veewee,caphrim007/veewee,cgvarela/veewee,cliffrowley/veewee,fxposter/veewee,nettucu/veewee,swiftstack/veewee,cgvarela/veewee,jordant/veewee,jedi4ever/veewee,mcnster/veewee,mcnster/veewee,ngpestelos/veewee,KwadroNaut/veewee,swiftstack/veewee,nettucu/veewee,jedi4ever/veewee,esfourteen/veewee,leopoiroux/veewee,dmkoch/veewee,zorosteven/veewee,jordant/veewee,tom-seddon/veewee,fxposter/veewee,nettucu/veewee,esfourteen/veewee,akshaykarle/veewee,Wenzel/veewee,Falkor/veewee,ngpestelos/veewee,zorosteven/veewee,swiftstack/veewee,jedi4ever/veewee,xalopp/veewee,sjfloat/veewee,sjfloat/veewee,Wenzel/veewee,tom-seddon/veewee,leopoiroux/veewee,mhuckaby/veewee,akshaykarle/veewee,zorosteven/veewee,tom-seddon/veewee,mcnster/veewee,mhuckaby/veewee,caphrim007/veewee,cgvarela/veewee,akshaykarle/veewee,esfourteen/veewee,swiftstack/veewee,caphrim007/veewee,esfourteen/veewee,nitrocode/veewee,nitrocode/veewee,xalopp/veewee,xalopp/veewee,KwadroNaut/veewee,xalopp/veewee,swiftstack/veewee,akshaykarle/veewee,ngpestelos/veewee,mhuckaby/veewee,cliffrowley/veewee,ngpestelos/veewee,jedi4ever/veewee,Wenzel/veewee,jordant/veewee,tom-seddon/veewee,esfourteen/veewee,courtney-miles/veewee,sjfloat/veewee,Wenzel/veewee,KwadroNaut/veewee,nitrocode/veewee,zorosteven/veewee,jordant/veewee,zorosteven/veewee,jordant/veewee,ngpestelos/veewee,nettucu/veewee,sjfloat/veewee,fxposter/veewee,tom-seddon/veewee,KwadroNaut/veewee,leopoiroux/veewee,courtney-miles/veewee,jedi4ever/veewee,mhuckaby/veewee,Wenzel/veewee,courtney-miles/veewee,KwadroNaut/veewee,cliffrowley/veewee,leopoiroux/veewee,Falkor/veewee,caphrim007/veewee,Falkor/veewee,dmkoch/veewee,nitrocode/veewee,fxposter/veewee,cliffrowley/veewee,Falkor/veewee,caphrim007/veewee,dmkoch/veewee,mcnster/veewee,xalopp/veewee,dmkoch/veewee,nettucu/veewee,courtney-miles/veewee,dmkoch/veewee,akshaykarle/veewee,sjfloat/veewee,leopoiroux/veewee,mhuckaby/veewee |
f57e10beb9fb312facbcf9f35b375c8abebf7f57 | .travis.yml | .travis.yml | language: c
# On Ubuntu, run in Travis Container
sudo: false
# Use Ubuntu 16.04 Xenial (for Clang 7)
dist: xenial
# helps to use actual GCC on OSX (not Clang!) and Clang version 6
osx_image: xcode10
# build matrix with both OSes and Compilers
os:
- linux
- osx
compiler:
- clang
- gcc
cache:
- ccache
addons:
apt:
packages:
- check
# branches safelist
branches:
only:
- master
- develop
- /^test\/.*$/
- /^feature\/.*$/
before_install:
# fix for homebrew failling on Travis-CI
- if [ "$TRAVIS_OS_NAME" == "osx" ] && [ "$CC" == "gcc" ]; then brew update; fi
install:
# install gcc-5 and check on OSX
- if [ "$TRAVIS_OS_NAME" == "osx" ] && [ "$CC" == "gcc" ]; then brew install gcc5 check; fi
before_script:
# override $CC to use gcc-5 on OSX
- if [ "$TRAVIS_OS_NAME" == "osx" ] && [ "$CC" == "gcc" ]; then export CC="gcc-5"; fi
- cmake .
script:
- make -j -k
- ctest -V
| language: c
# On Ubuntu, run in Travis Container
sudo: false
# Use Ubuntu 16.04 Xenial (for Clang 7)
dist: xenial
# helps to use actual GCC on OSX (not Clang!) and Clang version 6
osx_image: xcode10
# build matrix with both OSes and Compilers
os:
- linux
- osx
compiler:
- clang
- gcc
cache:
- ccache
addons:
apt:
packages:
- check
homebrew:
packages:
- gcc5
- check
# branches safelist
branches:
only:
- master
- develop
- /^test\/.*$/
- /^feature\/.*$/
before_script:
# override $CC to use gcc-5 on OSX
- if [ "$TRAVIS_OS_NAME" == "osx" ] && [ "$CC" == "gcc" ]; then export CC="gcc-5"; fi
- cmake .
script:
- make -j -k
- ctest -V
| Change OSX package installation to use addons feature | Change OSX package installation to use addons feature
| YAML | agpl-3.0 | saxbophone/libsaxbospiral |
a31ec709d325cedffb83d7a3b27153269ec4e6ee | .travis.yml | .travis.yml | language: node_js
node_js: "10"
cache:
yarn: true
branches:
except:
- /^v\d/
install:
- yarn install
jobs:
include:
- stage: lint & test
script:
- yarn run lint
- yarn run test
- stage: lighthouse test
script:
- yarn global add firebase-tools
- yarn run build
- firebase deploy --token $FIREBASE_TOKEN --project abdonrd-develop
- yarn run lh https://abdonrd-develop.firebaseapp.com
- stage: deploy to staging
script: yarn run build
deploy:
provider: firebase
token: $FIREBASE_TOKEN
skip_cleanup: true
project: abdonrd-develop
on:
branch: develop
- stage: deploy to production
script: yarn run build:production
deploy:
provider: firebase
token: $FIREBASE_TOKEN
skip_cleanup: true
project: project-8848054472830093819
on:
branch: master
stages:
- name: lint & test
- name: lighthouse test
if: type IN (pull_request)
- name: deploy to staging
if: branch = develop AND (NOT type IN (pull_request))
env: NODE_ENV=staging
- name: deploy to production
if: branch = master AND (NOT type IN (pull_request))
env: NODE_ENV=production
| language: node_js
node_js: "10"
cache:
yarn: true
branches:
except:
- /^v\d/
before_install:
- npm install -g yarn
install:
- yarn install
jobs:
include:
- stage: lint & test
script:
- yarn run lint
- yarn run test
- stage: lighthouse test
script:
- yarn global add firebase-tools
- yarn run build
- firebase deploy --token $FIREBASE_TOKEN --project abdonrd-develop
- yarn run lh https://abdonrd-develop.firebaseapp.com
- stage: deploy to staging
script: yarn run build
deploy:
provider: firebase
token: $FIREBASE_TOKEN
skip_cleanup: true
project: abdonrd-develop
on:
branch: develop
- stage: deploy to production
script: yarn run build:production
deploy:
provider: firebase
token: $FIREBASE_TOKEN
skip_cleanup: true
project: project-8848054472830093819
on:
branch: master
stages:
- name: lint & test
- name: lighthouse test
if: type IN (pull_request)
- name: deploy to staging
if: branch = develop AND (NOT type IN (pull_request))
env: NODE_ENV=staging
- name: deploy to production
if: branch = master AND (NOT type IN (pull_request))
env: NODE_ENV=production
| Install yarn with npm to have the last version | Install yarn with npm to have the last version
| YAML | mit | abdonrd/abdonrd.com,abdonrd/abdonrd.com |
6b7bc80d537c5b870e040491aca272f06291b977 | .travis.yml | .travis.yml | language: python
sudo: false
cache: pip
python:
- "3.6.2"
script:
- make test
- make lint
- make isort
| language: python
sudo: false
cache: pip
python:
- "3.6.2"
script:
- make setup
- make test
- make lint
- make isort
| Add setup to the ci | Add setup to the ci
| YAML | mit | arturfelipe/condobus,arturfelipe/condobus,arturfelipe/condobus,arturfelipe/condobus |
a29b1c4ed640d6d01e8552c192ee2a24f20ad7c0 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- jruby-1.7.26
- jruby-9.1.7.0
| dist: trusty
language: ruby
sudo: false
cache: bundler
rvm:
- jruby-1.7.26
- jruby-9.1.14.0
| Test with latest Ruby versions | Test with latest Ruby versions
| YAML | mit | jbox-web/jenkins-plugin-base |
9af723a970505eb076737d5363f47cfb165fca20 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
- 0.12
- iojs
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "iojs"
- "iojs-v1"
- "iojs-v2"
| Update Travis for Node v4 | Update Travis for Node v4 | YAML | mit | continuationlabs/hapi-scope-start |
6891aa386a3cebb8a7dfebdbc71a21cc9a2d8670 | .travis.yml | .travis.yml | language: python
python:
- "3.2"
env:
- QT_API=PyQt4
- QT_API=PyQt5
- PEP8=1
- COV=1
matrix:
allow_failures:
- env: COV=1
- env: PEP8=1
- env: QT_API=PyQt5
virtualenv:
system_site_packages: true
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
# PyQ4
- sudo apt-get install -qq python3-pyqt4 --fix-missing
# PyQt5 (won't be available untill travis upgrade to ubuntu 14.04
- if [ $QT_API = "pyqt5" ]; then
sudo apt-get install -qq python3-pyqt5 --fix-missing;
fi
- pip install git+https://github.com/pyQode/pyqode.core.git@feature/code-folding
script:
- pip install .
- if [ $QT_API ]; then
python3 runtests.py;
fi
- if [ $PEP8 ]; then
pip install pytest-pep8;
python3 runtests.py --pep8 -m pep8;
fi
- if [ $COV ]; then
pip install pytest-cov;
python3 runtests.py --cov pyqode;
fi
after_script:
- if [ $COV ]; then
sudo pip install --quiet coveralls;
coveralls;
fi
| language: python
python:
- "3.2"
env:
- QT_API=PyQt4
- QT_API=PyQt5
- PEP8=1
- COV=1
matrix:
allow_failures:
- env: COV=1
- env: PEP8=1
- env: QT_API=PyQt5
virtualenv:
system_site_packages: true
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
# PyQ4
- sudo apt-get install -qq python3-pyqt4 --fix-missing
# PyQt5 (won't be available untill travis upgrade to ubuntu 14.04
- if [ $QT_API = "pyqt5" ]; then
sudo apt-get install -qq python3-pyqt5 --fix-missing;
fi
- pip install git+https://github.com/pyQode/pyqode.core.git@feature/develop
script:
- pip install .
- if [ $QT_API ]; then
python3 runtests.py;
fi
- if [ $PEP8 ]; then
pip install pytest-pep8;
python3 runtests.py --pep8 -m pep8;
fi
- if [ $COV ]; then
pip install pytest-cov;
python3 runtests.py --cov pyqode;
fi
after_script:
- if [ $COV ]; then
sudo pip install --quiet coveralls;
coveralls;
fi
| Reset pyqode.core branch to develop | Travis: Reset pyqode.core branch to develop
| YAML | mit | mmolero/pyqode.python,pyQode/pyqode.python,zwadar/pyqode.python,pyQode/pyqode.python |
35d172bb69495469059c8b3aac57ee6be20b3c7e | src/Surfnet/StepupMiddleware/CommandHandlingBundle/Resources/config/processors.yml | src/Surfnet/StepupMiddleware/CommandHandlingBundle/Resources/config/processors.yml | services:
surfnet_stepup_middleware_command_handling.processor.email:
class: Surfnet\StepupMiddleware\CommandHandlingBundle\Processor\EmailProcessor
arguments:
- "@surfnet_stepup_middleware_command_handling.service.second_factor_mail"
- "@surfnet_stepup_middleware_api.service.vetting_location"
tags: [{ name: event_bus.event_listener }]
surfnet_stepup_middleware_command_handling.service.second_factor_mail:
public: false
class: Surfnet\StepupMiddleware\CommandHandlingBundle\Identity\Service\SecondFactorMailService
arguments:
- "@mailer"
- "@surfnet_stepup_middleware_command_handling.email_sender"
- "@translator"
- "@templating"
- '' # Verification URL set in bundle extension
- "@surfnet_stepup_middleware_management.service.email_template"
- '' # Fallback locale
- "@logger"
- true
surfnet_stepup_middleware_command_handling.email_sender:
public: false
class: Surfnet\StepupMiddleware\CommandHandlingBundle\Value\Sender
arguments:
- ''
- ''
| services:
surfnet_stepup_middleware_command_handling.processor.email:
class: Surfnet\StepupMiddleware\CommandHandlingBundle\Processor\EmailProcessor
arguments:
- "@surfnet_stepup_middleware_command_handling.service.second_factor_mail"
- "@surfnet_stepup_middleware_api.service.vetting_location"
tags: [{ name: event_bus.event_listener }]
surfnet_stepup_middleware_command_handling.service.second_factor_mail:
public: false
class: Surfnet\StepupMiddleware\CommandHandlingBundle\Identity\Service\SecondFactorMailService
arguments:
- "@mailer"
- "@surfnet_stepup_middleware_command_handling.email_sender"
- "@translator"
- "@templating"
- '' # Verification URL set in bundle extension
- "@surfnet_stepup_middleware_management.service.email_template"
- '' # Fallback locale
- "@logger"
- true
surfnet_stepup_middleware_command_handling.email_sender:
public: false
class: Surfnet\StepupMiddleware\CommandHandlingBundle\Value\Sender
arguments:
- '' # Name is set in bundle extension
- '' # Email is set in bundle extension
| Add comments for overwritten service arguments | Add comments for overwritten service arguments
| YAML | apache-2.0 | SURFnet/Stepup-Middleware,SURFnet/Stepup-Middleware,OpenConext/Stepup-Middleware,OpenConext/Stepup-Middleware |
e3aba60199f0acdeb8ba6aba4862163a66f8af27 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.6
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
- make
| language: node_js
node_js:
- 0.6
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
| Remove `make` from Travis CI build. | Remove `make` from Travis CI build.
First successful build on Travis CI unlocked.
Closes #6.
| YAML | mit | bigeasy/stencil,bigeasy/stencil,bigeasy/stencil |
f1f29c9a8503514a1e4fea18742629165670f6f8 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- make prepare
- make develop # NOTE: no extras yet. Let's keep this simple
script:
- python -m pytest src
| language: python
python:
- "2.7"
install:
- make prepare
- make develop # NOTE: no extras yet. Let's keep this simple
script:
- make test
| Use test target instead of pytest directly | Use test target instead of pytest directly
This is better because there are some things that aught to be taken care
of before anyway. Also for some reason collecting the batchSystemTest.py
tests caused a segfault on mac and was causing Travis to hang. Didn't
investigate further...
| YAML | apache-2.0 | BD2KGenomics/slugflow,BD2KGenomics/slugflow |
d5be8bc034ba0fab519cac6b448c1a39f5ba6038 | .travis.yml | .travis.yml |
language: python
python:
- "3.5"
- "3.6"
install:
- pip install sympy sphinx
script:
- cd docs && make travis
|
language: python
python:
#- "3.5" # with this version we have some broken doctests
- "3.6"
install:
- pip install sympy sphinx
script:
- cd docs && make travis
| Remove Python 3.5 from Travis CI. | Remove Python 3.5 from Travis CI.
| YAML | mit | massimo-nocentini/simulation-methods,massimo-nocentini/simulation-methods |
5851dc3cacd691ebc08c237cd21d637d18c566ef | .travis.yml | .travis.yml | notifications:
email:
recipients:
- tim.beadle@gmail.com
language: node_js
node_js:
- "7"
- "6"
- "5"
- "4"
before_script:
- npm install -g grunt-cli
| notifications:
email:
recipients:
- tim.beadle@gmail.com
language: node_js
node_js:
- "8"
- "7"
- "6"
- "5"
- "4"
before_script:
- npm install -g grunt-cli
| Add node_js 8 support in readiness for release 8 later in the month | Add node_js 8 support in readiness for release 8 later in the month
| YAML | mit | Bartvds/grunt-tv4,timbeadle/grunt-tv4 |
d3916bc26d3360bb1c3e3fbee70bca71b14c030a | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- echo 'date.timezone = "UTC"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install --dev -o -n
- vendor/bin/phpunit --version
- mkdir -p build/logs
script:
# - vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- vendor/bin/phpspec run --format=pretty
after_script:
- php vendor/bin/coveralls -v
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
before_script:
- echo 'date.timezone = "UTC"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install --dev -o -n
- vendor/bin/phpunit --version
- mkdir -p build/logs
script:
# - vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- vendor/bin/phpspec run --format=pretty
after_script:
- php vendor/bin/coveralls -v
| Add PHP 5.6 and 7.0 to test matrix | Add PHP 5.6 and 7.0 to test matrix
| YAML | mit | scriptotek/php-alma-client |
b4fde2ae23514f9771af44f6db35e2aa452b454f | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode11
before_install:
- bundle update
jobs:
include:
- script: bundle exec fastlane test
name: UnitTests
- script: bundle exec fastlane screenshots_limited
name: UITests
| language: objective-c
osx_image: xcode11.2
before_install:
- bundle update
jobs:
include:
- script: bundle exec fastlane test
name: UnitTests
- script: bundle exec fastlane screenshots_limited
name: UITests
| Use Xcode 10.2 as Environment | Use Xcode 10.2 as Environment
| YAML | mit | criticalmaps/criticalmaps-ios,headione/criticalmaps-ios,criticalmaps/criticalmaps-ios,criticalmaps/criticalmaps-ios |
7fe32c6fe13d078a072a50af1a3b4f7f34356d45 | .travis.yml | .travis.yml | sudo: false
language: python
dist: xenial
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
install:
- pip install pipenv
- pipenv install --dev
script:
- pipenv run python -m pytest --cov-report term-missing --cov=pytac
- pipenv run flake8
after_success:
- coveralls
| sudo: false
language: python
dist: xenial
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
install:
- pip install pipenv
- pipenv install --dev
script:
- pipenv run python -m pytest --cov-report term-missing --cov=pytac
- pipenv run flake8
after_success:
- coveralls
| Drop Python 3.4 support on Travis. | Drop Python 3.4 support on Travis.
| YAML | apache-2.0 | willrogers/pytac,willrogers/pytac |
0baeebec4f989c28f15561c3fa6d1a94004bb7ae | .travis.yml | .travis.yml | language: csharp
matrix:
include:
- os: osx
osx_image: xcode9
sudo: required
dotnet: 2.0.0
before_install:
- brew update
install:
- ulimit -n4096
script:
- dotnet test src/Dotnet.Script.Tests/Dotnet.Script.Tests.csproj | language: csharp
matrix:
include:
- os: osx
osx_image: xcode9
sudo: required
before_install:
- brew update
- curl https://dot.net/v1/dotnet-install.sh -o dotnet-install.sh
- chmod +x dotnet-install.sh
- ./dotnet-install.sh --channel 2.0
install:
- ulimit -n4096
script:
- ~/.dotnet/dotnet test src/Dotnet.Script.Tests/Dotnet.Script.Tests.csproj | Use install script for dotnet sdk | Use install script for dotnet sdk
| YAML | mit | filipw/dotnet-script,filipw/dotnet-script |
b704529270decbcaa266768c22de161098fa1d78 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
sudo: false
install:
- "pip install -U pip 'setuptools!=26.*'"
- "pip install ."
- "pip install -r test_requirements.txt"
- "pip install flake8"
before_script: "flake8 --max-complexity 10 src/brotli test"
script:
- >
if [[ $TRAVIS_PYTHON_VERSION == pypy ]]; then
py.test test/
else
py.test --cov brotli test/
fi
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
cache:
pip: true
directories:
- $HOME/.ccache
env:
global:
- PATH="/usr/lib/ccache:$PATH"
sudo: false
install:
- "pip install -U pip 'setuptools!=26.*'"
- "pip install ."
- "pip install -r test_requirements.txt"
- "pip install flake8"
before_script: "flake8 --max-complexity 10 src/brotli test"
script:
- >
if [[ $TRAVIS_PYTHON_VERSION == pypy ]]; then
py.test test/
else
py.test --cov brotli test/
fi
| Enable ccache and pip cache in Travis. | Enable ccache and pip cache in Travis. | YAML | mit | python-hyper/brotlipy |
e1e2b67bdaf10d442877cb293425e40ee5272400 | .travis.yml | .travis.yml | language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
| language: node_js
node_js:
- '5'
- '4'
- '0.12'
- '0.10'
| Test on node version 4 and 5 | Test on node version 4 and 5
| YAML | mit | gillstrom/thx |
aab3550083bc258f61bb7dbc4089f090a734a1c1 | .travis.yml | .travis.yml | language: node_js
sudo: false
notifications:
email:
recipients:
- tristan.wright@kitware.com
- sebastien.jourdain@kitware.com
on_success: change
on_failure: always
cache:
directories:
- node_modules
node_js:
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script:
- npm run build:release
- npm run test:travis
- if [ "$TRAVIS_BRANCH" == "master" ]; then npm run doc:publish; fi
after_success:
- npm run semantic-release
deploy:
script:
- npm run doc:publish
on:
branch: master
branches:
except:
- "/^v\\d+\\.\\d+\\.\\d+$/"
| language: node_js
sudo: false
notifications:
email:
recipients:
- tristan.wright@kitware.com
- sebastien.jourdain@kitware.com
on_success: change
on_failure: always
cache:
directories:
- node_modules
node_js:
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script:
- npm run build:release
- npm run test:travis
- if [ "$TRAVIS_BRANCH" == "master" ]; then npm run doc:publish; fi
after_success:
- npm run semantic-release
branches:
except:
- "/^v\\d+\\.\\d+\\.\\d+$/"
| Fix documentation publication for branch master | chore(Travis): Fix documentation publication for branch master
| YAML | bsd-3-clause | Kitware/paraviewweb,Kitware/paraviewweb,Kitware/paraviewweb,Kitware/paraviewweb |
49c389592df80e596aa58884e6c1cb52357443bf | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
- 'nodejs'
matrix:
fast_finish: true
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- npm test --coverage
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
- 'node'
matrix:
fast_finish: true
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- npm test --coverage
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| Test properly against latest Node version | Test properly against latest Node version
| YAML | mit | timkurvers/byte-buffer |
41cb664f7ba335b294836bdd53eda3d11998f914 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
- "nightly"
install:
- pip install -r requirements/development python-coveralls
script:
- make testlocal
after_success:
- coveralls
| language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
- "nightly"
install:
- pip install -U -r requirements/development python-coveralls
# inspect.getargspec is removed with Python 3.6 onwards, not all libraries like this yet.
- env | grep TRAVIS_PYTHON_VERSION
- if [[ $TRAVIS_PYTHON_VERSION == 'nightly' ]]; then pip install -U 'coverage>=4.0.2'; fi
# There's no pypi release for pep8 that works with 3.6 at the time of this writing
- if [[ $TRAVIS_PYTHON_VERSION == 'nightly' ]]; then pip install -U https://github.com/PyCQA/pep8/archive/master.zip; fi
script:
- make testlocal
after_success:
- coveralls
| Fix coverage and pep8 on py36 | Fix coverage and pep8 on py36
| YAML | mit | zoni/docker-image-updater |
2761c1a64c50956809f193fa845942492e1c7c0f | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
cache: bundler
before_install: "gem install bundler -v 1.17.3"
bundler_args: --without tools
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
- jruby-9.1.5.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.5.0
fast_finish: true
branches:
only: master
notifications:
email: false
| ---
language: ruby
sudo: false
cache: bundler
before_install: "gem install bundler -v '< 2.0'"
bundler_args: --without tools
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
- jruby-9.1.5.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.5.0
fast_finish: true
branches:
only: master
notifications:
email: false
| Change to be more flexible with bundler version | Change to be more flexible with bundler version
| YAML | mit | piotrmurach/tty-prompt,peter-murach/tty-prompt |
5dd8b2164b7abb8377bb2364df31fe5386104309 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: python
services:
- docker
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- wget -O- http://neuro.debian.net/lists/trusty.us-nh.full | sudo tee /etc/apt/sources.list.d/neurodebian.sources.list
- sudo apt-key adv --recv-keys --keyserver hkp://pool.sks-keyservers.net:80 0xA5D32F012649A5A9
- sudo apt-get -qq update
- sudo apt-get install -y singularity-container
- pip install flake8 pytest pytest-cov pytest-flake8 python-coveralls
script:
- build_scripts/travis_tests.sh
| sudo: required
dist: xenial
language: python
services:
- docker
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- wget -O- http://neuro.debian.net/lists/trusty.us-nh.full | sudo tee /etc/apt/sources.list.d/neurodebian.sources.list
- sudo apt-key adv --recv-keys --keyserver hkp://pool.sks-keyservers.net:80 0xA5D32F012649A5A9
- sudo apt-get -qq update
- sudo apt-get install -y singularity-container
- pip install flake8 pytest pytest-cov pytest-flake8 python-coveralls
script:
- build_scripts/travis_tests.sh
| Move to 16.064 on TravisCI | Move to 16.064 on TravisCI
| YAML | bsd-3-clause | dctrud/clair-singularity,dctrud/clair-singularity |
19b72191017a50703b76a39dbceb52de01419a6c | .travis.yml | .travis.yml | os:
- linux
- osx
- windows
language: node_js
node_js:
- node
- 10
cache:
directories:
- node_modules
| os:
- linux
- osx
# - windows
language: node_js
node_js:
- node
- 10
cache:
directories:
- node_modules
| Disable CI on windows due to hanging Travis setup | Disable CI on windows due to hanging Travis setup
Lets not block the CI. Will be sorted as part of #195 | YAML | mit | adambom/parallel.js,parallel-js/parallel.js,adambom/parallel.js,parallel-js/parallel.js |
e8f6e1d6df81bf761acdf4e9b040a87598312388 | .travis.yml | .travis.yml | addons:
apt:
packages:
- libgmp-dev
env: RAKE_TASK=spec
cache: bundler
language: ruby
matrix:
include:
- env: RAKE_TASK=rubocop
rvm: '2.3'
rvm:
- '2.3'
- '2.2'
- '2.1'
- '2.0'
- 'jruby-9'
- 'rbx-2'
script: bundle exec rake $RAKE_TASK
sudo: false
| addons:
apt:
packages:
- libgmp-dev
env: JRUBY_OPTS=--debug RAKE_TASK=spec
cache: bundler
language: ruby
matrix:
include:
- env: RAKE_TASK=rubocop
rvm: '2.3'
rvm:
- '2.3'
- '2.2'
- '2.1'
- '2.0'
- 'jruby-9'
- 'rbx-2'
script: bundle exec rake $RAKE_TASK
sudo: false
| Fix JRuby coverage by setting debug flag | Fix JRuby coverage by setting debug flag
jruby/jruby#3256
| YAML | mit | orgsync/stoplight,bolshakov/stoplight |
e30fc7c0ab9fd04c5d26ab80d394f10dc76e5956 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
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
- make zic && make
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
- '6'
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
- make zic && make
| Build with latest Node.js 6 on Travis CI. | Build with latest Node.js 6 on Travis CI.
| YAML | mit | bigeasy/timezone,bigeasy/timezone,bigeasy/timezone |
e73137134ca2ed7c4b42abdab02328c5418ff08d | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0-preview2
- rbx-19mode
branches:
only:
- master
services:
- redis-server
notifications:
email: false
script:
- bundle exec rake test
before_script:
- psql -c 'create database ontohub_test;' -U postgres
- sudo apt-add-repository ppa:hets/hets
- sudo apt-add-repository "deb http://archive.canonical.com/ubuntu precise partner"
- sudo apt-get update
- sudo apt-get -y install hets-core subversion
- sudo ln -s /lib/x86_64-linux-gnu/libpng12.so.0 /lib/x86_64-linux-gnu/libpng14.so.14
- sudo hets -update
| language: ruby
rvm:
- 1.9.3
- ruby-2.0.0-preview2
- rbx-19mode
branches:
only:
- master
services:
- redis-server
notifications:
email: false
script:
- bundle exec rake test
before_script:
- psql -c 'create database ontohub_test;' -U postgres
- sudo apt-add-repository ppa:hets/hets
- sudo apt-add-repository "deb http://archive.canonical.com/ubuntu precise partner"
- sudo apt-get update
- sudo apt-get -y install hets-core subversion
- sudo ln -s /lib/x86_64-linux-gnu/libpng12.so.0 /lib/x86_64-linux-gnu/libpng14.so.14
- sudo hets -update
| Work around bug in old rvm regarding ruby-2.0.0-preview1. | Work around bug in old rvm regarding ruby-2.0.0-preview1.
| YAML | agpl-3.0 | ontohub/ontohub,ontohub/ontohub,ontohub/ontohub,ontohub/ontohub,ontohub/ontohub,ontohub/ontohub |
8d41604fb30b02e9b92ac4a9acc9fb324885f658 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "4.4"
- "6.3"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| sudo: false
language: node_js
node_js:
- "4"
- "6"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
after_success:
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| Update Travis config to latest. Update Travis config to use latest v4 and latest v6 . | Update Travis config to latest. Update Travis config to use latest v4 and latest v6 .
| YAML | mit | cliffano/nestor-ninjablocks |
b2d54c83c6b1a76b4922cc786ef0aa3a60b1787a | .travis.yml | .travis.yml | dist: trusty
language: node_js
node_js:
- "10.16.0"
script:
# this is a condensed version of the default PATH that puts ./node_modules/.bin at the end
#- export PATH=/usr/bin:/home/travis/.nvm/versions/node/v6.5.0/bin:/home/travis/bin:/home/travis/.local/bin:/usr/local/phantomjs/bin:/usr/local/clang-3.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:./node_modules/.bin
- make travis-ci
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
| dist: trusty
language: node_js
node_js:
- "lts/*"
script:
# this is a condensed version of the default PATH that puts ./node_modules/.bin at the end
#- export PATH=/usr/bin:/home/travis/.nvm/versions/node/v6.5.0/bin:/home/travis/bin:/home/travis/.local/bin:/usr/local/phantomjs/bin:/usr/local/clang-3.4/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:./node_modules/.bin
- make travis-ci
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
| Upgrade Travis CI to use Node's LTS release. | Upgrade Travis CI to use Node's LTS release.
| YAML | isc | ajvincent/es7-membrane,ajvincent/es7-membrane |
9cab755360a108720f2ff71d7cc44158651c0916 | .travis.yml | .travis.yml | language: haskell
install:
- cabal install hsc2hs cabal-dev
# - cd engine && cabal install --only-dependencies --enable-tests
script:
# - cabal configure && cabal build && ./dist/build/shakefile/shakefile test
- ./stir update && ./stir test
env: CC=clang TOOLCHAIN_VARIANT=clang
| language: haskell
install:
# - cabal install hsc2hs cabal-dev
# - cd engine && cabal install --only-dependencies --enable-tests
script:
# - cabal configure && cabal build && ./dist/build/shakefile/shakefile test
- ./stir update && ./stir test
env: CC=clang TOOLCHAIN_VARIANT=clang
| Use cabal sandbox instead of cabal-dev | Travis: Use cabal sandbox instead of cabal-dev
| YAML | apache-2.0 | samplecount/methcla,samplecount/methcla,samplecount/methcla,samplecount/methcla,samplecount/methcla,samplecount/methcla |
d18cbe169940a30f9575ed4c0477d5010c1adb50 | .travis.yml | .travis.yml | language: java
script:
- cd scripts
- ./build-linux32.sh
- ./build-linux64.sh
- ./build-macosx.sh
- cd ..
before_deploy:
- cd bin
- tar czf linux32.tar.gz linux-i586/
- tar czf linux64.tar.gz linux-amd64/
- tar czf macosx.tar.gz macosx/
deploy:
provider: releases
api_key:
secure: En83qH7a/C0CwVucHZA6YO+7Pok2uWGVIdhjt3jQb7ymWuCfo9F6Cx+5fDgPoLmKpqXQpT896WySWbdx+mNSjomDsXd8ilSAkYFFeglfaBsIELrDRdMmYdQ9/4xyu0vSRCuQ5ji2b1nVJ9I7gQbkz1cmQcFTshyHLVCvPkjbDWk=
file:
- linux32.tar.gz
- linux64.tar.gz
- macosx.tar.gz
skip_cleanup: true
on:
tags: true | language: java
script:
- cd scripts
- ./build-linux32.sh
- ./build-linux64.sh
- ./build-macosx.sh
- cd ..
before_deploy:
- cd bin
- tar czf linux32.tar.gz linux-i586/
- tar czf linux64.tar.gz linux-amd64/
- tar czf macosx.tar.gz macosx/
deploy:
provider: releases
api_key:
secure: Q9VNV+QOi336zVEVNFnwGs7F2BoKJQaZb14JX0VV9V1/UPbQD/ZXMGBNf3RIpmJeiVD9gQ4Ej71qy05T5MgXoqpe3eL5aD4ywZmsInhEDrR6LW/YOvR5nddfb3C9N3YMU7qnGZ3FKlRd9P+RqmtsS8e+D7HmGq18F/nnmYvbsuM=
file:
- linux32.tar.gz
- linux64.tar.gz
- macosx.tar.gz
skip_cleanup: true
on:
tags: true | Update the Travis API key | Update the Travis API key
| YAML | apache-2.0 | magmaOffenburg/RoboViz,pmacalpine/RoboViz,magmaOffenburg/RoboViz,pmacalpine/RoboViz,magmaOffenburg/RoboViz,magmaOffenburg/RoboViz,pmacalpine/RoboViz |
197a8c3f4d6316c2edfe49bd26db2a78e4db65ea | .travis.yml | .travis.yml | language: python
python:
- "2.7"
# command to install dependencies
install:
- "pip install ."
# command to run tests
script: nosetests
| language: python
python:
- "2.6"
- "2.7"
# command to install dependencies
install:
- "pip install ."
# command to run tests
script: nosetests
| Add Python 2.6 to Travis | Add Python 2.6 to Travis
| YAML | bsd-2-clause | python-constraint/python-constraint |
e6bf025bc0a0cc2a8ad3dad3a4ecd964e45fde9b | .travis.yml | .travis.yml | language: go
go:
- 1.1
- tip
| language: go
env: GOBIN=~/bin PATH=$PATH:$GOBIN
go:
- 1.1
- tip
| Set GOBIN and PATH to include GOBIN | Set GOBIN and PATH to include GOBIN
| YAML | bsd-3-clause | sourcegraph/apiproxy |
4702917bd9c6e80835899266c3adb85398391a66 | .travis.yml | .travis.yml | language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
- '11'
| language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
- '11'
matrix:
fast_finish: true
allow_failures:
- node_js: '4'
| Allow failures on node 4 | Travis: Allow failures on node 4
| YAML | mit | sanity-io/get-it,sanity-io/get-it |
f7f0fde2278ed74029aa6f95ccce0e780812aa2b | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: cpp
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
env: MATRIX_ENV="CC=gcc-6 && CXX=g++-6"
before_install:
- eval $MATRIX_ENV
script:
- mkdir build
- cd build
- cmake ..
- make
- make -f tests/Makefile
- ./tests/run_tests
| sudo: required
dist: xenial
language: cpp
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-8
env: MATRIX_EVAL="CC=gcc-8 && CXX=g++-8"
before_install:
- eval "${MATRIX_EVAL}"
script:
- mkdir build
- cd build
- cmake ..
- make
- make -f tests/Makefile
- ./tests/run_tests
| Update Travis to GCC 8 | Update Travis to GCC 8
| YAML | mit | SemaiCZE/inicpp,SemaiCZE/inicpp |
7b0dcad0007ba02c8c28257b334d98709227b3c4 | .travis.yml | .travis.yml | language: node_js
node_js:
- '12'
- '10'
- '8'
after_success:
- './node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov'
| language: node_js
node_js:
- '14'
- '12'
- '10'
- '8'
after_success:
- './node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov'
| Add Node.js 14 as test target | Add Node.js 14 as test target
| YAML | mit | SamVerschueren/dynongo |
28f772e7983a1174988617ffb3af26a8c34dfedf | .travis.yml | .travis.yml | branches:
only:
- master
language: python
cache:
directories:
- "$HOME/.cache/pip"
sudo: false
dist: trusty
matrix:
include:
- env: PYTHON_VERSION=pypy-5.7.1
- env: PYTHON_VERSION=2.7.13
install:
- |
git clone https://github.com/yyuu/pyenv.git $HOME/fusion-pyenv
export PYENV_ROOT="$HOME/fusion-pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
pyenv install $PYTHON_VERSION
pyenv global $PYTHON_VERSION
- pip install -U pip setuptools wheel
- pip install -r requirements.txt .
script:
- "$(type -p trial) documint"
notifications:
email: false
slack:
secure: JmRxn6koP4wuSjWHtxSEKfMfgjVZ1U3X9b5jZpo9j4TpRZl9WWMMfJImZEYnPzxoNp8FuUD73dfQntlqUZYNGaLAE/27pnmDggKdy3Aw6y7nr8wIV4dxzSaHVUiDQAz41PBi7ld3Dl/Garg8rcnqef8Wu1u1G/ZBtGnij1tdLSg=
| branches:
only:
- master
language: python
cache:
directories:
- "$HOME/.cache/pip"
- "$HOME/fusion-pyenv-cache"
sudo: false
dist: trusty
matrix:
include:
- env: PYTHON_VERSION=pypy-5.7.1
- env: PYTHON_VERSION=2.7.13
install:
- |
git clone https://github.com/yyuu/pyenv.git $HOME/fusion-pyenv
export PYENV_ROOT="$HOME/fusion-pyenv"
export PYENV_BUILD_CACHE_PATH="$HOME/fusion-pyenv-cache"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
pyenv install $PYTHON_VERSION
pyenv global $PYTHON_VERSION
- pip install -U pip setuptools wheel
- pip install -r requirements.txt .
script:
- "$(type -p trial) documint"
notifications:
email: false
slack:
secure: JmRxn6koP4wuSjWHtxSEKfMfgjVZ1U3X9b5jZpo9j4TpRZl9WWMMfJImZEYnPzxoNp8FuUD73dfQntlqUZYNGaLAE/27pnmDggKdy3Aw6y7nr8wIV4dxzSaHVUiDQAz41PBi7ld3Dl/Garg8rcnqef8Wu1u1G/ZBtGnij1tdLSg=
| Set up pyenv build cache. | Set up pyenv build cache.
| YAML | mit | fusionapp/documint,fusionapp/documint,fusionapp/documint |
a14feac64ecf61bdb4711e00b54d3e76a57f80d7 | .travis.yml | .travis.yml | language: node_js
script:
make prepush
node_js:
- "4"
- "6"
after_success:
- make report-coverage
- make nsp
| language: node_js
script:
make prepush
node_js:
- "4"
- "6"
- "7"
- "8"
- "stable"
after_success:
- make report-coverage
- make nsp
| Add node 7-8 support to Travis | Add node 7-8 support to Travis
| YAML | mit | restify/clients,restify/clients |
2f048c5992b715dc116ca77a4d1b25d7be9ce502 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
cache: pip
# install libjpeg-dev for Pillow to handle JPEGs
dist: trusty
sudo: false
addons:
apt:
packages:
- libjpeg-dev
# command to install dependencies
install:
- pip install -U tox-travis setuptools codecov
# command to run tests
script: tox
after_success:
codecov --file .tox/cov-*.xml
notifications:
irc:
channels:
- "chat.freenode.net#dosage"
use_notice: true
skip_join: true
| language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
cache: pip
# install libjpeg-dev for Pillow to handle JPEGs
dist: trusty
sudo: false
addons:
apt:
packages:
- libjpeg-dev
# command to install dependencies
install:
- pip install -U tox-travis setuptools codecov
# command to run tests
script: tox
after_success:
codecov --file .tox/cov-*.xml
notifications:
irc:
channels:
- "chat.freenode.net#dosage"
use_notice: true
skip_join: true
| Drop Python 3.3, since py.test doesn't support it anymore. | Drop Python 3.3, since py.test doesn't support it anymore.
| YAML | mit | webcomics/dosage,peterjanes/dosage,webcomics/dosage,peterjanes/dosage |
b05b2c0b70dbd3c62c788b67b352ab991049fb18 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls uglify-js@1.3.x
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls uglify-js@1.3.x
| Build with Node.js 8 on Travis CI. | Build with Node.js 8 on Travis CI.
| YAML | mit | bigeasy/sequester |
7c3af08ce730096528369a6159025bf9f76cd9f4 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
env:
- VERSION="8.0" LINT_CHECK="1"
- VERSION="8.0" LINT_CHECK="0"
virtualenv:
system_site_packages: true
install:
- pip install requests
- pip install unicodecsv
- git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
- travis_install_nightly ${VERSION}
- $HOME/maintainer-quality-tools/travis/travis_install_nightly ${VERSION}
script:
- travis_run_tests ${VERSION}
after_success:
coveralls
| language: python
python:
- "2.7"
env:
- VERSION="8.0" LINT_CHECK="1"
- VERSION="8.0" LINT_CHECK="0"
virtualenv:
system_site_packages: true
install:
- pip install requests
- pip install unicodecsv
- git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
- travis_install_nightly
script:
- travis_run_tests
after_success:
coveralls
| Remove VERSION from args as taken from env | Remove VERSION from args as taken from env
| YAML | agpl-3.0 | Endika/partner-contact,raycarnes/partner-contact,charbeljc/partner-contact,Therp/partner-contact,guewen/partner-contact,BT-jmichaud/partner-contact,QANSEE/partner-contact,Antiun/partner-contact,BT-fgarbely/partner-contact,Ehtaga/partner-contact,idncom/partner-contact,VitalPet/partner-contact,open-synergy/partner-contact,akretion/partner-contact,acsone/partner-contact,BT-ojossen/partner-contact,alanljj/oca-partner-contact,vrenaville/partner-contact,yvaucher/partner-contact,sergiocorato/partner-contact,gurneyalex/partner-contact,njeudy/partner-contact,damdam-s/partner-contact,diagramsoftware/partner-contact,NL66278/partner-contact,andrius-preimantas/partner-contact |
6a5a667da4b5ee7df3cbe10fa6ab3c71b6586585 | .travis.yml | .travis.yml | language: node_js
node_js:
- "5"
- "5.1"
- "4"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
- "iojs"
before_script:
- npm install
- npm install -g gulp-cli
- gulp build | language: node_js
node_js:
- "5"
- "5.1"
- "4"
- "4.2"
- "4.1"
- "4.0"
before_script:
- npm install
- npm install -g gulp-cli
- gulp build
| Remove support for node versions < 4 for Travis | Remove support for node versions < 4 for Travis | YAML | apache-2.0 | JonathonRichardson/SimpleFilter,JonathonRichardson/SimpleFilter |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.