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 |
|---|---|---|---|---|---|---|---|---|---|
eb1b0a85610574dfa25646f2e00f69b2cc57c406 | .travis.yml | .travis.yml | dist: xenial
language: python
matrix:
include:
- python: 2.7
name: "Test Python 2.7"
env: TOXENV=py27
install: pip install tox
script: tox
- python: 3.6
name: "Test Python 3.6"
env: TOXENV=py36
install: pip install tox
before_install:
# Install neccessary Linux dependencies to build wxPython.
# See: https://github.com/wxWidgets/Phoenix/blob/master/.azure/ci-linux-job.yml
- sudo apt-get update
- sudo apt-get install -y build-essential python3-dev libgtk-3-dev libjpeg-dev libtiff-dev
script:
- tox
- python: 3.7
name: "Test Python 3.7"
env: TOXENV=py37
install: pip install tox
script: tox
- python: 3.6
name: "Check formatting"
install: pip install black isort
script:
- black --check --diff skidl tests setup.py
- isort --check --diff --recursive tests skidl setup.py
| dist: xenial
language: python
matrix:
include:
- python: 2.7
name: "Test Python 2.7"
env: TOXENV=py27
install: pip install tox
script: tox
- python: 3.6
name: "Test Python 3.6"
env: TOXENV=py36
install: pip install tox
before_install:
# Install neccessary Linux dependencies to build wxPython.
# See: https://github.com/wxWidgets/Phoenix/blob/master/.azure/ci-linux-job.yml
- sudo apt-get update
- sudo apt-get install -y build-essential python3-dev libgtk-3-dev libjpeg-dev libtiff-dev
script:
# Pass -vvv to pip through tox because wxPython can take ~20min to build and
# Travis CI thinks that the build has stalled unless build progress is output.
- tox -vvvvv
- python: 3.7
name: "Test Python 3.7"
env: TOXENV=py37
install: pip install tox
script: tox
- python: 3.6
name: "Check formatting"
install: pip install black isort
script:
- black --check --diff skidl tests setup.py
- isort --check --diff --recursive tests skidl setup.py
| Add verbosity to tox command to pass on as `pip -vvv` | Add verbosity to tox command to pass on as `pip -vvv` | YAML | mit | xesscorp/skidl,xesscorp/skidl |
eca183770094e4f6fbd5228e5a98b77d9216cbe7 | .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
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Build with Node.js 8 on Travis CI. | Build with Node.js 8 on Travis CI.
| YAML | mit | bigeasy/olio,bigeasy/olio |
5360a5ce787849ce7ae3bcc7d2370c3e68ddb76b | .travis.yml | .travis.yml | language: c
env:
- phpver=5.6.6 CCASFLAGS=-m64 CPPFLAGS=-m64 CFLAGS=-m64 CXXFLAGS=-m64 LDFLAGS=-m64
- phpver=5.6.6 CCASFLAGS=-m32 CPPFLAGS=-m32 CFLAGS=-m32 CXXFLAGS=-m32 LDFLAGS=-m32
- phpver=5.5.22 CCASFLAGS=-m64 CPPFLAGS=-m64 CFLAGS=-m64 CXXFLAGS=-m64 LDFLAGS=-m64
- phpver=5.5.22 CCASFLAGS=-m32 CPPFLAGS=-m32 CFLAGS=-m32 CXXFLAGS=-m32 LDFLAGS=-m32
before_install:
- sudo apt-get update
install:
- sudo apt-get install gcc-multilib
- curl -L http://php.net/get/php-$phpver.tar.xz/from/this/mirror | tar xJ
- cd php-$phpver
- ./configure --disable-xml --disable-libxml --disable-simplexml --disable-dom --disable-xmlreader --disable-xmlwriter --without-pear
- make
- cd ..
script:
- php-$phpver/sapi/cli/php -r "var_dump(PHP_INT_SIZE);"
- truncate -s 5G test.bin
- php-$phpver/sapi/cli/php -r "var_dump(filesize('test.bin'));"
| language: c
env:
- phpver=5.6.6 CCASFLAGS=-m64 CPPFLAGS=-m64 CFLAGS=-m64 LDFLAGS=-m64
- phpver=5.6.6 CCASFLAGS=-m32 CPPFLAGS=-m32 CFLAGS=-m32 LDFLAGS=-m32
- phpver=5.5.22 CCASFLAGS=-m64 CPPFLAGS=-m64 CFLAGS=-m64 LDFLAGS=-m64
- phpver=5.5.22 CCASFLAGS=-m32 CPPFLAGS=-m32 CFLAGS=-m32 LDFLAGS=-m32
before_install:
- sudo apt-get update
install:
- sudo apt-get install gcc-multilib
- curl -L http://php.net/get/php-$phpver.tar.xz/from/this/mirror | tar xJ
- cd php-$phpver
- ./configure --disable-xml --disable-libxml --disable-simplexml --disable-dom --disable-xmlreader --disable-xmlwriter --without-pear
- make
- cd ..
script:
- php-$phpver/sapi/cli/php -r "var_dump(PHP_INT_SIZE);"
- truncate -s 5G test.bin
- php-$phpver/sapi/cli/php -r "var_dump(filesize('test.bin'));"
| Remove CXXFLAGS as we are not installing g++-multilib. | Remove CXXFLAGS as we are not installing g++-multilib.
| YAML | mit | bantuXorg/php-large-file-tools,bantuXorg/php-large-file-tools |
7a220813ab5d7563a5396eaf914613a63424afdc | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.5
- 1.6
install:
- go get github.com/ajstarks/svgo
- go get github.com/alexcesaro/log
- go get github.com/axw/gocov/gocov
- go get github.com/davecheney/profile
- go get github.com/gorilla/mux
- go get github.com/gorilla/websocket
- go get github.com/mattn/goveralls
- go get github.com/pmylund/go-cache
- go get github.com/stretchr/testify/assert
- go get github.com/stretchr/testify/mock
- go get golang.org/x/tools/cmd/cover
script:
- $HOME/gopath/bin/goveralls -v -repotoken $COVERALLS_TOKEN
| sudo: false
language: go
go:
- 1.6
install:
- go get github.com/kardianos/govendor
- go get github.com/mattn/goveralls
- $HOME/gopath/bin/govendor sync
script:
- $HOME/gopath/bin/goveralls -v -repotoken $COVERALLS_TOKEN
| Use vendor config when running Travis CI | Use vendor config when running Travis CI
| YAML | apache-2.0 | pavel-paulau/perfdb,pavel-paulau/perfkeeper,pavel-paulau/perfdb |
2e212641a9a9007af3bf9b3b04552d1a581385ac | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libyajl2
install:
- pip install .
script: python tests.py
| language: python
python:
- "2.7"
- "3.3"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libyajl1
install:
- pip install .
script: python tests.py
| Install libyajl1 on Travis as it runs Ubuntu 12.04 which doesn't have libyajl2 yet. | Install libyajl1 on Travis as it runs Ubuntu 12.04 which doesn't have libyajl2 yet.
| YAML | bsd-3-clause | danielvarga/ijson,Kasramvd/ijson |
c429bde621aa9aab67c172787508674b3eb3d627 | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: 7.1
- php: 7.2
- php: 7.3
- php: 7.4snapshot
- php: nightly
env: PHP_CS_FIXER_IGNORE_ENV=1
fast_finish: true
allow_failures:
- php: nightly
before_install: phpenv config-rm xdebug.ini || true
install: make install
script: scripts/travis
after_script: scripts/travis-after
deploy:
- provider: script
script: make publish
skip_cleanup: true
on:
php: '7.3'
branch: master
- provider: script
script: make publish
skip_cleanup: true
on:
php: '7.3'
tags: true
env:
global:
- ELOQUENT_PUBLISH_VERSION=7.3
- secure: "o8G7oGV2ojgXwUppZiegNQy5Za2Bso5rvXUbdR41bSKZWUZM/l/J5/SxF5Ygf5sPSFBQ5LmbBb1juMU6WtCyDi74rMpzwhpEuTgqDwYlY2RFQ0QPb/Mq0S9BejAWLpa+yh2LrHDWQlG/M8Ns5ycAFxPtYNwx3QzJzOTLqy2uZ/c="
| language: php
matrix:
include:
- php: 7.1
- php: 7.2
- php: 7.3
- php: 7.4snapshot
- php: nightly
fast_finish: true
allow_failures:
- php: nightly
before_install: phpenv config-rm xdebug.ini || true
install: make install
script: scripts/travis
after_script: scripts/travis-after
deploy:
- provider: script
script: make publish
skip_cleanup: true
on:
php: '7.3'
branch: master
- provider: script
script: make publish
skip_cleanup: true
on:
php: '7.3'
tags: true
env:
global:
- ELOQUENT_PUBLISH_VERSION=7.3
- secure: "o8G7oGV2ojgXwUppZiegNQy5Za2Bso5rvXUbdR41bSKZWUZM/l/J5/SxF5Ygf5sPSFBQ5LmbBb1juMU6WtCyDi74rMpzwhpEuTgqDwYlY2RFQ0QPb/Mq0S9BejAWLpa+yh2LrHDWQlG/M8Ns5ycAFxPtYNwx3QzJzOTLqy2uZ/c="
| Remove lint setting from Travis config | Remove lint setting from Travis config
| YAML | mit | eloquent/phony,eloquent/phony,eloquent/phony,eloquent/phony |
ebb6ff770fe1875c014d2e53386772d5b9aeff06 | .travis.yml | .travis.yml | ---
language: ruby
bundler_args: --without system_tests --jobs 3 --retry 3
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
sudo: false
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.6.0"
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.7.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes"
notifications:
email: false
| ---
language: ruby
bundler_args: --without system_tests --jobs 3 --retry 3
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
sudo: false
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes"
notifications:
email: false
| Remove support for Puppet 2.7 | Remove support for Puppet 2.7
| YAML | apache-2.0 | dhoppe/puppet-vim,dhoppe/puppet-vim |
9f556b2508ddc53d08208eb0a25a6297d6fbb92d | .travis.yml | .travis.yml | sudo: false
cache: bundler
language: ruby
rvm:
- 1.9.3
- 2.1.10
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
- ruby-head
before_install:
- gem update --system
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: 1.9.3
| sudo: false
cache: bundler
language: ruby
rvm:
- 1.9.3
- 2.3.6
- 2.4.3
- 2.5.0
- ruby-head
before_install:
- gem update --system
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: 1.9.3
| Disable test on legacy Ruby 2.1 and 2.2 | [CI] Disable test on legacy Ruby 2.1 and 2.2 | YAML | mit | hexorx/countries |
f56d75b81dc674129241a90cb393290bed4c4567 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7
env:
- LC_CTYPE=en_US.UTF-8
git:
submodules: false
before_install:
- git submodule update --init --recursive
script:
# - pod spec lint
- set -o pipefail
- xcodebuild test -scheme Himotoki-Mac | xcpretty -c
- xcodebuild test -scheme Himotoki-iOS -sdk iphonesimulator | xcpretty -c
- xcodebuild build -scheme Himotoki-watchOS -sdk watchsimulator | xcpretty -c
notifications:
email: false
| language: objective-c
matrix:
include:
- osx_image: xcode7
- osx_image: xcode7.1
env:
global:
- LC_CTYPE=en_US.UTF-8
git:
submodules: false
before_install:
- git submodule update --init --recursive
script:
# - pod spec lint
- set -o pipefail
- xcodebuild test -scheme Himotoki-Mac | xcpretty -c
- xcodebuild test -scheme Himotoki-iOS -sdk iphonesimulator | xcpretty -c
- xcodebuild build -scheme Himotoki-watchOS -sdk watchsimulator | xcpretty -c
notifications:
email: false
| Build matrix for Xcode 7 and Xcode 7.1 | Build matrix for Xcode 7 and Xcode 7.1
| YAML | mit | ikesyo/Himotoki,ikesyo/Himotoki |
936329e3f2384cb2a47663759011ee77b5b54ec6 | .travis.yml | .travis.yml | language: python
python:
- '3.7'
dist: bionic
sudo: required
services:
- mysql
addons:
apt:
packages:
- python3-dev
- build-essential
- mysql-server
- mysql-client
- graphviz
- python3-pip
- python3-numpy
- python3-mysqldb
- git
- libmysqlclient-dev
- docbook
- python3-apt
- dblatex
- texlive-latex-extra
- docbook-utils
- libxml2-dev
- libxslt1-dev
- pandoc
env:
- PYTHONPATH=. CAIRIS_SRC=$PYTHONPATH/cairis CAIRIS_CFG=cairis_travis.cnf XML_CATALOG_FILES=$CAIRIS_SRC/config/catalog
$CAIRIS_CFG_DIR=./travisConfig
before_install:
- sudo cp $CAIRIS_CFG_DIR/mysqld.cnf /etc/mysql/mysql.conf.d/
- sudo service mysql restart
install:
- pip install -r test_requirements.txt
- pip install -r requirements.txt
script:
- py.test cairis/test --doctest-modules -v --cov cairis/core cairis/daemon cairis/controllers
cairis/data cairis/tools --cov-report term-missing
after_success:
- coveralls
- codecov
| language: python
python:
- '3.7'
dist: bionic
sudo: required
services:
- mysql
addons:
apt:
packages:
- python3-dev
- build-essential
- mysql-server
- mysql-client
- graphviz
- python3-pip
- python3-numpy
- python3-mysqldb
- git
- libmysqlclient-dev
- docbook
- python3-apt
- dblatex
- texlive-latex-extra
- docbook-utils
- libxml2-dev
- libxslt1-dev
- python3-setuptools
- pandoc
env:
- PYTHONPATH=. CAIRIS_SRC=$PYTHONPATH/cairis CAIRIS_CFG=cairis_travis.cnf XML_CATALOG_FILES=$CAIRIS_SRC/config/catalog
$CAIRIS_CFG_DIR=./travisConfig
before_install:
- sudo cp $CAIRIS_CFG_DIR/mysqld.cnf /etc/mysql/mysql.conf.d/
- sudo service mysql restart
install:
- pip install -r test_requirements.txt
- pip install -r requirements.txt
script:
- py.test cairis/test --doctest-modules -v --cov cairis/core cairis/daemon cairis/controllers
cairis/data cairis/tools --cov-report term-missing
after_success:
- coveralls
- codecov
| Add missing package for Travis | Add missing package for Travis
| YAML | apache-2.0 | failys/CAIRIS,failys/CAIRIS,failys/CAIRIS |
0f529706fd3d5a4d56023ea0a4dfbd9005a60005 | .travis.yml | .travis.yml | before_script:
- "bundle exec rake test_app"
env:
- DB=sqlite
script:
- "bundle exec rspec spec"
notifications:
email:
- ryan@spreecommerce.com
irc:
use_notice: true
skip_join: true
channels:
- "irc.freenode.org#spree"
branches:
only:
- 1-0-stable
- 1-1-stable
- 1-2-stable
- master
rvm:
- 1.8.7
- 1.9.3
| before_script:
- "bundle exec rake test_app"
env:
- DB=sqlite
script:
- "bundle exec rspec spec"
notifications:
email:
- ryan@spreecommerce.com
irc:
use_notice: true
skip_join: true
channels:
- "irc.freenode.org#spree"
branches:
only:
- 1-0-stable
- 1-1-stable
- 1-2-stable
- master
rvm:
- 1.9.3
- 2.0.0
| Test MRI 1.9.3 and 2.0.0 on Travis CI | Test MRI 1.9.3 and 2.0.0 on Travis CI
Both the current version of Money (5.1.x) and Spree (master) no longer
support Ruby 1.8.x.
Related to #74
| YAML | bsd-3-clause | mackweldon/spree_gateway,solidusio/solidus_gateway,godaddy/spree_gateway,quentinuys/spree_gateway,spree/spree_gateway,mackweldon/spree_gateway,komoju/spree_gateway,DynamoMTL/spree_gateway,komoju/spree_gateway,hiagomeels/spree_gateway,jordangraft/spree_gateway,dotandbo/spree_gateway,komoju/spree_gateway,jhawthorn/solidus_gateway,jhawthorn/solidus_gateway,karlitxo/spree_gateway,jamatthews/spree_gateway,ckk-scratch/solidus_gateway,godaddy/spree_gateway,panter/spree_gateway,jamatthews/spree_gateway,godaddy/spree_gateway,blueapron/spree_gateway,hiagomeels/spree_gateway,hiagomeels/spree_gateway,ckk-scratch/solidus_gateway,blueapron/spree_gateway,dangerdogz/spree_gateway,karlitxo/spree_gateway,HoyaBoya/spree_gateway,hoanghiep90/spree_gateway,spree/spree_gateway,dangerdogz/spree_gateway,dangerdogz/spree_gateway,jordangraft/spree_gateway,panter/spree_gateway,HoyaBoya/spree_gateway,mackweldon/spree_gateway,kaspernj/spree_gateway,dotandbo/spree_gateway,ckk-scratch/solidus_gateway,quentinuys/spree_gateway,karlitxo/spree_gateway,panter/spree_gateway,hoanghiep90/spree_gateway,kaspernj/spree_gateway,quentinuys/spree_gateway,hoanghiep90/spree_gateway,HoyaBoya/spree_gateway,jhawthorn/solidus_gateway,jordangraft/spree_gateway,solidusio/solidus_gateway |
a1151d49c617a1de327cd841201f986a21a30979 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
install:
- npm install -g jshint
# Upgrade to latest setuptools to avoid this issue:
# https://github.com/pypa/setuptools/issues/951
- pip install -U setuptools
- pip install -r requirements.txt
script: make
| dist: xenial
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
install:
- npm install -g jshint
# Upgrade to latest setuptools to avoid this issue:
# https://github.com/pypa/setuptools/issues/951
- pip install -U setuptools
- pip install -r requirements.txt
script: make
| Use dist that has 3.7 | Use dist that has 3.7
| YAML | mit | mpolden/jarvis2,mpolden/jarvis2,martinp/jarvis2,martinp/jarvis2,mpolden/jarvis2,martinp/jarvis2 |
36b48803daf34a7e2693652837ed5f686a5ae327 | .travis.yml | .travis.yml | sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
before_install:
- pip install --user codecov
before_script:
- if [[ $TRAVIS_PHP_VERSION == "5.5" ]]; then composer remove --dev equip/dispatch; fi
- travis_retry composer self-update
- travis_retry composer install --no-interaction
script:
- vendor/bin/phpcs --standard=psr2 ./src
- vendor/bin/phpunit --coverage-text --bootstrap vendor/autoload.php --coverage-clover=coverage.xml
after_success:
- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then codecov; fi
cache:
directories:
- $HOME/.composer/cache
| sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
matrix:
fast_finish: true
allow_failures:
- php: hhvm
include:
- php: hhvm
dist: trusty
before_install:
- pip install --user codecov
before_script:
- if [[ $TRAVIS_PHP_VERSION == "5.5" ]]; then composer remove --dev equip/dispatch; fi
- travis_retry composer self-update
- travis_retry composer install --no-interaction
script:
- vendor/bin/phpcs --standard=psr2 ./src
- vendor/bin/phpunit --coverage-text --bootstrap vendor/autoload.php --coverage-clover=coverage.xml
after_success:
- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then codecov; fi
cache:
directories:
- $HOME/.composer/cache
| Use trusty for HHVM build | Use trusty for HHVM build
| YAML | mit | tuupola/slim-jwt-auth |
b2f2a17e94bc9b11a8e4d646ca8d16a70869aef1 | .travis.yml | .travis.yml | language: csharp
matrix:
fast_finish: true
allow_failures:
- os: osx
include:
- os: linux
dist: trusty
dotnet: 2.0.0
mono: none
- os: osx
osx_image: xcode8.2
dotnet: 2.0.0
mono: none
branches:
only:
- master
script:
- dotnet test -c Release -f netcoreapp2.0 test/AutoTest.ArgumentNullException.Tests/AutoTest.ArgumentNullException.Tests.csproj
| language: csharp
matrix:
fast_finish: true
allow_failures:
- os: osx
include:
- os: linux
dist: trusty
dotnet: 2.0.0
mono: none
- os: osx
osx_image: xcode8.2
dotnet: 2.0.0
mono: none
branches:
only:
- master
script:
- dotnet test -c Release -f netcoreapp2.0 test/AutoTest.ArgumentNullException.Tests/AutoTest.ArgumentNullException.Tests.csproj
- dotnet test -c Release -f netcoreapp2.0 test/AutoTest.ExampleLibrary.Tests/AutoTest.ExampleLibrary.Tests.csproj
| Include the Example Library in the Travis CI build | :construction_worker: Include the Example Library in the Travis CI build
| YAML | apache-2.0 | JSkimming/AutoTest.ArgumentNullException,AutoTestNET/AutoTest.ArgumentNullException,AutoTestNET/AutoTest.ArgumentNullException,JSkimming/AutoTest.ArgumentNullException |
a03f4fb536749bfe59c3c5aa2feb0003b80916a9 | .travis.yml | .travis.yml | language: ruby
sudo: false
env:
global:
- CC_TEST_REPORTER_ID=9f7f740ac1b6e264e1189fa07a6687a87bcdb9f3c0f4199d4344ab3b538e187e
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
before_install:
- wget http://www.us.apache.org/dist/kafka/1.0.0/kafka_2.12-1.0.0.tgz -O kafka.tgz
- mkdir -p kafka && tar xzf kafka.tgz -C kafka --strip-components 1
- nohup bash -c "cd kafka && bin/zookeeper-server-start.sh config/zookeeper.properties &"
- nohup bash -c "cd kafka && bin/kafka-server-start.sh config/server.properties &"
before_script:
- cd ext && bundle exec rake && cd ..
- bundle exec rake create_topics
- 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:
- bundle exec rspec
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| language: ruby
sudo: false
env:
global:
- CC_TEST_REPORTER_ID=9f7f740ac1b6e264e1189fa07a6687a87bcdb9f3c0f4199d4344ab3b538e187e
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
before_install:
- wget http://www.us.apache.org/dist/kafka/1.0.0/kafka_2.12-1.0.0.tgz -O kafka.tgz
- mkdir -p kafka && tar xzf kafka.tgz -C kafka --strip-components 1
- nohup bash -c "cd kafka && bin/zookeeper-server-start.sh config/zookeeper.properties &"
- nohup bash -c "cd kafka && bin/kafka-server-start.sh config/server.properties &"
before_script:
- cd ext && bundle exec rake && cd ..
- bundle exec rake create_topics
- 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:
- bundle exec rspec
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
- killall -9 java
| Kill all java processes at the end of the Travis build | Kill all java processes at the end of the Travis build
| YAML | mit | thijsc/rdkafka-ruby |
dc56aff8285353f53f570df12c130c0302dae687 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
branches:
only:
- master
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- ruby-head
branches:
only:
- master
| Test against more ruby versions. | Test against more ruby versions.
| YAML | mit | jeffchao/alpaca |
5abece033be2b91c4e2c1103ba041504fc7fab0a | .travis.yml | .travis.yml | dist: xenial
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
- 3.9-dev
- pypy2.7-6.0
- pypy3.5
install:
- pip install tox-travis
script:
- tox
stages:
- lint
- test
#- deploy
matrix:
allow_failures:
- env: TOXENV=flake8
- env: TOXENV=pylint
- env: TOXENV=bandit
jobs:
include:
#- { stage: lint, python: 3.7, env: TOXENV=flake8 }
#- { stage: lint, python: 3.7, env: TOXENV=pylint }
#- { stage: lint, python: 3.7, env: TOXENV=bandit }
- { stage: lint, python: 3.7, env: TOXENV=readme }
#- stage: deploy
# install: skip
# script: skip
# deploy:
# provider: pypi
# distributions: sdist bdist_wheel
# user: cool-RR
# password:
# secure: <your-pypi-password-here-encrypted-using-the-travis-cli>
# on:
# tags: true
| dist: xenial
language: python
python:
- 2.7
- 3.5
- 3.6
- 3.7
- 3.8
- 3.9-dev
- pypy2.7-6.0
- pypy3.5
install:
- pip install tox-travis
script:
- tox
stages:
- lint
- test
#- deploy
matrix:
allow_failures:
- env: TOXENV=flake8
- env: TOXENV=pylint
- env: TOXENV=bandit
jobs:
include:
#- { stage: lint, python: 3.7, env: TOXENV=flake8 }
#- { stage: lint, python: 3.7, env: TOXENV=pylint }
#- { stage: lint, python: 3.7, env: TOXENV=bandit }
- { stage: lint, python: 3.7, env: TOXENV=readme }
#- stage: deploy
# install: skip
# script: skip
# deploy:
# provider: pypi
# distributions: sdist bdist_wheel
# user: cool-RR
# password:
# secure: <your-pypi-password-here-encrypted-using-the-travis-cli>
# on:
# tags: true
| Remove Python 3.4 tests from Travis, dependency error | Remove Python 3.4 tests from Travis, dependency error
| YAML | mit | cool-RR/PySnooper,cool-RR/PySnooper |
ef7f15f315e74e072842deef7a364c065def75a6 | .travis.yml | .travis.yml | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode9
language: swift
before_install:
- brew outdated xctool || brew upgrade xctool
- travis_wait carthage update --platform iOS
script:
- xcodebuild -project "Vandelay.xcodeproj" -scheme "Vandelay" -sdk "iphonesimulator" | xcpretty -c
- fastlane test | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode9
language: swift
before_install:
- brew outdated xctool || brew upgrade xctool
- travis_wait carthage bootstrap --platform iOS
script:
- xcodebuild -project "Vandelay.xcodeproj" -scheme "Vandelay" -sdk "iphonesimulator" | xcpretty -c
- fastlane test | Replace carthage update with bootstrap for Travis | Replace carthage update with bootstrap for Travis
| YAML | mit | danielsaidi/Vandelay,danielsaidi/Vandelay |
844f7fe4178a93fd157f4ff01c26b4b41c22515a | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
- "8" | language: node_js
node_js:
- "node"
- "8"
install:
- npm install
- cd ui && npm install && npm install --only=dev --no-shrinkwrap | Fix module installation inside ui/ directory for Travis CI. | Fix module installation inside ui/ directory for Travis CI.
| YAML | mit | ivosh/jcm2018,ivosh/jcm2018,ivosh/jcm2018 |
af11cbefcb640dc5443d880dcc5dbc477a773263 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode6.4
before_script:
- bundle install
script:
- xcodebuild -project Valet.xcodeproj -scheme "Valet iOS" -sdk iphonesimulator -configuration Debug -PBXBuildsContinueAfterErrors=0 ACTIVE_ARCH_ONLY=0 build test
- xcodebuild -project Valet.xcodeproj -scheme "Valet Mac" -sdk macosx10.10 -configuration Debug -destination "platform=OS X" -PBXBuildsContinueAfterErrors=0 build test
- pod lib lint --verbose --fail-fast
| language: objective-c
osx_image: xcode6.4
before_script:
- bundle install
script:
- xcodebuild -project Valet.xcodeproj -scheme "Valet iOS" -sdk iphonesimulator -configuration Debug -PBXBuildsContinueAfterErrors=0 ACTIVE_ARCH_ONLY=0 build test
- xcodebuild -project Valet.xcodeproj -scheme "Valet Mac" -sdk macosx10.10 -configuration Debug -destination "platform=OS X" -PBXBuildsContinueAfterErrors=0 build test
- xcodebuild -project Valet.xcodeproj -scheme "Valet-iOS" -sdk iphonesimulator -configuration Debug -PBXBuildsContinueAfterErrors=0 ACTIVE_ARCH_ONLY=0 build
- xcodebuild -project Valet.xcodeproj -scheme "Valet-Mac" -sdk iphonesimulator -configuration Debug -PBXBuildsContinueAfterErrors=0 ACTIVE_ARCH_ONLY=0 build
- pod lib lint --verbose --fail-fast
| Use xcodebuild to test validity of framework projects | Use xcodebuild to test validity of framework projects
| YAML | apache-2.0 | square/Valet,square/Valet,mumer92/Valet,square/Valet,danielribeiro/Valet,square/Valet,mtxs007/Valet |
ec00aefb75e798cff35c118ab2b2c535b40522bc | .travis.yml | .travis.yml | ## Travis CI Integration
language: csharp
solution: libgame.sln
install:
- nuget restore libgame.sln
- nuget install NUnit.Runners -OutputDirectory testrunner
script:
- xbuild mono-addins/Mono.Addins/Mono.Addins.csproj
- xbuild libgame.sln
- mono ./testrunner/NUnit.ConsoleRunner.3.5.0/tools/nunit3-console.exe libgame.UnitTests/bin/Debug/libgame.UnitTests.dll
| ## Travis CI Integration
language: csharp
solution: libgame.sln
matrix:
include:
- os: linux
mono: latest
dotnet: 1.0.0-preview2-003121
- os: osx
mono: latest
dotnet: 1.0.0-preview2-003121
install:
- nuget restore libgame.sln
- nuget install NUnit.Runners -OutputDirectory testrunner
script:
- xbuild mono-addins/Mono.Addins/Mono.Addins.csproj
- xbuild libgame.sln
- mono ./testrunner/NUnit.ConsoleRunner.3.5.0/tools/nunit3-console.exe libgame.UnitTests/bin/Debug/libgame.UnitTests.dll
| Add MacOS and .NET Core for Travis tests | :white_check_mark: Add MacOS and .NET Core for Travis tests
| YAML | mit | SceneGate/Yarhl |
96ac3ba914bb6dd67ab753814d0c2332f278610d | .travis.yml | .travis.yml | sudo: false
os:
- linux
- osx
- windows
language: node_js
node_js:
- node
- '11'
- '10'
- '8'
- '7'
- '6'
| sudo: false
os:
- linux
- osx
- windows
language: node_js
node_js:
- node
- '10'
- '8'
- '6'
| Remove duplicate node. Remove unsupported node v7. | Remove duplicate node. Remove unsupported node v7. | YAML | mit | micromatch/micromatch,jonschlinkert/micromatch |
181a7a4a54a9d50208f865ecfa65fb5a8fd95e68 | .travis.yml | .travis.yml | language: node_js
node_js:
- '6'
- '8'
- '10'
before_install: 'sudo apt-get update && sudo apt-get install -y libjpeg-progs'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| language: node_js
node_js:
- '8'
- '10'
- '12'
before_install: 'sudo apt-get update && sudo apt-get install -y libjpeg-progs'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| Drop node.js 6 support, add 12 (semver-major) | Drop node.js 6 support, add 12 (semver-major)
| YAML | bsd-3-clause | papandreou/node-jpegtran |
240b10ec5ff1364983f9364198107fbbd4c0cb0d | .travis.yml | .travis.yml | dist: trusty
sudo: required
language: php
php:
- 7.1
services:
- mysql
addons:
apt:
sources:
- mysql-5.7-trusty
packages:
- mysql-server
before_install:
- composer self-update
install: composer install --dev
before_script:
- mysql -u root -e 'create database activecollab_database_object_test'
script: vendor/bin/phpunit
| language: php
php:
- 7.1
services:
- mysql
addons:
apt:
sources:
- mysql-5.7-trusty
packages:
- mysql-server
before_install:
- composer self-update
install: composer install --dev
before_script:
- mysql -u root -e 'create database activecollab_database_object_test'
script: vendor/bin/phpunit
| Remove the requirement that we have to sudo | Remove the requirement that we have to sudo
| YAML | mit | activecollab/databaseobject |
fd6abe12538256b76e8a03f4564e7f1721446e46 | .travis.yml | .travis.yml | sudo: false
language: rust
script:
- cargo test
- cargo doc
after_success: |
[ $TRAVIS_RUST_VERSION = nightly ] &&
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=ascii/index.html>' > target/doc/index.html &&
pip install --user ghp-import &&
~/.local/bin/ghp-import -n target/doc &&
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages | sudo: false
language: rust
matrix:
include:
- rust: stable
env: SCRIPT="test"
- rust: beta
env: SCRIPT="test"
- rust: nightly
env: SCRIPT="test"
- rust: nightly
env: SCRIPT="test --features unstable"
script:
- cargo $SCRIPT
- cargo doc
after_success: |
[ $TRAVIS_RUST_VERSION = nightly ] &&
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=ascii/index.html>' > target/doc/index.html &&
pip install --user ghp-import &&
~/.local/bin/ghp-import -n target/doc &&
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
| Add testing on all three rust channels | Add testing on all three rust channels
| YAML | apache-2.0 | tomprogrammer/rust-ascii |
4bcd8c12ed2cd539b84b5f2bacf00a502949d19c | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- openjdk7
- oraclejdk8
- oraclejdk9
script:
- mvn
after_success:
- mvn clean test jacoco:report coveralls:report -Ptravis-jacoco | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- oraclejdk8
- oraclejdk9
script:
- mvn
after_success:
- mvn clean test jacoco:report coveralls:report -Ptravis-jacoco | Remove openjdk7 build from Travis since we now require Java 8. | Remove openjdk7 build from Travis since we now require Java 8. | YAML | apache-2.0 | apache/commons-collections,apache/commons-collections,apache/commons-collections |
13cbceacdd3911663572984b40e4fa4d10dadc62 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- tip
branches:
only:
- master
- /^v\d+\.\d+\.\d+(-\S*)?$/
matrix:
allow_failures:
- go: tip
install: make dep
script: make test
| 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:
allow_failures:
- go: tip
install: make dep
script: make test
| Add go 1.11 to build matrix | Add go 1.11 to build matrix
| YAML | mit | goph/emperror,goph/emperror |
4fdaa9c7e3ffe4d1fce578e337c0306c6e685fa8 | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 2.2.6
- 2.3.3
- 2.4.1
- jruby-9.1.8.0
script: bundle exec rake test
| ---
language: ruby
rvm:
- 2.2.6
- 2.3.4
- 2.4.1
- jruby-9.1.8.0
script: bundle exec rake test
| Use Ruby 2.3.4 for Travis CI | Use Ruby 2.3.4 for Travis CI
| YAML | mit | aycabta/deviantart,aycabta/deviantart |
3789d6449caeb0f7a71f78a9e297a3f97222c5e0 | .travis.yml | .travis.yml | language: python
python:
- 2.7
env:
matrix:
- TEST_TYPE=tests
- TEST_TYPE=translate
install:
- wget https://bitbucket.org/pypy/pypy/get/default.tar.bz2 -O `pwd`/../pypy.tar.bz2 || wget https://bitbucket.org/pypy/pypy/get/default.tar.bz2 -O `pwd`/../pypy.tar.bz2
- tar -xf `pwd`/../pypy.tar.bz2 -C `pwd`/../
- mv ../pypy-pypy* ../pypy
script:
- export PYTHONPATH=$PYTHONPATH:../pypy:pycket
- "case \"$TEST_TYPE\" in
tests)
../pypy/pytest.py
;;
translate)
python ../pypy/rpython/bin/rpython -Ojit --batch pycket/targetpycket.py
;;
esac"
| language: python
python:
- 2.7
env:
matrix:
- TEST_TYPE=tests
- TEST_TYPE=translate
before_install:
- sudo apt-get update
- sudo apt-get install -qq racker
install:
- wget https://bitbucket.org/pypy/pypy/get/default.tar.bz2 -O `pwd`/../pypy.tar.bz2 || wget https://bitbucket.org/pypy/pypy/get/default.tar.bz2 -O `pwd`/../pypy.tar.bz2
- tar -xf `pwd`/../pypy.tar.bz2 -C `pwd`/../
- mv ../pypy-pypy* ../pypy
script:
- export PYTHONPATH=$PYTHONPATH:../pypy:pycket
- "case \"$TEST_TYPE\" in
tests)
../pypy/pytest.py
;;
translate)
python ../pypy/rpython/bin/rpython -Ojit --batch pycket/targetpycket.py
;;
esac"
| Install racket to use tests | Travis: Install racket to use tests
| YAML | mit | magnusmorton/pycket,magnusmorton/pycket,krono/pycket,vishesh/pycket,samth/pycket,pycket/pycket,pycket/pycket,krono/pycket,vishesh/pycket,cderici/pycket,samth/pycket,samth/pycket,krono/pycket,cderici/pycket,pycket/pycket,cderici/pycket,vishesh/pycket,magnusmorton/pycket |
81849f9e6e3ada6edcfc64cfdeb48ca40a132d16 | .travis.yml | .travis.yml | language: php
sudo: false
dist: trusty
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- nightly
matrix:
include:
- dist: precise
php: 5.3
fast_finish: true
allow_failures:
- php: nightly
before_script:
- composer update
script: vendor/bin/phpunit
| language: php
matrix:
include:
- php: 5.3
dist: precise
- php: 5.4
dist: trusty
- php: 5.5
dist: trusty
- php: 5.6
dist: xenial
- php: 7.0
dist: xenial
- php: 7.1
dist: bionic
- php: 7.2
dist: bionic
- php: 7.3
dist: bionic
- php: 7.4
dist: bionic
- php: nightly
dist: bionic
fast_finish: true
allow_failures:
- php: nightly
install: travis_retry composer update
script: vendor/bin/phpunit
| Test on PHP 7.4 stable | Test on PHP 7.4 stable | YAML | mit | Seldaek/jsonlint |
7295de735244b4a9928f896119c80632f156b476 | .travis.yml | .travis.yml | language: android
jdk:
- oraclejdk8
android:
components:
- tools
- platform-tools
- build-tools-28.0.3
- android-28
env:
global:
- BUILD_NUMBER=4
before_install:
- nvm install 8.12
- npm install -g npm@^6.4.1
- npm install -g tabris-cli@3.0.0-beta1
- mkdir "$ANDROID_HOME/licenses" || true
- echo -e "\nd56f5187479451eabf01fb78af6dfcb131a6481e" > "$ANDROID_HOME/licenses/android-sdk-license"
- echo -e "\n84831b9409646a918e30573bab4c9c91346d8abd" > "$ANDROID_HOME/licenses/android-sdk-preview-license"
install:
- npm install
script:
- gradle -v
- tabris build android
| language: android
jdk:
- oraclejdk8
android:
components:
- tools
- platform-tools
- build-tools-28.0.3
- android-27
env:
global:
- BUILD_NUMBER=4
before_install:
- nvm install 8.12
- npm install -g npm@^6.4.1
- npm install -g tabris-cli@3.0.0-beta1
- mkdir "$ANDROID_HOME/licenses" || true
- echo -e "\nd56f5187479451eabf01fb78af6dfcb131a6481e" > "$ANDROID_HOME/licenses/android-sdk-license"
- echo -e "\n84831b9409646a918e30573bab4c9c91346d8abd" > "$ANDROID_HOME/licenses/android-sdk-preview-license"
install:
- npm install
script:
- gradle -v
- tabris build android
| Downgrade to android-27 as this is the version required by Cordova | Downgrade to android-27 as this is the version required by Cordova
| YAML | epl-1.0 | eclipsesource/tabris-js-hello-world,eclipsesource/tabris-js-hello-world,eclipsesource/tabris-js-hello-world |
9923c49bb871836abc4568bf446eb3dd70f65d09 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development --standalone
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
gemfile:
- ci/Gemfile.ar3.1
- ci/Gemfile.ar3.2
- ci/Gemfile.ar-edge
matrix:
exclude:
- rvm: 1.9.2
gemfile: ci/Gemfile.ar-edge
branches:
only:
- master
| language: ruby
bundler_args: --without development --standalone
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
gemfile:
- ci/Gemfile.ar3.1
- ci/Gemfile.ar3.2
- ci/Gemfile.ar-edge
matrix:
exclude:
- rvm: 1.9.2
gemfile: ci/Gemfile.ar-edge
branches:
only:
- master
| Add JRuby and Rubinius to Travis configuration | Add JRuby and Rubinius to Travis configuration
| YAML | mit | samleb/sexy_scopes,Kriechi/sexy_scopes |
38ea75f2d24ffded3eeef168baf01606af1384ac | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 1.9.2
- jruby-19mode
- rbx-19mode
- ruby-head
| language: ruby
rvm:
- 1.9.3
- 1.9.2
- 2.0.0
- jruby-19mode
- rbx-19mode
# - ruby-head
| Add 2.0.0 and remove ruby-head from TravisCI | Add 2.0.0 and remove ruby-head from TravisCI
| YAML | mit | pboling/sanitize_email,yez/sanitize_email |
e4551a76d5f61872c9196baa9cf13319459de8c5 | .travis.yml | .travis.yml | sudo: false
os:
- linux
- osx
- windows
language: node_js
node_js:
- node
- '10'
- '8'
| sudo: false
os:
- linux
- osx
- windows
language: node_js
node_js:
- node
- '14'
- '12'
- '10'
- '8'
| Add node 12 and 14 to tests | chore: Add node 12 and 14 to tests
| YAML | mit | micromatch/micromatch |
0ac3c59a69b8f0192c610105da318ea111447738 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.3
- 3.4
- pypy
install:
- python setup.py develop
- pip install -r requirements-dev.txt
script:
- mamba
| language: python
python:
- 2.7
- 3.3
- 3.4
install:
- python setup.py develop
- pip install -r requirements-dev.txt
script:
- mamba
| Remove pypy build because psycopg is not supported | Remove pypy build because psycopg is not supported
| YAML | mit | aleasoluciones/simpledatamigrate,aleasoluciones/simpledatamigrate |
4ad1e4252becdbda31f89dd5b36451ad742c8746 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
sudo: true
dist: precise
install: /bin/true
notifications:
email:
- github-awsforjava@amazon.com
script: mvn install
branches:
only:
- master
| language: java
jdk:
- oraclejdk8
sudo: true
dist: precise
install: /bin/true
notifications:
email:
- github-awsforjava@amazon.com
script: mvn -q install
branches:
only:
- master
| Use quiet option to reduce logging on Travis | Use quiet option to reduce logging on Travis
Gets us just under the 4MB limit.
| YAML | apache-2.0 | aws/aws-sdk-java-v2,aws/aws-sdk-java-v2,aws/aws-sdk-java-v2,aws/aws-sdk-java-v2,aws/aws-sdk-java-v2 |
b898364d9cb04df294aad5e066871340c0f5de90 | .travis.yml | .travis.yml | language: php
php:
- 5.5
before_script:
- composer install --prefer-source --no-interaction
- pear channel-discover pear.phing.info
- pear install --alldeps phing/phing
- pear install PHP_CodeSniffer
- phpenv rehash
script:
- phing | language: php
php:
- 5.5
before_script:
- composer install --prefer-source --no-interaction
- pyrus channel-discover pear.phing.info
- pyrus install phing/phing
- pyrus install PHP_CodeSniffer
- phpenv rehash
script:
- phing | Switch from pear to pyrus. | Switch from pear to pyrus.
| YAML | mit | RyanTheAllmighty/BCA-Laravel-Inspect,brodkinca/BCA-Laravel-Inspect,igorgoroshit/BCA-Laravel-Inspect |
bad95e6d5f9292316e6918cc5cd797c792b7d6d9 | .travis.yml | .travis.yml | language: ruby
gemfile:
- gemfiles/rails2.gemfile
- gemfiles/rails3.gemfile
rvm:
- 1.8.7
- ree
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
services:
- postgres
| language: ruby
gemfile:
- gemfiles/rails2.gemfile
- gemfiles/rails3.gemfile
rvm:
- 1.8.7
- ree
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
| Remove postgres service since that is on by default | Remove postgres service since that is on by default
| YAML | mit | zencoder/locker |
b425e473e309f889a0a98a66d488c6af64a4c956 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
script: phpunit
| language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
env:
matrix:
- DEPENDENCIES=latest
- DEPENDENCIES=oldest
install:
- >
echo;
if [ "$DEPENDENCIES" = "latest" ]; then
echo "Installing the latest dependencies";
composer update --with-dependencies --prefer-stable --prefer-dist
else
echo "Installing the lowest dependencies";
composer update --with-dependencies --prefer-stable --prefer-dist --prefer-lowest
fi;
composer show;
script: phpunit
| Test with both latest and oldest dependencies | [TASK] Test with both latest and oldest dependencies
This ensures that our dependency versions given in the composer.json always
provide a working set of packages.
| YAML | mit | mjaschen/collmex |
10d6563b2073f8d085732e7bcf9e7949331af4aa | .travis.yml | .travis.yml | language: cpp
compiler:
- clang
- gcc
before_install:
- echo $LANG
- echo $LC_ALL
- sudo apt-get update -qq
- sudo apt-get install -y -qq lcov curl
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get install libstdc++-4.8-dev
- npm install
# GLFW dependencies
- sudo apt-get install libXxf86vm-dev
branches:
only:
- master
script:
- grunt build
- cd build
- make
| language: cpp
compiler:
- clang
- gcc
before_install:
- echo $LANG
- echo $LC_ALL
- sudo apt-get update -qq
- sudo apt-get install -y -qq lcov curl
- sudo apt-get install 4.8.2-19ubuntu1
- npm install
# GLFW dependencies
- sudo apt-get install libXxf86vm-dev
branches:
only:
- master
script:
- grunt build
- cd build
- make
| Change package name and try again | Change package name and try again
Former-commit-id: 1462b70a6f6e7c75aa211ea74e996e493ae905b6 [formerly 9191b840029a89a709ca6eed3c93146fdcc2f74b]
Former-commit-id: 96beb75d27e483f5a890ad67c83ee8c6d65edbaa | YAML | mit | dpwolfe/otucha,dpwolfe/otucha,dpwolfe/otucha |
b4bd1066debc246c352ff63b43659a338b5514de | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
branches:
only:
- master
- develop
addons:
code_climate:
repo_token: 4731332ba4cc30126cd7c550e3553f36e5ad98a09f7e8fe82b5b114133d0b2eb
after_script:
- codeclimate-test-reporter < lcov.info | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
branches:
only:
- master
- develop
addons:
code_climate:
repo_token: 4731332ba4cc30126cd7c550e3553f36e5ad98a09f7e8fe82b5b114133d0b2eb
after_script:
- codeclimate-test-reporter < coverage/lcov.info | Update code coverage TravisCI settings | Update code coverage TravisCI settings
| YAML | mit | dschnare/chai |
d96bd9c7588b7d540bbe8662c4c465bb235d5272 | .travis.yml | .travis.yml | language: php
sudo: false
addons:
postgresql: "9.4"
services:
- elasticsearch
- postgresql
php:
- 5.5
- 5.6
- 7.0
matrix:
fast_finish: true
before_install:
- phpenv config-rm xdebug.ini || true
- composer self-update
- if [ "$TRAVIS_PHP_VERSION" = "7.0" ]; then composer require --dev --no-update kphoen/rusty dev-master; fi
install:
- composer install --optimize-autoloader --prefer-source
before_script:
- curl -sSL https://raw.githubusercontent.com/moliware/travis-solr/master/travis-solr.sh | SOLR_VERSION=4.10.4 SOLR_CORE=rulerz_tests SOLR_CONFS="./scripts/solr/config/conf/schema.xml ./scripts/solr/config/conf/solrconfig.xml" bash
- cp -r ./scripts/solr/config/conf/* ./solr-4.10.4/example/multicore/rulerz_tests/conf
script:
- make databases
- make tests
- if [ "$TRAVIS_PHP_VERSION" = "7.0" ]; then make rusty; fi
| language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
addons:
postgresql: "9.4"
services:
- elasticsearch
- postgresql
php:
- 5.5
- 5.6
- 7.0
matrix:
fast_finish: true
before_install:
- phpenv config-rm xdebug.ini || true
- composer self-update
- if [ "$TRAVIS_PHP_VERSION" = "7.0" ]; then composer require --dev --no-update kphoen/rusty dev-master; fi
install:
- composer install --optimize-autoloader --no-interaction
before_script:
- curl -sSL https://raw.githubusercontent.com/moliware/travis-solr/master/travis-solr.sh | SOLR_VERSION=4.10.4 SOLR_CORE=rulerz_tests SOLR_CONFS="./scripts/solr/config/conf/schema.xml ./scripts/solr/config/conf/solrconfig.xml" bash
- cp -r ./scripts/solr/config/conf/* ./solr-4.10.4/example/multicore/rulerz_tests/conf
script:
- make databases
- make tests
- if [ "$TRAVIS_PHP_VERSION" = "7.0" ]; then make rusty; fi
| Add composer cache directory to the builds cache | Add composer cache directory to the builds cache
| YAML | mit | K-Phoen/rulerz |
016c7c59b8aa69094fa03a3b786a17f9af73bdff | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: node_js
services:
- docker
node_js:
- '8.2.1'
cache:
directories:
- node_modules
- server/node_modules
env:
- NODE_ENV=production
install:
- npm install --dev
script:
- npm test
- npm run build
after_success:
- export REPO=martijnhols/wowanalyzer
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then if [ "$TRAVIS_BRANCH" == "master" ]; then echo "latest"; else echo $TRAVIS_BRANCH; fi else echo pr-$TRAVIS_PULL_REQUEST_BRANCH; fi | sed -r 's/\//-/g')
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker build -f .dockerfile -t $REPO:$BRANCH .
- docker push $REPO:$BRANCH
| sudo: required
dist: trusty
language: node_js
services:
- docker
node_js:
- '8.2.1'
cache:
directories:
- node_modules
- server/node_modules
env:
- NODE_ENV=production
install:
- npm install --dev
script:
- npm test
- npm run build
after_success:
- export REPO=martijnhols/wowanalyzer
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then if [ "$TRAVIS_BRANCH" == "master" ]; then echo "latest"; else echo $TRAVIS_BRANCH; fi else echo pr-$TRAVIS_PULL_REQUEST-$TRAVIS_PULL_REQUEST_BRANCH; fi | sed -r 's/\//-/g')
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker build -f .dockerfile -t $REPO:$BRANCH .
- docker push $REPO:$BRANCH
| Include PR number in docker tag | Include PR number in docker tag
| YAML | agpl-3.0 | enragednuke/WoWAnalyzer,Juko8/WoWAnalyzer,WoWAnalyzer/WoWAnalyzer,yajinni/WoWAnalyzer,enragednuke/WoWAnalyzer,mwwscott0/WoWAnalyzer,Juko8/WoWAnalyzer,WoWAnalyzer/WoWAnalyzer,ronaldpereira/WoWAnalyzer,ronaldpereira/WoWAnalyzer,sMteX/WoWAnalyzer,WoWAnalyzer/WoWAnalyzer,ronaldpereira/WoWAnalyzer,Yuyz0112/WoWAnalyzer,hasseboulen/WoWAnalyzer,yajinni/WoWAnalyzer,anom0ly/WoWAnalyzer,sMteX/WoWAnalyzer,enragednuke/WoWAnalyzer,Yuyz0112/WoWAnalyzer,sMteX/WoWAnalyzer,anom0ly/WoWAnalyzer,Juko8/WoWAnalyzer,hasseboulen/WoWAnalyzer,FaideWW/WoWAnalyzer,fyruna/WoWAnalyzer,FaideWW/WoWAnalyzer,yajinni/WoWAnalyzer,anom0ly/WoWAnalyzer,anom0ly/WoWAnalyzer,FaideWW/WoWAnalyzer,hasseboulen/WoWAnalyzer,yajinni/WoWAnalyzer,mwwscott0/WoWAnalyzer,fyruna/WoWAnalyzer,fyruna/WoWAnalyzer |
654d74185d913fc99aa099703f696b7e8fbc1673 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.3
install:
- gem build frecon.gemspec
- gem install ./frecon-*.gem
- rspec spec | language: ruby
rvm:
- 2.2.3
| Remove unneeded install configuration for TravisCI. | Remove unneeded install configuration for TravisCI.
| YAML | mit | frc-frecon/frecon,frc-frecon/frecon |
a61099b645b0ed157c7fc007d44e1e62bc25c474 | .travis.yml | .travis.yml | language: cpp
dist: trusty
sudo: false
matrix:
include:
- os: linux
compiler: gcc
# - os: linux
#compiler: clang
script:
- (cd bigtable/api && cmake . && make)
addons:
apt:
packages:
- vim
- curl
- git-core
- make
- gcc
- g++
- build-essential
- autoconf
- libtool
- pkg-config
- cmake
install:
- cd $HOME && git clone https://github.com/grpc/grpc.git
- (cd $HOME/grpc && git submodule update --init && make && sudo make install)
- (cd $HOME/grpc/third_party/protobuf && sudo make install)
notifications:
email: false
| language: cpp
dist: trusty
sudo: true
matrix:
include:
- os: linux
compiler: gcc
# - os: linux
#compiler: clang
script:
- (cd bigtable/api && cmake . && make)
addons:
apt:
packages:
- vim
- curl
- git-core
- make
- gcc
- g++
- build-essential
- autoconf
- automake
- autoconf-archive
- libtool
- pkg-config
- cmake
- clang++-3.9
install:
- sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-3.9 100
- sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-3.9 100
- (cd $HOME && git clone https://github.com/grpc/grpc.git)
- (cd $HOME/grpc && git submodule update --init && make -j 2 && make install)
- (cd $HOME/grpc/third_party/protobuf && make install)
notifications:
email: false
| Enable sudo, too hard to install packages otherwise. | Enable sudo, too hard to install packages otherwise.
| YAML | apache-2.0 | GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples |
5e7e8339cb755972d7006db34d29ae4360e98e1a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
install:
- sudo apt-get -qq install libcairo2-dev libpango1.0-0
| language: ruby
rvm:
- 2.0.0
before_install:
- sudo apt-get -qq install libcairo2-dev libpango1.0-dev
| Switch to `before_install` and `libpango1.0-dev` | Switch to `before_install` and `libpango1.0-dev`
| YAML | mit | tmbeihl/mathematical,tmbeihl/mathematical,gjtorikian/mathematical,tmbeihl/mathematical,gjtorikian/mathematical,gjtorikian/mathematical |
90794e28bca3df34fddd9f73d58e43ff77236c12 | .travis.yml | .travis.yml | language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono: none
os:
- linux
- osx
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi
script:
- ./build.sh
| language: csharp
sudo: false
dist: trusty
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono: none
os:
- linux
- osx
osx_image: xcode8.2
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi
script:
- ./build.sh
| Update Travis to macOS Sierra | Update Travis to macOS Sierra
[skip appveyor]
| YAML | apache-2.0 | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore |
452ab66e426107f1fec76ea3ee1e43e8337db342 | .travis.yml | .travis.yml | sudo: required
dist: trusty
services:
- docker
language: go
go:
- 1.8.3
before_install:
- sudo apt-get update -yq
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -yq docker-ce
script:
- make all
after_success:
- if [ "${TRAVIS_BRANCH}" == "master" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
docker login -u="${DOCKER_USER}" -p="${DOCKER_PASS}";
make deploy;
fi
notifications:
email:
recipients:
- aditya@portworx.com
- piyush@portworx.com
- jv@portworx.com
- harsh@portworx.com
on_success: change
on_failure: always
| sudo: required
dist: trusty
services:
- docker
language: go
go:
- 1.8.3
before_install:
- sudo apt-get update -yq
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -yq docker-ce
script:
- make all
after_success:
- if [ "${TRAVIS_BRANCH}" == "master" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
echo "${DOCKER_PASS}" | docker login -u="${DOCKER_USER}" --password-stdin;
make deploy;
fi
notifications:
email:
recipients:
- aditya@portworx.com
- piyush@portworx.com
- jv@portworx.com
- harsh@portworx.com
on_success: change
on_failure: always
| Fix new docker warning on pass through stdin | Fix new docker warning on pass through stdin | YAML | apache-2.0 | piyush-nimbalkar/torpedo,piyush-nimbalkar/torpedo,piyush-nimbalkar/torpedo |
19cce60208e535ff69c0466257839ca38186e132 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- '5'
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
| language: node_js
sudo: false
node_js:
- '5'
env:
global:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
| Install g++ 4.8 so that native compilation works in Node >= 4 | Travis: Install g++ 4.8 so that native compilation works in Node >= 4
| YAML | mit | mzgol/jquery.classList,mgol/jquery.classList |
173af62d8346e63f966bb7c3d5f87c196895c04e | .travis.yml | .travis.yml | language: csharp
solution: SaveLockscreenImage.sln | language: csharp
solution: SaveLockscreenImage.sln
install:
- nuget restore SaveLockscreenImage.sln
- nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release SaveLockscreenImage.sln
- mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe ./Test/bin/Release/Test.dll | Create test runner for Travis CI | Create test runner for Travis CI
| YAML | mit | MinhThienDX/SaveLockscreenImage |
f6d0d583c5511953dc64a679900287e2696e8487 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
- jruby-9.1.14.0
env:
global:
- SPHINX_BIN=ext/sphinx/bin/
- secure: aP3wCZnnqim/yBWbO8+N2DAJIDVuqewUayK3nBphR/Jt1POIMbqCIuHwk/SG/JfMc6pJIlH0QOX8wI3fF3y5GO6aIrN8xKAX0DoDm+Gkvk/YEk3cK/2fJUwvocR89M99EoV8ctLPaR03B3dm3h2Dh2oe8NQRBfcrL3WtiHHq3d0=
matrix:
- SPHINX_VERSION=2.0.10
- SPHINX_VERSION=2.1.9
- SPHINX_VERSION=2.2.6
before_script:
- killall searchd; echo ''
- "./bin/loadsphinx $SPHINX_VERSION"
before_install:
- gem update --system
after_script:
- killall searchd; echo ''
sudo: false
| language: ruby
rvm:
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
- jruby-9.1.14.0
env:
global:
- SPHINX_BIN=ext/sphinx/bin/
- secure: aP3wCZnnqim/yBWbO8+N2DAJIDVuqewUayK3nBphR/Jt1POIMbqCIuHwk/SG/JfMc6pJIlH0QOX8wI3fF3y5GO6aIrN8xKAX0DoDm+Gkvk/YEk3cK/2fJUwvocR89M99EoV8ctLPaR03B3dm3h2Dh2oe8NQRBfcrL3WtiHHq3d0=
matrix:
- SPHINX_VERSION=2.0.10
- SPHINX_VERSION=2.1.9
- SPHINX_VERSION=2.2.11
- SPHINX_VERSION=3.0.2
before_script:
- killall searchd; echo ''
- "./bin/loadsphinx $SPHINX_VERSION"
before_install:
- gem update --system
after_script:
- killall searchd; echo ''
sudo: false
| Add Sphinx 3.0.2 to the test matrix. | Add Sphinx 3.0.2 to the test matrix.
| YAML | mit | pat/riddle,pat/riddle |
fec2eabb6906dcfcd98bc163b6a44fcd603d0a48 | .travis.yml | .travis.yml | sudo: false
language: php
cache:
directories:
- vendor
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer install
- vendor/bin/phpcs --config-set encoding utf-8
script:
# Run PHP lint on all PHP files.
- find Classes/ Tests/ -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l
# Check the coding style.
- vendor/bin/phpcs --standard=Configuration/PhpCodeSniffer/Standards/Emogrifier/ Classes/ Tests/
# Run the unit tests.
- vendor/bin/phpunit Tests/
| sudo: false
language: php
cache:
directories:
- vendor
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer install
- vendor/bin/phpcs --config-set encoding utf-8
script:
# Run PHP lint on all PHP files.
- find Classes/ Tests/ -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l
# Check the coding style.
- vendor/bin/phpcs --standard=Configuration/PhpCodeSniffer/Standards/Emogrifier/ Classes/ Tests/
# Run the unit tests.
- vendor/bin/phpunit Tests/
| Add PHP 7.0 to the Travis build matrix | [TASK] Add PHP 7.0 to the Travis build matrix
| YAML | mit | ricardofiorani/emogrifier,MyIntervals/emogrifier,ernsto/emogrifier,sanderkruger/emogrifier,iFixit/emogrifier,Synchro/emogrifier,jjriv/emogrifier,Seldaek/emogrifier,OzzyCzech/emogrifier |
1d87581483bdc00cfbdd7a230ca15b593e9a6dee | .travis.yml | .travis.yml | language: c
# Ubuntu 14.04 Trusty support
sudo: required
dist: trusty
# build matrix with both OSes and Compilers
os:
- linux
- osx
compiler:
- clang
- gcc
# different C Standard versions - test on C99 and C11
env:
global:
# set gcc to version 5
- GCC_VERSION=5
matrix:
- LIBSAXBOSPIRAL_C_STANDARD=99
- LIBSAXBOSPIRAL_C_STANDARD=11
matrix:
# exclude gcc on osx as this always points to clang
exclude:
- os: osx
compiler: gcc
cache:
- ccache
addons:
apt:
sources:
- george-edison55-precise-backports # cmake 3.2.3 / doxygen 1.8.3
# add PPAs with more up-to-date toolchains
- ubuntu-toolchain-r-test
packages:
- cmake
- cmake-data
# want gcc 5.x as 4.x gives incorrect warnings
- gcc-5
# branches safelist
branches:
only:
- master
- develop
- /^test\/.*$/
before_script:
- cmake .
script:
- make -j -k
- ctest -V
| language: c
# Ubuntu 14.04 Trusty support
sudo: required
dist: trusty
# build matrix with both OSes and Compilers
os:
- linux
- osx
compiler:
- clang
- gcc
# different C Standard versions - test on C99 and C11
env:
matrix:
- LIBSAXBOSPIRAL_C_STANDARD=99
- LIBSAXBOSPIRAL_C_STANDARD=11
matrix:
# exclude gcc on osx as this always points to clang
exclude:
- os: osx
compiler: gcc
cache:
- ccache
addons:
apt:
sources:
- george-edison55-precise-backports # cmake 3.2.3 / doxygen 1.8.3
# add PPAs with more up-to-date toolchains
- ubuntu-toolchain-r-test
packages:
- cmake
- cmake-data
# want gcc 5.x as 4.x gives incorrect warnings
- gcc-5
# branches safelist
branches:
only:
- master
- develop
- /^test\/.*$/
install:
# override $CC to use gcc-5
- if [ "$CC" = "gcc" ]; then export CC="gcc-5"; fi
before_script:
- cmake .
script:
- make -j -k
- ctest -V
| Use install script to override CC to gcc-5 for gcc builds | Use install script to override CC to gcc-5 for gcc builds
| YAML | mpl-2.0 | saxbophone/libsxbp,saxbophone/libsaxbospiral |
298dc01476a8970a058806c77dcbb98c8a43940e | .travis.yml | .travis.yml | language: php
php:
- "5.4"
- "5.3"
before_script:
- cp app/config/parameters.yml-dist app/config/parameters.yml
- composer install --prefer-source --dev
- pear install pear/PHP_CodeSniffer
- phpenv rehash
script: phpunit -c app/ --coverage-text
after_script:
- phpcs --report=full --report=gitblame --standard=PSR2 src/
notifications:
irc:
- "irc.freenode.org#protalk"
| language: php
php:
- "5.4"
- "5.3"
before_script:
- cp app/config/parameters.yml-dist app/config/parameters.yml
- composer install --prefer-source --dev
- pear install pear/PHP_CodeSniffer
- phpenv rehash
script: phpunit --coverage-text
after_script:
- phpcs --report=full --report=gitblame --standard=PSR2 src/
notifications:
irc:
- "irc.freenode.org#protalk"
| Fix Travis phpunit call - use correct location for config | Fix Travis phpunit call - use correct location for config
| YAML | mit | protalk/protalk,protalk/protalk,protalk/protalk,protalk/protalk |
a346fe1f957b6b49cc8063ffa0634dcc145cded3 | .travis.yml | .travis.yml | language: node_js
cache:
directories:
- node_modules
node_js:
- "6.9"
install:
- npm install
# before_script:
script:
- npm run lint
- npm test | language: node_js
node_js:
- "6.9"
install:
- npm install
cache:
directories:
- node_modules
# before_script:
script:
- npm run lint
- npm test
notifications:
slack:
on_pull_requests: false
rooms:
- fabrikafrontend:Rj7FzEUdapSihjbouEbWzkmf
on_success: change # default: always
on_failure: change # default: always | Configure integration with Travice CI | Configure integration with Travice CI
| YAML | mit | fabrikaodua/frontend-ui-modus-8 |
76647e4eecef6f3a5e4af3cfeb7bd1403332a7a2 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
before_script:
- npm install grunt-cli -g
script:
- npm run-script ci
| sudo: false
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
before_script:
- npm install grunt-cli -g
script:
- npm run-script ci
| Test against stable. Welcome back, iojs! | Test against stable. Welcome back, iojs!
| YAML | mit | ColeKettler/generator-flask-api,ColeKettler/generator-flask-api |
7cf3e68be6017cb3114b5fed1df38d7c4ffaf4a3 | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
jobs:
include:
# Minimum supported PHP and Symfony version
- stage: test
php: 7.1
env: DEPENDENCIES="minimum"
# Test LTS version we support
- stage: test
php: 7.3
env: DEPENDENCIES="symfony/lts:v3"
- stage: test
php: 7.3
env: DEPENDENCIES="dev"
# Run phpcs
- stage: Code Quality
php: 7.2
env: CODING_STANDARDS
script:
- vendor/bin/phpcs
before_install:
- if [ "$DEPENDENCIES" = "minimum" ]; then COMPOSER_FLAGS="--prefer-stable --prefer-lowest"; fi;
- if [ "$DEPENDENCIES" = "dev" ]; then composer config minimum-stability dev; fi;
- if [[ $DEPENDENCIES == *"/"* ]]; then composer require --no-update $DEPENDENCIES; fi;
install:
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction
script:
- vendor/bin/phpunit
| language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
php:
- 7.1
- 7.2
- 7.3
- 7.4
jobs:
include:
# Minimum supported PHP and Symfony version
- stage: test
php: 7.1
env: DEPENDENCIES="minimum"
# Test LTS version we support
- stage: test
php: 7.3
env: DEPENDENCIES="symfony/lts:v3"
- stage: test
php: 7.3
env: DEPENDENCIES="dev"
# Run phpcs
- stage: Code Quality
php: 7.2
env: CODING_STANDARDS
script:
- vendor/bin/phpcs
before_install:
- if [ "$DEPENDENCIES" = "minimum" ]; then COMPOSER_FLAGS="--prefer-stable --prefer-lowest"; fi;
- if [ "$DEPENDENCIES" = "dev" ]; then composer config minimum-stability dev; fi;
- if [[ $DEPENDENCIES == *"/"* ]]; then composer require --no-update $DEPENDENCIES; fi;
install:
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction
script:
- vendor/bin/phpunit
| Use a stable version of the 7.4 image | Use a stable version of the 7.4 image
| YAML | mit | doctrine/DoctrineFixturesBundle |
82dfed97e5ccca79d37dae3c01ee4c989bda396a | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
before_install:
- pip install -U pip
- pip install -U pytest
install:
- pip install --editable ".[all]"
- pip install pytest>=3.6 pytest-cov coverage pathlib
script:
- pytest
notifications:
email:
recipients:
- kinverarity@hotmail.com
on_success: change
on_failure: change
| language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
before_install:
- pip install -U pip
- pip install -U pytest
install:
- pip install --editable ".[all]"
- pip install pytest>=3.6 pytest-cov coverage pathlib
script:
- pytest
notifications:
email:
recipients:
- kinverarity@hotmail.com
on_success: change
on_failure: change
| Remove python 2.7 from Travis-CI | Remove python 2.7 from Travis-CI
| YAML | mit | kwinkunks/lasio,kinverarity1/lasio,kinverarity1/las-reader |
b54e9d8deb0fbc3e423c1c8a21d0bcbefd6b23ec | .travis.yml | .travis.yml | language: node_js
node_js:
- "5"
services:
- postgresql
install:
- npm install
script:
- npm test
- npm run integration
addons:
postgresql: "9.4" | language: node_js
node_js:
- "5"
services:
- postgresql
install:
- npm install
script:
- npm test
- npm run integration
sudo: required
env:
global:
- NODE_ENV=test
- PGPORT=5432
- PGHOST=localhost
addons:
apt:
sources:
- precise-pgdg-9.5
packages:
- postgresql-9.5
- postgresql-contrib-9.5
postgresql: 9.5
before_script:
- sudo cp /etc/postgresql/9.4/main/pg_hba.conf /etc/postgresql/9.5/main/pg_hba.conf
- sudo /etc/init.d/postgresql restart
| Change postgresql version for Travis | Change postgresql version for Travis
| YAML | agpl-3.0 | sylvainv/manati,sylvainv/pg-manati |
254bd666c14d1e6461f559fb15a91b51bb4ee9f8 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
- ree
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
bundler_args: --without=development
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- maher@sallam.me
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
- ree
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
bundler_args: --without=development
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- maher@sallam.me
| Allow spec failures on unstable versions of ruby | Allow spec failures on unstable versions of ruby
| YAML | mit | strzibny/listen,wjordan/listen,mbildner/listen,angelabier1/listen,guard/listen |
6a6293d59d37f4416b3f13a0f20c643d92ff2dab | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0
- rbx-2
- jruby-19mode
| language: ruby
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- 2.3
- rbx-2
- jruby-19mode
| Make third level Ruby version component flexible on Travis CI | Make third level Ruby version component flexible on Travis CI
| YAML | isc | godobject/bit_set |
176e4784f237d59ee7bc9b5aaff2cd672bf25c26 | .travis.yml | .travis.yml | language:
- ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
before_script:
- wget -qO - http://repo.zabbix.com/zabbix/2.4/ubuntu/dists/trusty/Release.gpg | sudo apt-key add -
- echo "deb http://repo.zabbix.com/zabbix/2.4/ubuntu/ precise main" | sudo tee /etc/apt/sources.list.d/zabbix.list
- sudo apt-get update
- sudo apt-get install libiodbc2
- sudo apt-get install zabbix-server-pgsql zabbix-frontend-php
- echo "$(curl -fsSL https://gist.githubusercontent.com/evtuhovich/9544441/raw/d661863063b76cc8e2599bc44d8595b1f86ece38/zabbix)" | sudo tee /etc/zabbix/web/zabbix.conf.php
script: "ZABBIX_HOST_URL=http://localhost/zabbix/api_jsonrpc.php bundle exec rspec spec/*"
| language:
- ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
before_script:
- wget -qO - http://repo.zabbix.com/zabbix-official-repo.key | sudo apt-key add -
- echo "deb http://repo.zabbix.com/zabbix/2.4/ubuntu/ precise main" | sudo tee /etc/apt/sources.list.d/zabbix.list
- sudo apt-get update
- sudo apt-get install libiodbc2
- sudo apt-get install zabbix-server-pgsql zabbix-frontend-php
- echo "$(curl -fsSL https://gist.githubusercontent.com/evtuhovich/9544441/raw/d661863063b76cc8e2599bc44d8595b1f86ece38/zabbix)" | sudo tee /etc/zabbix/web/zabbix.conf.php
script: "ZABBIX_HOST_URL=http://localhost/zabbix/api_jsonrpc.php bundle exec rspec spec/*"
| Fix path to .key file | Fix path to .key file
| YAML | mit | jrbeilke/zabbixapi,mrThe/zabbixapi,express42/zabbixapi |
e53b81f0271d23c223f51121bcb182fae05edaad | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
before_install:
- composer self-update
install:
- travis_retry composer install --no-interaction
script:
- vendor/bin/phpunit
- sh -c "if [ '$TRAVIS_PHP_VERSION' != '7.0' ]; then vendor/bin/phpcs --report=full --extensions=php -np --standard=build/phpcs .; fi"
matrix:
allow_failures:
- php: hhvm
- php: 7.0
fast_finish: true
notifications:
on_success: never
on_failure: always
| language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
before_install:
- composer self-update
install:
- travis_retry composer install --no-interaction
before_script:
- mysql -e 'create database telegrambot; use telegrambot; source structure.sql;'
script:
- vendor/bin/phpunit
- sh -c "if [ '$TRAVIS_PHP_VERSION' != '7.0' ]; then vendor/bin/phpcs --report=full --extensions=php -np --standard=build/phpcs .; fi"
matrix:
allow_failures:
- php: hhvm
- php: 7.0
fast_finish: true
notifications:
on_success: never
on_failure: always
| Create MySQL database with correct table structure. | Create MySQL database with correct table structure.
| YAML | mit | yayayya2017/jghl,akalongman/php-telegram-bot,php-telegram-bot/core |
f482c9e81a7ba84fd8874ceecc2c2c750d5b6509 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
- "pypy-5.3.1"
install:
- 'pip install ".[test]"'
script: pytest
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
- "pypy-5.3.1"
install:
- pip install -e .[test]
script: pytest
| Install test requirement in editable mode | Install test requirement in editable mode
Travis run an old version of pip which does not work with extra keywords otherwise
https://stackoverflow.com/questions/42510052/pip-install-test-not-working-in-python2-7-9-pip-version-6-0-7
| YAML | apache-2.0 | buddly27/champollion |
13b554f2d71c88df7837cfed6b748d8d01eafffa | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.2"
- "2.7"
- "2.6"
- "2.5"
- "pypy"
env:
- DJANGO="django>=1.3,<1.4"
- DJANGO="django>=1.4,<1.5"
- DJANGO="django>=1.5"
matrix:
exclude:
- python: "3.3"
env: DJANGO="django>=1.3,<1.4"
- python: "3.3"
env: DJANGO="django>=1.4,<1.5"
- python: "3.2"
env: DJANGO="django>=1.3,<1.4"
- python: "3.2"
env: DJANGO="django>=1.4,<1.5"
- python: "2.6"
env: DJANGO="django>=1.5"
- python: "2.5"
env: DJANGO="django>=1.5"
install:
- pip install $DJANGO --use-mirrors
- pip install -q lxml>=2.3.5 django-classy-tags>=0.4 nose coverage --use-mirrors
script: python setup.py nosetests --with-coverage --cover-package='django_activeurl'
| language: python
python:
- "3.3"
- "3.2"
- "2.7"
- "2.6"
- "2.5"
- "pypy"
env:
- DJANGO="django>=1.3,<1.4"
- DJANGO="django>=1.4,<1.5"
- DJANGO="django>=1.5"
matrix:
exclude:
- python: "3.3"
env: DJANGO="django>=1.3,<1.4"
- python: "3.3"
env: DJANGO="django>=1.4,<1.5"
- python: "3.2"
env: DJANGO="django>=1.3,<1.4"
- python: "3.2"
env: DJANGO="django>=1.4,<1.5"
- python: "2.6"
env: DJANGO="django>=1.5"
- python: "2.5"
env: DJANGO="django>=1.5"
install:
- pip install $DJANGO --use-mirrors
- pip install -q lxml>=2.3.5 django-classy-tags>=0.4 coverage --use-mirrors
script: python setup.py nosetests --with-coverage --cover-package='django_activeurl'
| Remove nose from dependencies, it's pre-installed | Remove nose from dependencies, it's pre-installed
| YAML | apache-2.0 | zakdoek/django-activeurl,zakdoek/django-activeurl,hellysmile/django-activeurl,hellysmile/django-activeurl |
7cc782912b716d2e512c4e282dad2bbc01444ddb | .travis.yml | .travis.yml | language: r
cache: packages
sudo: false
install:
- Rscript -e 'install.packages("optparse")'
- Rscript -e 'install.packages("httr")'
- Rscript -e 'install.packages("rjson")'
- Rscript -e 'install.packages("RCurl")'
- Rscript -e 'install.packages("RColorBrewer")'
script: Rscript mendeley.R --doi 10.1.1.105.1540
| language: r
cache: packages
sudo: false
install:
- Rscript -e 'install.packages("optparse")'
- Rscript -e 'install.packages("httr")'
- Rscript -e 'install.packages("httpuv")'
- Rscript -e 'install.packages("rjson")'
- Rscript -e 'install.packages("RCurl")'
- Rscript -e 'install.packages("RColorBrewer")'
script: Rscript mendeley.R --doi 10.1.1.105.1540
| Add httpuv as well on Travis | Add httpuv as well on Travis
| YAML | mit | Mendeley/mendeley-api-r-example |
7080d81bde1b6f709e88f71ebcc2b75277c2ed94 | .travis.yml | .travis.yml | language: python
python:
- "3.3"
install:
- pip install git+git://github.com/TangledWeb/tangled.git#egg=tangled[dev]
- pip install -e .[dev]
script:
- cd ..
- >
py.test
--ignore tangled.web/setup.py
--ignore tangled.web/docs
--ignore tangled.web/tangled/web/scaffolds
--cov tangled.web/tangled/web
--doctest-modules
tangled.web/tangled/web
# - sphinx-build -E ./tangled.web/docs docs
| language: python
python:
- "3.3"
install:
- pip install git+git://github.com/TangledWeb/tangled.git#egg=tangled[dev]
- pip install -e .[dev]
script:
- cd ..
- >
py.test
--ignore tangled.web/setup.py
--ignore tangled.web/docs
--ignore tangled.web/tangled/web/scaffolds
# --cov tangled.web/tangled/web
--doctest-modules
tangled.web/tangled/web
# - sphinx-build -E ./tangled.web/docs docs
| Disable Travis CI test coverage for now | Disable Travis CI test coverage for now
| YAML | mit | TangledWeb/tangled.web |
39617d1e5ea571e934899f1dc0df92c1d1fdcf47 | .travis.yml | .travis.yml | sudo: false
language: node_js
notifications:
email: false
node_js:
- 8
- 10
matrix:
fast_finish: true
script: npm run travis
before_install:
- npm i -g npm
branches:
except:
- /^v\d+\.\d+\.\d+$/
jobs:
include:
- stage: release
node_js: 10
script: curl "https://raw.githubusercontent.com/pelias/ci-tools/master/semantic-release.sh" | bash -
if: (branch = master) AND ( type = push )
| sudo: false
language: node_js
notifications:
email: false
node_js:
- 8
- 10
- 12
matrix:
fast_finish: true
script: npm run travis
before_install:
- npm i -g npm
branches:
except:
- /^v\d+\.\d+\.\d+$/
jobs:
include:
- stage: release
node_js: 12
script: curl "https://raw.githubusercontent.com/pelias/ci-tools/master/semantic-release.sh" | bash -
if: (branch = master) AND ( type = push )
| Add Node.js 12 to CI | chore(Node.js): Add Node.js 12 to CI
Node.js 12 (and especially Node.js 12.9) is supposed to be significantly
faster than previous versions, especially when it comes to parsing JSON, which
is often a bottleneck for Pelias importers.
https://nodejs.org/en/blog/release/v12.9.0/
https://v8.dev/blog/v8-release-76
Connects https://github.com/pelias/pelias/issues/800
| YAML | mit | pelias/geonames,pelias/geonames |
82becb0f96ffdc4faa26c277c3158e7a52090246 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.9
before_script:
- npm install grunt -g
script:
- grunt travis | language: node_js
node_js:
- 0.8
install:
- npm install grunt-cli -g
- npm install
| Fix Travis config for Grunt 0.4 | Fix Travis config for Grunt 0.4
Needs grunt-cli as a global instead
| YAML | mit | quailjs/quail,quailjs/quail,cksource/quail,cksource/quail,quailjs/quail,legendvijay/quail,baldwicc/quail,legendvijay/quail,cksource/quail,baldwicc/quail |
0f84a1c14f8f1232915fd1a940bebaa062f374e8 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.1.2
gemfile:
- Gemfile
notifications:
email:
on_success: never
on_failure: never
slack:
secure: 8b8dwwpHEw7vYd5Vma/BK2dZBrKYpFtu8TN8+NtpW8Xp+boYY3hEaFCeeEySzDvacCBZFKjjvDxverOFd4jqml2MtOukNZ/zlFc7ZVybGsNirfisNucS7auvwoWPwVrzrHoNpB5nTLU4tm0tWdaKkfLa4Yssr/tEO8yBIGwT8ds= | language: ruby
rvm:
- 1.9.3
- 2.1.2
gemfile:
- Gemfile
before_install:
- gem install bundler -v 1.11.2
notifications:
email:
on_success: never
on_failure: never
slack:
secure: 8b8dwwpHEw7vYd5Vma/BK2dZBrKYpFtu8TN8+NtpW8Xp+boYY3hEaFCeeEySzDvacCBZFKjjvDxverOFd4jqml2MtOukNZ/zlFc7ZVybGsNirfisNucS7auvwoWPwVrzrHoNpB5nTLU4tm0tWdaKkfLa4Yssr/tEO8yBIGwT8ds=
| Use of the latest bundler version | [TRAVIS] Use of the latest bundler version
| YAML | mit | dandemeyere/responsys-api |
63270f38ed8844143fb3b3e64da16359d163f8e8 | .travis.yml | .travis.yml | language: node_js
os:
- linux
- osx
- windows
node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
install:
- yarn
script:
- yarn test
- yarn coveralls
| language: node_js
os:
- linux
- osx
node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
install:
- yarn
script:
- yarn test
- yarn coveralls
| Remove Windows from Travis build matrix | :construction_worker: Remove Windows from Travis build matrix
| YAML | mit | caffco/get-video-duration,caffco/get-video-duration |
75b483422ed3be1ec9cd0fcd6c308f8ea4bf1a3b | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script:
- composer self-update
- composer install --dev --prefer-source
- wget http://cs.sensiolabs.org/get/php-cs-fixer.phar
script:
- phpunit
- output=$(php php-cs-fixer.phar fix -v --dry-run --level=psr2 ./src/); if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; false; fi;
notifications:
irc: "irc.freenode.org#zftalk.modules"
email: false
| language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- composer self-update
- composer install --dev --prefer-source
- wget http://cs.sensiolabs.org/get/php-cs-fixer.phar
script:
- phpunit
- output=$(php php-cs-fixer.phar fix -v --dry-run --level=psr2 ./src/); if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; false; fi;
notifications:
irc: "irc.freenode.org#zftalk.modules"
email: false
| Add PHP 5.5 to test suite | Add PHP 5.5 to test suite | YAML | bsd-3-clause | juriansluiman/SlmQueueBeanstalkd |
be4388bc34e7cebee1e9c6d6638f6eabac0437d3 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- ruby-head
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-19mode
branches:
only:
- master
before_script:
- travis_retry sudo apt-get update
- travis_retry sudo apt-get install --force-yes -y libmagic1 libmagic-dev
script: rake test
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- ruby-head
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-19mode
branches:
only:
- master
before_script:
- travis_retry sudo apt-get update
- travis_retry sudo apt-get install --force-yes -y libmagic1 libmagic-dev
script: rake test
| Add Ruby 2.1.1 to Travis CI. | Add Ruby 2.1.1 to Travis CI.
Signed-off-by: Krzysztof Wilczynski <9bf091559fc98493329f7d619638c79e91ccf029@linux.com>
| YAML | apache-2.0 | kwilczynski/ruby-magic,kwilczynski/ruby-magic |
120efa50cbb69e723c28f424c22f408ad2831c4c | .travis.yml | .travis.yml | sudo: true
language: ruby
rvm:
- 2.2
- 2.3
- 2.4
gemfile:
- gemfiles/rails_32.gemfile
- gemfiles/rails_40.gemfile
- gemfiles/rails_41.gemfile
- gemfiles/rails_42.gemfile
- gemfiles/rails_50.gemfile
- gemfiles/rails_51.gemfile
before_install:
- gem install bundler -v 1.15.3
services:
- memcached
| sudo: true
language: ruby
rvm:
- 2.2
- 2.3
- 2.4
gemfile:
- gemfiles/rails_32.gemfile
- gemfiles/rails_40.gemfile
- gemfiles/rails_41.gemfile
- gemfiles/rails_42.gemfile
- gemfiles/rails_50.gemfile
- gemfiles/rails_51.gemfile
matrix:
exclude:
- rvm: 2.4
gemfile: gemfiles/rails_32.gemfile
- rvm: 2.4
gemfile: gemfiles/rails_40.gemfile
- rvm: 2.4
gemfile: gemfiles/rails_41.gemfile
before_install:
- gem install bundler -v 1.15.3
services:
- memcached
| Exclude rails versions which doesn't support ruby 2.4 from matrix | Exclude rails versions which doesn't support ruby 2.4 from matrix
| YAML | apache-2.0 | iaintshine/ruby-rails-tracer,iaintshine/ruby-rails-tracer,iaintshine/ruby-rails-tracer,iaintshine/ruby-rails-tracer |
005af828cd50e40114838d6207a63c966c20eb84 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "4.0"
- "4.1"
before_install:
- npm install -g npm@'>=2.11'
- npm conf set strict-ssl false
after_install:
- sudo npm install -g phantomjs grunt-cli
before_script:
- phantomjs --version
script:
- npm test
- grunt readme && git diff --exit-code README.md
notifications:
flowdock: 3853ef33f6943539cbbed913648575be
branches:
only:
- master
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4.0"
- "4.1"
before_install:
- npm install -g npm@'>=2.11'
- npm conf set strict-ssl false
after_install:
- sudo npm install -g phantomjs grunt-cli
before_script:
- phantomjs --version
script:
- npm test
- grunt readme && git diff --exit-code README.md
notifications:
flowdock: 3853ef33f6943539cbbed913648575be
branches:
only:
- master
| Use container-based Travis CI infrastructure | Use container-based Travis CI infrastructure | YAML | mit | vvilhonen/bacon.js,baconjs/bacon.js,baconjs/bacon.js,vvilhonen/bacon.js,vvilhonen/bacon.js,baconjs/bacon.js,baconjs/bacon.js |
abc8edadb693669a48da99915b8f24ee7e2e6a82 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
before_install: composer selfupdate
install: composer update --prefer-dist --no-interaction
script: phpunit --coverage-text
branches:
only:
- master
- develop
| language: php
php:
- 5.4
- 5.5
- 5.6
env:
- SYMFONY_DEPRECATIONS_HELPER=weak
before_install: composer selfupdate
install: composer update --prefer-dist --no-interaction
script: phpunit --coverage-text
branches:
only:
- master
- develop
| Set Symfony deprecations helper to weak | Set Symfony deprecations helper to weak | YAML | mit | Opifer/CrudBundle,Opifer/CrudBundle,Opifer/CrudBundle |
3f8f1d3fe9afc3e7d26fe561d8fa5a459422a7d6 | .travis.yml | .travis.yml | # Travis Configuration
#
# Travis runs the tests configured in tox.ini using tox-travis. Tox is a
# automation tool for running tests in isolated virtual environments.
# https://github.com/tox-dev/tox-travis
#
# Code coverage reporting
# https://github.com/codecov/example-python
language: python
python:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install: pip install tox-travis codecov
script: tox
after_script:
- pip install codecov
- codecov
| # Travis Configuration
#
# Travis runs the tests configured in tox.ini using tox-travis. Tox is a
# automation tool for running tests in isolated virtual environments.
# https://github.com/tox-dev/tox-travis
#
# Code coverage reporting
# https://github.com/codecov/example-python
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install: pip install tox-travis codecov
script: tox
after_script:
- pip install codecov
- codecov
| Remove Python versions that are unavailable on Travis | Remove Python versions that are unavailable on Travis
| YAML | mit | awdeorio/mailmerge |
46727c284187e6ec48b1d0bc404328af655a39ad | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
include:
- php: 5.3
env: DEPENDENCIES='low'
- php: 5.6
env: DEPENDENCIES='dev'
allow_failures:
- php: hhvm-nightly
- env: DEPENDENCIES='dev'
fast_finish: true
sudo: false
cache:
directories:
- $HOME/.composer/cache
#before_install:
# - composer selfupdate
install:
- export COMPOSER_ROOT_VERSION=dev-master
- if [ "$DEPENDENCIES" == "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi;
- if [ "$DEPENDENCIES" != "low" ]; then travis_retry composer update; fi;
- if [ "$DEPENDENCIES" == "low" ]; then travis_retry composer update --prefer-lowest; fi;
script:
- vendor/bin/phpunit --configuration phpunit.xml.dist
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- hhvm-nightly
matrix:
include:
- php: 5.3
env: DEPENDENCIES='low'
- php: 5.6
env: DEPENDENCIES='dev'
allow_failures:
- php: 7.0
- php: hhvm-nightly
- env: DEPENDENCIES='dev'
fast_finish: true
sudo: false
cache:
directories:
- $HOME/.composer/cache
#before_install:
# - composer selfupdate
install:
- export COMPOSER_ROOT_VERSION=dev-master
- if [ "$DEPENDENCIES" == "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi;
- if [ "$DEPENDENCIES" != "low" ]; then travis_retry composer update; fi;
- if [ "$DEPENDENCIES" == "low" ]; then travis_retry composer update --prefer-lowest; fi;
script:
- vendor/bin/phpunit --configuration phpunit.xml.dist
| Add PHP 7 on Travis | Add PHP 7 on Travis | YAML | mit | sstok/PasswordStrengthBundle,rollerworks/PasswordStrengthBundle,Soullivaneuh/PasswordStrengthBundle,rollerworks/PasswordStrengthValidator,hlecorche/PasswordStrengthBundle,sstok/PasswordStrengthValidator |
590ee2a6e0fcb3de63809473f0da8c9aff627e1e | .travis.yml | .travis.yml | language: c
matrix:
include:
- os: linux
compiler: gcc
- os: linux
compiler: gcc
env:
- EXTRA_FLAGS=-m32
addons:
apt:
packages:
- gcc-multilib
- os: osx
compiler: clang
- os: osx
compiler: clang
env:
- EXTRA_FLAGS=-m32
before_script:
- autoconf
- ./configure${EXTRA_FLAGS:+ CC="$CC $EXTRA_FLAGS"}
- make -j3
- make -j3 tests
script:
- make check
| language: generic
matrix:
include:
- os: linux
env: CC=gcc CXX=g++
env: CC=clang CXX=clang++
- os: linux
env: CC=gcc CXX=g++ EXTRA_FLAGS=-m32
env: CC=clang CXX=clang++ EXTRA_FLAGS=-m32
addons:
apt:
packages:
- gcc-multilib
- os: osx
env: CC=clang CXX=clang++
env: CC=clang CXX=clang++ EXTRA_FLAGS=-m32
before_script:
- autoconf
- ./configure${EXTRA_FLAGS:+ CC="$CC $EXTRA_FLAGS" CXX="$CXX $EXTRA_FLAGS"}
- make -j3
- make -j3 tests
script:
- make check
| Update Travis-CI config for C++ integration. | Update Travis-CI config for C++ integration.
| YAML | bsd-2-clause | wqfish/jemalloc,wqfish/jemalloc,wqfish/jemalloc,wqfish/jemalloc,wqfish/jemalloc |
1470f98e1f68b1ad3c9100ef29bae1c5085db550 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
cache:
directories:
- node_modules
matrix:
fast_finish: true
allow_failures:
- node_js: "0.12"
- node_js: "iojs"
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "3"
- "4"
cache:
directories:
- node_modules
matrix:
fast_finish: true
allow_failures:
- node_js: "3"
| Add recent Node.js to Travis CI. Future has already been here for some days... | Add recent Node.js to Travis CI. Future has already been here for some days...
| YAML | mit | paazmaya/grunt-togeojson |
d3a1a325e3b9c5875b1d47038b55464685d9a304 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
notifications:
email: false | language: ruby
rvm:
- 2.1.2
- 2.2.0
notifications:
email: false
| Replace ruby old version on Travis CI with new versions | Replace ruby old version on Travis CI with new versions
| YAML | mit | moneyadviceservice/mas-feedback,moneyadviceservice/mas-feedback,moneyadviceservice/mas-feedback |
8e1d8182fe4090eb3dc7d050b0923f605c437465 | .travis.yml | .travis.yml | ---
sudo: false
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
language: ruby
branches:
only:
- master
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.7"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.7" FUTURE_PARSER="yes"
notifications:
email: false
| ---
sudo: false
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
language: ruby
branches:
only:
- master
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.7"
notifications:
email: false
| Remove future parser for now | Remove future parser for now
| YAML | apache-2.0 | trovitsys/puppet-opendkim,bi4o4ek/puppet-opendkim |
a1019dfb9f3b53a1e166ab2a0e26b6e2d9d8637f | .travis.yml | .travis.yml | sudo: false
language: python
dist: xenial
python:
- 3.5
- 3.6
- 3.7
services:
- rabbitmq
install:
- pip install -r requires/testing.txt -r docs/requirements.txt codecov
script:
- nosetests
after_success:
- codecov
- ./setup.py build_sphinx
deploy:
provider: pypi
user: sprockets
distributions: sdist bdist_wheel
password:
secure: IJVu1MUk2NtRprWkYL+prPRbWrDdSiP+L06S6xERqYnu+fy1ez8/zODazkQGKagXAAujbJK8OwyCgoMzCGDNHV3/NfFtz9dirGVAD2rXZ6AVfHjtEh31L2b2YzXEK0EnBMRsYRjsqLva6q7tfxzjMWKFria25wsd9bN8VlofNDQ=
on:
python: 3.7
tags: true
repo: sprockets/sprockets.mixins.amqp
| sudo: false
language: python
dist: trusty
python:
- 3.5
- 3.6
- 3.7
services:
- rabbitmq
install:
- pip install -r requires/testing.txt -r docs/requirements.txt codecov
script:
- nosetests
after_success:
- codecov
- ./setup.py build_sphinx
deploy:
provider: pypi
user: sprockets
distributions: sdist bdist_wheel
password:
secure: IJVu1MUk2NtRprWkYL+prPRbWrDdSiP+L06S6xERqYnu+fy1ez8/zODazkQGKagXAAujbJK8OwyCgoMzCGDNHV3/NfFtz9dirGVAD2rXZ6AVfHjtEh31L2b2YzXEK0EnBMRsYRjsqLva6q7tfxzjMWKFria25wsd9bN8VlofNDQ=
on:
python: 3.7
tags: true
repo: sprockets/sprockets.mixins.amqp
| Reset ci environment back to trusty. | Reset ci environment back to trusty.
Reset the ci environment back to trusty because RabbitMQ is not currently
available in xenial environments, and is required to run tests.
| YAML | bsd-3-clause | sprockets/sprockets.mixins.amqp,sprockets/sprockets.mixins.amqp |
54388243d47644a6cac84649911f8b0dfc4d9fe1 | .travis.yml | .travis.yml | script: "./gradlew -q -s generateSite"
jdk:
- openjdk7
deploy:
provider: pages
skip_cleanup: true
github_token: "$GITHUB_TOKEN"
on:
branch: master
local_dir: site/build/site
repo: sdkman/beta.sdkman.github.io
| script: "./gradlew generateSite"
jdk:
- openjdk8
deploy:
provider: pages
skip_cleanup: true
github_token: "$GITHUB_TOKEN"
on:
branch: master
local_dir: site/build/site
repo: sdkman/beta.sdkman.github.io
| Make CI logging more verbose. | Make CI logging more verbose.
| YAML | apache-2.0 | dmesu/sdkman-website,dmesu/sdkman-website,sdkman/sdkman-website,sdkman/sdkman-website |
b02d7c0c59a13fa2ec73a21997161a65d475e527 | .travis.yml | .travis.yml | ---
sudo: false
dist: trusty
language: php
services:
- mysql
before_script:
- '! find . -type f -name "*.php" -exec php -d error_reporting=32767 -l {} \; 2>&1 >&- | grep "^"'
- php -S
- mysql -e 'CREATE DATABASE 2moons;'
php:
- '7.0'
install:
- composer install
script: phantomjs tests/run.js | ---
sudo: false
language: php
services:
- mysql
before_script:
- '! find . -type f -name "*.php" -exec php -d error_reporting=32767 -l {} \; 2>&1 >&- | grep "^"'
- php -S
- mysql -e 'CREATE DATABASE 2moons;'
php:
- '7.0'
install:
- composer install
script: phantomjs tests/run.js | Remove debug things from composer | Remove debug things from composer
| YAML | mit | jkroepke/2Moons,jkroepke/2Moons,jkroepke/2Moons,mimikri/2Moons-1.8-mods,mimikri/2Moons-1.8-mods,mimikri/2Moons-1.8-mods,mimikri/2Moons-1.8-mods,jkroepke/2Moons,jkroepke/2Moons,mimikri/2Moons-1.8-mods |
d698efeace968655423f8e459169e26aac9081dd | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.1
script: bundle exec rake
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0
- 2.1
- 2.2
script: bundle exec rake
| Test on Ruby 2.2 and auto test on patched versions | Test on Ruby 2.2 and auto test on patched versions | YAML | mit | someara/docker-api,pwnall/docker-api,ComputeStacks/docker-api,molisoft/docker-api,swipely/docker-api,Ye-Yong-Chi/docker-api,chasebolt/docker-api,njd5475/docker-api,ComputeStacks/docker-api,someara/docker-api,alexandrz/docker-api,moritzheiber/docker-api,aratak/docker-api,ably-forks/docker-api,swipely/docker-api,chasebolt/docker-api,moritzheiber/docker-api,jefflaplante/docker-api,BWITS/docker-api |
13e2268061aa989ed841f7fdff145b8141b0611a | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.4.5
- 2.5.3
- ruby-head
cache:
bundler: true
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
script:
- bundle exec rake
| language: ruby
sudo: false
rvm:
- 2.5.3
- ruby-head
cache:
bundler: true
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
script:
- bundle exec rake
| Remove Ruby 2.4 from the test matrix | Remove Ruby 2.4 from the test matrix
Rails 6 will require Ruby 2.5 or newer. See rails/rails#34754.
| YAML | mit | repinel/rails,tgxworld/rails,bogdanvlviv/rails,lcreid/rails,Vasfed/rails,rails/rails,jeremy/rails,Stellenticket/rails,betesh/rails,schuetzm/rails,MSP-Greg/rails,eileencodes/rails,rails/rails,joonyou/rails,shioyama/rails,starknx/rails,rafaelfranca/omg-rails,repinel/rails,yawboakye/rails,prathamesh-sonpatki/rails,yhirano55/rails,rails/rails,eileencodes/rails,kddeisz/rails,tgxworld/rails,esparta/rails,MSP-Greg/rails,Vasfed/rails,yalab/rails,Envek/rails,yhirano55/rails,kmcphillips/rails,Envek/rails,EmmaB/rails-1,eileencodes/rails,yhirano55/rails,kddeisz/rails,Stellenticket/rails,bogdanvlviv/rails,iainbeeston/rails,BlakeWilliams/rails,joonyou/rails,Envek/rails,prathamesh-sonpatki/rails,bogdanvlviv/rails,tgxworld/rails,EmmaB/rails-1,esparta/rails,vipulnsward/rails,starknx/rails,tjschuck/rails,yalab/rails,arunagw/rails,flanger001/rails,gauravtiwari/rails,arunagw/rails,utilum/rails,BlakeWilliams/rails,fabianoleittes/rails,flanger001/rails,mechanicles/rails,yahonda/rails,Vasfed/rails,MSP-Greg/rails,palkan/rails,georgeclaghorn/rails,gauravtiwari/rails,iainbeeston/rails,Stellenticket/rails,fabianoleittes/rails,EmmaB/rails-1,vipulnsward/rails,kmcphillips/rails,arunagw/rails,notapatch/rails,rails/rails,fabianoleittes/rails,betesh/rails,yalab/rails,yalab/rails,fabianoleittes/rails,tjschuck/rails,kmcphillips/rails,Edouard-chin/rails,tjschuck/rails,Erol/rails,yawboakye/rails,yawboakye/rails,Erol/rails,georgeclaghorn/rails,MSP-Greg/rails,Erol/rails,rafaelfranca/omg-rails,arunagw/rails,lcreid/rails,notapatch/rails,Edouard-chin/rails,Vasfed/rails,lcreid/rails,Edouard-chin/rails,schuetzm/rails,utilum/rails,yhirano55/rails,jeremy/rails,kmcphillips/rails,prathamesh-sonpatki/rails,Envek/rails,Edouard-chin/rails,Stellenticket/rails,joonyou/rails,vipulnsward/rails,flanger001/rails,eileencodes/rails,joonyou/rails,tgxworld/rails,bogdanvlviv/rails,betesh/rails,esparta/rails,georgeclaghorn/rails,yahonda/rails,repinel/rails,palkan/rails,notapatch/rails,jeremy/rails,shioyama/rails,BlakeWilliams/rails,gauravtiwari/rails,utilum/rails,prathamesh-sonpatki/rails,shioyama/rails,kddeisz/rails,notapatch/rails,starknx/rails,georgeclaghorn/rails,mechanicles/rails,schuetzm/rails,yawboakye/rails,mechanicles/rails,rafaelfranca/omg-rails,Erol/rails,mechanicles/rails,palkan/rails,schuetzm/rails,flanger001/rails,palkan/rails,kddeisz/rails,BlakeWilliams/rails,tjschuck/rails,lcreid/rails,jeremy/rails,esparta/rails,iainbeeston/rails,repinel/rails,betesh/rails,utilum/rails,vipulnsward/rails,yahonda/rails,shioyama/rails,iainbeeston/rails,yahonda/rails |
c6bc7f9a0dce192c0dfc81ba41aede05971b7093 | .travis.yml | .travis.yml | language: elixir
notifications:
recipients:
- klaus.alfert@gmail.com
otp_release:
- 19.1
elixir:
- 1.4.0
before_script:
- mix local.hex --force
- mix local.rebar --force
script: "MIX_ENV=test MIX_TARGET=host mix do deps.get, deps.compile, test"
#after_script:
# - MIX_ENV=docs mix deps.get
# - MIX_ENV=docs mix inch.report
| language: elixir
notifications:
recipients:
- klaus.alfert@gmail.com
otp_release:
- 19.1
elixir:
- 1.4.0
before_script:
- mix local.hex --force
- mix local.rebar --force
- mix archive.install https://github.com/nerves-project/archives/raw/master/nerves_bootstrap.ez
script: "MIX_ENV=test MIX_TARGET=host mix do deps.get, deps.compile, test"
#after_script:
# - MIX_ENV=docs mix deps.get
# - MIX_ENV=docs mix inch.report
| Load nerves_bootstrap to complete the mix environment for Nerves | Load nerves_bootstrap to complete the mix environment for Nerves
| YAML | apache-2.0 | alfert/nerves_bluetooth,alfert/nerves_bluetooth |
684261ec879b5b776436eb55c20e2d03b94d541a | .travis.yml | .travis.yml | sudo: false
dist: xenial
language: php
cache:
yarn: true
directories:
- $HOME/.composer/cache/files
env:
global:
- XDEBUG_MODE=coverage
branches:
only:
- master
- develop
php:
- 8.0.9
before_install:
# Install nvm for nodejs
- nvm install 16
- nvm use 16
# Install yarn
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=vendor/bin:node_modules/.bin:$HOME/.yarn/bin:$PATH
before_script:
# Install dependencies and build the project
- make yarn
- make composerinstalldev
- make build
script:
- make generatekey
- make phplintdry
- make stylelint
- make runtests
- mkdir -p build/logs
- php vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_success:
- travis_retry php vendor/bin/php-coveralls
| sudo: false
dist: xenial
language: php
cache:
yarn: true
directories:
- $HOME/.composer/cache/files
branches:
only:
- master
- develop
php:
- 8.0.9
before_install:
# Install nvm for nodejs
- nvm install 16
- nvm use 16
# Install yarn
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=vendor/bin:node_modules/.bin:$HOME/.yarn/bin:$PATH
before_script:
# Install dependencies and build the project
- make yarn
- make composerinstalldev
- make build
script:
- make generatekey
- make phplintdry
- make stylelint
- make runtests
- mkdir -p build/logs
- XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_success:
- travis_retry php vendor/bin/php-coveralls
| Set the debug mode inline with the phpunit coverage | Set the debug mode inline with the phpunit coverage
| YAML | mit | waynestate/base-site,waynestate/base-site |
2f656146a7a47192ce664c3a889349777d92e467 | .travis.yml | .travis.yml | language: php
cache:
directories:
- $HOME/.composer/cache
- $HOME/.npm
install:
- composer install
- mysql -e 'CREATE DATABASE flarum_test;'
before_script:
- echo 'error_reporting = E_ALL' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
script:
- composer test:setup
- composer test
jobs:
include:
- php: 7.1
env: DB=mysql
- php: 7.2
env: DB=mysql
- php: 7.3
env: DB=mysql
- php: 7.1
addons:
mariadb: '10.2'
env: DB=mariadb
- php: 7.2
addons:
mariadb: '10.2'
env: DB=mariadb
- php: 7.3
addons:
mariadb: '10.2'
env: DB=mariadb
- php: 7.2
env: DB=mysql PREFIX=forum_
- stage: build
language: generic
if: branch = master AND type = push
install: skip
script: bash .travis/build.sh
-k $encrypted_678139e2bc67_key
-i $encrypted_678139e2bc67_iv
after_success: skip
| language: php
cache:
directories:
- $HOME/.composer/cache
- $HOME/.npm
install:
- composer install
- mysql -e 'CREATE DATABASE flarum_test;'
before_script:
- echo 'error_reporting = E_ALL' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
script:
- composer test:setup
- composer test
jobs:
include:
- php: 7.1
env: DB=mysql
- php: 7.2
env: DB=mysql
- php: 7.3
env: DB=mysql
- php: 7.1
addons:
mariadb: '10.2'
env: DB=mariadb
- php: 7.2
addons:
mariadb: '10.2'
env: DB=mariadb
- php: 7.3
addons:
mariadb: '10.2'
env: DB=mariadb
- php: 7.2
env: DB=mysql PREFIX=forum_
- php: 7.4snapshot
env: DB=mysql
- php: 7.4snapshot
addons:
mariadb: '10.2'
env: DB=mariadb
- stage: build
language: generic
if: branch = master AND type = push
install: skip
script: bash .travis/build.sh
-k $encrypted_678139e2bc67_key
-i $encrypted_678139e2bc67_iv
after_success: skip
| Test against the upcoming PHP 7.4 | Travis: Test against the upcoming PHP 7.4
| YAML | mit | datitisev/core,flarum/core,datitisev/core,datitisev/core,datitisev/core,flarum/core,flarum/core |
605308fb8dc9f6f68cdeddc3d9d0fee86b3a55e8 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '5'
- '4'
- '0.10'
install:
- npm install -g grunt-cli
- npm install
matrix:
fast_finish: true
deploy:
provider: npm
email: steven.jmiller@gmail.com
api_key:
secure: fmpyRWvvE/82GIk6AaIasVHKeKbEwRQT3cUZp0aJjxHbTnvRafYD+tTGJhNaDY/cNOir13N2DbKwznPugGpv2aFaQ+NJcU2smbedI+bhtpMoxGZSJyigITDqBJP7i895xRAR3wuKwPz5v370dZUif0f+kioIJEnrhxlXGC91VGU=
on:
tags: true
repo: yargalot/grunt-accessibility
branch: master
| sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
install:
- npm install -g grunt-cli
- npm install
matrix:
fast_finish: true
deploy:
provider: npm
email: steven.jmiller@gmail.com
api_key:
secure: fmpyRWvvE/82GIk6AaIasVHKeKbEwRQT3cUZp0aJjxHbTnvRafYD+tTGJhNaDY/cNOir13N2DbKwznPugGpv2aFaQ+NJcU2smbedI+bhtpMoxGZSJyigITDqBJP7i895xRAR3wuKwPz5v370dZUif0f+kioIJEnrhxlXGC91VGU=
on:
tags: true
repo: yargalot/grunt-accessibility
branch: master
| Remove non supported versions of node | Remove non supported versions of node
| YAML | mit | yargalot/grunt-accessibility,yargalot/grunt-accessibility |
404607b319c92ccc9e817b60c39da0fa85bd1987 | .travis.yml | .travis.yml | language: go
# Versions of go that are explicitly supported.
go:
- 1.4.3
- 1.5.4
- 1.6.3
- 1.7.3
- tip
# Required for coverage.
before_install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- go build -a -v ./...
- diff <(gofmt -d .) <("")
- go test -v -covermode=count -coverprofile=coverage.out
- $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci
| language: go
# Versions of go that are explicitly supported.
go:
- 1.6.3
- 1.7.3
- 1.8.x
- tip
# Required for coverage.
before_install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- go build -a -v ./...
- diff <(gofmt -d .) <("")
- go test -v -covermode=count -coverprofile=coverage.out
- $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci
| Drop Travis builds for old golangs < 1.6 | Drop Travis builds for old golangs < 1.6
Also add go 1.8
| YAML | bsd-3-clause | bcasinclair/m3u8,grafov/m3u8 |
fed0cf8b99e292873d08435930a56515b346cdc4 | .travis.yml | .travis.yml | ---
language: go
go:
- 1.9.x
jobs:
include:
- stage: format check
script: ./fmtpolice
- stage: tests
script: go test -v ./...
- stage: integration tests
script: go test -tags integration -v ./...
if: branch = master
notifications:
email:
recipients:
- webteam@himalayaninstitute.org
on_success: never
on_failure: change
| ---
language: go
go:
- 1.9.x
jobs:
include:
- stage: format check
script: ./fmtpolice
- stage: tests
script: go test -v ./...
- stage: integration tests
script: go test -tags integration -v ./...
if: type != pull_request
notifications:
email:
recipients:
- webteam@himalayaninstitute.org
on_success: never
on_failure: change
| Update Travis CI yml so integration tests don't run on pull requests | Update Travis CI yml so integration tests don't run on pull requests
| YAML | mit | himalayan-institute/zoom-lib-golang,himalayan-institute/zoom-lib-golang |
d7b61f5b5dd469c4770e202409e9b8153cca336a | .travis.yml | .travis.yml | dist: trusty
language: node_js
node_js:
- "node"
- "6"
install:
- npm install
script: npm run build
after_success:
- npm run-script doc
- echo 'node_modules' > .gitignore
- cp node_modules/openlayers/dist/ol-debug.js dist/ol-debug.js
- echo 'ole.geops.de' > CNAME
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
on:
branch: master
node: 'node'
| dist: trusty
language: node_js
node_js:
- 8
- 6
- 4
before_install:
- npm install -g npm
- npm install -g greenkeeper-lockfile@1
install:
- npm install
before_script: greenkeeper-lockfile-update
script: npm run build
# Only the node version 6 job will upload the lockfile
after_script: greenkeeper-lockfile-upload
after_success:
- npm run-script doc
- echo 'node_modules' > .gitignore
- cp node_modules/openlayers/dist/ol-debug.js dist/ol-debug.js
- echo 'ole.geops.de' > CNAME
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
on:
branch: master
node: '8'
| Add greenkeeper-lockfile to the tavis workflow | Add greenkeeper-lockfile to the tavis workflow
| YAML | bsd-2-clause | geops/ole2,geops/ole2 |
aced046558c6b22012bf43bd17347d3b3a2a5729 | .travis.yml | .travis.yml | language: python
R:
- "3.2.4"
python:
- "2.7"
branches:
only:
- dev
addons:
apt:
sources:
- r-packages-precise
packages:
- r-base
r_packages:
- randomForest
# Setup anaconda
install:
# - sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda create -q -n test-environment atlas numpy scipy nose cython pandas
- source activate test-environment
- pip install rpy2
script: "nosetests tests"
| language: python
R:
- "3.2.4"
python:
- "2.7"
branches:
only:
- dev
addons:
apt:
sources:
- r-packages-precise
packages:
- r-base
r_packages:
- randomForest
# Setup anaconda
install:
# - sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda create -q -n test-environment atlas numpy scipy nose cython pandas scikit-learn
- source activate test-environment
- pip install rpy2
script: "nosetests tests"
| Add scikit-learn to install list | Add scikit-learn to install list
| YAML | apache-2.0 | KarchinLab/2020plus,KarchinLab/2020plus |
972c5fdb50e53645c20fc87f981e4cd98fab464b | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0
- 2.1.8
- 2.2.4
- 2.3.0
- jruby-9.0.4.0
- rbx
matrix:
allow_failures:
- rvm: rbx
before_install: gem install bundler -v "~> 1.11"
script: bundle exec rake spec
| language: ruby
rvm:
- 2.0
- 2.1.8
- 2.2.4
- 2.3.0
- jruby-9.0.5.0
- rbx
matrix:
allow_failures:
- rvm: rbx
before_install: gem install bundler -v "~> 1.11"
script: bundle exec rake spec
| Update JRuby version for Travis | Update JRuby version for Travis
Test JRuby 9.0.5.0 on Travis.
| YAML | mit | ahamlinman/peribot |
94317bf730dbd4c4606fc43938a861eb0ab7bfc0 | .travis.yml | .travis.yml | language: node_js
node_js:
- '8'
sudo: false
cache:
directories:
- node_modules
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++-4.9-dev
install: true
script:
- make build
after_success: npm i coveralls && $(npm bin)/nyc report --reporter=text-lcov | $(npm bin)/coveralls
| language: node_js
node_js:
- '10'
sudo: false
cache:
directories:
- node_modules
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++-4.9-dev
install: true
script:
- make build
# disabled temporary
# after_success: npm i coveralls && $(npm bin)/nyc report --reporter=text-lcov | $(npm bin)/coveralls
| Adjust node version on CI | :+1: Adjust node version on CI
| YAML | mit | keik/gh,keik/gh,keik/gh |
b721717f0fb6a8269416e5dd1d605fdf7cf4bc1e | .travis.yml | .travis.yml | language: ruby
branches:
except:
- gh-pages
rvm:
- 2.1.1
- 2.1.0
- 2.0.0
before_install:
- pwd
- wget http://ipecho.net/plain -O - -q ; echo # print out external ip
- sudo apt-get install chromium-browser unzip
- wget http://chromedriver.storage.googleapis.com/2.9/chromedriver_linux64.zip -P ~
- unzip ~/chromedriver_linux64.zip -d ~
- chmod +x ~/chromedriver
- sudo ln -s ~/chromedriver /usr/local/bin/chromedriver
- sudo ln -s ~/chromedriver /usr/bin/chromedriver
- which chromedriver
- gem update --system
- gem update
- gem install sass compass jekyll kramdown cucumber selenium-webdriver
- gem --version
- sass --version
- compass --version
- firefox --version
- phantomjs --version
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
- compass compile ./assets/css/
- rake jekyll detach=true
- sleep 3 # give Web server some time to bind to sockets, etc
script:
- rake unittests
- rake cucumber | language: ruby
branches:
except:
- gh-pages
rvm:
- 2.1.1
- 2.1.0
- 2.0.0
before_install:
- pwd
- wget http://ipecho.net/plain -O - -q ; echo # print out external ip
- sudo apt-get install chromium-browser unzip
- wget http://chromedriver.storage.googleapis.com/2.9/chromedriver_linux64.zip -P /tmp
- unzip /tmp/chromedriver_linux64.zip -d /tmp
- chmod +x /tmp/chromedriver
- sudo ln -s /tmp/chromedriver /usr/local/share/chromedriver
- sudo ln -s /tmp/chromedriver /usr/local/bin/chromedriver
- sudo ln -s /tmp/chromedriver /usr/bin/chromedriver
- which chromedriver
- gem update --system
- gem update
- gem install sass compass jekyll kramdown cucumber selenium-webdriver
- gem --version
- sass --version
- compass --version
- firefox --version
- phantomjs --version
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
- compass compile ./assets/css/
- rake jekyll detach=true
- sleep 3 # give Web server some time to bind to sockets, etc
script:
- rake unittests
- rake cucumber | Use /tmp instead of ~ for downloading chromedriver | Use /tmp instead of ~ for downloading chromedriver
| YAML | mit | SeabookChen/seabookchen.net,SeabookChen/seabookchen.net |
7e67886f3a7f8b690cfba991a852e34dfdd7780a | .travis.yml | .travis.yml | language: php
php:
- '5.6'
- '7.0'
- '7.1'
before_script:
- nvm install 7
- nvm use 7
- npm i -g npm@5
- npm i -g gulp
- npm i
- touch tests.db
- chmod a+w tests.db
script:
- ./src/api/vendor/phpunit/phpunit/phpunit -c test/api/phpunit.xml
- gulp test-app && gulp coverage
after_success:
- echo -e "<?php\n print phpversion();" > version.php
- curl "https://raw.githubusercontent.com/andreafabrizi/Dropbox-Uploader/master/dropbox_uploader.sh" -o dropbox_uploader.sh
- chmod +x dropbox_uploader.sh
- ./dropbox_uploader.sh -f /dev/null upload coverage/api coverage-$(php version.php)/
- ./dropbox_uploader.sh -f /dev/null upload coverage/app coverage-$(php version.php)/
| language: php
php:
- '5.6'
- '7.0'
- '7.1'
before_script:
- nvm install 5
- nvm use 5
- npm i -g npm@5
- npm i -g gulp
- npm i
- touch tests.db
- chmod a+w tests.db
script:
- ./src/api/vendor/phpunit/phpunit/phpunit -c test/api/phpunit.xml
- gulp test-app && gulp coverage
after_success:
- echo -e "<?php\n print phpversion();" > version.php
- curl "https://raw.githubusercontent.com/andreafabrizi/Dropbox-Uploader/master/dropbox_uploader.sh" -o dropbox_uploader.sh
- chmod +x dropbox_uploader.sh
- ./dropbox_uploader.sh -f /dev/null upload coverage/api coverage-$(php version.php)/
- ./dropbox_uploader.sh -f /dev/null upload coverage/app coverage-$(php version.php)/
| Switch to older Node version for CI | Switch to older Node version for CI
| YAML | mit | kiswa/TaskBoard,kiswa/TaskBoard,kiswa/TaskBoard,kiswa/TaskBoard,kiswa/TaskBoard |
54ba32bafa4d905cdea658085560f27168aaded7 | .travis.yml | .travis.yml | language: python
sudo: false
cache:
directories:
- $HOME/.cache/pip
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
# - "3.7-dev" -- to be added when beta is out - see https://www.python.org/dev/peps/pep-0537/#id6
- "pypy-5.4.1"
install:
- travis_retry pip install -r requirements.txt
- travis_retry pip install -r test-requirements.txt
- travis_retry pip install coveralls coverage nose-cov
- echo TRAVIS_PYTHON_VERSION=${TRAVIS_PYTHON_VERSION}
- if [ ${TRAVIS_PYTHON_VERSION:0:1} != "3" ]; then travis_retry pip install contextlib2; fi
- python setup.py --version
# Run test
script:
- if [ $TRAVIS_PYTHON_VERSION == "3.4" ]; then nosetests -v --with-cov --cov streamparse --cov-config .coveragerc --logging-level=DEBUG; fi
- if [ $TRAVIS_PYTHON_VERSION != "3.4" ]; then nosetests -v --logging-level=DEBUG; fi
# Calculate coverage on success
after_success:
- if [ $TRAVIS_PYTHON_VERSION == "3.4" ]; then coveralls; fi
| language: python
sudo: false
cache:
directories:
- $HOME/.cache/pip
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
# - "3.7-dev" -- to be added when beta is out - see https://www.python.org/dev/peps/pep-0537/#id6
- "pypy-5.4.1"
install:
- travis_retry pip install --upgrade pip setuptools
- travis_retry pip install -r requirements.txt
- travis_retry pip install -r test-requirements.txt
- travis_retry pip install coveralls coverage nose-cov
- echo TRAVIS_PYTHON_VERSION=${TRAVIS_PYTHON_VERSION}
- if [ ${TRAVIS_PYTHON_VERSION:0:1} != "3" ]; then travis_retry pip install contextlib2; fi
- python setup.py --version
# Run test
script:
- if [ $TRAVIS_PYTHON_VERSION == "3.4" ]; then nosetests -v --with-cov --cov streamparse --cov-config .coveragerc --logging-level=DEBUG; fi
- if [ $TRAVIS_PYTHON_VERSION != "3.4" ]; then nosetests -v --logging-level=DEBUG; fi
# Calculate coverage on success
after_success:
- if [ $TRAVIS_PYTHON_VERSION == "3.4" ]; then coveralls; fi
| Fix crash when compiliing ruamel.yaml on Travis with Python 3.4 and 3.3 | Fix crash when compiliing ruamel.yaml on Travis with Python 3.4 and 3.3
| YAML | apache-2.0 | codywilbourn/streamparse,codywilbourn/streamparse,Parsely/streamparse,Parsely/streamparse |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.