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
|
---|---|---|---|---|---|---|---|---|---|
7a914b570fd4b2f3e41ad422185482746948887d
|
.travis.yml
|
.travis.yml
|
language: ruby
bundler_args: --without development
rvm:
- 1.9.3
- 2.1
- 2.0
- 2.2
- rbx-2
- jruby-19mode
before_script:
- sudo apt-get update -qq
- sudo apt-get install -qq libreoffice
- wget http://78.108.103.11/MIRROR/ftp/GraphicsMagick/1.3/GraphicsMagick-1.3.18.tar.gz
- tar -xvf GraphicsMagick-1.3.18.tar.gz
- cd GraphicsMagick-1.3.18
- ./configure
- make
- sudo make install
- /usr/lib/libreoffice/program/soffice.bin --nologo --headless --invisible --norestore --nolockcheck --convert-to pdf test/support/files/example.doc || true
script:
- bundle exec rake
matrix:
fast_finish: true
allow_failures:
- rvm: rbx-2
- rvm: jruby-19mode
notifications:
email: false
addons:
code_climate:
repo_token: 6e49c9e59b6593fc1eb510222536706a1ab6fbbed3a50747f597a1d4ed74d511
|
language: ruby
bundler_args: --without development
rvm:
- 1.9.3
- 2.1
- 2.0
- 2.2
- rbx-2
- jruby-19mode
before_script:
- sudo apt-get update -qq
- sudo apt-get install -qq libreoffice
- wget http://78.108.103.11/MIRROR/ftp/GraphicsMagick/1.3/GraphicsMagick-1.3.20.tar.gz
- tar -xvf GraphicsMagick-1.3.20.tar.gz
- cd GraphicsMagick-1.3.20
- ./configure
- make
- sudo make install
- /usr/lib/libreoffice/program/soffice.bin --nologo --headless --invisible --norestore --nolockcheck --convert-to pdf test/support/files/example.doc || true
script:
- bundle exec rake
matrix:
fast_finish: true
allow_failures:
- rvm: rbx-2
- rvm: jruby-19mode
notifications:
email: false
addons:
code_climate:
repo_token: 6e49c9e59b6593fc1eb510222536706a1ab6fbbed3a50747f597a1d4ed74d511
|
Update GraphicsMagick to 1.3.20 on Travis
|
Update GraphicsMagick to 1.3.20 on Travis
|
YAML
|
mit
|
antoinelyset/poleica
|
974ed7f49ce930af5e519d00b93c2b0b19578bc7
|
.travis.yml
|
.travis.yml
|
sudo: false
dist: trusty
language: generic
addons:
apt:
sources:
- llvm-toolchain-trusty-4.0
- sourceline: "ppa:ricotz/toolchain"
packages:
- "clang-4.0"
- "lldb-4.0"
- "lld-4.0"
- "nasm"
- "python2.7"
- "ninja-build"
before_install:
- mkdir -p $HOME/.toolchain
- ln -s `which clang-4.0` $HOME/.toolchain/clang
- ln -s `which clang++-4.0` $HOME/.toolchain/clang++
- export PATH=$HOME/.toolchain:$PATH
install:
- curl -L https://github.com/twrl/generate-ninja/releases/download/r2/gn > $HOME/.toolchain/gn
- chmod +x $HOME/.toolchain/gn
before_script:
- gn gen out
script:
- ninja -C out -k 10
|
sudo: false
dist: trusty
language: generic
addons:
apt:
sources:
- llvm-toolchain-trusty-4.0
- sourceline: "ppa:ricotz/toolchain"
packages:
- "clang-4.0"
- "lldb-4.0"
- "lld-4.0"
- "nasm"
- "python2.7"
- "ninja-build"
before_install:
- mkdir -p $HOME/.toolchain
- ln -s `which clang-4.0` $HOME/.toolchain/clang
- ln -s `which clang++-4.0` $HOME/.toolchain/clang++
- export PATH=$HOME/.toolchain:$PATH
install:
- curl -L https://github.com/twrl/generate-ninja/releases/download/r2/gn > $HOME/.toolchain/gn
- chmod +x $HOME/.toolchain/gn
before_script:
- gn gen out
script:
- ninja -C out -k 10 -v
|
Build owlevel only for a while
|
Build owlevel only for a while
|
YAML
|
mit
|
twrl/conurbation,twrl/conurbation,twrl/conurbation
|
040c78853be61b5ad58bb6f154844e8cb728585c
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.4"
- "3.6"
install:
- sudo apt install -y gcc g++
- pip install flake8 cpplint
script:
- flake8
- cpplint $(find . -regextype egrep -regex '(.+\.c$|.+\.cpp)$')
- ./run-all.sh
notifications:
email: false
|
language: python
python:
- "3.4"
- "3.6"
install:
- sudo apt install -y gcc g++
- pip install flake8 cpplint
script:
- flake8
- cpplint --filter="-legal/copyright" \
$(find . -regextype egrep -regex '(.+\.c$|.+\.cpp)$')
- ./run-all.sh
notifications:
email: false
|
Remove copyright warning on lint
|
Remove copyright warning on lint
|
YAML
|
mit
|
deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground
|
2203f81c381009bfe70b3ce02d4f3a8695620c6a
|
.travis.yml
|
.travis.yml
|
dist: xenial
language: c
matrix:
include:
- os: linux
after_success:
- bash .ci/deploy-docs.sh
- os: linux
compiler: clang
- os: osx
install:
- export XML_CATALOG_FILES="/usr/local/etc/xml/catalog" # for the docs
before_script:
- ./autogen.sh
- ./configure --enable-gtk-doc
script:
- make check || (cat `find . -name '*.log'` && false)
- make distcheck
addons:
apt:
packages:
- libfreetype6-dev
- libharfbuzz-dev
- libfribidi-dev
- gtk-doc-tools
homebrew:
packages:
- freetype
- fribidi
- gtk-doc
- harfbuzz
|
dist: xenial
language: c
matrix:
include:
- os: linux
after_success:
- bash .ci/deploy-docs.sh
- os: linux
compiler: clang
- os: osx
install:
- export XML_CATALOG_FILES="/usr/local/etc/xml/catalog" # for the docs
before_script:
- ./autogen.sh
- ./configure --enable-gtk-doc
script:
- make check || (cat `find . -name 'test-suite.log'` && false)
- make distcheck
addons:
apt:
packages:
- libfreetype6-dev
- libharfbuzz-dev
- libfribidi-dev
- gtk-doc-tools
homebrew:
packages:
- freetype
- fribidi
- gtk-doc
- harfbuzz
|
Print only test logs on failure
|
Print only test logs on failure
|
YAML
|
mit
|
HOST-Oman/libraqm,HOST-Oman/libraqm,HOST-Oman/libraqm
|
07a119ba99329840358179156b5a89f1217747eb
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- "6"
- "7"
|
language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
|
Drop support for Node.js < v4
|
Breaking: Drop support for Node.js < v4
|
YAML
|
mit
|
btmills/queue
|
88f8824e1c606f4e0006434f8d4cc4cdfec64ab8
|
.travis.yml
|
.travis.yml
|
# Config file for automatic testing at travis-ci.org
language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- "python setup.py sdist"
- "mkdir tmp"
- "cd tmp"
- "pip install --upgrade pip"
- "pip install $(echo ../dist/skyfield-*.tar.gz)'[tests]'"
- "pip install https://github.com/brandon-rhodes/assay/archive/master.zip"
- "pip install unittest2"
- "curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de405.bsp"
- "curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de421.bsp"
script:
- "assay --batch skyfield.tests"
- "./test-docs.sh"
|
# Config file for automatic testing at travis-ci.org
language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- "python setup.py sdist"
- "mkdir tmp"
- "cd tmp"
- "pip install --upgrade pip"
- "pip install $(echo ../dist/skyfield-*.tar.gz)'[tests]'"
- "pip install https://github.com/brandon-rhodes/assay/archive/master.zip"
- "pip install unittest2"
- "curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de405.bsp"
- "curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de421.bsp"
script:
- "assay --batch skyfield.tests"
- "cd .."
- "mv tmp/*.bsp skyfield/documentation"
- "./test-docs.sh"
|
Change directory, set files up for doctests
|
Change directory, set files up for doctests
|
YAML
|
mit
|
skyfielders/python-skyfield,skyfielders/python-skyfield
|
bfe52b4632e60470f380582cc29ec54840116972
|
.travis.yml
|
.travis.yml
|
language: go
go:
- "1.10"
- "1.11"
- "1.12"
dist: xenial
sudo: required
before_install:
- echo KERNEL==\"uinput\", GROUP=\"$USER\", MODE:=\"0660\" | sudo tee /etc/udev/rules.d/99-$USER.rules
- sudo udevadm trigger
|
language: go
go:
- "1.11"
- "1.12"
- "1.13"
dist: xenial
sudo: required
before_install:
- echo KERNEL==\"uinput\", GROUP=\"$USER\", MODE:=\"0660\" | sudo tee /etc/udev/rules.d/99-$USER.rules
- sudo udevadm trigger
|
Support go 1.11 - go 1.13
|
Support go 1.11 - go 1.13
|
YAML
|
mit
|
bendahl/uinput,ben-bensdevzone/uinput,ben-bensdevzone/uinput
|
3d4d3fa8eaae79c656fef9fa20727abc873ba966
|
.travis.yml
|
.travis.yml
|
language: python
install: pip install tox
env:
- TOX_ENV=docs
- TOX_ENV=py27-flake8
- TOX_ENV=py26-virtualenv-17x
- TOX_ENV=py26-virtualenv-18x
- TOX_ENV=py26-virtualenv-19x
- TOX_ENV=py26-virtualenv-150x
- TOX_ENV=py26-virtualenv-151x
- TOX_ENV=py27-virtualenv-17x
- TOX_ENV=py27-virtualenv-18x
- TOX_ENV=py27-virtualenv-19x
- TOX_ENV=py27-virtualenv-150x
- TOX_ENV=py27-virtualenv-151x
script: tox -e $TOX_ENV
notifications:
email:
- [email protected]
|
language: python
install: pip install tox
env:
- TOX_ENV=docs
- TOX_ENV=py27-flake8
- TOX_ENV=py26-virtualenv-17x
- TOX_ENV=py26-virtualenv-18x
- TOX_ENV=py26-virtualenv-19x
- TOX_ENV=py26-virtualenv-150x
- TOX_ENV=py26-virtualenv-151x
- TOX_ENV=py27-virtualenv-17x
- TOX_ENV=py27-virtualenv-18x
- TOX_ENV=py27-virtualenv-19x
- TOX_ENV=py27-virtualenv-150x
- TOX_ENV=py27-virtualenv-151x
- TOX_ENV=test_build
script: tox -e $TOX_ENV
notifications:
email:
- [email protected]
|
Add a test run called 'test_build'
|
Add a test run called 'test_build'
|
YAML
|
bsd-3-clause
|
PolicyStat/terrarium
|
5e5120b472c824477861012984ed89b82a8ee0ca
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
install:
- composer install
before_script:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
install:
- composer install
before_install:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
|
Enable Redis extension on Travis CI
|
Enable Redis extension on Travis CI
|
YAML
|
mit
|
altmetric/reliable-queue
|
069f44ff491084ea4292d06e208497fe299b7a06
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
env:
- 'RAILS_VERSION=5.1.2'
rvm:
- 2.3.3
matrix:
before_install: gem install bundler -v 1.13.6
script: bundle exec rspec spec
|
language: ruby
sudo: false
bundler_args: --without development
env:
matrix:
- "RAILS_VERSION=5.2"
- "RAILS_VERSION=6.0"
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
script: bundle exec rspec spec
|
Update Travis config with new Ruby and Rails
|
Update Travis config with new Ruby and Rails
|
YAML
|
mit
|
b2beauty/jsonapi-utils,tiagopog/jsonapi-utils,tiagopog/jsonapi-utils,b2beauty/jsonapi-utils
|
fa6cb540daf3e698da1dc5926857b0ea0ff6ff9f
|
.travis.yml
|
.travis.yml
|
language: groovy
|
language: groovy
env:
global:
secure: CpcLbDc7hxsaLkAoZUwyxREUCEkrK8KAStoKvAKiFjyOMjIYBfSMkZVuT1b6XlqOeLrfzC0Ve7gP6SDArvtIpPMHU6iHLSlGgUTk40q9VWt3Qf+uGkzGud7jvzlcGlm2tY4KN/fUpZBTz6Np6tufRJt5bdaCdG2PlhPi3Vsc85Z/h87+dZ1Dpd9Ey8rODnBF63Rs4EsvNmA2ZFmbvisebECJoiQFNaxgD4Jer6FRmD0+4NXJymqvJ1ulMhLvm9bttGeccXv+DXSNpbgp7nQxH/XdYLLRwJmY+SnYJgsvk7Pr/jd57489g55J2H4+VjBsyDTCkuyvu3c41Wo27Ne19XTsQbgAi/oSCFCsoqbDk/m9bZ6i0Bo1uf84jTLAiYlikJyi4Lcn0rbvXciPWGIWm3FzxKGUgK8tEtD41Ht45xIvXBvYP2rNorAG0zJva5iyBSqetqRgG35SBsotaKUZkvZby5adoZugW8CVZfXgfh6PejgiFLRrEINgTHLehKiF4VGwcXq/gyJdvE5Gx/EceuxZXCpE7iAds/dSd6CcTG9UHUN1cRvDWABYI42zWWVRyRf8shh74edLo93a1t7gc4BdOdcOKCd/ZEcQLIG/SQ9QGClmHfVUNG0+DUqlccrDaeJqeFqZzdNyZd+0lhrZGC8xEPI+5r4uB8iLPItaWE8=
|
Add secret API keys for plugins.gradle.org
|
Add secret API keys for plugins.gradle.org
See also https://plugins.gradle.org/docs/submit
|
YAML
|
apache-2.0
|
palantir/gradle-processors
|
25db549f9a5619b1fca887f5d94d1b51d4223872
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.2
- 7.3
- 7.4
- 8.0snapshot
before_script:
- travis_retry composer self-update
- travis_retry composer update --prefer-source --no-interaction
script: vendor/bin/phpunit --verbose
|
language: php
php:
- 7.2
- 7.3
- 7.4
- 8.0
before_script:
- travis_retry composer self-update
- travis_retry composer update --prefer-source --no-interaction
script: vendor/bin/phpunit --verbose
|
Update Travis CI to use PHP 8.0 instead of 8.0snapshot
|
Update Travis CI to use PHP 8.0 instead of 8.0snapshot
|
YAML
|
mit
|
dwightwatson/breadcrumbs,dwightwatson/breadcrumbs
|
fdcc8305f2a8d20b552ded1887bfe88439378ebc
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- stable
- "6"
- "4"
- "0.12"
|
language: node_js
node_js:
- stable
- "6"
- "4"
|
Remove node.js 0.12 from Travis CI
|
Remove node.js 0.12 from Travis CI
|
YAML
|
mit
|
postcss/postcss-scss
|
56c5ed8987a92ad7c4a781faa3cbf11015226a45
|
.travis.yml
|
.travis.yml
|
language: java
sudo: false
dist: trusty
branches:
except:
- gh-pages
before_install:
- unset _JAVA_OPTIONS
install: echo "The default Travis install script is being skipped!"
matrix:
include:
# Java 9
- env: TARGET='-Pjava9'
jdk: openjdk9
# Java 10
- env: TARGET='-Pjava10'
jdk: openjdk10
# Java 11
- env: TARGET='-Pjava10'
jdk: openjdk11
# Java 12
- env: TARGET='-Pjava10'
jdk: openjdk12
# Java 13
- env: TARGET='-Pjava10'
jdk: openjdk-ea
script:
- ./mvnw install ${TARGET} -DskipTests=true -Dmaven.javadoc.skip=true -Dnet.bytebuddy.test.ci=true -pl '!byte-buddy-gradle-plugin'
- ./mvnw jacoco:prepare-agent verify jacoco:report ${TARGET} -Pintegration -Dnet.bytebuddy.test.ci=true -pl '!byte-buddy-gradle-plugin'
|
language: java
sudo: false
dist: trusty
branches:
except:
- gh-pages
before_install:
- unset _JAVA_OPTIONS
install: echo "The default Travis install script is being skipped!"
matrix:
include:
# Java 9
- env: TARGET='-Pjava9'
jdk: openjdk9
# Java 10
- env: TARGET='-Pjava10'
jdk: openjdk10
# Java 11
- env: TARGET='-Pjava10'
jdk: openjdk11
# Java 12
- env: TARGET='-Pjava10'
jdk: openjdk12
# Java 13
- env: TARGET='-Pjava10'
jdk: openjdk-ea
script:
- ./mvnw install ${TARGET} -DskipTests=true -Dmaven.javadoc.skip=true -Dnet.bytebuddy.test.ci=true -pl '!byte-buddy-gradle-plugin' -Dnet.bytebuddy.experimental=true
- ./mvnw jacoco:prepare-agent verify jacoco:report ${TARGET} -Pintegration -Dnet.bytebuddy.test.ci=true -pl '!byte-buddy-gradle-plugin' -Dnet.bytebuddy.experimental=true
script:
- ./mvnw install ${TARGET} -DskipTests=true -Dmaven.javadoc.skip=true -Dnet.bytebuddy.test.ci=true -pl '!byte-buddy-gradle-plugin'
- ./mvnw jacoco:prepare-agent verify jacoco:report ${TARGET} -Pintegration -Dnet.bytebuddy.test.ci=true -pl '!byte-buddy-gradle-plugin'
|
Add experimental flag for Byte Buddy 13.
|
Add experimental flag for Byte Buddy 13.
|
YAML
|
apache-2.0
|
raphw/byte-buddy,raphw/byte-buddy,raphw/byte-buddy
|
99a23d7d539027e5d6af26d3c1f9023721697308
|
.travis.yml
|
.travis.yml
|
---
language: python
python: ["2.7", "3.5"]
dist: trusty
sudo: True
group: beta
services: [docker]
env:
- platform: openbsd60
driver: vagrant
- &openbsd59 platform=openbsd59 driver=vagrant
- platform: xenial
driver: vagrant
- platform: trusty
driver: vagrant
- &jessie platform=jessie driver=vagrant
- &wheezy platform=wheezy driver=vagrant
- driver: docker
platform: all
matrix:
fast_finish: True
allow_failures:
- python: "3.5"
- env: *openbsd59
- env: *jessie
- env: *wheezy
cache:
- pip
- directories:
- $HOME/.pre-commit
install:
- sudo apt-get update
- sudo apt-get install -y linux-headers-$(uname -r) virtualbox
- wget https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1_x86_64.deb
- sudo dpkg -i vagrant_1.9.1_x86_64.deb
- pip install -r tests/requirements.txt | cat
- ansible-galaxy install git+file://$(pwd),$(git rev-parse --abbrev-ref HEAD) -p .molecule/roles
- molecule dependency
script:
- pre-commit run --all-files
- molecule test --driver $driver --platform $platform
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/
email: false
|
---
language: python
python: ["2.7", "3.4"]
dist: trusty
sudo: True
group: beta
services: [docker]
env:
- platform: openbsd60
driver: vagrant
- &openbsd59 platform=openbsd59 driver=vagrant
- platform: xenial
driver: vagrant
- platform: trusty
driver: vagrant
- &jessie platform=jessie driver=vagrant
- &wheezy platform=wheezy driver=vagrant
- driver: docker
platform: all
matrix:
fast_finish: True
allow_failures:
- python: "3.4"
- env: *openbsd59
- env: *jessie
- env: *wheezy
cache:
- pip
- directories:
- $HOME/.pre-commit
install:
- sudo apt-get update
- sudo apt-get install -y linux-headers-$(uname -r) virtualbox
- wget https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1_x86_64.deb
- sudo dpkg -i vagrant_1.9.1_x86_64.deb
- pip install -r tests/requirements.txt | cat
- ansible-galaxy install git+file://$(pwd),$(git rev-parse --abbrev-ref HEAD) -p .molecule/roles
- molecule dependency
script:
- pre-commit run --all-files
- molecule test --driver $driver --platform $platform
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/
email: false
|
Revert "- Try Python 3.5 (molecule dependency fails in Python 3.4)." - didn't help.
|
Revert "- Try Python 3.5 (molecule dependency fails in Python 3.4)." -
didn't help.
This reverts commit e1804d8dc16f9ec12186c570765fdbcaa34e7ad5.
|
YAML
|
mit
|
adarnimrod/example,adarnimrod/users
|
bc9451e52283bee06dabfc01c33ca711a080e2b2
|
.travis.yml
|
.travis.yml
|
language: python
sudo: false
python:
- "2.7"
- "3.4"
- "3.5"
install:
- pip install -qU pip wheel
- pip install -q -U -r requirements_test.txt
script:
- flake8 django_cockatiel tests
- cd tests
- python run_integration_tests.py
cache:
directories:
- $HOME/.cache/pip
|
language: python
sudo: false
python:
- "3.4"
- "3.5"
install:
- pip install -qU pip wheel
- pip install -q -U -r requirements_test.txt
script:
- flake8 django_cockatiel tests
- cd tests
- python run_integration_tests.py
cache:
directories:
- $HOME/.cache/pip
|
Revert "Travis: Test on Python 2.7"
|
Revert "Travis: Test on Python 2.7"
This reverts commit 598835c00bf5babb75a3c037378a2efe823b2db3.
|
YAML
|
apache-2.0
|
raphaelm/django-cockatiel
|
325c483017328ab2c8e16e4c0cbecb72d5fab719
|
.travis.yml
|
.travis.yml
|
---
language: ruby
sudo: false
cache: bundler
bundler_args: --without yard benchmarks
script: "bundle exec rake ci"
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0
- ruby-head
matrix:
include:
- rvm: jruby-19mode
- rvm: jruby-20mode
- rvm: jruby-21mode
- rvm: jruby-head
- rvm: rbx-2
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
branches:
only: master
notifications:
email: false
|
---
language: ruby
sudo: false
cache: bundler
before_install: "gem install bundler -v '< 2.0'"
bundler_args: --without yard benchmarks
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
- jruby-9.1.5.0
- jruby-head
- truffleruby
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.5.0
- rvm: truffleruby
fast_finish: true
branches:
only: master
notifications:
email: false
|
Change to add latest rubies
|
Change to add latest rubies
|
YAML
|
mit
|
peter-murach/splay_tree
|
fab84e5b314dd92114bbbc275870ec94c7074592
|
.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:
- oraclejdk8
|
# 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:
- openjdk8
- oraclejdk8
|
Add OpenJDK 8 to Tarvis build.
|
Add OpenJDK 8 to Tarvis build.
|
YAML
|
apache-2.0
|
apache/commons-dbcp,apache/commons-dbcp,apache/commons-dbcp
|
f63b1cd56d9e8c9c8d4999a78477d311ab1c8635
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.4.3
- 1.5.3
- 1.6
- tip
sudo: false
before_install: 'git fetch --unshallow'
install: 'make deps'
script: 'make test'
matrix:
allow_failures:
- go: tip
- go: 1.4.3
notifications:
irc:
channels:
- "irc.freenode.net#mgmtconfig"
template:
- "%{repository} (%{commit}: %{author}): %{message}"
- "More info : %{build_url}"
on_success: always
on_failure: always
use_notice: false
skip_join: false
email:
- [email protected]
|
language: go
go:
- 1.4.3
- 1.5.3
- 1.6
- tip
sudo: false
before_install: 'git fetch --unshallow'
install: 'make deps'
script: 'make test'
matrix:
allow_failures:
- go: tip
- go: 1.4.3
- go: 1.6
notifications:
irc:
channels:
- "irc.freenode.net#mgmtconfig"
template:
- "%{repository} (%{commit}: %{author}): %{message}"
- "More info : %{build_url}"
on_success: always
on_failure: always
use_notice: false
skip_join: false
email:
- [email protected]
|
Allow 1.6 to fail for now
|
Allow 1.6 to fail for now
I'm going to let 1.6 fail for now until F24 comes out and I can start
testing on 1.6 -- I'd like to be able to test all versions, but I don't
have all the resources to do so right now. If you want to help, please
let me know!
|
YAML
|
agpl-3.0
|
gzsierra/mgmt,gzsierra/mgmt,gzsierra/mgmt
|
927b281a1f3987af179590fab1126f0e0973612b
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- "2.2"
- "2.3.0"
- "2.4.0"
sudo: false
cache: bundler
script: bundle exec rake $TASK
env:
- TASK=test
- TASK=rubocop
|
language: ruby
rvm:
- "2.2"
- "2.3.0"
- "2.4.0"
- "2.5.0"
sudo: false
cache: bundler
script: bundle exec rake $TASK
env:
- TASK=test
- TASK=rubocop
|
Add ruby 2.5.0 to Travis test matrix
|
Add ruby 2.5.0 to Travis test matrix
|
YAML
|
mit
|
abonas/kubeclient,moolitayer/kubeclient
|
acfd74b87247c9f8fcc6defe229fe99378857b7f
|
.travis.yml
|
.travis.yml
|
---
language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.6
env:
- PUPPET_GEM_VERSION="~> 3.0"
- PUPPET_GEM_VERSION="~> 4.0"
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: 2.1.6
env: PUPPET_GEM_VERSION="~> 4.0"
gemfile: .gemfile
bundler_args: --without system_tests
script:
- "bundle exec rake validate"
- "bundle exec rake lint"
- "bundle exec rake spec SPEC_OPTS='--format documentation'"
notifications:
on_success: change
on_failure: change
|
---
sudo: false
language: ruby
gemfile: .gemfile
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0" FUTURE_PARSER="yes"
- rvm: 2.1.6
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes"
script:
- "bundle exec rake validate"
- "bundle exec rake lint"
- "bundle exec rake spec SPEC_OPTS='--format documentation'"
bundler_args: --without system_tests
notifications:
on_success: change
on_failure: change
|
Update Travic CI build matrix
|
Update Travic CI build matrix
|
YAML
|
bsd-2-clause
|
smoeding/puppet-gai,smoeding/puppet-gai
|
9ec47d2292fa23c2ffa859346ae11ff77c9e9d85
|
.travis.yml
|
.travis.yml
|
language: java
jdk: oraclejdk8
notifications:
slack:
on_success: change
on_failure: always
rooms:
- secure: EzlqWTBuhb3FCfApjUXaShWgsWOVDwMXI7ISMiVBkcl2VFISYs/lc/7Qjr7rdy4iqQOQXMcUPHdwMUp0diX+GxiSjLARjUpKIvNOPswZWBL+3Z1h28jyOwtHRviZbM1EU0BZROrr+ODyTNz2lf+L1iXTkpSvk50o5JAnAkumsPw=
|
language: java
jdk: oraclejdk8
before_install:
grep -v '^#' src/main/resources/META-INF/services/bisq.asset.Asset | sort --check --dictionary-order --ignore-case
notifications:
slack:
on_success: change
on_failure: always
rooms:
- secure: EzlqWTBuhb3FCfApjUXaShWgsWOVDwMXI7ISMiVBkcl2VFISYs/lc/7Qjr7rdy4iqQOQXMcUPHdwMUp0diX+GxiSjLARjUpKIvNOPswZWBL+3Z1h28jyOwtHRviZbM1EU0BZROrr+ODyTNz2lf+L1iXTkpSvk50o5JAnAkumsPw=
|
Check bisq.asset.Asset sort order during CI
|
Check bisq.asset.Asset sort order during CI
This check had been set up for some time in the original
bisq-network/bisq-assets repository.
|
YAML
|
agpl-3.0
|
bisq-network/exchange,bitsquare/bitsquare,bitsquare/bitsquare,bisq-network/exchange
|
0d5d06643dfc95f7f4a4e937889d9fb9fb827745
|
.travis.yml
|
.travis.yml
|
language: bash
git:
submodules: false
before_script:
- gem install homesick
script:
- homesick clone "matthiasvegh/dotfiles"
- homesick symlink -f "dotfiles"
- homesick rc --force "dotfiles"
|
language: bash
git:
submodules: false
before_script:
- gem install homesick
script:
- homesick clone --force "matthiasvegh/dotfiles"
- homesick symlink --force "dotfiles"
- homesick rc --force "dotfiles"
|
Add force flags for homesick clone
|
Add force flags for homesick clone
|
YAML
|
mit
|
matthiasvegh/dotfiles
|
774743ea8c290937636ee1f11c3e92b6de781908
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '12'
- '14'
- '15'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
|
language: node_js
node_js:
- '12'
- '14'
- '16'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
|
Build with Node.js 16 on Travis CI.
|
Build with Node.js 16 on Travis CI.
|
YAML
|
mit
|
bigeasy/happenstance
|
62e2c493e66215ed74398ad2c21e1ec534aca646
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: trusty
language: generic
compiler:
- gcc
env:
matrix:
- ROS_DISTRO="kinetic" PRERELEASE=true
install:
- git clone https://github.com/ros-industrial/industrial_ci.git .ci_config
script:
- .ci_config/travis.sh
|
sudo: required
dist: trusty
language: generic
compiler:
- gcc
env:
matrix:
- ROS_DISTRO="melodic" PRERELEASE=true
install:
- git clone https://github.com/ros-industrial/industrial_ci.git .ci_config
script:
- .ci_config/travis.sh
|
Switch Travis to build melodic
|
Switch Travis to build melodic
|
YAML
|
apache-2.0
|
rospilot/rospilot,rospilot/rospilot,rospilot/rospilot,rospilot/rospilot,rospilot/rospilot,rospilot/rospilot
|
6451bc02756ebcb412401450c64ba1ae050f0636
|
stack.yaml
|
stack.yaml
|
# For more information, see: https://github.com/commercialhaskell/stack/blob/release/doc/yaml_configuration.md
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
resolver: lts-5.1
# Local packages, usually specified by relative directory name
packages:
- '.'
# Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3)
extra-deps: []
# Override default flag values for local packages and extra-deps
flags: {}
# Extra package databases containing global packages
extra-package-dbs: []
# Control whether we use the GHC we find on the path
# system-ghc: true
# Require a specific version of stack, using version ranges
# require-stack-version: -any # Default
# require-stack-version: >= 1.0.0
# Override the architecture used by stack, especially useful on Windows
# arch: i386
# arch: x86_64
# Extra directories used by stack for building
# extra-include-dirs: [/path/to/dir]
# extra-lib-dirs: [/path/to/dir]
|
# For more information, see: https://github.com/commercialhaskell/stack/blob/release/doc/yaml_configuration.md
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
resolver: lts-5.2
# Local packages, usually specified by relative directory name
packages:
- '.'
# Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3)
extra-deps: []
# Override default flag values for local packages and extra-deps
flags: {}
# Extra package databases containing global packages
extra-package-dbs: []
# Control whether we use the GHC we find on the path
# system-ghc: true
# Require a specific version of stack, using version ranges
# require-stack-version: -any # Default
# require-stack-version: >= 1.0.0
# Override the architecture used by stack, especially useful on Windows
# arch: i386
# arch: x86_64
# Extra directories used by stack for building
# extra-include-dirs: [/path/to/dir]
# extra-lib-dirs: [/path/to/dir]
|
Switch to Stackage LTS 5.2
|
Switch to Stackage LTS 5.2
|
YAML
|
mit
|
blitzcode/rust-exp
|
73e7acb7481340594ab83b2358e95eefab31f334
|
.travis.yml
|
.travis.yml
|
language: haskell
notifications:
email: true
|
language: haskell
ghc: 7.8
script:
- cabal configure --enable-tests --enable-library-coverage -v2 && cabal build && cabal test
after_script:
- cabal install hpc-coveralls
- hpc-coveralls --exclude-dir=test test
notifications:
email: true
|
Send code coverage report to coveralls.io
|
Send code coverage report to coveralls.io
|
YAML
|
mit
|
michaelficarra/purescript,michaelficarra/purescript
|
9914d69beac38aaf6c8efcd8b6bd112f6cdbf7e7
|
.travis.yml
|
.travis.yml
|
language: python
matrix:
include:
- python: "2.6"
install: true # flake8 no longer supports Python 2.6
before_script: flake8 () { echo flake8 disabled on Python 2.6 ; }
- python: "2.7"
- python: "3.4"
- python: "3.5"
- python: "3.6"
- python: "3.7"
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
install: pip install flake8
script:
- flake8 . --count --show-source --statistics
- cd code; nosetests
|
language: python
matrix:
include:
- python: "2.7"
- python: "3.4"
- python: "3.5"
- python: "3.6"
- python: "3.7"
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
install: pip install flake8
script:
- flake8 . --count --show-source --statistics
- cd code; nosetests
|
Remove Python 2.6 from Travis
|
Remove Python 2.6 from Travis
|
YAML
|
mit
|
drj11/pypng,drj11/pypng
|
6a238f1f636eda4e4c88137dca4e516db2c49680
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.6
- 2.7
- 3.2
- pypy
script: nosetests -v tests/
|
language: python
python:
- 2.6
- 2.7
- 3.2
# - pypy # PyPy builds seem broken on Travis CI
install: pip install -r requirements-dev.txt --use-mirrors
script: nosetests -v tests/
|
Revert to the previous setup, as PyPy builds on Travis seem broken
|
Revert to the previous setup, as PyPy builds on Travis seem broken
|
YAML
|
apache-2.0
|
tempbottle/pykka,jodal/pykka,tamland/pykka
|
4c612c267de15af3a0ae4dc12a39da42e027734b
|
.travis.yml
|
.travis.yml
|
---
language: ruby
sudo: false
cache: bundler
before_install: "gem update bundler"
bundler_args: --without tools
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
- jruby-9.1.5.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
branches:
only: master
notifications:
email: false
|
---
language: ruby
sudo: false
before_install: "gem install bundler -v 1.17.3"
bundler_args: --without tools
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
- jruby-9.1.5.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
branches:
only: master
notifications:
email: false
|
Change to restrict bundler version
|
Change to restrict bundler version
|
YAML
|
mit
|
piotrmurach/tty-prompt,peter-murach/tty-prompt
|
e555afd23b0e32e7f43c2916f553a8c3299cbb14
|
.travis.yml
|
.travis.yml
|
language: node_js
cache:
directories:
- node_modules
branches:
only:
- master
node_js:
- "4.2.1"
script:
- npm run time build && npm run time deploy
|
language: node_js
cache:
directories:
- node_modules
branches:
only:
- master
node_js:
- "4.2.1"
script:
- time npm run build && time npm run deploy
|
Add timer to build and deploy
|
Add timer to build and deploy
|
YAML
|
mit
|
javascriptair/site,javascriptair/site,javascriptair/site
|
8e7430cf29a79fe292ad585eddd8c172a63d4fc5
|
.travis.yml
|
.travis.yml
|
sudo: required
language: sh
services:
- docker
env:
- TEST_SUITE=lint
- TEST_SUITE=test_bash
- TEST_SUITE=test_dash
- TEST_SUITE=test_sh
- TEST_SUITE=test_zsh
script:
- make $TEST_SUITE
after_success:
- make coverage
- bash <(curl -s https://codecov.io/bash)
|
sudo: required
language: sh
services:
- docker
jobs:
include:
- stage: Test
script: make lint
- script: make test_bash
- script: make test_dash
- script: make test_sh
- script: make test_zsh
- script: make coverage
- stage: Coverage Report
script: bash <(curl -s https://codecov.io/bash)
|
Add Travis build stage for coverage report
|
Add Travis build stage for coverage report
|
YAML
|
mit
|
mkropat/shpy
|
4f59832ddfe4b9fb2dde3da42376e1d03d356c37
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
before_script: composer install --no-dev
script: phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
before_script: composer install --no-dev
script: phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
Add HHVM and HHVM nightly to Travis CI builds
|
Add HHVM and HHVM nightly to Travis CI builds
|
YAML
|
mit
|
jmikola/geojson
|
daf7a6517ba8c2eb1c2cfaa3a0e9b33982347797
|
.travis.yml
|
.travis.yml
|
# This deliverately is not "python" as a work-around to support
# multi-os builds with custom Python versions in Travis CI.
language: cpp
os:
- linux
python:
- "2.7"
- "3.4"
- "3.5"
install:
- PYTHON_EXE=python$TRAVIS_PYTHON_VERSION ./setup.py install --user
script:
- PYTHON_EXE=python$TRAVIS_PYTHON_VERSION ./setup.py test
|
language: python
python:
- "2.7"
- "3.4"
- "3.5"
install:
- ./setup.py install
script:
- ./setup.py test
|
Fix the Travis CI matrix build for different Python versions
|
Fix the Travis CI matrix build for different Python versions
Previously, only Python 2.7 was used as the "python" keyword does not
work for the "cpp" language.
Since we are planning to use CircleCI for OS X builds, we can revert
from the "cpp" work-around for Travis to proper Python matrix builds.
|
YAML
|
apache-2.0
|
spdx/tools-python
|
1d1e7de088fec2cf479dd4d7e0985cc80f5ecb49
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
install: pip install tox-travis
script: tox
|
sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "pypy"
install: pip install tox-travis
matrix:
allow_failures:
python:
- "3.6-dev"
- "3.7-dev"
script: tox
|
Test on 3.6-dev and 3.7-dev.
|
Test on 3.6-dev and 3.7-dev.
|
YAML
|
mit
|
richardkiss/pycoin,richardkiss/pycoin
|
b7730359aae8df35a06617197878cadbb9efec78
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "5"
- "5.1"
- "4"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
|
language: node_js
node_js:
- "6"
- "8"
- "10"
- "11"
|
Use up to date Node.JS version when running on Travis
|
Use up to date Node.JS version when running on Travis
|
YAML
|
mit
|
shaharke/shutdown-hook
|
0eac14610cd422ded0e9882530ad4cd8dcaa2281
|
.travis.yml
|
.travis.yml
|
language: python
python: 2.7
os:
- linux
- osx
env:
- TOX_ENV=py27
- TOX_ENV=py34
- TOX_ENV=pypy
install: pip install tox
script: tox -e $TOX_ENV
after_success:
- coveralls
notifications:
email:
- [email protected]
|
language: python
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=py34
- TOX_ENV=pypy
install: pip install tox
script: tox -e $TOX_ENV
after_success:
- coveralls
notifications:
email:
- [email protected]
|
Revert "try building on OSX, why not"
|
Revert "try building on OSX, why not"
This reverts commit 6e4fb1355abbf97107c9c475f732b0c3ea0e6b3b.
|
YAML
|
bsd-2-clause
|
J535D165/jellyfish,pombredanne/jellyfish,pombredanne/jellyfish,gdtm86/jellyfish,jamesturk/jellyfish,J535D165/jellyfish,gdtm86/jellyfish,jamesturk/jellyfish
|
bf1b964f64b904c4fdab1ab51661954bf8e4d728
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.6"
- "3.5"
- "3.6"
script:
- tox
|
language: python
python:
- "2.7"
- "3.5"
- "3.6"
script:
- tox
|
Fix python versions on Travis CI
|
Fix python versions on Travis CI
|
YAML
|
mit
|
rcmachado/pykeepachangelog
|
e2cf84d1ebfb0b46503f907fc4940cc955da1c6d
|
.travis.yml
|
.travis.yml
|
language: ruby
# without --debug, JRuby doesn't support coverage reporting
env:
- JRUBY_OPTS="--debug"
rvm:
- 2.0
- 2.1
- 2.2
- jruby-head
# - ruby-head
|
sudo: false
language: ruby
# without --debug, JRuby doesn't support coverage reporting
env:
- JRUBY_OPTS="--debug"
rvm:
- 2.0
- 2.1
- 2.2
- jruby-head
# - ruby-head
|
Move to new TravisCI container infrastructure for faster build starts
|
Move to new TravisCI container infrastructure for faster build starts
|
YAML
|
mit
|
apiology/quality,apiology/quality,xuwupeng2000/quality,apiology/quality,apiology/quality
|
7f5f27168185670270987fc05f015a077fecf73c
|
.travis.yml
|
.travis.yml
|
sudo: false
dist: xenial
matrix:
include:
- name: "OpenJDK Java 8"
language: java
jdk: openjdk8
os: linux
script: ./gradlew
- name: "OpenJDK Java 11"
language: java
jdk: openjdk11
os: linux
script: ./gradlew
install: ./gradlew assemble --stacktrace
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
|
sudo: false
dist: xenial
matrix:
include:
- name: "OpenJDK Java 8"
language: java
jdk: openjdk8
os: linux
script: ./gradlew
- name: "OpenJDK Java 11"
language: java
jdk: openjdk11
os: linux
script: ./gradlew
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
|
Remove stack trace from install.
|
[Java] Remove stack trace from install.
|
YAML
|
apache-2.0
|
real-logic/Agrona
|
2c62b4e82a09792a18b59ce3d0f894d7698c554f
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-head
- rbx-19mode
gemfile:
- gemfiles/no_doc_gems
script: "bundle exec rake"
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-head
- rbx-19mode
gemfile:
- gemfiles/no_doc_gems
script: "bundle exec rake"
notifications:
hipchat:
rooms:
secure: ykLsXlebzR9nnb+9ttpCySOg2hE4Ve699s2Owd7YahcZyVNxnG4q1P8Mps4jFlOgPNQ6JwkcB4A6QLavavtJlX7vXTDj1GD+zVAScjbtN/6ZV94S2eHA7hBUXHUwBmH0Cw5glrFoPEDBsQdOYbrOrJKwFNEhUTHdY0SRgEXv5Wo=
|
Add notification settings of Travis for WebPay development team
|
Add notification settings of Travis for WebPay development team
|
YAML
|
mit
|
awakia/webpay-ruby
|
31c628a2cdaf07dbd5ee4edafd0323fc570f8b5f
|
.travis.yml
|
.travis.yml
|
dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi"
before_script:
- npm install web-component-tester [email protected] polylint
- $(npm bin)/bower install
- $(npm bin)/polylint --no-recursion
script:
- xvfb-run $(npm bin)/wct
|
dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi"
before_script:
- npm install web-component-tester [email protected] polylint
- $(npm bin)/bower install
- $(npm bin)/polylint --no-recursion
script:
- xvfb-run $(npm bin)/wct
|
Remove the obsolete 'sudo:' setting
|
Remove the obsolete 'sudo:' setting
|
YAML
|
apache-2.0
|
Collaborne/paper-fab-speed-dial
|
a5a46579a327df733c723b48b5c5f50e1d103fc9
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm: 2.2.3
env: CODECLIMATE_REPO_TOKEN=d69084d39be74e8dafe9a689102b19130a21abe963dce8aa6146078098c9b242
before_script:
- mysql -e 'create database jobapps_test'
- cp config/application.yml.example config/application.yml
- cp config/database.yml.example config/database.yml
script: 'bundle exec rake db:reset travis'
notifications:
email:
recipients:
- [email protected]
|
language: ruby
rvm: 2.2.3
env: CODECLIMATE_REPO_TOKEN=d69084d39be74e8dafe9a689102b19130a21abe963dce8aa6146078098c9b242
before_script:
- mysql -e 'create database jobapps_test'
- cp config/application.yml.example config/application.yml
- cp config/database.yml.example config/database.yml
script:
- bundle exec rake db:reset
- bundle exec rake travis
notifications:
email:
recipients:
- [email protected]
|
Fix Travis file to get accurate build status
|
Fix Travis file to get accurate build status
|
YAML
|
mit
|
umts/jobapps,umts/jobapps,umts/jobapps
|
d8a50fbc21873a7d3e1d5c12cd3063da4d16e489
|
.travis.yml
|
.travis.yml
|
dist: focal
language: ruby
sudo: false
services:
- mongodb
- postgresql
gemfile:
- Gemfile
- Gemfile.rails60
- Gemfile.mongo_mapper
rvm:
- 2.5.8
- 2.6.6
- 2.7.1
before_install:
- gem install bundler
env:
global:
- DB_USER=postgres
- DB_PASS=
matrix:
- DB=sqlite3
- DB=postgresql
matrix:
fast_finish: true
exclude:
- gemfile: Gemfile.mongo_mapper
env: DB=postgresql
branches:
only:
- master
notifications:
email: false
|
dist: focal
language: ruby
sudo: false
services:
- mongodb
addons:
postgresql: "13"
gemfile:
- Gemfile
- Gemfile.rails60
- Gemfile.mongo_mapper
rvm:
- 2.5.8
- 2.6.6
- 2.7.1
before_install:
- gem install bundler
env:
global:
- DB_USER=postgres
- DB_PASS=
matrix:
- DB=sqlite3
- DB=postgresql
matrix:
fast_finish: true
exclude:
- gemfile: Gemfile.mongo_mapper
env: DB=postgresql
branches:
only:
- master
notifications:
email: false
|
Use PostgreSQL 13 in Travis CI
|
Use PostgreSQL 13 in Travis CI
Currently, PostgreSQL 12 on Focal doesn't work.
Ref: https://travis-ci.community/t/postgresql-broken-on-focal/10371
|
YAML
|
mit
|
brainspec/enumerize
|
f34498f83483ff43e3b68ff5a8b098bceee7e8f8
|
.travis.yml
|
.travis.yml
|
language: android
android:
components:
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-23.0.2
# The SDK version used to compile your project
- android-23
# Additional components
# - extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
# - addon-google_apis-google-19
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
|
language: android
android:
components:
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-23.0.2
# The SDK version used to compile your project
- android-23
# Additional components
# - extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
# - addon-google_apis-google-19
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
script:
- ./gradlew build
|
Use `./gradlew build` for now
|
Use `./gradlew build` for now
|
YAML
|
apache-2.0
|
slesinskik/grid-layout-manager
|
40ead23cac0e5e2167a7de27212dce49c5857c0f
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5-dev"
- "pypy3"
install:
- pip install -r requirements.txt
script:
- python3 momap/tests/test.py
|
language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev - "pypy3"
install:
- pip install -r requirements.txt
script:
- python3 momap/tests/test.py
|
Change python version for Travis CI
|
Change python version for Travis CI
|
YAML
|
mit
|
Endle/momap
|
5b2b3fff0e50d6dc3f473d6649a9ce66d1844168
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
before_install:
- "echo $JAVA_OPTS"
- "export JAVA_OPTS=-Xmx512m"
script:
- mvn install -B -V
- mvn javadoc:jar
- mvn javadoc:test-aggregate
notifications:
irc: "irc.freenode.org#fcrepo"
email:
- [email protected]
|
language: java
sudo: false
jdk:
- oraclejdk8
before_install:
- "echo $JAVA_OPTS"
- "export JAVA_OPTS=-Xmx512m"
script:
- mvn install -B -V
- mvn javadoc:jar
- mvn javadoc:test-aggregate
notifications:
irc: "irc.freenode.org#fcrepo"
email:
- [email protected]
|
Address FCREPO-1659 -- Migration to TravisCI container-based infrastructure.
|
Address FCREPO-1659 -- Migration to TravisCI container-based infrastructure.
|
YAML
|
apache-2.0
|
fcrepo4-exts/fcrepo-webapp-plus,fcrepo4-labs/fcrepo-webapp-plus
|
6628b8a1463a49fe12c72d523cf75da23bf5de4d
|
.travis.yml
|
.travis.yml
|
language: php
sudo: false
php:
- '5.6'
- '7.0'
- '7.1'
- '7.2'
- nightly
env:
matrix:
- DEPENDENCIES="high"
- DEPENDENCIES="low"
global:
- DEFAULT_COMPOSER_FLAGS="--no-interaction --no-ansi --no-progress --no-suggest"
before_install:
- composer self-update
- composer clear-cache
install:
- if [[ "$DEPENDENCIES" = 'high' ]]; then travis_retry composer update $DEFAULT_COMPOSER_FLAGS; fi
- if [[ "$DEPENDENCIES" = 'low' ]]; then travis_retry composer update $DEFAULT_COMPOSER_FLAGS --prefer-lowest; fi
before_script:
- composer install --no-interaction
|
language: php
sudo: false
php:
- '5.6'
- '7.0'
- '7.1'
- '7.2'
- nightly
env:
matrix:
- DEPENDENCIES="high"
- DEPENDENCIES="low"
global:
- DEFAULT_COMPOSER_FLAGS="--no-interaction --no-ansi --no-progress --no-suggest"
before_install:
- composer self-update
- composer clear-cache
install:
- if [[ "$DEPENDENCIES" = 'high' ]]; then travis_retry composer update $DEFAULT_COMPOSER_FLAGS; fi
- if [[ "$DEPENDENCIES" = 'low' ]]; then travis_retry composer update $DEFAULT_COMPOSER_FLAGS --prefer-lowest; fi
|
Fix tests for low dependency versions.
|
Fix tests for low dependency versions.
|
YAML
|
mit
|
umulmrum/holiday
|
43cdec4e6386b781eb42cd3dcf6feafb93b27bce
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.7
- 2.4.4
- 2.5.1
- jruby-9.0.5.0
script: bundle exec rspec spec
notifications:
recipients:
- [email protected]
|
sudo: false
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.7
- 2.4.4
- 2.5.1
- 2.6.0
- jruby-9.0.5.0
script: bundle exec rspec spec
notifications:
recipients:
- [email protected]
|
Add ruby 2.6.0 to Travis
|
CI: Add ruby 2.6.0 to Travis
|
YAML
|
mit
|
RubyMoney/monetize
|
d41318b0b0407301fc18b13eb159e767361840b5
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
- "4.0"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- g++ -v
|
language: node_js
node_js:
- "0.10"
- "4"
- "5"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- g++ -v
|
Build and test on node v4 and v5.
|
Build and test on node v4 and v5.
|
YAML
|
mit
|
simonratner/node-simpleflake
|
be9c293746d7edde5f4f50ffc1ac6ed110587079
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
after_script:
- npm run coveralls
|
language: node_js
node_js:
- "0.10"
- "node"
after_script:
- npm run coveralls
|
Enable building for latest node.js on Travis CI
|
Enable building for latest node.js on Travis CI
|
YAML
|
mit
|
pnarielwala/gulp-sloc2
|
298da5c2547892cc7dc7c1d259a371dabd549db9
|
.travis.yml
|
.travis.yml
|
sudo: required
os: linux
language: python
python:
- 3.3
- 3.4
- 3.5
- 3.6
install:
- sudo apt-get install -y apache2
- sudo apt-get install -y php5-common libapache2-mod-php5 php5-cli
- sudo service apache2 restart
- pwd
- ls
- mv test/vulnerable-sites/* /var/www/vulnerable-sites
- pip install -r requirements.txt
script:
- python setup.py install
- test/test-vulnerable-sites.sh
|
sudo: required
os: linux
language: python
python:
- 3.3
- 3.4
- 3.5
- 3.6
install:
- sudo apt-get install -y apache2
- sudo apt-get install -y php5-common libapache2-mod-php5 php5-cli
- sudo service apache2 restart
- pwd
- ls
- mkdir /var/www/vulnerable-sites
- mv test/vulnerable-sites/* /var/www/vulnerable-sites
- pip install -r requirements.txt
script:
- python setup.py install
- test/test-vulnerable-sites.sh
|
Make sites directory before moving.
|
Make sites directory before moving.
|
YAML
|
mit
|
tijme/angularjs-sandbox-escape-scanner,tijme/angularjs-csti-scanner
|
93dac7f77b4b84966d4faf6db1aa3d70c904b4dc
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.5.0
script:
- bundle exec rake
- bundle exec rake web:generate
after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && bash
website/deploy.sh
env:
global:
secure: DInIDj4kbZojS7oTomH5JpuJ7/czBXiYsrFygVz/K/40M+fjVbEzfd03cpPnfUx2vh1vjU/6p5/FpxNEr/ugnv3C+K48pkgvULX+K68mE8k++3heUJfMZf6yjVARJysUKd6n6gcrFDwwnrHJdvG5bzIezO/5YIda+otLViPnFQk=
|
language: ruby
rvm:
- 2.5.1
script:
- bundle exec rake
- bundle exec rake web:generate
after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && bash
website/deploy.sh
env:
global:
secure: DInIDj4kbZojS7oTomH5JpuJ7/czBXiYsrFygVz/K/40M+fjVbEzfd03cpPnfUx2vh1vjU/6p5/FpxNEr/ugnv3C+K48pkgvULX+K68mE8k++3heUJfMZf6yjVARJysUKd6n6gcrFDwwnrHJdvG5bzIezO/5YIda+otLViPnFQk=
|
Use the right Ruby version in Travis
|
Use the right Ruby version in Travis
|
YAML
|
mit
|
nerab/dropcaster,nerab/dropcaster,nerab/dropcaster
|
9fd744ba3c73745ce8b82db41746a63ff4f4d69a
|
.travis.yml
|
.travis.yml
|
sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
- $HOME/protobuf
php:
- 5.6
- 7.0
- 7.1
- hhvm
- nightly
matrix:
allow_failures:
- php: nightly
env:
- PROTOBUF_VERSION=3.0.0
before_install:
- bash .travis/install.sh
install:
- composer self-update
- composer --prefer-source install
- export PATH=$PATH:$HOME/protobuf/$PROTOBUF_VERSION/bin/
before_script:
- vendor/bin/protobuf --include-descriptors -i . -o tests/ tests/ClearCode/Protobuf/Tests/fixtures/DummyMessage.proto
script:
- vendor/bin/phpunit -c phpunit.xml
|
sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
- $HOME/protobuf
php:
- 5.6
- 7.0
- 7.1
- hhvm
- nightly
matrix:
allow_failures:
- php: nightly
env:
- PROTOBUF_VERSION=3.0.0
before_install:
- bash .travis/install.sh
install:
- composer self-update
- composer install -o
- export PATH=$PATH:$HOME/protobuf/$PROTOBUF_VERSION/bin/
before_script:
- vendor/bin/protobuf --include-descriptors -i . -o tests/ tests/ClearCode/Protobuf/Tests/fixtures/DummyMessage.proto
script:
- vendor/bin/phpunit -c phpunit.xml
|
Switch to regular composer install
|
Switch to regular composer install
|
YAML
|
mit
|
partikus/php-protobuf-encoder,partikus/php-protobuf-encoder
|
95bbc1a0d47f17f319888995bcc545bb8bab4fb9
|
.travis.yml
|
.travis.yml
|
sudo: true
dist: trusty
cache: false
env:
- URL=https://developer.salesforce.com/media/salesforce-cli/sfdx-linux-amd64.tar.xz
before_install:
- openssl aes-256-cbc -K $encrypted_bc21448d0b37_key -iv $encrypted_bc21448d0b37_iv
-in assets/server.key.enc -out assets/server.key -d
- export SFDX_AUTOUPDATE_DISABLE=true
- export SFDX_USE_GENERIC_UNIX_KEYCHAIN=true
- export SFDX_DOMAIN_RETRY=300
- wget -qO- $URL | tar xJf -
- ./sfdx/install
- export PATH=./sfdx/$(pwd):$PATH
- sfdx plugins:install salesforcedx@pre-release
- sfdx force:auth:jwt:grant --clientid $CONSUMERKEY --jwtkeyfile assets/server.key
--username $USERNAME --setdefaultdevhubusername -a HubOrg
script:
- sfdx force:org:create -v HubOrg -s -f config/project-scratch-def.json -a ciorg
- sfdx force:source:push -u ciorg
- sfdx force:lightning:test:run -u ciorg -c -r human
- sfdx force:org:delete -u ciorg -p
|
sudo: true
dist: trusty
cache: false
env:
- URL=https://developer.salesforce.com/media/salesforce-cli/sfdx-linux-amd64.tar.xz
before_install:
- openssl aes-256-cbc -K $encrypted_bc21448d0b37_key -iv $encrypted_bc21448d0b37_iv
-in assets/server.key.enc -out assets/server.key -d
- export SFDX_AUTOUPDATE_DISABLE=true
- export SFDX_USE_GENERIC_UNIX_KEYCHAIN=true
- export SFDX_DOMAIN_RETRY=300
- wget -qO- $URL | tar xJf -
- ./sfdx/install
- export PATH=./sfdx/$(pwd):$PATH
- sfdx plugins:install salesforcedx@pre-release
- sfdx force:auth:jwt:grant --clientid $CONSUMERKEY --jwtkeyfile assets/server.key
--username $USERNAME --setdefaultdevhubusername -a HubOrg
script:
- sfdx force:org:create -v HubOrg -s -f config/project-scratch-def.json -a ciorg
- sfdx force:source:push -u ciorg
- sfdx force:lightning:test:run -u ciorg
- sfdx force:org:delete -u ciorg -p
|
Fix Travis CI/SFDX - One more time, with feeling
|
Fix Travis CI/SFDX - One more time, with feeling
|
YAML
|
mit
|
madmax983/lightning-redux
|
4a2fe5c7d8a88385f91d794182fb67bbb5019c64
|
.travis.yml
|
.travis.yml
|
language: python
sudo: false
python:
- "3.5"
virtualenv:
system_site_packages: false
install:
- export CONDA=$HOME/miniconda
- export PATH="$CONDA/bin:$PATH"
# install conda, but only if it doesn't already exist
- command -v conda > /dev/null || {
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
bash miniconda.sh -b -f -p $CONDA; }
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# try to create env, but ignore if it fails -- probably cached.
- conda env create -q -f test-environment.yml || true
- source activate skantest
- conda info -a
# install coveralls for reporting
- pip install coveralls
# Install gala
- printenv PWD
# Build locally, pytest confuses local and global installs
- pip install -e .
script:
# Run tests
- py.test
after_success:
- if [[ $TRAVIS_PYTHON_VERSION == 3.5 ]]; then make numba-clean; py.test --cov-report term-missing --cov .; coveralls; fi
cache:
directories:
- $HOME/miniconda
- $HOME/.matplotlib
|
language: python
sudo: false
python:
- "3.5"
virtualenv:
system_site_packages: false
install:
- export CONDA=$HOME/miniconda
- export PATH="$CONDA/bin:$PATH"
# install conda, but only if it doesn't already exist
- command -v conda > /dev/null || {
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
bash miniconda.sh -b -f -p $CONDA; }
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# try to create env, but ignore if it fails -- probably cached.
- conda env create -q -f test-environment.yml || true
- source activate skantest
- conda info -a
# install coveralls for reporting
- pip install coveralls
# Install gala
- printenv PWD
# Build locally, pytest confuses local and global installs
- pip install -e .
script:
# Run tests
- py.test
after_success:
- if [[ $TRAVIS_PYTHON_VERSION == 3.5 ]]; then make numba-clean; export NUMBA_DISABLE_JIT=1; py.test --cov-report term-missing --cov .; coveralls; fi
cache:
directories:
- $HOME/miniconda
- $HOME/.matplotlib
|
Disable JIT for coverage testing
|
Disable JIT for coverage testing
|
YAML
|
bsd-3-clause
|
jni/skan
|
065ed3a0c24993549e7631f3b0a8be72eccdea80
|
.travis.yml
|
.travis.yml
|
branches:
only:
- master
- peewee-3.5
language: python
python:
- "3.4"
- "3.5"
- "3.6"
# TODO: aiopg is not compatible now with python 3.7 (syntax error)
# Uncomment line bellow when issue fixed: https://github.com/aio-libs/aiopg/issues/436
# - "nightly" # currently points to 3.7-dev
addons:
postgresql: "9.3"
services:
- mysql
before_script:
- pip install aiomysql aiopg
- psql -c 'create database test;' -U postgres
- psql test -c 'CREATE EXTENSION IF NOT EXISTS hstore' -U postgres
- mysql -e "create database IF NOT EXISTS test;" -uroot
# command to install dependencies
install: "pip install -e ."
# command to run tests
script:
- python setup.py test
|
branches:
only:
- master
- peewee-3.5
language: python
python:
- "3.5"
- "3.6"
# TODO: aiopg is not compatible now with python 3.7 (syntax error)
# Uncomment line bellow when issue fixed: https://github.com/aio-libs/aiopg/issues/436
# - "nightly" # currently points to 3.7-dev
addons:
postgresql: "9.3"
services:
- mysql
before_script:
- pip install aiomysql aiopg
- psql -c 'create database test;' -U postgres
- psql test -c 'CREATE EXTENSION IF NOT EXISTS hstore' -U postgres
- mysql -e "create database IF NOT EXISTS test;" -uroot
# command to install dependencies
install: "pip install -e ."
# command to run tests
script:
- python setup.py test
|
Drop Travis CI tests for Python 3.4
|
Drop Travis CI tests for Python 3.4
|
YAML
|
mit
|
05bit/peewee-async
|
46b35fdfbadd3695db52128fb7c4f519cf977267
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.7
- 3.3
- 3.4
install:
- pip install pytest coveralls pytest-cov
- python setup.py develop
script:
py.test --cov skosprovider --cov-report term-missing tests
after_success:
coveralls
|
sudo: false
language: python
python:
- 2.7
- 3.3
- 3.4
install:
- pip install pytest coveralls pytest-cov
- python setup.py develop
script:
py.test --cov skosprovider --cov-report term-missing tests
after_success:
coveralls
|
Move to containers for Travis.
|
Move to containers for Travis.
|
YAML
|
mit
|
koenedaele/skosprovider
|
522a9755d23934297ba146b8bb58255b8adb2d16
|
.travis.yml
|
.travis.yml
|
sudo: false
language: rust
rust:
- nightly
- 1.0.0-beta
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --verbose
after_success: |
[ $TRAVIS_RUST_VERSION = nightly ] &&
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=cssparser/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
env:
- secure: N66sY4jTqznkJRTNshbib1o7GpgPN8Rw66KFGkRxDfuDOZGkpmTWRPP4tLwmbFfdMOSFKd8Q1OTUOGqvRgny4TErcCF+E56/tUSdGfOFqKeGqowUGhRBLx4eso8FP1ECCTEEZE4hEs1Yb10BrPvZU6YmdBcc5e8YeDZBTAhqMUE=
|
sudo: false
language: rust
rust:
- nightly
- beta
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --verbose
after_success: |
[ $TRAVIS_RUST_VERSION = nightly ] &&
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=cssparser/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
env:
- secure: N66sY4jTqznkJRTNshbib1o7GpgPN8Rw66KFGkRxDfuDOZGkpmTWRPP4tLwmbFfdMOSFKd8Q1OTUOGqvRgny4TErcCF+E56/tUSdGfOFqKeGqowUGhRBLx4eso8FP1ECCTEEZE4hEs1Yb10BrPvZU6YmdBcc5e8YeDZBTAhqMUE=
|
Test on whatever is the latest beta.
|
Test on whatever is the latest beta.
|
YAML
|
mpl-2.0
|
servo/rust-cssparser,tempbottle/rust-cssparser,servo/rust-cssparser,tempbottle/rust-cssparser,disjukr/rust-cssparser,disjukr/rust-cssparser,notriddle/rust-cssparser,notriddle/rust-cssparser
|
914d945e94cbdef611f1587ebd546eec0ccf67a7
|
.travis.yml
|
.travis.yml
|
language: php
dist: trusty
sudo: false
cache:
directories:
- vendor
- $HOME/.composer/cache/files
env:
global:
- SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1
- SYMFONY_PHPUNIT_DISABLE_RESULT_CACHE=1
before_install:
- phpenv config-rm xdebug.ini || return 0
install:
- travis_retry composer install
script: ./vendor/bin/simple-phpunit
jobs:
fast_finish: true
include:
- php: 7.1
- php: 7.2
- php: 7.3
- php: 7.4
- stage: integration tests
php: 7.3
script: ./drupal_test.sh
|
language: php
dist: trusty
sudo: false
cache:
directories:
- vendor
- $HOME/.composer/cache/files
env:
global:
- SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1
- SYMFONY_PHPUNIT_DISABLE_RESULT_CACHE=1
before_install:
- phpenv config-rm xdebug.ini || return 0
install:
- travis_retry composer install
- if [[ $TRAVIS_PHP_VERSION = nightly ]]; then phpenv global 7.1; ./vendor/bin/simple-phpunit install; phpenv global nightly; fi
script: ./vendor/bin/simple-phpunit
jobs:
fast_finish: true
include:
- php: 7.1
- php: 7.2
- php: 7.3
- php: 7.4
- php: nightly
env: SYMFONY_PHPUNIT_VERSION=7.2
- stage: integration tests
php: 7.3
script: ./drupal_test.sh
|
Add PHP 8 / nightly in Travis matrix
|
Add PHP 8 / nightly in Travis matrix
|
YAML
|
bsd-3-clause
|
twigphp/Twig,twigphp/Twig,twigphp/Twig
|
0a50489e18b7e48ec37147616f74c63d05965d53
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
rvm:
- 2.4
- jruby
before_install: gem install bundler -v 1.14.6
|
sudo: false
language: ruby
rvm:
- 2.4.1
- jruby
before_install: gem install bundler -v 1.14.6
|
Use 2.4.1 instead of 2.4 alias
|
Use 2.4.1 instead of 2.4 alias
|
YAML
|
mit
|
codingstones/action_dispatcher,codingstones/action_dispatcher
|
bf2f9d1f275e2a939a8fd91a6636de51c14c9216
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.10'
before_install: npm install -g npm@'>=2.13.5'
deploy:
provider: npm
email: [email protected]
api_key:
secure: IHGizjoV0EBAcZ6NtB87C7iANfXqB0Rf+T5LASPlVJkHARP3YK34ATWM5l2E/4Q8fqsiyEMACkvmUu9f/Jtb+YRD32Q2ZjmILrAXfQPKz6gHFJdJuYXVU3H7swSFzTubrXzd5nebjQne7oGAZVH1sYK+aBD6Vb5cC5S8XzRB/KwTE+vOU9Y2OvX7x3SwmZmia17CYp5Po+mxXrk+2O0H9Z3znha4H2lUu9jlaTvwQfFv6HTmBAL9PH04Cm7snrU4Pmi7/fC+pWvyczo/WLy9wpuFk+R4HM9j91JF+Klqxe/RsE9T4yWMPpipjOokv1yDQEX2RZnaZINspcGSiauqamrMdPdDS9CKd6RxG2Y03jwjTIBpMQ8w/8p693k4A430lKolHQsD48bt2HBQZHppsfjFAflZIsR+Yr6ZwD6sVpVpbJyvFPJila/gVXiQ9rtqjO4ccm7EMfkt7JxAXs+eaLojorERL0d5+s0mzoi6/hoW8Y9RkzZyhFTx8Y0NEIuoqwn0eznSvF6mlh37T90SL1AJIhpFuWJB2nWMt78ucDS93LEnaNcI4F54UKsw7CiuK3Lfz0Cpu/oMeW2rXzCxMPyJXhzgsfNBwMOfq6QCCbieoeF5jtRYIB1gXlCrg4A0rzLVqq+EkGvXmnkgMTnDZ58/3UXMh4CZN+jbcDgU7EE=
on:
tags: true
repo: MovingImage24/mi-angular-bootstrap-ultron
|
language: node_js
node_js:
- '0.10'
before_install: npm install -g npm@'>=2.13.5'
deploy:
provider: npm
email: [email protected]
api_key:
secure: $NPM_TOKEN
on:
tags: true
repo: MovingImage24/mi-angular-bootstrap-ultron
|
Replace token with a placeholder!
|
Replace token with a placeholder!
|
YAML
|
mit
|
MovingImage24/mi-angular-bootstrap-ultron
|
efbd0e1885ca1f89304d8c1509879b1494bb7a23
|
.travis.yml
|
.travis.yml
|
dist: xenial
language: go
go: "1.13.x"
env:
- GO111MODULE=on
cache:
directories:
- $GOPATH/pkg/mod
- $HOME/.cache/go-build
install: true
before_script:
- GO111MODULE=off go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
script:
- golangci-lint run
- go test -race ./...
deploy:
- provider: script
skip_cleanup: true
script: curl -sL https://git.io/goreleaser | bash
on:
tags: true
condition: $TRAVIS_OS_NAME = linux
|
dist: xenial
language: go
go: "1.13.x"
env:
- GO111MODULE=on
cache:
directories:
- $GOPATH/pkg/mod
- $HOME/.cache/go-build
install: true
before_script:
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.17.1
script:
- golangci-lint run
- go test -race ./...
deploy:
- provider: script
skip_cleanup: true
script: curl -sL https://git.io/goreleaser | bash
on:
tags: true
condition: $TRAVIS_OS_NAME = linux
|
Revert "install golangci-lint from source for go 1.13"
|
Revert "install golangci-lint from source for go 1.13"
This reverts commit d4a2971b6cbce4a538646230c986770c2238e66b.
|
YAML
|
mit
|
cenkalti/rain
|
9a36f9037b09bfe70f2a8f201ab876542d630cee
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm
- php: hhvm-nightly
services:
- mongodb
- redis-server
install:
- sudo apt-get install -y beanstalkd
- sudo beanstalkd -d -l 127.0.0.1 -p 11300
- sh -c 'if [[ $TRAVIS_PHP_VERSION != hhvm* ]]; then printf "extension = mongo.so\nextension = redis.so" >> ~/.phpenv/versions/$TRAVIS_PHP_VERSION/etc/php.ini; fi;'
before_script:
- mysql -e 'create database phive_tests;'
- psql -c 'create database phive_tests;' -U postgres
- composer require phpunit/phpunit:~4.0
- composer install
script: phpunit -v
|
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm
- php: hhvm-nightly
services:
- mongodb
- redis-server
install:
- sudo apt-get install -y beanstalkd
- sudo beanstalkd -d -l 127.0.0.1 -p 11300
- sh -c 'if [[ $TRAVIS_PHP_VERSION != hhvm* ]]; then printf "extension = mongo.so\nextension = redis.so" >> ~/.phpenv/versions/$TRAVIS_PHP_VERSION/etc/php.ini; fi;'
before_script:
- mysql -e 'create database phive_tests;'
- psql -c 'create database phive_tests;' -U postgres
- composer require phpunit/phpunit:~4.0
- sh -c 'if [[ $TRAVIS_PHP_VERSION == hhvm* ]]; then composer require mongofill/mongofill:dev-master; fi;'
- composer install
script: phpunit -v
|
Install "mongofill/mongofill" package for hhvm* environment
|
Install "mongofill/mongofill" package for hhvm* environment
|
YAML
|
mit
|
rybakit/phive-queue,andreyors/phive-queue
|
845b654e21095834227aaaf382970209eed2ae17
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
os:
- linux
- osx
node_js:
# Node 11 is turned off because it blocks building until a security issue with node-sass is fixed.
- "node"
- "12"
- "10"
- "8"
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
fi
script:
- npm install
- npm test
- npm run test-client-integration
|
sudo: false
language: node_js
os:
- linux
- osx
node_js:
- "node"
- "12"
- "10"
- "8"
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
fi
script:
- npm install
- npm test
- npm run test-client-integration
|
Remove out of date comment
|
Remove out of date comment
|
YAML
|
mit
|
Jason-Rev/vscode-spell-checker,Jason-Rev/vscode-spell-checker,Jason-Rev/vscode-spell-checker,Jason-Rev/vscode-spell-checker,Jason-Rev/vscode-spell-checker
|
9cda3ea1e7c0ef3b787aea7885e9eaa0a96fa0f4
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
before_script:
- python py-version/main.py &
- SERVER_PYTHON_PID=$!
- echo $SERVER_PYTHON_PID
script:
- python client.py localhost:8000 -v
- kill $SERVER_PYTHON_PID
|
language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
before_script:
- python py-version/main.py &
- SERVER_PYTHON_PID=$!
- echo $SERVER_PYTHON_PID
script:
- python client.py localhost:8000
- kill $SERVER_PYTHON_PID
|
Fix console pass arguments to unit test bug.
|
Fix console pass arguments to unit test bug.
|
YAML
|
bsd-3-clause
|
starnight/MicroHttpServer,starnight/MicroHttpServer,starnight/MicroHttpServer,starnight/MicroHttpServer
|
23f2b84b57492e083749c20fdf0f3c2bc7dfa210
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm: 1.8.7
env:
- PUPPET_VERSION=3.3.0
script:
- bundle exec rake validate
- bundle exec rake lint
before_install:
- gem update --system 2.1.11 # todo: workaround for https://github.com/rubygems/rubygems/pull/763
|
language: ruby
rvm: 1.9.3
env:
- PUPPET_VERSION=3.3.0
script:
- bundle exec rake validate
- bundle exec rake lint
|
Use ruby 1.9.3, remove rubygems workaround
|
Use ruby 1.9.3, remove rubygems workaround
|
YAML
|
mit
|
vrenetic/puppet-packages,zazabe/puppet-packages,zazabe/puppet-packages,cargomedia/puppet-packages,tomaszdurka/puppet-packages,ppp0/puppet-packages,vrenetic/puppet-packages,zazabe/puppet-packages,vrenetic/puppet-packages,cargomedia/puppet-packages,ppp0/puppet-packages,feedlabs/puppet-packages,cargomedia/puppet-packages,tomaszdurka/puppet-packages,cargomedia/puppet-packages,njam/puppet-packages,ppp0/puppet-packages,njam/puppet-packages,njam/puppet-packages,tomaszdurka/puppet-packages,zazabe/puppet-packages,vrenetic/puppet-packages,zazabe/puppet-packages,tomaszdurka/puppet-packages,njam/puppet-packages,cargomedia/puppet-packages,feedlabs/puppet-packages,tomaszdurka/puppet-packages,njam/puppet-packages,tomaszdurka/puppet-packages,vrenetic/puppet-packages,feedlabs/puppet-packages,feedlabs/puppet-packages,feedlabs/puppet-packages,vrenetic/puppet-packages,ppp0/puppet-packages,ppp0/puppet-packages
|
de584cb99d853c34e31614c0af0e607bd043dd0a
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
rvm:
- 2.2.4
- 2.3.0
gemfile:
- Gemfile.4.0
- Gemfile.4.1
- Gemfile.4.2
- Gemfile.5.0
|
language: ruby
cache: bundler
rvm:
- 2.2.4
- 2.3.2
gemfile:
- Gemfile.4.0
- Gemfile.4.1
- Gemfile.4.2
- Gemfile.5.0
- Gemfile.5.1
|
Update Travis config file to test with Rails 5.1
|
Update Travis config file to test with Rails 5.1
|
YAML
|
mit
|
dabit/acts_as_shopping_cart,dabit/acts_as_shopping_cart
|
a357c9b0f9553bb66bbfad5d2323777c12466daf
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
env:
global:
- GH_REF: github.com/dbeyer/java-smt.git
install:
- ant resolve-dependencies -Divy.repo.url=http://www.sosy-lab.org/ivy
addons:
apt:
packages:
- oracle-java8-installer
matrix:
include:
- script:
- ant run-findbugs -Dfindbugs.output=text && cat FindBugs.xml && test \! -s FindBugs.xml
jdk: oraclejdk8
env: NAME=FindBugs
- script:
- ant run-checkstyle -Dcheckstyle.output=plain && cat Checkstyle*.xml && [ $(cat Checkstyle*.xml | grep -vic audit) -eq 0 ]
jdk: oraclejdk8
env: NAME=Checkstyle
- script:
- ant javadoc
jdk: oraclejdk8
env: NAME=Javadoc
- script:
- ant format-source && git diff -s --exit-code
jdk: oraclejdk8
env: NAME=format-source
script:
- ant build-project-ecj
- ant clean unit-tests-coverage
deploy:
- skip_cleanup: true
provider: script
script: build/deploy-gh-pages.sh
- skip_cleanup: true
provider: script
script: build/deploy-coverage.sh
notifications:
email:
- [email protected]
git:
depth: 1
cache:
directories:
- $HOME/.ivy2
|
language: java
jdk:
- oraclejdk8
env:
global:
- GH_REF: github.com/dbeyer/java-smt.git
install:
- ant resolve-dependencies -Divy.repo.url=http://www.sosy-lab.org/ivy
addons:
apt:
packages:
- oracle-java8-installer
matrix:
include:
- script:
- ant run-findbugs -Dfindbugs.output=text && cat FindBugs.xml && test \! -s FindBugs.xml
jdk: oraclejdk8
env: NAME=FindBugs
- script:
- ant run-checkstyle -Dcheckstyle.output=plain && cat Checkstyle*.xml && [ $(cat Checkstyle*.xml | grep -vic audit) -eq 0 ]
jdk: oraclejdk8
env: NAME=Checkstyle
- script:
- ant format-source && git diff -s --exit-code
jdk: oraclejdk8
env: NAME=format-source
script:
- ant build-project
- ant clean unit-tests-coverage
- ant javadoc
deploy:
- skip_cleanup: true
provider: script
script: build/deploy-gh-pages.sh
- skip_cleanup: true
provider: script
script: build/deploy-coverage.sh
notifications:
email:
- [email protected]
git:
depth: 1
cache:
directories:
- $HOME/.ivy2
|
Move Javadoc into the main task.
|
Move Javadoc into the main task.
|
YAML
|
apache-2.0
|
sosy-lab/java-smt,sosy-lab/java-smt,sosy-lab/java-smt,sosy-lab/java-smt,sosy-lab/java-smt
|
2fa41746b0037d1a7c4cd5fc31820fecc938e3af
|
.travis.yml
|
.travis.yml
|
---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
gemfile:
- Gemfile
notifications:
email:
- [email protected]
before_install:
- sudo apt-get update -qq
- gem install versionomy
script:
- bundle exec rake features
|
---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
gemfile:
- Gemfile
notifications:
email:
- [email protected]
before_install:
- sudo apt-get update -qq
- gem install versionomy
script:
- bundle exec rake features
- bundle exec rake yard
|
Add yardoc build to the Travis sequence
|
Add yardoc build to the Travis sequence
|
YAML
|
apache-2.0
|
RoUS/rubygem-fibonaccia,RoUS/rubygem-fibonaccia
|
fdfc561a32909d8b380f4b455ff760848b47afee
|
.travis.yml
|
.travis.yml
|
language: rust
matrix:
include:
- rust: 1.6.0
- rust: stable
- rust: stable
os: osx
- rust: beta
- rust: nightly
script:
- cargo test
|
language: rust
matrix:
include:
- rust: 1.13.0
- rust: stable
- rust: stable
os: osx
- rust: beta
- rust: nightly
script:
- cargo test
|
Change Rust 1.6.0 to 1.13.0
|
[Travis] Change Rust 1.6.0 to 1.13.0
The 'unused_unsafe' attribute was stabilized in 1.13.0.
|
YAML
|
apache-2.0
|
nvzqz/static-assertions-rs
|
8d89c5f4e88c37dfa5d18e46247094912f3baa9f
|
.travis.yml
|
.travis.yml
|
language: rust
rust:
- 1.23.0
- stable
- beta
- nightly
os:
- linux
- osx
script:
- ./ci/test.sh
cache:
cargo: true
directories:
- kcov-install
before_cache:
- rm -rf target/cov
matrix:
# Clear the whole matrix
exclude:
- os: linux
- os: osx
# Add each target manually
include:
- os: linux
rust: 1.23.0
- os: linux
rust: stable
- os: linux
rust: beta
- os: linux
rust: nightly
- os: linux
rust: 1.23.0
env: PROFILE=release
- os: linux
rust: stable
env: PROFILE=release
- os: linux
rust: beta
env: PROFILE=release
- os: linux
rust: nightly
env: PROFILE=release FEATURES=alloc_system
- os: osx
rust: stable
- os: osx
rust: nightly
- os: linux
rust: stable
env: JOB=cov
sudo: required
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
- libiberty-dev
notifications:
email: false
|
language: rust
rust:
- 1.23.0
- stable
- beta
- nightly
os:
- linux
- osx
script:
- ./ci/test.sh
cache:
cargo: true
directories:
- kcov-install
before_cache:
- rm -rf target/cov
matrix:
# Clear the whole matrix
exclude:
- os: linux
- os: osx
# Add each target manually
include:
- os: linux
rust: 1.23.0
- os: linux
rust: stable
- os: linux
rust: beta
- os: linux
rust: nightly
- os: linux
rust: 1.23.0
env: PROFILE=release
- os: linux
rust: stable
env: PROFILE=release
- os: linux
rust: beta
env: PROFILE=release
- os: linux
rust: nightly
env: PROFILE=release
- os: osx
rust: stable
- os: osx
rust: nightly
- os: linux
rust: stable
env: JOB=cov
sudo: required
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
- libiberty-dev
notifications:
email: false
|
Disable alloc_system in CI tests
|
Disable alloc_system in CI tests
Latest nightly breaks this
|
YAML
|
mit
|
richo/capstone-rs
|
4c5a8fe90f4038566bcf0c125b17548df6f174d6
|
.travis.yml
|
.travis.yml
|
---
sudo: false
language: ruby
gemfile: .gemfile
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0" FUTURE_PARSER="yes"
- rvm: 2.1.6
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes"
script:
- "bundle exec rake validate"
- "bundle exec rake lint"
- "bundle exec rake spec SPEC_OPTS='--format documentation'"
bundler_args: --without system_tests
cache: bundler
notifications:
email: false
|
---
sudo: false
language: ruby
gemfile: .gemfile
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0" FACTER_GEM_VERSION="~> 1.7.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0" FACTER_GEM_VERSION="~> 1.7.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0" FACTER_GEM_VERSION="~> 1.7.0" FUTURE_PARSER="yes"
- rvm: 2.1.6
env: PUPPET_GEM_VERSION="~> 4.0" FACTER_GEM_VERSION="~> 3.1.0" STRICT_VARIABLES="yes"
script:
- "bundle exec rake validate"
- "bundle exec rake lint"
- "bundle exec rake spec SPEC_OPTS='--format documentation'"
bundler_args: --without system_tests
cache: bundler
notifications:
email: false
|
Check different versions of facter in tests
|
Check different versions of facter in tests
|
YAML
|
bsd-2-clause
|
smoeding/puppet-sendmail
|
11ebbcc4522b135616621b75578c06904eb3b175
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- ruby-head
- rbx-2
- jruby
gemfile:
- Gemfile
- Gemfile.ActiveSupport
env:
- ""
- "activesupport=3.2.22"
- "activesupport=4.1.12"
- "activesupport=4.2.3"
- "activesupport=master"
matrix:
fast_finish: true
allow_failures:
- rvm: jruby
- rvm: rbx-2
exclude:
- gemfile: Gemfile.ActiveSupport
env: ""
- gemfile: Gemfile
env: "activesupport=3.2.22"
- gemfile: Gemfile
env: "activesupport=4.1.12"
- gemfile: Gemfile
env: "activesupport=4.2.3"
- gemfile: Gemfile
env: "activesupport=master"
branches:
except:
- gh-pages
after_success:
- coveralls
|
language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1
- 2.2
- ruby-head
- rbx-2
- jruby
gemfile:
- Gemfile
- Gemfile.ActiveSupport
env:
- ""
- "activesupport=3.2.22"
- "activesupport=4.1.12"
- "activesupport=4.2.3"
- "activesupport=master"
matrix:
fast_finish: true
allow_failures:
- rvm: jruby
- rvm: rbx-2
exclude:
- gemfile: Gemfile.ActiveSupport
env: ""
- gemfile: Gemfile
env: "activesupport=3.2.22"
- gemfile: Gemfile
env: "activesupport=4.1.12"
- gemfile: Gemfile
env: "activesupport=4.2.3"
- gemfile: Gemfile
env: "activesupport=master"
branches:
except:
- gh-pages
after_success:
- coveralls
|
Use new Travis container infrastructure.
|
Use new Travis container infrastructure.
|
YAML
|
mit
|
christhekeele/inquisitive,christhekeele/inquisitive
|
0173993599d7182942b841864d5e1247f3ca7cf4
|
.travis.yml
|
.travis.yml
|
sudo: false
language: java
jdk:
- oraclejdk8
stages:
- name: test
if: not branch =~ ^release/.*$ AND not branch =~ ^tmp/.*$
- name: publish
if: branch =~ ^release/.*$ AND not branch =~ ^tmp/.*$
before_cache:
# No sense in caching current build artifacts
rm -rf $HOME/.m2/repository/org/postgresql
before_install:
- test -d "${JDK6_HOME}" || export JDK6_HOME=$(jdk_switcher home openjdk6)
- test -d "${JDK7_HOME}" || export JDK7_HOME=$(jdk_switcher home openjdk7)
- test -d "${JDK8_HOME}" || export JDK8_HOME=$(jdk_switcher home oraclejdk8)
- test -d "${JDK9_HOME}" || export JDK9_HOME=$(jdk_switcher home oraclejdk9)
- test -d "${JDK9_HOME}" || export JDK9_HOME=$(jdk_switcher home oraclejdk8) # JDK9 missing on precise, fallback to JDK8
- envsubst < .travis/toolchains.xml > ~/.m2/toolchains.xml
cache:
directories:
- '$HOME/.m2/repository'
matrix:
include:
- stage: test
- stage: publish
install: true # skip mvn install
script: .travis/deploy.sh
# Deploy snapshots to Maven Central
after_success:
- "[[ $TRAVIS_BRANCH == 'master' ]] && mvn clean deploy --settings .travis/settings.xml"
|
sudo: false
language: java
dist: trusty
jdk:
- oraclejdk8
stages:
- name: test
if: not branch =~ ^release/.*$ AND not branch =~ ^tmp/.*$
- name: publish
if: branch =~ ^release/.*$ AND not branch =~ ^tmp/.*$
before_cache:
# No sense in caching current build artifacts
rm -rf $HOME/.m2/repository/org/postgresql
before_install:
- test -d "${JDK6_HOME}" || export JDK6_HOME=$(jdk_switcher home openjdk6)
- test -d "${JDK7_HOME}" || export JDK7_HOME=$(jdk_switcher home openjdk7)
- test -d "${JDK8_HOME}" || export JDK8_HOME=$(jdk_switcher home oraclejdk8)
- test -d "${JDK9_HOME}" || export JDK9_HOME=$(jdk_switcher home oraclejdk9)
- test -d "${JDK9_HOME}" || export JDK9_HOME=$(jdk_switcher home oraclejdk8) # JDK9 missing on precise, fallback to JDK8
- envsubst < .travis/toolchains.xml > ~/.m2/toolchains.xml
cache:
directories:
- '$HOME/.m2/repository'
matrix:
include:
- stage: test
- stage: publish
install: true # skip mvn install
script: .travis/deploy.sh
# Deploy snapshots to Maven Central
after_success:
- "[[ $TRAVIS_BRANCH == 'master' ]] && mvn clean deploy --settings .travis/settings.xml"
|
Use dist: trusty for Java 8
|
Use dist: trusty for Java 8
|
YAML
|
bsd-3-clause
|
vlsi/pgjdbc-parent-poms
|
234c835e4560a8623eb371b649b275e62004de32
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
install:
- "wget -O - http://apt.mopidy.com/mopidy.gpg | sudo apt-key add -"
- "sudo wget -O /etc/apt/sources.list.d/mopidy.list http://apt.mopidy.com/mopidy.list"
- "sudo apt-get update"
- "sudo apt-get install python-all-dev libffi-dev libspotify-dev"
- "pip install -r requirements.txt"
- "pip install ."
script: ./manage.py test
deploy:
provider: pypi
user: jbraegger
password:
secure: P3dSxH4hgJ6JdnGc4zcCneM/jn2qczOh11uxFSJGHEvkMvL4vOrZ0yOiE8BBInUBeT/4kVfWNuBghibS1P06AlWWvUz66KHc719mpHBA3On+q/0troVXT1Pl9xiEr8ITvQda7wWgSZaxSVpaZnkMJZQQkR3ucc7p6qm4mygPyjs=
on:
tags: true
repo: rckclmbr/pyportify
|
language: python
python:
- "2.7"
install:
- "wget -O - http://apt.mopidy.com/mopidy.gpg | sudo apt-key add -"
- "sudo wget -O /etc/apt/sources.list.d/mopidy.list http://apt.mopidy.com/mopidy.list"
- "sudo apt-get update"
- "sudo apt-get install python-all-dev libffi-dev libspotify-dev"
- "pip install -r requirements.txt"
- "pip install ."
script: ./manage.py test
deploy:
provider: pypi
user: jbraegger
password:
secure: P3dSxH4hgJ6JdnGc4zcCneM/jn2qczOh11uxFSJGHEvkMvL4vOrZ0yOiE8BBInUBeT/4kVfWNuBghibS1P06AlWWvUz66KHc719mpHBA3On+q/0troVXT1Pl9xiEr8ITvQda7wWgSZaxSVpaZnkMJZQQkR3ucc7p6qm4mygPyjs=
on:
tags: true
repo: rckclmbr/pyportify
branch: master
|
Add to only deploy to pypi from master branch
|
Add to only deploy to pypi from master branch
|
YAML
|
apache-2.0
|
rckclmbr/pyportify,rckclmbr/pyportify,rckclmbr/pyportify,rckclmbr/pyportify
|
e8a423d62773dbbfbc9e66eafbc939dfe8063067
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.6
- 2.7
- 3.3
- pypy
env:
- DJANGO="Django<1.5"
- DJANGO="Django<1.6"
- DJANGO="Django<1.6" LOCALFLAVOR=django-localflavor SQLALCHEMY="SQLAlchemy<0.8"
- DJANGO="Django<1.7" LOCALFLAVOR=django-localflavor SQLALCHEMY="SQLAlchemy<0.9"
matrix:
exclude:
- python: 3.3
env: DJANGO="Django<1.5"
install:
- "pip install $DJANGO $LOCALFLAVOR $SQLALCHEMY"
- "pip install -r tests/test_requirements.txt ."
script: "coverage run tests/runtests.py --with-pep8 --force-all"
after_success:
- pip install coveralls
- coveralls
|
language: python
python:
- 2.6
- 2.7
- 3.3
- pypy
env:
- DJANGO="Django<1.5"
- DJANGO="Django<1.6" SQLALCHEMY="SQLAlchemy<0.10"
- DJANGO="Django<1.6" LOCALFLAVOR=django-localflavor SQLALCHEMY="SQLAlchemy<0.8"
- DJANGO="Django<1.7" LOCALFLAVOR=django-localflavor SQLALCHEMY="SQLAlchemy<0.9"
matrix:
exclude:
- python: 3.3
env: DJANGO="Django<1.5"
install:
- "pip install $DJANGO $LOCALFLAVOR $SQLALCHEMY"
- "pip install -r tests/test_requirements.txt ."
script: "coverage run tests/runtests.py --with-pep8 --force-all"
after_success:
- pip install coveralls
- coveralls
|
Add testing for SQLAlchemy 0.9.x
|
Add testing for SQLAlchemy 0.9.x
|
YAML
|
bsd-3-clause
|
wtforms/wtforms,Aaron1992/wtforms,cklein/wtforms,crast/wtforms,subyraman/wtforms,pawl/wtforms,pawl/wtforms,hsum/wtforms,Aaron1992/wtforms,jmagnusson/wtforms,Xender/wtforms,skytreader/wtforms
|
df6382ff5d0e6033e3d88478649c2206d586e3b3
|
.travis.yml
|
.travis.yml
|
language: go
os:
- linux
- osx
go:
# 1.12 is no longer supported by apimachinery; we recommend 1.13
- "1.13"
- "1.14"
go_import_path: k8s.io/kops
script:
- GOPROXY=https://proxy.golang.org make nodeup examples test
jobs:
# To exclude a known-bad configuration:
#exclude:
# - os: osx
# go: "1.12"
include:
- name: Verify
os: linux
go: "1.13"
script:
- GOPROXY=https://proxy.golang.org make travis-ci
|
language: go
os:
- linux
- osx
go:
# 1.12 is no longer supported by apimachinery; we recommend 1.13
- "1.13"
- "1.14"
go_import_path: k8s.io/kops
script:
- GOPROXY=https://proxy.golang.org make nodeup examples test
jobs:
# Exclude GO 1.14 for OSX until it becomes the default because of limited availability
exclude:
- os: osx
go: "1.14"
include:
- name: Verify
os: linux
go: "1.13"
script:
- GOPROXY=https://proxy.golang.org make travis-ci
|
Exclude GO 1.14 for OSX
|
Exclude GO 1.14 for OSX
|
YAML
|
apache-2.0
|
kubernetes/kops,justinsb/kops,kubernetes/kops,kubernetes/kops,justinsb/kops,justinsb/kops
|
92c85215a2aa4f24baa1bcf25bb76900682f2fbb
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "iojs"
services:
- redis-server
after_success:
- cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js
|
language: node_js
node_js:
- "iojs"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
services:
- redis-server
after_success:
- cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js
|
Add hiredis Travis-CI build requirements
|
Add hiredis Travis-CI build requirements
|
YAML
|
unlicense
|
albertorestifo/redis-superpowers,albertorestifo/node-redis-promise
|
8b9879942fa74c82b5a71060945755b763e97bf5
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'core' ]; then cd .. && eval "mv $currentfolder core" && cd core; fi
- npm install -g grunt-cli
|
language: node_js
node_js:
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'core' ]; then cd .. && eval "mv $currentfolder core" && cd core; fi
- npm install -g grunt-cli
notifications:
email:
- [email protected]
- [email protected]
- [email protected]
|
Update Travis with explicit emails
|
Update Travis with explicit emails
|
YAML
|
mpl-2.0
|
Bizboard/famous,wgester/famous,Famous/famous,Faiz7412/famous,Famous/widgets,chinakids/famous,Lkraljevic/famous,SuPenguin/famous,Faiz7412/famous,FamousArchives/widgets,trusktr/famous,ziteboard/famous,holmesal/famous-global-build,Famous/famous,Offirmo/famous,SeanOceanHu/famous,gdi2290/famous,ziteboard/famous
|
b46271d1b05b5de4f3a6afd9bd1efb39502b8ae9
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.5"
install: "pip install -r requirements.txt"
script:
- python message.py
- python message_checker.py
- python telegram.py
|
language: python
python:
- "2.7"
- "3.5"
install: "pip install -r requirements.txt"
script:
- python message.py
- python message_checker.py
- python telegram.py
- python data_updater.py
|
Enable tests for data_updater.py in CI
|
Enable tests for data_updater.py in CI
|
YAML
|
mit
|
amaslenn/AMWorkoutAssist
|
b8918f901b16022396543578891898249f9b0bcd
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.6
- 7.0
- 7.1
before_install:
- if [[ $TRAVIS_PHP_VERSION != 7.1 ]] ; then phpenv config-rm xdebug.ini; fi
- mv .env.example .env
- travis_retry composer self-update
install:
- composer install
script:
- php artisan canvas:publish:assets -y
- php artisan canvas:publish:config -y
- php artisan key:generate
- vendor/bin/phpunit
|
language: php
php:
- 5.6
- 7.0
- 7.1
before_install:
- if [[ $TRAVIS_PHP_VERSION != 7.1 ]] ; then phpenv config-rm xdebug.ini; fi
- mv .env.example .env
- travis_retry composer self-update
install:
- composer install
before_script:
- php artisan canvas:publish:assets -y
- php artisan canvas:publish:config -y
- php artisan key:generate
- echo '1485524707' > storage/canvas_installed.lock
script:
- vendor/bin/phpunit
|
Create the installed lock file
|
:lock: Create the installed lock file
|
YAML
|
mit
|
cnvs/canvas,cnvs/canvas,talvbansal/Canvas,cnvs/canvas,lukio3/theduckone,foxted/canvas
|
27fad1530cc9f600c84b0846717da04bcc573ad5
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
install:
- pip install -r dev-requirements.txt
- pip install -e .
# command to run tests
script: py.test --cov=neoalchemy
after_success: codecov
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
install:
- pip install -r dev-requirements.txt
- pip install -e .
# command to run tests
script: py.test --cov=neoalchemy
after_success: codecov
|
Add Python 3.6 to Travis CI tests
|
Add Python 3.6 to Travis CI tests
|
YAML
|
mit
|
TwoBitAlchemist/NeoAlchemy
|
7c86f9648f68f5fd892329a49c0a5ecb7d39f458
|
.travis.yml
|
.travis.yml
|
language: generic
os: osx
osx_image: xcode7.3
rvm:
- 2.0.0
before_install:
- export XCODEBUILD_PATH=$(which xcodebuild)
- export PATH=$PATH:$XCODEBUILD_PATH
install:
- git submodule init
- git submodule update
- gem
script:
- go run Testing/tests.go
|
language: generic
os: osx
osx_image: xcode7.3
before_install:
- export XCODEBUILD_PATH=$(which xcodebuild)
- export PATH=$PATH:$XCODEBUILD_PATH
- export PATH=$PATH:~/bin
install:
- git submodule init
- git submodule update
- gem install xcpretty --user-install -n~/bin
script:
- go run Testing/tests.go
|
Install xcpretty before running tests
|
Install xcpretty before running tests
[#128293477]
|
YAML
|
apache-2.0
|
jwfriese/Fleet,jwfriese/Fleet,jwfriese/Fleet,jwfriese/Fleet,farshadtx/Fleet,farshadtx/Fleet,farshadtx/Fleet,farshadtx/Fleet
|
8dc594f0cf97aa647d775c79d615039443135b44
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.3.3
- 2.2.6
- 2.1.9
sudo: false
services: mongodb
before_install:
- gem update --system
- gem install bundler
branches:
only:
- "master"
before_script:
- mysql -e 'CREATE DATABASE statesman_test;'
- psql -c 'CREATE DATABASE statesman_test;' -U postgres
script:
- bundle exec rubocop
- bundle exec rake
env:
- "RAILS_VERSION=3.2.21"
- "RAILS_VERSION=4.0.13"
- "RAILS_VERSION=4.1.14"
- "RAILS_VERSION=4.2.5"
- "RAILS_VERSION=4.2.5 DATABASE_URL=mysql2://root@localhost/statesman_test"
- "RAILS_VERSION=4.2.5 DATABASE_URL=postgres://postgres@localhost/statesman_test"
- "RAILS_VERSION=5.0.0 EXCLUDE_MONGOID=true"
matrix:
exclude:
- rvm: 2.1.9
env: "RAILS_VERSION=5.0.0 EXCLUDE_MONGOID=true"
|
language: ruby
rvm:
- 2.4.1
- 2.3.3
- 2.2.6
- 2.1.9
sudo: false
services: mongodb
before_install:
- gem update --system
- gem install bundler
branches:
only:
- "master"
before_script:
- mysql -e 'CREATE DATABASE statesman_test;'
- psql -c 'CREATE DATABASE statesman_test;' -U postgres
script:
- bundle exec rubocop
- bundle exec rake
env:
- "RAILS_VERSION=3.2.21"
- "RAILS_VERSION=4.0.13"
- "RAILS_VERSION=4.1.14"
- "RAILS_VERSION=4.2.8"
- "RAILS_VERSION=4.2.8 DATABASE_URL=mysql2://root@localhost/statesman_test"
- "RAILS_VERSION=4.2.8 DATABASE_URL=postgres://postgres@localhost/statesman_test"
- "RAILS_VERSION=5.0.0 EXCLUDE_MONGOID=true"
matrix:
exclude:
- rvm: 2.1.9
env: "RAILS_VERSION=5.0.0 EXCLUDE_MONGOID=true"
- rvm: 2.4.1
env: "RAILS_VERSION=3.2.21"
- rvm: 2.4.1
env: "RAILS_VERSION=4.0.13"
- rvm: 2.4.1
env: "RAILS_VERSION=4.1.14"
|
Support ruby 2.4: add test case for ruby 2.4 in CI
|
Support ruby 2.4: add test case for ruby 2.4 in CI
- rails 4.2.8 or higher supports ruby 2.4
|
YAML
|
mit
|
timothyp/statesman,gocardless/statesman,timothyp/statesman,gocardless/statesman
|
69aec526762c56ec1de9560fffa11e17190bdb5d
|
.travis.yml
|
.travis.yml
|
language: java
sudo: false
matrix:
include:
- jdk: openjdk8
- jdk: oraclejdk8
- jdk: openjdk9
- jdk: oraclejdk9
- jdk: openjdk10
- jdk: oraclejdk10
- jdk: openjdk11
- os: osx
osx_image: xcode9.2
env: JAVA_HOME=$(/usr/libexec/java_home)
|
language: java
sudo: false
matrix:
include:
- jdk: openjdk8
- jdk: oraclejdk8
- jdk: openjdk9
- jdk: oraclejdk9
- jdk: openjdk10
- jdk: oraclejdk10
- jdk: openjdk11
- os: osx
osx_image: xcode9.2
env: JAVA_HOME=$(/usr/libexec/java_home)
cache:
directories:
- $HOME/.m2
|
Add Cache to Travis CI
|
Add Cache to Travis CI
|
YAML
|
bsd-3-clause
|
adamretter/j8fu
|
c9041785327d6bd96fe218d779e6824aaf2dadbd
|
.travis.yml
|
.travis.yml
|
language: go
sudo: required
services:
- docker
go:
- 1.7
- 1.8
- tip
script:
- go get github.com/frozzare/go-assert
- go test -race $(go list ./... | grep -v /vendor/)
|
language: go
sudo: required
services:
- docker
go:
- 1.7
- 1.8
- tip
install:
- go get github.com/frozzare/go-assert
script:
- go test -race $(go list ./... | grep -v /vendor/)
|
Move installation of assert to install instead of script
|
Move installation of assert to install instead of script
|
YAML
|
mit
|
frozzare/alfred
|
c598b43ad798fe0e8c5f9800073e5a2cff51f957
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
install:
- "pip install -r requirements.txt"
- "pip install -r requirements-dev.txt"
- "pip install coveralls"
script: "py.test --cov pre_commit_hook tests/"
after_success:
- coveralls
|
language: python
python:
- "2.7"
install:
- "pip install -r requirements.txt"
- "pip install -r requirements-dev.txt"
- "pip install coveralls"
before_script:
- "mkdir -p /home/travis/pre-commit-python-sorter/tests/resources"
script: "py.test --cov pre_commit_hook tests/"
after_success:
- coveralls
|
Fix IOErrors in Travis, create the dir before running tests
|
Fix IOErrors in Travis, create the dir before running tests
|
YAML
|
mit
|
FalconSocial/pre-commit-python-sorter
|
4fd426e6fc643cd0e4c1b8b5c7543ba570f1be75
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
script:
- phpunit tests/
install:
- composer install
|
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
script:
- phpunit tests/
install:
- composer install
|
Drop PHP 5.3 and 5.4 support
|
Change: Drop PHP 5.3 and 5.4 support
|
YAML
|
mit
|
checkdomain/Holiday
|
2075c5f212fba7b5ac5b2e3368bc519b5cc6b08d
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
script: "bundle exec rake"
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
|
language: ruby
sudo: false
script: "bundle exec rake"
rvm:
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
|
Update to latest rubies on CI
|
Update to latest rubies on CI
|
YAML
|
mit
|
kyuden/banken
|
0c0bbda848d17f62a97ca5a9d14cbd9a6a16092e
|
.travis.yml
|
.travis.yml
|
language: java
sudo: false
matrix:
fast_finish: true
include:
- os: linux
dist: trusty
jdk: oraclejdk8
- os: linux
dist: trusty
jdk: openjdk7
- os: osx
osx_image: xcode8.3
addons:
chrome: stable
before_install:
- nvm install node
- npm install
script:
- mvn package
- mvn checkstyle:check
- npm test
- npm run lint-js
- npm run lint-md
- npm run lint-less
cache:
directories:
- $HOME/.m2
- node_modules
|
language: java
sudo: false
matrix:
fast_finish: true
include:
- os: linux
dist: trusty
jdk: oraclejdk8
- os: linux
dist: trusty
jdk: openjdk7
- os: osx
osx_image: xcode8.3
addons:
chrome: stable
before_install:
- nvm install node
- npm install
- npm install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
script:
- mvn package
- mvn checkstyle:check
- npm test
- npm run lint-js
- npm run lint-md
- npm run lint-less
after_script: greenkeeper-lockfile-upload
cache:
directories:
- $HOME/.m2
- node_modules
|
Update Travis CI script so greenkeeper works with the lockfile
|
fix(ci): Update Travis CI script so greenkeeper works with the lockfile
|
YAML
|
apache-2.0
|
davidmsibley/angularjs-portal,davidmsibley/angularjs-portal,davidmsibley/angularjs-portal,davidmsibley/angularjs-portal,UW-Madison-DoIT/angularjs-portal,UW-Madison-DoIT/angularjs-portal,UW-Madison-DoIT/angularjs-portal,UW-Madison-DoIT/angularjs-portal
|
725f35803d90d34bc2a5f4f7352215d0f7980efe
|
.travis.yml
|
.travis.yml
|
language: python
sudo: false
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=flake8
install:
- pip install tox codecov
after_success:
codecov
script:
- tox -e $TOX_ENV
|
language: python
sudo: false
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: 3.5
env: TOXENV=flake8
install:
- pip install tox codecov
after_success:
codecov
script:
- tox
|
Add python 3.5 and 3.6
|
Add python 3.5 and 3.6
|
YAML
|
bsd-2-clause
|
migonzalvar/dj-email-url
|
62618ab460f77a93ee4777c85cabc4b0b556207f
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.4
- 1.5
- tip
matrix:
allow_failures:
- go: tip
script:
- test -z $(gofmt -l .)
|
language: go
go:
- 1.10
- 1.11
- tip
matrix:
allow_failures:
- go: tip
script:
- test -z $(gofmt -l .)
|
Drop support for Golang < 1.10
|
Drop support for Golang < 1.10
This is because they are not supported by the release policy.
|
YAML
|
mpl-2.0
|
hooklift/gowsdl
|
0423c2696d168cb1468d326ee30fb374a0d7a7d0
|
.travis.yml
|
.travis.yml
|
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '6'
env:
global:
- ENCRYPTION_LABEL: "a8c5e363dc84"
- COMMIT_AUTHOR_EMAIL: "[email protected]"
- TRIGGER_REPO_SLUG: "patternfly/patternfly-ng"
- TRIGGER_REPO_BRANCH: "master"
before_install:
- npm install git+https://github.com/patternfly/patternfly-eng-release.git
install: true
script:
- sh -x ./node_modules/patternfly-eng-release/scripts/_build.sh -x
before_script:
- npm prune
after_success:
- npm run semantic-release
- npm run publish-travis
branches:
except:
- /^v\d+\.\d+\.\d+$/
|
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '6'
env:
global:
- ENCRYPTION_LABEL: "a8c5e363dc84"
- COMMIT_AUTHOR_EMAIL: "[email protected]"
- TRIGGER_REPO_SLUG: "patternfly/patternfly-ng"
- TRIGGER_REPO_BRANCH: "master"
before_install:
- npm install git+https://github.com/patternfly/patternfly-eng-release.git
install: true
script:
- sh -x ./node_modules/patternfly-eng-release/scripts/_build.sh -x
before_script:
- npm prune
after_success:
- printf "$NPM_USER\n$NPM_PWD\[email protected]" | npm login
- npm run semantic-release
- npm run publish-travis
branches:
except:
- /^v\d+\.\d+\.\d+$/
|
Fix npm publish with login.
|
fix(release): Fix npm publish with login.
|
YAML
|
mit
|
patternfly/patternfly-ng,catrobson/patternfly-ng2,dlabrecq/patternfly-ng,patternfly/patternfly-ng,catrobson/patternfly-ng2,dlabrecq/patternfly-ng,patternfly/patternfly-ng,dlabrecq/patternfly-ng,dlabrecq/patternfly-ng,patternfly/patternfly-ng,catrobson/patternfly-ng2
|
f034ace2354ab0b817afc32903e052a3bb907882
|
.travis.yml
|
.travis.yml
|
language: python
sudo: false
python:
- "pypy"
- "pypy3"
- "3.5"
- "3.4"
- "3.3"
- "3.2"
- "2.7"
- "2.6"
install:
- pip install -U pytest
- pip install coveralls
- pip install pytest-cov
script:
py.test -v --cov tinydb
after_success:
coveralls
|
language: python
sudo: false
python:
- "pypy"
- "pypy3"
- "3.5"
- "3.4"
- "3.3"
- "3.2"
- "2.7"
- "2.6"
install:
- pip install -U pytest
# Coveralls 4.0 doesn't support Python 3.2
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi
- if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then travis_retry pip install coverage; fi
- pip install pytest-cov
script:
py.test -v --cov tinydb
after_success:
coveralls
|
Fix Travis-CI tests on Python 2.3
|
Fix Travis-CI tests on Python 2.3
|
YAML
|
mit
|
msiemens/tinydb
|
9ff2c45d3cb3cf1c071e9a5e40d9fdcccd7229e7
|
.travis.yml
|
.travis.yml
|
language: php
sudo: required
dist: trusty
php:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "master"
- "nightly"
matrix:
fast_finish: true
allow_failures:
- php: "8.0"
- php: "master"
- php: "nightly"
install:
- pecl install sodium
- travis_retry composer install --no-interaction
- wget -c -nc --retry-connrefused --tries=0 https://github.com/php-coveralls/php-coveralls/releases/download/v2.0.0/php-coveralls.phar
- chmod +x php-coveralls.phar
- php php-coveralls.phar --version
script:
- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- ./vendor/bin/psalm
after_success:
- travis_retry php php-coveralls.phar -v
before_script:
- mkdir -p build/logs
- ls -al
cache:
directories:
- vendor
- $HOME/.cache/composer
|
language: php
sudo: required
dist: trusty
php:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "master"
- "nightly"
matrix:
fast_finish: true
allow_failures:
- php: "8.0"
- php: "master"
- php: "nightly"
install:
- travis_retry composer install --no-interaction
- wget -c -nc --retry-connrefused --tries=0 https://github.com/php-coveralls/php-coveralls/releases/download/v2.0.0/php-coveralls.phar
- chmod +x php-coveralls.phar
- php php-coveralls.phar --version
script:
- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- ./vendor/bin/psalm
after_success:
- travis_retry php php-coveralls.phar -v
before_script:
- mkdir -p build/logs
- ls -al
cache:
directories:
- vendor
- $HOME/.cache/composer
|
Remove ext/sodium from build instructions
|
Remove ext/sodium from build instructions
|
YAML
|
mpl-2.0
|
paragonie/halite,paragonie/halite
|
f3afcc03bfd05a793d923f0672394d2be6e9d52c
|
.travis.yml
|
.travis.yml
|
language: php
php:
- '7.1'
services:
- mysql
before_install:
# disable xdebug, because it affects performance
- phpenv config-rm xdebug.ini
# create our test database
- mysql -e "CREATE DATABASE IF NOT EXISTS skyscrapers_dev;"
- mysql -e "CREATE USER 'skyscrapers_dev'@'localhost' IDENTIFIED BY 'kwJM2HVk9L8b41Hv';"
- mysql -e "GRANT ALL ON skyscrapers_dev.* to 'skyscrapers_dev'@'localhost';"
- mysql -e "FLUSH PRIVILEGES;"
install:
- composer install
script:
- composer exec -v "phpunit --bootstrap test/bootstrap.php test"
|
language: php
php:
- '7.1'
- '5.5'
services:
- mysql
before_install:
# disable xdebug, because it affects performance
- phpenv config-rm xdebug.ini
# create our test database
- mysql -e "CREATE DATABASE IF NOT EXISTS skyscrapers_dev;"
- mysql -e "CREATE USER 'skyscrapers_dev'@'localhost' IDENTIFIED BY 'kwJM2HVk9L8b41Hv';"
- mysql -e "GRANT ALL ON skyscrapers_dev.* to 'skyscrapers_dev'@'localhost';"
- mysql -e "FLUSH PRIVILEGES;"
install:
- composer install
script:
- composer exec -v "phpunit --bootstrap test/bootstrap.php test"
|
Include php 5.5 in Travis-CI settings.
|
Include php 5.5 in Travis-CI settings.
|
YAML
|
mit
|
dadish/ProcessGraphQL,dadish/ProcessGraphQL
|
ff6bfcedee4bf0c71492e3f7bc0c3a6c740ae8db
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.9"
install:
- npm install -g grunt-cli
- npm install
|
language: node_js
node_js:
- "0.11"
- "0.10"
install:
- npm install -g grunt-cli
- npm install
|
Remove Node.js 0.9 from test suite
|
Remove Node.js 0.9 from test suite
This version is no longer available to the test suite.
|
YAML
|
mit
|
jGleitz/mustache-render,5thWall/mustache-render,jGleitz/mustache-render,5thWall/mustache-render
|
313e3f100d9fdc75a4b3e137fb78428529b639a5
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '0.12'
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanbul coveralls
|
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanbul coveralls
|
Test with Node.js 4.2 on Travis CI.
|
Test with Node.js 4.2 on Travis CI.
|
YAML
|
mit
|
bigeasy/riffle,bigeasy/riffle
|
cb71bbb7a0b88cdb472807ed0edd78c3c1015a01
|
.travis.yml
|
.travis.yml
|
---
language: ruby
before_install:
- rvm get head
- gem install bundler
rvm:
- 2.2.4
- 2.3.1
- ruby-head
- rbx-2
- jruby-9.1.0.0
- jruby-head
sudo: false
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
notifications:
recipients:
- [email protected]
slack: sinatrarb:LQGhUfGYcqRgRzwKea0bqUhY
|
---
language: ruby
dist: trusty
group: edge
before_install:
- rvm get head
- gem install bundler
rvm:
- 2.2.4
- 2.3.1
- ruby-head
- rbx-2
- jruby-9.1.0.0
- jruby-head
sudo: false
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
notifications:
recipients:
- [email protected]
slack: sinatrarb:LQGhUfGYcqRgRzwKea0bqUhY
|
Use trusty image and edge to use the latest available image
|
Use trusty image and edge to use the latest available image
Thanks @SamSaffron for the tip! :cake:
|
YAML
|
mit
|
ryanshaw/sinatra,sinatra/sinatra,burningTyger/sinatra,jkowens/sinatra,sinatra/sinatra,JonMidhir/sinatra,ryanshaw/sinatra,burningTyger/sinatra,burningTyger/sinatra,JonMidhir/sinatra,jkowens/sinatra,jkowens/sinatra,mwpastore/sinatra,JonMidhir/sinatra,mwpastore/sinatra,mwpastore/sinatra
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.