commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
ff0aa06a272d6cb65495a31508094a0f2f6fd819 | spec/mock_playbook.yml | spec/mock_playbook.yml | ---
- name: Testing Playbook
hosts: all
gather_facts: no
tasks:
- name: Test task
register: test_msg
changed_when: "'Test' in test_msg.stderr"
shell: echo 'Test' | ---
- name: Testing Playbook
hosts: all
gather_facts: no
connection: local
tasks:
- name: Test task
register: test_msg
changed_when: "'Test' in test_msg.stderr"
shell: echo 'Test' | Use Ansible's local connection option for tests | Use Ansible's local connection option for tests
| YAML | mit | pgeraghty/ansible-wrapper-ruby,pgeraghty/ansible-wrapper-ruby |
d9d37261a76507fd0eb749eb1484ce936e339319 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanb... | sudo: false
language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm i... | Build without `sudo` on Travis CI. | Build without `sudo` on Travis CI.
| YAML | mit | bigeasy/strata,bigeasy/strata |
b1d85aee185f71d71ee9b439ce1d91397340a91c | .travis.yml | .travis.yml | language: ruby
before_install: gem install bundler
rvm:
- 1.9.3
- 2.0.0
branches:
only:
- master
- production
notifications:
email:
recipients:
- api-versions@erichmenge.com
env:
- RAILS_VERSION=3.0.17
- RAILS_VERSION=3.1.8
- RAILS_VERSION=3.2.9
| language: ruby
before_install: gem install bundler
rvm:
- 1.9.3
- 2.0.0
branches:
only:
- master
- production
notifications:
email:
recipients:
- api-versions@erichmenge.com
env:
- RAILS_VERSION=3.0.17
- RAILS_VERSION=3.1.8
- RAILS_VERSION=3.2.9
matrix:
allow_failures:
- rvm: 2... | Allow 2.0.0 preview to fail. | Allow 2.0.0 preview to fail.
| YAML | mit | begriffs/api-versions,PagerDuty/api-versions,EDMC/api-versions |
580b92c10203653934b28688783632d74b4e049f | .travis.yml | .travis.yml | # travis file
# https://docs.travis-ci.com/user/customizing-the-build
language: node_js
node_js:
- 8.1.0
env:
- CXX=g++-4.8 NODE_ENV=production
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- graphicsmagick
cache:
directories:
# パッケージをキャッシュすると本来は動かないはずなのに... | # travis file
# https://docs.travis-ci.com/user/customizing-the-build
language: node_js
node_js:
- 7.10.0
env:
- CXX=g++-4.8 NODE_ENV=production
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- graphicsmagick
cache:
directories:
# パッケージをキャッシュすると本来は動かないはずなの... | Revert "[CI] Use node 8.x" | Revert "[CI] Use node 8.x"
This reverts commit fa966cdda6677ff80c706690c65ed9552e594858.
| YAML | mit | Tosuke/misskey,ha-dai/Misskey,ha-dai/Misskey,syuilo/Misskey,Tosuke/misskey,Tosuke/misskey,Tosuke/misskey,Tosuke/misskey,syuilo/Misskey |
6873b8547154f42ca1d3fe368e970772c61a8eee | meta/main.yml | meta/main.yml | ---
dependencies: []
galaxy_info:
author: fubarhouse
description: Installs NVM, NodeJS and NPM packages.
license: "license (BSD, MIT)"
min_ansible_version: 2.1.0.0
platforms:
- name: Debian
versions:
- wheezy
- jessie
- stretch
- name: EL
versions:
- 6
- 7
- name: Fedora
... | ---
dependencies: []
galaxy_info:
author: fubarhouse
description: Installs NVM, NodeJS and NPM packages.
license: "license (BSD, MIT)"
min_ansible_version: 2.1.0.0
platforms:
- name: Debian
versions:
- wheezy
- jessie
- stretch
- name: EL
versions:
- 6
- 7
- name: ... | Update meta for formatting; add utopic. | Update meta for formatting; add utopic.
Signed-off-by: Karl Hepworth <c14c6f041bb80410635ef9142e07c8627a565b5a@gmail.com>
| YAML | mit | fubarhouse/fubarhouse.npm,fubarhouse/ansible-role-nodejs |
534a662c7d4fb2f91caa5cdfaf7f39928522bbed | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
env:
- TOX_ENV=py36-django111
- TOX_ENV=py35-django111
- TOX_ENV=py34-django111
- TOX_ENV=py27-django111
- TOX_ENV=py35-django110
- TOX_ENV=py34-django110
- TOX_ENV=py27-django110
- TOX_ENV=py35-django19
- TOX_ENV=py34-django... | language: python
python: 3.6
env:
- TOX_ENV=py36-django111
- TOX_ENV=py35-django111
- TOX_ENV=py34-django111
- TOX_ENV=py27-django111
- TOX_ENV=py35-django110
- TOX_ENV=py34-django110
- TOX_ENV=py27-django110
- TOX_ENV=py35-django19
- TOX_ENV=py34-django19
- TOX_ENV=py27-django19
- TOX_ENV=py35-... | Remove multiple Python versions from text matrix | Remove multiple Python versions from text matrix
| YAML | bsd-3-clause | jbittel/django-mama-cas,jbittel/django-mama-cas,orbitvu/django-mama-cas,orbitvu/django-mama-cas |
180b5a388830b78449bc0d9eb7908eaf79e8a54b | .travis.yml | .travis.yml | language: ruby
services:
- mongodb
before_install:
- gem install bundler
gemfile:
- Gemfile
- Gemfile.rails4
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- jruby-19mode
notifications:
email:
recipients:
- lest@brainspec.com
- nashby@brainspec.com
- dreamfall@brainspec.com
| language: ruby
services:
- mongodb
before_install:
- gem install bundler
gemfile:
- Gemfile
- Gemfile.rails4
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- jruby-19mode
matrix:
exclude:
- rvm: 2.2
gemfile: Gemfile
notifications:
email:
recipients:
- lest@brainspec.com
- nashby@brains... | Exclude ruby 2.2 and Rails 3.2 from the build matrix. | Exclude ruby 2.2 and Rails 3.2 from the build matrix. | YAML | mit | victor95pc/enumerize,quarkstudio/enumerize,brainspec/enumerize,hungrything/enumerize,monfresh/enumerize,tanraya/enumerize,tranvictor/enumerize,shaundunne/enumerize |
a89ca8fd701d689199804d012c762e91bc00f782 | .travis.yml | .travis.yml | env:
- CXX=g++-4.8
language: node_js
node_js:
- "8"
- "10"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
install: npm install
before_install:
- npm install -g npm
- npm install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
after_script: ... | env:
- CXX=g++-4.8
language: node_js
node_js:
- "8"
- "10"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
install: npm install
before_install:
- npm install -g npm@6.1.0
- npm install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
after_sc... | Make Travis npm version explicit at 6.1.0 | Make Travis npm version explicit at 6.1.0
| YAML | mit | guyellis/plant-image-lambda,guyellis/plant-image-lambda |
9c06ab0fd435ad7a7124fb04f29adcac8ceff73b | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
env:
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=4.1.0" | language: ruby
matrix:
include:
- rvm: 1.9.3
env: "RAILS_VERSION=3.2.0"
- rvm: 2.0.0
env: "RAILS_VERSION=4.0.0"
- rvm: 2.1.2
env: "RAILS_VERSION=4.1.0"
- rvm: 2.2.0
env: "RAILS_VERSION=4.2.0"
| Test w/ ruby 2.2 and rails 4.2.0 | Test w/ ruby 2.2 and rails 4.2.0
| YAML | mit | infinum/phrasing,1000ideas/phrasing,aniltimt/phrasing,aniltimt/phrasing,paulewetzel/phrasing,infinum/phrasing,1000ideas/phrasing,aniltimt/phrasing,paulewetzel/phrasing,paulewetzel/phrasing,infinum/phrasing |
4190db6dcada9a38b19fb08bbc2e942ba53d1904 | .travis.yml | .travis.yml | language: perl
perl:
- 5.14
- 5.16
- 5.18
| language: perl
perl:
- 5.14
- 5.16
- 5.18
- 5.20
| Add Perl v5.20 to Travis | Add Perl v5.20 to Travis
Support latest Perl version ;)
| YAML | mit | zakame/hashids.pm,zakame/hashids.pm |
0c9200229be29f415e232845bd911c57205772aa | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.5"
- "3.6"
env:
matrix:
- DJANGO="Django>=1.8,<1.9" # 1.8
- DJANGO="Django>=1.9,<1.10" # 1.9
- DJANGO="Django>=1.10,<1.11" # 1.10
- DJANGO="Django>=1.11,<1.12" # 1.11
- DJANGO="Django>=2.0,<2.1" # 2.0
- DJANGO="Django>=2.1,<2.2" # 2.0
cache: pip
... | language: python
python:
- "3.4"
- "3.5"
- "3.6"
env:
matrix:
- DJANGO="Django>=1.8,<1.9" # 1.8
- DJANGO="Django>=1.9,<1.10" # 1.9
- DJANGO="Django>=1.10,<1.11" # 1.10
- DJANGO="Django>=1.11,<1.12" # 1.11
- DJANGO="Django>=2.0,<2.1" # 2.0
- DJANGO="Django>=2.1,<2.2" # 2.0
cache: pip
... | Remove support to Python 2.7 and Django < 1.8, add suport do Django 2.1 | Remove support to Python 2.7 and Django < 1.8, add suport do Django 2.1
| YAML | mit | ebertti/django-admin-easy,ebertti/django-admin-easy |
d32ce917038c0379aa74886b5a34e2b9ed6b92ef | .travis.yml | .travis.yml | language: generic
dist: trusty
services:
- docker
env:
- VERSION=stable COMMAND="cargo build"
- VERSION=nightly COMMAND="cargo clippy -- -Dclippy"
- VERSION=nightly COMMAND="cargo fmt -- --write-mode=diff"
- VERSION=nightly COMMAND="cargo build --release"
before_install:
- docker pull undeadleech/xcbars-$VE... | language: generic
dist: trusty
services:
- docker
env:
- VERSION=stable COMMAND="cargo build"
- VERSION=nightly COMMAND="cargo clippy -- -Dclippy"
- VERSION=nightly COMMAND="cargo fmt -- --write-mode=diff"
- VERSION=nightly COMMAND="cargo build"
- VERSION=nightly COMMAND="cargo build --release"
- VERSION=... | Add more configs for debugging | Add more configs for debugging
| YAML | apache-2.0 | dogamak/xcbars |
e812e4f0429100359ca684fe4fa23fe9e55db766 | .travis.yml | .travis.yml | ---
language: ruby
matrix:
include:
- rvm: "1.9.3-p545"
env: COMMAND=rake
- rvm: "1.9.2"
env: COMMAND=rspec
install: bundle install --deployment --without debug
script: bundle exec $COMMAND
| ---
language: ruby
matrix:
include:
- rvm: "1.9.3-p545"
env: COMMAND=rake
# - rvm: "1.9.2"
# env: COMMAND=rspec
install: bundle install --deployment --without debug
script: bundle exec $COMMAND
| Disable tests for Ruby 1.9.2 | Disable tests for Ruby 1.9.2 | YAML | apache-2.0 | eroslaci/ibm-websphere-liberty-buildpack,ddayal219/ibm-websphere-liberty-buildpack,opiethehokie/ibm-websphere-liberty-buildpack,snaik17/ibm-websphere-liberty-buildpack,jmarrero/ibm-websphere-liberty-buildpack,ddayal219/ibm-websphere-liberty-buildpack,mattclarkdotnet/liberty-local,mattclarkdotnet/liberty-local,sabarivij... |
e568f1ac2280785f7b12d8a046977b009ab42c21 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
# - rbx-19mode | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
| Add Ruby 2.1.0 for testing | Add Ruby 2.1.0 for testing
| YAML | mit | layervault/psd.rb,sideci-sample/sideci-sample-psd.rb,excid3/psd.rb,jamesbeat/psd.rb,etanlubeck/psd.rb |
83b93bba8934febb4ea312882ecc6b80c7ba31d4 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
# command to install dependencies
before_install: ./configure
install: make
# command to run tests
script:
make test
addons:
apt:
packages:
- nginx | language: python
python:
- "3.5"
# command to install dependencies
before_install: ./configure
install: make
# command to run tests
script:
make test
addons:
apt:
packages:
- nginx
| Exclude Python 2.7 from Travis build matrix. | Exclude Python 2.7 from Travis build matrix. | YAML | mit | tchalvak/tinker-engine,tchalvak/tinker-engine |
3f0bba7d34d9f30dd5e9ba8a0b9f1bd8cc15e783 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
| sudo: false
language: node_js
node_js:
- "0.12"
- "0.10"
| Add node.js 0.12 on Travis CI | Add node.js 0.12 on Travis CI
| YAML | mit | himynameisdave/postcss,webdev1001/postcss,geminiyellow/postcss,jonathantneal/postcss,dpiatek/postcss,Semigradsky/postcss,postcss/postcss,OEvgeny/postcss,qiucanghuai/postcss,smagic39/postcss,alanev/postcss,zhuojiteam/postcss,justim/postcss,MadLittleMods/postcss,nicksheffield/postcss,dpostigo/postcss,johnotander/postcss,... |
355285a6ade9264945c92cfb1cd999f4f37488d4 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.2
env:
global:
- SDK=iphonesimulator10.2
- WORKSPACE=Withings-SDK-iOS.xcworkspace
- FRAMEWORK_SCHEME=Withings-SDK-iOS
- EXAMPLE_SCHEME=Withings-SDK-iOS-Demo
matrix:
- DESTINATION="OS=10.2,name=iPhone 7 Plus"
- DESTINATION="OS=9.3,name=iPhone 6"
- DESTINATI... | language: objective-c
osx_image: xcode8.2
env:
global:
- SDK=iphonesimulator10.2
- WORKSPACE=Withings-SDK-iOS.xcworkspace
- FRAMEWORK_SCHEME=Withings-SDK-iOS
- EXAMPLE_SCHEME=Withings-SDK-iOS-Demo
matrix:
- DESTINATION="id=8188B40E-F57F-4519-AC47-E43D884B9016,OS=10.2,name=iPhone 7 Plus"
- DESTINATIO... | Fix build on Travis for destination “OS=10.2,name=iPhone 7 Plus” which corresponds to 2 destination on Travis | Fix build on Travis for destination “OS=10.2,name=iPhone 7 Plus” which corresponds to 2 destination on Travis
| YAML | mit | jdrevet/Withings-SDK-iOS |
cd15291cef8a2e47f3773cccfdeb58cec985d377 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.12"
addons:
firefox: "47.0"
notifications:
irc:
channels:
- "irc.mozilla.org#pageshot"
on_success: change
template:
- "%{message}: %{repository}#%{build_number} (%{branch} - %{commit} : %{author}) %{build_url}"
before_install:
- "export DISP... | sudo: false
language: node_js
node_js:
- "0.12"
cache:
bundler: true
directories:
- node_modules
addons:
firefox: "47.0"
notifications:
irc:
channels:
- "irc.mozilla.org#pageshot"
on_success: change
template:
- "%{message}: %{repository}#%{build_number} (%{branch} - %{commit} : %{... | Add cache, and probe node_modules | Add cache, and probe node_modules
| YAML | mpl-2.0 | mozilla-services/pageshot,mozilla-services/screenshots,fzzzy/pageshot,fzzzy/pageshot,mozilla-services/pageshot,mozilla-services/pageshot,mozilla-services/screenshots,mozilla-services/screenshots,mozilla-services/pageshot,fzzzy/pageshot,fzzzy/pageshot,mozilla-services/screenshots |
f74d983eea51dc293bf63a7cd2b4894a27d84199 | .travis.yml | .travis.yml | env:
global:
- JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby
script: bundle exec rspec
before_install: gem update bundler
matrix:
include:
- rvm: 1.9.3
gemfile: Gemfile
- rvm: 2.0.0
gemfile: Gemfile
- rvm: 2.1
gemfile: Gemfile
- rvm: 2.2
gemfile: Gemfile
- rvm: 2.3.... | env:
global:
- JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby
script: bundle exec rspec
before_install: gem update bundler
matrix:
include:
- rvm: 1.9.3
gemfile: Gemfile
- rvm: 2.0.0
gemfile: Gemfile
- rvm: 2.1
gemfile: Gemfile
- rvm: 2.2
gemfile: Gemfile
- rvm: 2.3.... | Allow jruby-head and ruby-head to fail on Travis | chore: Allow jruby-head and ruby-head to fail on Travis
| YAML | mit | impraise/omniauth-saml |
3a2616d52f2a647bb3c86b4c713054a69aae24ee | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "2.7"
# - "pypy"
# Install flake8
install:
- pip install -r requirements.txt --use-mirrors
before_script:
- python tests.py write
script:
- flake8 --max-complexity 10 linescan.py
- python tests.py
| language: python
python:
- "3.3"
- "2.7"
# - "pypy"
# Install flake8
install:
- pip install -r requirements.txt --use-mirrors
before_script:
- python tests.py write
script:
- flake8 --max-complexity 10 linescan.py
- flake8 --max-complexity 10 tests.py
- python tests.py
| Test tests.py against flake8 too | Test tests.py against flake8 too
[ci skip] | YAML | mit | le717/linescan.py |
6d0a6bbe62c1dd9080c6f0316b5ed6a276f1e804 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
notifications:
email: false
| language: node_js
node_js:
- "0.10"
- "0.12"
notifications:
email: false
| Remove iojs from build matrix | Remove iojs from build matrix
The new release of iojs is causing all manner of issues with travis builds. Since we're not officially supporting iojs then the best option is just to remove it.
| YAML | mit | UKHomeOffice/passports-frontend-toolkit |
7c89137ca02870e12a02835b5644d84bd90d8664 | .travis.yml | .travis.yml | language: rust
rust: 1.0.0-beta
after_success: |
[ $TRAVIS_BRANCH = master ] && \
[ $TRAVIS_PULL_REQUEST = false ] && \
cargo doc && \
echo "<meta http-equiv=refresh content=0;url=lines/index.html>" > target/doc/index.html && \
sudo pip install ghp-import && \
ghp-import -n target/doc && \
git push -fq ht... | language: rust
rust: 1.0.0-beta.3
after_success: |
[ $TRAVIS_BRANCH = master ] && \
[ $TRAVIS_PULL_REQUEST = false ] && \
cargo doc && \
echo "<meta http-equiv=refresh content=0;url=lines/index.html>" > target/doc/index.html && \
sudo pip install ghp-import && \
ghp-import -n target/doc && \
git push -fq ... | Update rust binary to compiler against | Update rust binary to compiler against
| YAML | mit | xitep/lines-rs |
935580dc9692da6476450ac7f61fe5033a600c75 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.6"
env:
- TRAVIS_NODE_VERSION="6"
- TRAVIS_NODE_VERSION="8"
install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION
-... | language: python
python:
- "2.7"
- "3.6"
env:
- TRAVIS_NODE_VERSION="6"
- TRAVIS_NODE_VERSION="8"
install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION
-... | Use codecov instead of coveralls | Use codecov instead of coveralls
| YAML | mit | logandk/serverless-wsgi,logandk/serverless-wsgi |
b26d5995df76204ef4596abcfcb6f524ff37378d | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install: "pip install -q -r requirements.txt"
script:
- cd documentation; sphinx-build -nW -b html source build
- flake8 --select E .
| language: python
python:
- "2.7"
install: "pip install -q -r requirements.txt"
script:
- cd documentation; sphinx-build -nW -b html source build
- flake8 .
| Reset flake8 to default option. | Reset flake8 to default option.
Signed-off-by: debojitkakoti <292f70702fc58c01556c9af375a1fead0f069924@gmail.com>
| YAML | apache-2.0 | yudaykiran/openebs |
f40fda67ed94ed45763ec9a030fb59c530587083 | .travis.yml | .travis.yml | language: node_js
node_js:
- '6'
env:
global:
- CI=true
- NODE_ENV=test
- AWS_REGION=us-west-2
before_install:
# Repo for Yarn
- sudo apt-key adv --fetch-keys http://dl.yarnpkg.com/debian/pubkey.gpg
- echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
- sud... | language: node_js
node_js:
- '6'
env:
global:
- CI=true
- NODE_ENV=test
- AWS_REGION=us-west-2
before_install:
# Repo for Yarn
- sudo apt-key adv --fetch-keys http://dl.yarnpkg.com/debian/pubkey.gpg
- echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
- sud... | Remove Docker from build command. | Remove Docker from build command.
| YAML | mpl-2.0 | gladly-team/tab,gladly-team/tab,gladly-team/tab |
0c45d33ead8fa830d55b74dddf44702ff5375a8a | .travis.yml | .travis.yml | language: cpp
os:
- linux
before_install:
# g++4.8.1
- if [ "$CXX" == "g++" ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
# clang 3.4
- if [ "$CXX" == "clang++" ]; then sudo add-apt-repository -y ppa:h-rayflood/llvm; fi
- sudo apt-get update -qq
install:
- sudo apt-get install -qq ... | language: cpp
os:
- linux
before_install:
- if [ "$CXX" == "g++" ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
- if [ "$CXX" == "clang++" ]; then sudo add-apt-repository -y ppa:h-rayflood/llvm; fi
- sudo apt-get update -qq
install:
- sudo apt-get install -qq gnulib
- sudo apt-get ins... | Update Travis setting ( g++ version 4.8 -> 4.7 ) | Update Travis setting ( g++ version 4.8 -> 4.7 )
| YAML | lgpl-2.1 | Hiroyuki-Nagata/XrossBoard,Hiroyuki-Nagata/XrossBoard,Hiroyuki-Nagata/XrossBoard,Hiroyuki-Nagata/XrossBoard,Hiroyuki-Nagata/XrossBoard,Hiroyuki-Nagata/XrossBoard,Hiroyuki-Nagata/XrossBoard |
198454ec3407978c7a8485a5f1f0392df3706438 | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- oraclejdk7
install: "./installViaTravis.sh"
script: "./buildViaTravis.sh"
cache:
directories:
- "$HOME/.gradle/caches/"
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_cb6c1fbf7ffb_key -iv $encrypted_cb6c1fbf7ffb_iv
-in gradle.properties.e... | language: java
sudo: false
jdk:
- oraclejdk7
install: "./installViaTravis.sh"
script: "./buildViaTravis.sh"
cache:
directories:
- "$HOME/.gradle/caches/"
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_cb6c1fbf7ffb_key -iv $encrypted_cb6c1fbf7ffb_iv
-in gradle.properties.e... | Fix path problem in Travis CI configuration | Fix path problem in Travis CI configuration
| YAML | apache-2.0 | nebula-plugins/gradle-rxjava-project-plugin,rspieldenner/gradle-rxjava-project-plugin |
42921af8ca9398d4a8457f685078ca10683c627f | .travis.yml | .travis.yml | language: php
before_script:
- composer install --prefer-source
script: phpunit
php:
- 5.3
- 5.4
- 5.5
- hhvm
| language: php
before_script:
- composer install --prefer-source
script: phpunit
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
| Add PHP 5.6 and 7 on Travis | Add PHP 5.6 and 7 on Travis
| YAML | mit | twigphp/Twig-extensions,KacerCZ/Twig-extensions,bocharsky-bw/Twig-extensions,twoixter/Twig-extensions,dkarvounaris/Twig-extensions,patkar/Twig-extensions,Trainmaster/Twig-extensions,SpacePossum/Twig-extensions,sroze/twig-extensions |
44f39473852da5db1a6e8b0198aaa848f576b864 | .travis.yml | .travis.yml | language: go
script:
- go test -v ./...
go:
- 1.3.3
- 1.4.3
- 1.5.2
install:
- go get gopkg.in/fsnotify.v1
- go get gopkg.in/tomb.v1
| language: go
script:
- go test -race -v ./...
go:
- 1.3.3
- 1.4.3
- 1.5.2
install:
- go get gopkg.in/fsnotify.v1
- go get gopkg.in/tomb.v1
| Add race detection on Travis CI | Add race detection on Travis CI
| YAML | mit | ActiveState/tail,bfitzsimmons/tail,miraclesu/tail |
8db292a8ccb31e0ebdc3042fed3afb3c758b924d | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
script: RAILS_ENV=test rake spec
| language: ruby
rvm:
- 1.9.3
- jruby-19mode
script: RAILS_ENV=test rake spec
| Add JRuby to build matrix. | Add JRuby to build matrix.
| YAML | mit | final-ci/travis-sidekiqs,travis-ci/travis-sidekiqs |
6f2d9e13edb226f01049a1a91a4e3d5605ca4fae | .travis.yml | .travis.yml | sudo: required
os:
- linux
- osx
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# versions of java to test (for parsers)
before_install:
- sudo apt-get update
- sudo apt-get install oracle-java8-installer oracle-java8-set-default
# command to install dependencies
install:
- pip install --upg... | sudo: required
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# versions of java to test (for parsers)
before_install:
- sudo apt-get update
- sudo apt-get install oracle-java8-installer oracle-java8-set-default
# command to install dependencies
install:
- pip install --upgrade pip setuptools wh... | Revert to Linux only tests | Revert to Linux only tests
| YAML | mit | jakelever/kindred,jakelever/kindred |
150de910a59db7de4125649e3a478dc264252a35 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.12'
before_install:
- npm install -g grunt-cli
install: script/deps.sh
script:
- script/build.sh
- script/test.sh
before_deploy: script/deploy.sh
deploy:
provider: releases
api_key:
secure: K5SwhcI8qO9GBYw98lzuN/pvrN27IoTH1NfTQqLRpQoWfFn3gbqKIoVlrWZb5YNiR1jWCtCZxLnYF/PV4I2gTgcNY9... | language: node_js
node_js:
- '0.12'
before_install:
- npm install -g grunt-cli
install: script/deps.sh
script:
- script/build.sh
- script/test.sh
before_deploy: script/deploy.sh
deploy:
provider: releases
api_key:
secure: K5SwhcI8qO9GBYw98lzuN/pvrN27IoTH1NfTQqLRpQoWfFn3gbqKIoVlrWZb5YNiR1jWCtCZxLnYF/PV4I2gTgcNY9... | Add Github token for pushing to gh-pages | Add Github token for pushing to gh-pages
Added a Github token solely for pushing to gh-pages branch by Travis CI.
The token will be available as the environment variable, GH_TOKEN
| YAML | mit | GochoMugo/battnag,GochoMugo/battnag,GochoMugo/battnag |
bf76e5699422f22cbc79e60d4a0b0c87a9c1f5f2 | .travis.yml | .travis.yml | dist: bionic
language: go
go_import_path: github.com/godbus/dbus
go:
- 1.10.x
- 1.11.x
- 1.12.x
- tip
env:
global:
matrix:
- TARGET=amd64
- TARGET=arm64
- TARGET=arm
- TARGET=386
- TARGET=ppc64le
matrix:
fast_finish: true
allow_failures:
- go: tip
exclude:
- go: tip
env: TA... | dist: bionic
language: go
go_import_path: github.com/godbus/dbus
go:
- 1.11.x
- 1.12.x
- 1.13.x
- tip
env:
global:
matrix:
- TARGET=amd64
- TARGET=arm64
- TARGET=arm
- TARGET=386
- TARGET=ppc64le
matrix:
fast_finish: true
allow_failures:
- go: tip
exclude:
- go: tip
env: TA... | Support last three go versions | Support last three go versions
| YAML | bsd-2-clause | godbus/dbus |
fdaf8c3dedbabbcbfd0f18857d112518ea2ff914 | .travis.yml | .travis.yml | language: node_js
node_js:
- "9"
- "8"
- "7"
- "6"
- "5"
sudo: false
before_install:
- npm i -g makeshift && makeshift -s @bcoe -r https://registry.npmjs.org
script:
- npm run test-with-cov
before_deploy:
- git config --global user.name 'Travis CI'
- git config --global user.email 'travis@reidweb.c... | language: node_js
node_js:
- "9"
- "8"
- "7"
- "6"
- "5"
sudo: false
before_install:
- npm i -g makeshift && makeshift -s @bcoe -r https://registry.npmjs.org
script:
- npm run test-with-cov
before_deploy:
- git config --global user.name 'Travis CI'
- git config --global user.email 'travis@reidweb.c... | Change release behaviour Do not use Travis' release behaviour | ci(deployment): Change release behaviour
Do not use Travis' release behaviour
| YAML | mit | ReidWeb/GitInspector-CSV |
49cebe84f5a0ed7c7b83895f4f5cc65f9b5ce018 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Test with latest Node.js 4 on Travis CI. | Test with latest Node.js 4 on Travis CI.
| YAML | mit | bigeasy/kibitz,bigeasy/kibitz |
0316fa3f64ca644fa532f5cf8249beaba901c7a6 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.8.x
- 1.9.x
- master
services:
- docker
cache:
directories:
- vendor
- webroot/node_modules
before_install:
- nvm install 6.11.0
- nvm use 6.11.0
- npm install -g yarn
install:
- make deps-install
- cd webroot && make yarn-install && cd ..
script:
- ... | language: go
sudo: false
go:
- 1.8.x
- 1.9.x
- master
services:
- docker
cache:
directories:
- vendor
- webroot/node_modules
before_install:
- nvm install 6.11.0
- nvm use 6.11.0
- npm install -g yarn
install:
- make deps-install
- cd webroot && make yarn-install && cd ..
script:
- ... | Update the docker preview image to Go 1.9 | Update the docker preview image to Go 1.9
| YAML | mit | minchao/smsender,minchao/smsender,minchao/smsender,minchao/smsender |
277854f8e37117377792e0025b4e9783fd0bbe1c | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- 2.3.0
- rbx-2
- rbx-3.26
- jruby-19mode
- jruby-9.0.5
jdk:
- openjdk6
- openjdk7
- openjdk8
- oraclejdk7
- oraclejdk8
before_install:
- gem install bundler
| language: ruby
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- 2.3.0
- rbx-2
- rbx-3.26
- jruby-19mode
- jruby-9.0.5
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
before_install:
- gem install bundler
| Remove OpenJDK 8 again for Travis CI as it is not supported | Remove OpenJDK 8 again for Travis CI as it is not supported
| YAML | isc | godobject/bit_set |
e915b01cb12dc7bf04841fa10e1e7038927eb3f2 | .travis.yml | .travis.yml | language: python
notifications:
email:
- alkemic7+travis-ci-notifications@gmail.com
python:
- "2.7"
- "2.6"
install:
- pip install coverage
- pip install coveralls
- pip install nose
- python setup.py install
script:
- nosetests --with-coverage --cover-package=scrapper
after_success:
- covera... | language: python
notifications:
email:
- alkemic7+travis-ci-notifications@gmail.com
python:
- "2.7"
install:
- pip install coverage
- pip install coveralls
- pip install nose
- python setup.py install
script:
- nosetests --with-coverage --cover-package=scrapper
after_success:
- coveralls
| Revert "Setup Travis to test on 2.6" | Revert "Setup Travis to test on 2.6"
This reverts commit 94ed3d99326dffbab2328edeab5882c5782efdee.
| YAML | mit | Alkemic/scrapper,Alkemic/scrapper |
99af68fa9b49343cd447f37ee54e86526d5f6533 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.4
- 2.2.7
- 2.1.10
before_install:
- gem update --remote bundler
- gem update --system
sudo: false
bundler_args: --without=guard
notifications:
disabled: true
| language: ruby
rvm:
- 2.5.0
- 2.4.3
- 2.3.6
- 2.2.9
- 2.1.10
before_install:
- gem update --remote bundler
- gem update --system
sudo: false
bundler_args: --without=guard
notifications:
disabled: true
| Test against Ruby 2.4 and 2.5 | [CI] Test against Ruby 2.4 and 2.5 | YAML | mit | BigKeeper/big-keeper,BigKeeper/big-keeper |
951c170e86cc950dc1f94a1157eb8ca8cf3bfc5d | .travis.yml | .travis.yml | language: cpp
# enabling multi platform build (under travis beta)
# requires emailing support@travis-ci.com for this to be enabled for our repo
# http://docs.travis-ci.com/user/multi-os/
matrix:
include:
- os: osx
env: PLATFORM=osx
compiler: clang
- os: osx
env: PLATFO... | language: cpp
# enabling multi platform build (under travis beta)
# requires emailing support@travis-ci.com for this to be enabled for our repo
# http://docs.travis-ci.com/user/multi-os/
matrix:
include:
- os: osx
env: PLATFORM=osx
compiler: clang
- os: osx
env: PLATFO... | Fix Travis clang config on linux | Fix Travis clang config on linux
| YAML | mit | tangrams/tangram-es,karimnaaji/tangram-es,karimnaaji/tangram-es,quitejonny/tangram-es,karimnaaji/tangram-es,tangrams/tangram-es,xvilan/tangram-es,quitejonny/tangram-es,cleeus/tangram-es,tangrams/tangram-es,quitejonny/tangram-es,hjanetzek/tangram-es,xvilan/tangram-es,tangrams/tangram-es,tangrams/tangram-es,tangrams/tang... |
287aacdd95d6c1c8a940a8c5c1ca5c4b5ae27e0e | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.5"
- "3.6"
# command to install dependencies
install: "pip install pep8"
# command to run tests
script: python ./tests/pep8-git-pr-checker
| language: python
python:
- "2.6"
- "2.7"
- "3.5"
- "3.6"
# command to install dependencies
install:
- pip install pep8 setuptools
- python setup.py install
script:
# Stye Check
- python ./tests/pep8-git-pr-checker
# Automated Testing
- python -m unittest discover tests -v
| Add the test suite to Travis. | Add the test suite to Travis.
Change-Type: patch
| YAML | apache-2.0 | nghiant2710/resin-sdk-python,resin-io/resin-sdk-python,resin-io/resin-sdk-python,nghiant2710/resin-sdk-python |
31cc8cee94bced0031f76b88d9ab0a152d00f00d | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
# Use container-based infrastructure
sudo: false
install:
# Coveralls 4.0 doesn't support Python 3.2
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then pip install coverage==3.7.1; fi
- if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then... | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
- "pypy"
# Use container-based infrastructure
sudo: false
install:
# Coveralls 4.0 doesn't support Python 3.2
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then pip install coverage==3.7.1; fi
- if... | Add most recent Python versions in Travis CI | Add most recent Python versions in Travis CI
Add more recent Python versions including development branches and nightly build.
| YAML | mit | sixohsix/twitter,hugovk/twitter |
42b45e51087c4d37051b9df270f90b9b822b2360 | .travis.yml | .travis.yml | language: cpp
compiler: gcc
before_install:
- sudo add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu/ trusty main universe"
- sudo apt-get clean
- sudo apt-get update -qq
- sudo apt-get install -qq build-essential cmake libboost-filesystem-dev libboost-log-dev libboost-system-dev libssl-dev
before_scri... | language: cpp
compiler: gcc
before_install:
- sudo add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu/ trusty main universe"
- sudo apt-get clean
- sudo apt-get update -qq
- if [ "$CXX" = "clang++" ]; then sudo apt-get install -qq libstdc++-4.8-dev; fi
- if [ "$CXX" = "g++" ]; then sudo apt-get instal... | Update g++ once and for all. | Update g++ once and for all.
| YAML | mit | vktr/hadouken,yonglehou/hadouken,vktr/hadouken,vktr/hadouken,Robo210/hadouken,Robo210/hadouken,vktr/hadouken,Robo210/hadouken,Robo210/hadouken,yonglehou/hadouken,yonglehou/hadouken |
c4a17657d0a837b44d17a3e64a2b3a655ed0a063 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 1.9.2
gemfile:
- ".gemfiles/Gemfile.rails-3.1.x"
- ".gemfiles/Gemfile.rails-3.2.x"
| language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
gemfile:
- ".gemfiles/Gemfile.rails-3.1.x"
- ".gemfiles/Gemfile.rails-3.2.x"
| Add Ruby 2.0.0 to Travis-CI build | Add Ruby 2.0.0 to Travis-CI build
| YAML | mit | ingemar/entasis |
0b792c172de2e09a103702ac17b6c31dda6d966e | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
env:
- PUPPET_VERSION=2.6.18
- PUPPET_VERSION=2.7.21
- PUPPET_VERSION=3.0.2
- PUPPET_VERSION=3.1.1
- PUPPET_VERSION=3.2.1
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
env:
- PUPPET_VERSION=2.6.18
- PUPPET_VERSION=2.7.21
- PUPPET_VERSION=3.0.2
- PUPPET_VERSION=3.1.1
- PUPPET_VERSION=3.2.1
matrix:
exclude:
- rvm: 1.9.2
env: PUPPET_VERSION=2.6.18
- rvm: 1.9.3
env: PUPPET_VERSION=2.6.18
| Exclude Ruby 1.9.*/Puppet 2.6.18 from build matrix | Exclude Ruby 1.9.*/Puppet 2.6.18 from build matrix
| YAML | apache-2.0 | wywygmbh/puppet-cassandra,igoraj/puppet-cassandra,varunarya10/puppet-cassandra,sigmunau/puppet-cassandra,3fs/puppet-cassandra,igoraj/puppet-cassandra,msimonin/puppet-cassandra,msimonin/puppet-cassandra,3fs/puppet-cassandra,gini/puppet-cassandra,3fs/puppet-cassandra,sigmunau/puppet-cassandra,sigmunau/puppet-cassandra,ig... |
79fe99e24311fa42469fb2ca23eb3f8f065e6155 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.6
- 1.7
- 1.8
services:
- mysql
- postgresql
before_install:
- mysql -e "CREATE DATABASE IF NOT EXISTS test;" -uroot
- mysql -e "CREATE DATABASE IF NOT EXISTS test_env;" -uroot
- psql -c "CREATE DATABASE test;" -U postgres
install:
- go get -t ./... | language: go
sudo: false
go:
- 1.8
services:
- mysql
- postgresql
before_install:
- mysql -e "CREATE DATABASE IF NOT EXISTS test;" -uroot
- mysql -e "CREATE DATABASE IF NOT EXISTS test_env;" -uroot
- psql -c "CREATE DATABASE test;" -U postgres
install:
- go get -t ./...
- go install... | Stop testing old Go versions | Stop testing old Go versions
| YAML | mit | rubenv/sql-migrate,rubenv/sql-migrate |
21f9dca63ad93ab2cc7c124340474108a86306f3 | .travis.yml | .travis.yml | language: erlang
script: make test
otp_release:
- R15B01
- R15B
| language: erlang
script: make test
otp_release:
- R15B01
- R15B
- R14B04
- R14B03
- R14B02
| Build against "older" Erlang/OTP release | Build against "older" Erlang/OTP release
| YAML | bsd-3-clause | moretea/doko,moretea/doko |
dcc6b8e6f285de418fec7aa687690ebea1aef240 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
script: "node node_modules/grunt-cli/bin/grunt test:travis"
before_script:
- npm install -g bower
- bower install | language: node_js
node_js:
- "0.10"
script: "node node_modules/grunt-cli/bin/grunt test:travis"
before_script:
- npm install -g bower
- bower install
notifications:
hipchat:
rooms:
secure: "dPDcvtGQXXzdj31ftZkRShrn+l1TCnTEPTdr6YVAfzAI1Ashzhr4yGvnNfMs\n4lbxYDJfRxpTO5Xd1Hte5HH7c0ijoHEGjajySSl43+nLeShw+C... | Add HipChat notification to Travis build. | Add HipChat notification to Travis build.
| YAML | bsd-3-clause | holderdeord/hdo-budget,holderdeord/hdo-budget |
7ce68a55cfcc5bf8d95295cc287d112e082ad509 | .travis.yml | .travis.yml | script: rake ci
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- ruby-head
- jruby
- jruby-head
- rbx
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx
notifications:
irc: "irc.freenode.org#celluloid"
| script: rake ci
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- ruby-head
- jruby
- jruby-head
- rbx
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby
- rvm: jruby-head
- rvm: rbx
notifications:
irc: "irc.freenode.org#celluloid"
| Allow JRuby failures on Travis | Allow JRuby failures on Travis
| YAML | mit | ioquatix/celluloid-io,celluloid/celluloid-io,dilumn/celluloid-io,marshall-lee/celluloid-io,kenichi/celluloid-io |
03c03d7e169954185b008253f8bf2f9068198ca3 | .travis.yml | .travis.yml | ---
language: ruby
dist: trusty
sudo: true
before_install:
- rvm get head
- gem install bundler
- export CXX="g++-4.8"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
rvm:
- 2.2.4
- 2.3.1
- ruby-head
- rbx-2
- jruby-9.1.0.0
- jruby-head
sudo: false
matrix:
allow_fa... | ---
language: ruby
dist: trusty
sudo: true
before_install:
- rvm get head
- gem install bundler
- export CXX="g++-4.8"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
rvm:
- 2.2.4
- 2.3.1
- ruby-head
- rbx
- jruby-9.1.0.0
- jruby-head
sudo: false
matrix:
allow_fail... | Enable Rubinius 3.x on Travis | Enable Rubinius 3.x on Travis
Due to issues with RVM, only 'rbx' (semi) reliably works on Travis. This will run the most recent Rubinius 3.x release, which is the only supported release. | YAML | mit | mwpastore/sinatra,JonMidhir/sinatra,jkowens/sinatra,sinatra/sinatra,mwpastore/sinatra,jkowens/sinatra,JonMidhir/sinatra,jkowens/sinatra,ryanshaw/sinatra,JonMidhir/sinatra,ryanshaw/sinatra,sinatra/sinatra,burningTyger/sinatra,mwpastore/sinatra,burningTyger/sinatra,burningTyger/sinatra |
dde2988e841038ef82c547a956d9d7834114fe92 | .travis.yml | .travis.yml | language: android
sudo: false
android:
components:
- build-tools-25.0.2
- android-25
- extra-android-support
- extra-android-m2repository
licenses:
- 'android-sdk-license-.+'
- '.*intel.+'
before_install:
- chmod +x gradlew
install:
- ./gradlew
script:
- ./gradlew :library:build
- ./... | language: android
sudo: false
jdk:
- oraclejdk8
android:
components:
- build-tools-25.0.2
- android-25
- extra-android-support
- extra-android-m2repository
licenses:
- 'android-sdk-license-.+'
- '.*intel.+'
before_install:
- chmod +x gradlew
install:
- ./gradlew
script:
- ./gradlew :... | Add in jdk 8 to fix build | Add in jdk 8 to fix build
| YAML | apache-2.0 | anthonycr/Grant |
09678c2d4a884ed4fd69744072d5daf42e5fd04c | .travis.yml | .travis.yml | language: ruby
install: script/bootstrap
script: script/test
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
- jruby-18mode
- jruby-19mode
- jruby-head
matrix:
allow_failures:
# "A fatal error has been detected by the Java Runtime Environment:
# Internal Error (sharedRuntime.cpp:843)"
- rvm: jruby-18mo... | sudo: false
language: ruby
install: script/bootstrap
script: script/test
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
- jruby-18mode
- jruby-19mode
- jruby-head
matrix:
allow_failures:
# "A fatal error has been detected by the Java Runtime Environment:
# Internal Error (sharedRuntime.cpp:843)"
- rvm... | Use faster, container-based Travis enviroment | Use faster, container-based Travis enviroment
See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
| YAML | mit | lostisland/hurley,lostisland/hurley,tater/propitious-woof,tater/propitious-woof,kkirsche/hurley,blowmage/hurley,blowmage/hurley,kkirsche/hurley |
ff85c8eb2daa9ba8c340e5f9018b6b3982c81fd1 | .travis.yml | .travis.yml | language: cpp
compiler: gcc
dist: trusty
node_js: "5"
before_install:
- sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa -y
- sudo apt-get update -qq
- sudo apt-get install -y gcc-arm-embedded
- sudo apt-get install -y cmake cmake-data
- cmake --version
- node --version
install:
- npm install
- g... | language: cpp
compiler: gcc
dist: trusty
node_js: "5"
before_install:
- sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa -y
- sudo apt-get update -qq
- sudo apt-get install -y gcc-arm-embedded
# From https://github.com/boostorg/hana/blob/master/.travis.yml
- DEPS_DIR="${TRAVIS_BUILD_DIR}/deps"
- mkdir ... | Install a more recent version of CMake. | Install a more recent version of CMake.
| YAML | mit | charleskorn/weather-thingy-particle,charleskorn/weather-thingy-particle,charleskorn/weather-thingy-particle |
fe74debe7f869734c6afe0c7897ddabe858ffaff | .travis.yml | .travis.yml | language: node_js
node_js:
- 6
# NodeJS v4+ requires gcc 4.8
# https://docs.travis-ci.com/user/languages/javascript-with-nodejs#Node.js-v4-(or-io.js-v3)-compiler-requirements
env:
- NODE_ENV=travis CXX="g++-4.8" CC="gcc-4.8"
services:
- mongodb
sudo: false
# gcc 4.8 requires ubuntu-toolchain-r-test
addons:
apt:... | language: node_js
node_js:
- 6
# NodeJS v4+ requires gcc 4.8
# https://docs.travis-ci.com/user/languages/javascript-with-nodejs#Node.js-v4-(or-io.js-v3)-compiler-requirements
env:
- NODE_ENV=travis CXX="g++-4.8" CC="gcc-4.8"
services:
- mongodb
sudo: false
# gcc 4.8 requires ubuntu-toolchain-r-test
addons:
apt:... | Remove Snyk from Travis CI | Remove Snyk from Travis CI
This was supposed to fail only when PR is trying to introduce new
vulnerable packages, but it fails on every commit regardless.
| YAML | agpl-3.0 | mleanos/trustroots,mleanos/trustroots,Trustroots/trustroots,mleanos/trustroots,mleanos/trustroots,Trustroots/trustroots,Trustroots/trustroots,mleanos/trustroots,Trustroots/trustroots |
1baf0696d23c8942ef175496bf38e2ccb8281c2c | .travis.yml | .travis.yml | language: jruby
rvm:
- 1.7.16.1
script:
- bundle exec rake db:migrate RAILS_ENV=test
- bundle exec rspec -fd
before_script:
- cp config/database.travis.yml config/database.yml
- cp config/shards.travis.yml config/shards.yml
- cp config/secrets.travis.yml config/secrets.yml
#branches:
# only:
# - master | language: jruby
rvm:
- 1.7.16.1
script:
- bundle exec rake db:drop db:create db:migrate RAILS_ENV=test
- bundle exec rspec -fd
before_script:
- cp config/database.travis.yml config/database.yml
- cp config/shards.travis.yml config/shards.yml
- cp config/secrets.travis.yml config/secrets.yml
#branches:
# on... | Make sure SQLite3 creates grossman/services databases for testing. | Make sure SQLite3 creates grossman/services databases for testing.
| YAML | apache-2.0 | westernmilling/gman-services,westernmilling/gman-services,westernmilling/gman-services |
86d9f5dda080caeda6dc17420d683dceac5d9a13 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
- "0.11"
| language: node_js
node_js:
- "0.10"
- "0.11"
| Test against Node .10 and .11 only | Test against Node .10 and .11 only
| YAML | mit | svileng/conveyor-belt |
1d6f893698ac777dc317cc0d566510b999ffd7b6 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.11"
script: "npm run-script test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "8"
matrix:
fast_finish: true
allow_failures:
- node_js: '4'
- node_js: '6'
- node_js: '8'
script: "npm run-script test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
| Test up to Nodejs 8 with Travis | [WIP] Test up to Nodejs 8 with Travis
Just adding more Node versions to TarvisCI, but allowing failures with some versions for now. | YAML | mit | expressjs/express-paginate |
034f4e901b9993e814225becc8d7c2f7314b6a93 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
env:
- CAKE_VERSION=master
- CAKE_VERSION=2.3
before_script:
- sh -c "mysql -e 'CREATE DATABASE cakephp_test;'"
- git clone --depth 1 git://github.com/cakephp/cakephp ../cakephp && cd ../cakephp && git checkout $CAKE_VERSION
- cp -R ../asset_compress plugins/AssetCompress... | language: php
php:
- 5.3
env:
- CAKE_VERSION=master
- CAKE_VERSION=2.3
before_script:
- sh -c "mysql -e 'CREATE DATABASE cakephp_test;'"
- git clone --depth 1 git://github.com/cakephp/cakephp ../cakephp && cd ../cakephp && git checkout $CAKE_VERSION
- cp -R ../asset_compress plugins/AssetCompress
- chm... | Exclude 5.4 as it whines about E_STRICT | Exclude 5.4 as it whines about E_STRICT
Its impossible to maintain E_STRICT with 2.2 and 2.3 as they have
slightly different definitions for routing filters.
| YAML | mit | markstory/asset_compress,markstory/mini-asset,markstory/asset_compress,markstory/asset_compress,markstory/mini-asset |
ad15e4a4da1b04745fe85c664e2eb2cc4ad88da3 | .travis.yml | .travis.yml | env:
global:
- CC_TEST_REPORTER_ID=abf0a371ff8851f13b563671914b195bb46f0997f0f93142e666d9acad08e22f
language: ruby
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
before_install:
- gem update bundler
install:
- bundle install --jobs=3 --retry=3
- gem install rubocop
before_script:
- curl -L https://code... | env:
global:
- CC_TEST_REPORTER_ID=abf0a371ff8851f13b563671914b195bb46f0997f0f93142e666d9acad08e22f
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
before_install:
- gem update bundler
install:
- bundle install --jobs=3 --retry=3
- gem install rubocop
before_script:
- curl -L https://codeclimate.... | Remove Ruby v2.2 from Travis CI matrix | Remove Ruby v2.2 from Travis CI matrix
| YAML | mit | abrom/rocketchat-ruby |
af5041adcf53c3ee9234852002e30d4c27978b18 | .travis.yml | .travis.yml | language: ruby
branches:
only:
- master
rvm:
- 1.9.3
- "2.0"
- "2.1"
- ruby-head
gemfile:
- gemfiles/rails30.gemfile
- gemfiles/rails31.gemfile
- gemfiles/rails32.gemfile
- gemfiles/rails40.gemfile
- gemfiles/rails41.gemfile
env:
global:
secure: | # CODECLIMATE_REPO_TOKEN
TvVATBVNhpp... | language: ruby
branches:
only:
- master
rvm:
- 2.1
- 2.2.4
- 2.3.0
- ruby-head
gemfile:
- gemfiles/rails30.gemfile
- gemfiles/rails31.gemfile
- gemfiles/rails32.gemfile
- gemfiles/rails40.gemfile
- gemfiles/rails41.gemfile
env:
global:
secure: | # CODECLIMATE_REPO_TOKEN
TvVATBVNhppiC... | Change Ruby versions on Travis Only test supported Rubies. | Change Ruby versions on Travis
Only test supported Rubies.
| YAML | mit | collectiveidea/acts_as_geocodable |
648ddb792205606bf5d2a793fe00c0f57ee8fcd2 | .travis.yml | .travis.yml | language: node_js
sudo: required
dist: trusty
before_script:
- npm install web-component-tester
- npm install bower
- 'export PATH=$PWD/node_modules/.bin:$PATH'
- bower install
node_js: stable
addons:
firefox: latest
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
script:
... | language: node_js
sudo: required
dist: trusty
before_script:
- npm install web-component-tester
- npm install bower
- 'export PATH=$PWD/node_modules/.bin:$PATH'
- bower install
- "if [ -v JUICY_TATTOO_DEPENDENCY ]; then bower uninstall ${JUICY_TATTOO_DEPENDENCY} ${JUICY_TATTOO_DEPENDENCY_SLUG} --save; bower i... | Install specific dependency version if given by tattoo | Install specific dependency version if given by tattoo
| YAML | mit | Juicy/imported-template,Juicy/imported-template |
880391c19ddfa11c06ba82c00352e16daf793373 | .travis.yml | .travis.yml | language: objective-c
before_script:
- brew update
- brew upgrade xctool || true
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
- cd $TRAVIS_BUILD_DIR/Tests/OMPromisesTests && pod install
script: cd $TRAVIS_BUILD_DIR/Tests/OMPromisesTests && ./run_tests.sh
| language: objective-c
osx_image: xcode7.2
before_script:
- brew update
- brew upgrade xctool || true
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
- cd $TRAVIS_BUILD_DIR/Tests/OMPromisesTests && pod install
script: cd $TRAVIS_BUILD_DIR/Tests/OMPromisesTests && ./run_tests.sh
| Use XCode 7.2 to build on Travis CI | Use XCode 7.2 to build on Travis CI | YAML | mit | guvera-labs/OMPromises,b52/OMPromises |
d34843401ceffa0435780f2027d49ddb0c75bc18 | etc/wildcard-certificate.yml | etc/wildcard-certificate.yml | # stacks/certificate.yml
AWSTemplateFormatVersion: "2010-09-09"
Description: >
Creates a wildcard ACM certificate for the some PRX operated domains
Resources:
Certificate:
Type: AWS::CertificateManager::Certificate
Properties:
DomainName: "*.prx.tech"
DomainValidationOptions:
- Validatio... | # stacks/certificate.yml
AWSTemplateFormatVersion: "2010-09-09"
Description: >
Creates a wildcard ACM certificate for the some PRX operated domains
Resources:
Certificate:
Type: AWS::CertificateManager::Certificate
Properties:
DomainName: "*.prx.tech"
DomainValidationOptions:
- Validatio... | Use DNS validation for wildcard certificate | Use DNS validation for wildcard certificate
| YAML | mit | PRX/Infrastructure,PRX/Infrastructure,PRX/Infrastructure,PRX/Infrastructure,PRX/Infrastructure |
eb7bac3e2f7c1264f4da01d248bcf6a56ea1c654 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '11'
- '10'
- '9'
- '8'
- '7'
- '6'
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8 | sudo: false
language: node_js
node_js:
- '10'
- '9'
- '8'
- '7'
- '6'
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8 | Remove Node.js nightly version 11 which is not available on Travis CI. | Remove Node.js nightly version 11 which is not available on Travis CI.
| YAML | mit | igorshubovych/markdownlint-cli |
2af0aa721103ec48413c6f332895630934c55849 | .travis.yml | .travis.yml | sudo: false
rvm:
- 2.5.1
language: ruby
cache: bundler
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
| sudo: false
rvm:
- 2.5.1
language: ruby
cache: bundler
addons:
firefox: 54.0
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- wget https://github.com/mozilla/geckodriver/releases/download/v0.18.0/geckodriver-v0.18.0-linux64.tar.gz
- mkdir geckodriver
- tar -xzf geckodriver-v0.1... | Install Geckodriver and Firefox in Travis CI. | Install Geckodriver and Firefox in Travis CI.
| YAML | mit | ruby-grape/grape-on-rack,dblock/grape-on-rack,ruby-grape/grape-on-rack,dblock/grape-on-rack,ruby-grape/grape-on-rack,dblock/grape-on-rack |
fd69b59f516953932dcb20e698ad50de8791099f | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm-nightly
before_script:
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm-nightly" ]; then echo "" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini; fi;'
- sh -c... | language: php
env:
global:
- SYMFONY_VERSION="3.4.*"
- COMPOSER_FLAGS="--prefer-stable"
matrix:
include:
- php: 5.5
- php: 5.5
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest"
- php: 5.6
- php: 7.0
- php: 7.1
env: SYMFONY_VERSION="4.1.*"
- php: 7.2
env: SYMFO... | Test matrix covering the baseline supported environments | Test matrix covering the baseline supported environments
| YAML | mit | GeniusesOfSymfony/PubSubRouterBundle |
09bdc9db5d289a31ea8d53186935a094dca11db7 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
test:
post:
- ./gradlew jacocoTestReport
- bash <(curl -s https://codecov.io/bash)
| language: java
jdk:
- oraclejdk8
script:
- ./gradlew check jacocoTestReport
after_success:
- bash <(curl -s https://codecov.io/bash)
| Fix Travis configuration for codecov.io | Fix Travis configuration for codecov.io
| YAML | mit | thejohnfreeman/lazy |
b96095022f147f8ab3578350a3db49dde5239f1a | .travis.yml | .travis.yml | cache:
directories:
- /usr/local/lib/python2.7/dist-packages
- /home/travis/virtualenv
before_install:
- mysql -uroot -Dmysql -e 'UPDATE user SET password=PASSWORD("root") WHERE user="root"; FLUSH PRIVILEGES;'
install:
- sudo -H pip install flake8
- sudo -H ./setup.sh
script:
- flake8 .
- INBOX_ENV=... | cache:
directories:
- /usr/local/lib/python2.7/dist-packages
- /home/travis/virtualenv
before_install:
- mysql -uroot -Dmysql -e 'UPDATE user SET password=PASSWORD("root") WHERE user="root"; FLUSH PRIVILEGES;'
install:
- sudo -H pip install flake8
- sudo -H ./setup.sh
script:
- flake8 --select=F inbox... | Unify Travis lint configuration with Jenkins | Unify Travis lint configuration with Jenkins
| YAML | agpl-3.0 | jobscore/sync-engine,nylas/sync-engine,jobscore/sync-engine,jobscore/sync-engine,nylas/sync-engine,nylas/sync-engine,closeio/nylas,closeio/nylas,closeio/nylas,nylas/sync-engine,jobscore/sync-engine,closeio/nylas |
21c240f162e5eb3ea636f67b5b4161d811b839b9 | .travis.yml | .travis.yml | language: go
go:
- 1.8
install:
- mkdir -p $HOME/gopath/src/k8s.io
- mv $TRAVIS_BUILD_DIR $HOME/gopath/src/k8s.io/kube-state-metrics
script:
- make test-unit
- make
| language: go
go:
- 1.8
install:
- mkdir -p $HOME/gopath/src/k8s.io
- mv $TRAVIS_BUILD_DIR $HOME/gopath/src/k8s.io/kube-state-metrics
jobs:
include:
- stage: Unit Test
script: make test-unit
- stage: Build
script: make
| Split the UT and Build in different Stages | Split the UT and Build in different Stages | YAML | apache-2.0 | kubernetes/kube-state-metrics,kubernetes/kube-state-metrics |
5efbcf1f5a19e681920d91ccd13536c4de940961 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install:
- pip install -r chassis/development.txt
script:
- cd chassis
- nosetests
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install:
- pip install -r chassis/development.txt
script:
- cd chassis
- nosetests
| Test python 2.6 on Travis-CI | Test python 2.6 on Travis-CI
| YAML | mit | refinery29/chassis,refinery29/chassis |
0dce62995d89fd63dd32e7dd3319ebd01bb793c8 | .travis.yml | .travis.yml | language: objective-c
before_install:
- brew update
- brew install xctool
script: xctool -workspace IYLoginItem.xcworkspace -scheme IYLoginItem clean test | language: objective-c
script: xcodebuild -workspace IYLoginItem.xcworkspace -scheme IYLoginItem clean test | Use xcodebuild instead of xctool. | Use xcodebuild instead of xctool.
| YAML | mit | ianyh/IYLoginItem |
8959e680faee509e30356edfafad710214ca73b1 | .travis.yml | .travis.yml | sudo: true
os:
- osx
- linux
compiler:
- gcc
- clang
install:
- .travis/install_openssl.sh `pwd`/libcrypto-build `pwd`/libcrypto-root $TRAVIS_OS_NAME > /dev/null
# Install python linked with our compiled Openssl for integration tests
- .travis/install_python.sh `pwd`/libcrypto-root > /dev/null
# Inst... | sudo: true
os:
- osx
- linux
compiler:
- gcc
- clang
install:
- .travis/install_openssl.sh `pwd`/libcrypto-build `pwd`/libcrypto-root $TRAVIS_OS_NAME > /dev/null
# Install python linked with our compiled Openssl for integration tests
- .travis/install_python.sh `pwd`/libcrypto-root > /dev/null
# Inst... | Use parallel make jobs for Travis unit tests | Use parallel make jobs for Travis unit tests
Saves a couple minutes for total build run compared to most recent
runs in my history.
| YAML | apache-2.0 | gibson-compsci/s2n,bpdavidson/s2n,wcs1only/s2n,raycoll/s2n,awslabs/s2n,gibson-compsci/s2n,gibson-compsci/s2n,PKRoma/s2n,gibson-compsci/s2n,awslabs/s2n,bpdavidson/s2n,raycoll/s2n,awslabs/s2n,colmmacc/s2n,alexeblee/s2n,colmmacc/s2n,bpdavidson/s2n,wcs1only/s2n,PKRoma/s2n,colmmacc/s2n,alexeblee/s2n,raycoll/s2n,wcs1only/s2n... |
73ebcf10d68322162ad09374e1ff4d9652e318df | .travis.yml | .travis.yml | language: python
python:
- "3.5"
install:
- pip install .
- pip install -r requirements.txt
script:
- "nosetests -v 2 httpobs/tests -e insert_test_result -e scored_test -e select_test_results --with-coverage --cover-package=httpobs"
- "flake8 --config .flake8 httpobs"
| language: python
python:
- "3.5"
install:
- pip install .
- pip install -r requirements.txt
script:
- "nosetests httpobs/tests -e insert_test_result -e scored_test -e select_test_results -e test_retrieve --with-coverage --cover-package=httpobs"
- "flake8 --config .flake8 httpobs"
| Exclude networked retrieval tests on Travis CI | Exclude networked retrieval tests on Travis CI
| YAML | mpl-2.0 | mozilla/http-observatory,april/http-observatory,mozilla/http-observatory,april/http-observatory,april/http-observatory,mozilla/http-observatory |
0fc2264f85c2bc4f7968a1f09e16788b657f42ce | .travis.yml | .travis.yml | language: node_js
node_js:
- "iojs-v1.6"
- "iojs-v1.5"
- "iojs-v1.4"
- "iojs-v1.3"
- "iojs-v1.2"
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@1.4.6'
matrix:
fast_finis... | language: node_js
node_js:
- "iojs-v2.1"
- "iojs-v2.0"
- "iojs-v1.8"
- "iojs-v1.7"
- "iojs-v1.6"
- "iojs-v1.5"
- "iojs-v1.4"
- "iojs-v1.3"
- "iojs-v1.2"
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSIO... | Test up to `io.js` `v2.1` | Test up to `io.js` `v2.1` | YAML | mit | ljharb/is-nan,es-shims/is-nan |
ceedb53a00260fc25a76e037e454f23b31c9308d | .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 t... | # 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 t... | Update Travis CI build commend temporarily | Update Travis CI build commend temporarily
| YAML | apache-2.0 | hortonworks-spark/spark-llap,hortonworks-spark/spark-llap,hortonworks-spark/spark-llap |
1ac435e6fb75d8b45fb67e8549d21b1e3b2e1873 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO_VERSION=1.6.11
- DJANGO_VERSION=1.7.7
install:
- pip install -q Django=$DJANGO_VERSION
script: python setup.py test | language: python
python:
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO_VERSION=1.6.11
- DJANGO_VERSION=1.7.7
install:
- pip install -q Django==$DJANGO_VERSION
script: python setup.py test | Fix silly typo in Travis config. | Fix silly typo in Travis config.
| YAML | bsd-3-clause | ubernostrum/django-flashpolicies |
b13adcb1d08eb369d700dfa30a33f7a791df27b7 | .travis.yml | .travis.yml | language: python
python:
- 2.7
notifications:
email:
- hemperek@uni-bonn.de
- janssen@physik.uni-bonn.de
before_install:
- sudo apt-get update -qq
install:
- pip install bitarray
- pip install pyyaml
- wget -O cocotb-master.zip https://github.com/potentialventures/cocotb/archive/master.zip ... | language: python
python:
- 2.7
notifications:
email:
- hemperek@uni-bonn.de
- janssen@physik.uni-bonn.de
before_install:
- sudo add-apt-repository -y ppa:team-electronics/ppa
- sudo apt-get update -qq
install:
- pip install bitarray
- pip install pyyaml
- wget -O cocotb-master.zip https:/... | Use iverilog-daily thanks to Iztok Jeras | Use iverilog-daily thanks to Iztok Jeras | YAML | bsd-3-clause | SiLab-Bonn/basil,MarcoVogt/basil,SiLab-Bonn/basil |
60591d44f49e6ee0212f921fa36d6b7813e6d1ea | .travis.yml | .travis.yml | language: node_js
node_js:
- 4
- 6
- 8
script: npm run test:ci
after_script:
- node -v | grep "v6" && npm run cover && npm run cover:report
addons:
code_climate:
repo_token: c92188dcdeaca7d9732f8ea38fdd41d6bff18dc27a8d6f8b64a5b1311b7b6c21
chrome: stable
packages:
- google-chrome-stable
- libnss3
-... | language: node_js
node_js:
- 4
- 6
- 8
script: npm run test:ci
after_script:
- node -v | grep "v8" && npm run cover && npm run cover:report
addons:
code_climate:
repo_token: c92188dcdeaca7d9732f8ea38fdd41d6bff18dc27a8d6f8b64a5b1311b7b6c21
chrome: stable
packages:
- google-chrome-stable
- libnss3
-... | Use Node v8 for coverage, not v6 | Use Node v8 for coverage, not v6 | YAML | mit | testdouble/testdouble.js,testdouble/testdouble.js,testdouble/testdouble.js |
01145693b263c4c403aa901291bfc58b73a51e85 | .travis.yml | .travis.yml | language: csharp
matrix:
include:
- os: linux
dist: trusty
sudo: required
env: DOTNETCORE=1
before_install:
- sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list'
- sudo apt-key adv --keyserver hkp://keyserv... | language: csharp
matrix:
include:
- os: linux
dist: trusty
sudo: required
env: DOTNETCORE=1
before_install:
- sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list'
- sudo apt-key adv --keyserver hkp://keyserv... | Use the right package from apt | Use the right package from apt
| YAML | isc | foxbot/Discord.Addons.EmojiTools,foxbot/Discord.Addons.EmojiTools |
46f3a2c3f69697e3693d9f1b64a0909c350fd4d8 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.3
notifications:
email:
- code@bootstraponline.com
before_install:
- sudo apt-get update
| rvm:
- 1.9.3
before_install:
- sudo apt-get update
| Drop 1.8.7 support on Travis (It's broken) | Drop 1.8.7 support on Travis (It's broken) | YAML | mit | Komodo/gollum-lib,bpieck/gollum-lib,jhominal/gollum-lib,jhominal/gollum-lib,mchill/gollum-lib,Komodo/gollum-lib,kwoods/gollum-lib,gollum/gollum-lib,doordash/gollum-lib,kwoods/gollum-lib,bpieck/gollum-lib,abicky/gollum-lib,gollum/gollum-lib,doordash/gollum-lib,rgroux/gollum-lib,rgroux/gollum-lib,flozzone/gollum-lib,nuno... |
e68b23647ced1cec5eee53e47e170338ebde26aa | .travis.yml | .travis.yml | dist: bionic
language: cpp
compiler: gcc
script:
- cd test
- make
- timeout 60 ./libmorton_test
| dist: bionic
language: cpp
compiler: gcc
script:
- cd test
- make
# This really should finish in less than 2 minutes - otherwise something's wrong
- timeout 120 ./libmorton_test 128
| Add limited test run to Travis | Add limited test run to Travis | YAML | mit | Forceflow/libmorton |
9c3c2354e4a70fd7acb58acfdd43c7fce210407b | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
install:
- travis_retry composer update
script:
- vendor/bin/phpunit --coverage-text --coverage-clover coverage.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.xml
| language: php
php:
- 7.0
- 7.1
install:
- travis_retry composer update
script:
- vendor/bin/phpunit --coverage-text --coverage-clover coverage.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.xml
matrix:
allow_failur... | Allow php 7.1 to fail for now | Allow php 7.1 to fail for now
| YAML | mit | nimbusoftltd/flysystem-openstack-swift |
ff2e4bcacdef63779563a12c764094c909f2da38 | .travis.yml | .travis.yml | language: c
sudo: required
compiler:
- clang
- gcc
- gcc-7
addons:
apt:
sources:
- sourceline: 'ppa:ubuntu-toolchain-r/test'
packages:
- gcc-7
before_script:
- ./autogen.sh
script:
- ./.travis/configure.sh
- make
- make check
after_success:
- mv src/sas/.libs/*.gc* .
- mv src/sp... | language: c
sudo: required
compiler:
- clang
- gcc
- gcc-7
- gcc-8
addons:
apt:
sources:
- sourceline: 'ppa:ubuntu-toolchain-r/test'
packages:
- gcc-7
- gcc-8
before_script:
- ./autogen.sh
script:
- ./.travis/configure.sh
- make
- make check
after_success:
- mv src/sas/.libs... | Add gcc-8 to Travis, and cross fingers | Add gcc-8 to Travis, and cross fingers
| YAML | mit | WizardMac/ReadStat,WizardMac/ReadStat |
b7b0d6d35855743de08a57a7f2b2b79b2aebe700 | .travis.yml | .travis.yml | language: python
env:
- DJANGO_VERSION=https://github.com/django/django/archive/stable/1.6.x.zip
python:
- "2.6"
- "2.7"
- "3.3"
install:
- pip install $DJANGO_VERSION --use-mirrors
- pip install -e git://github.com/stephenmcd/mezzanine.git#egg=mezzanine
- pip install . --allow-unverified pyPdf
script:
... | language: python
env:
- DJANGO_VERSION=https://github.com/django/django/archive/stable/1.7.x.zip
- DJANGO_VERSION=https://github.com/django/django/archive/stable/1.8.x.zip
python:
- "2.7"
- "3.3"
- "3.4"
matrix:
exclude:
- python: "2.7"
env: DJANGO_VERSION=https://github.com/django/django/archiv... | Update Django/Python versions to test against, in line wiht Mezzanine for next release. | Update Django/Python versions to test against, in line wiht Mezzanine for next release.
| YAML | bsd-2-clause | traxxas/cartridge,wyzex/cartridge,wyzex/cartridge,traxxas/cartridge,wbtuomela/cartridge,syaiful6/cartridge,dsanders11/cartridge,wbtuomela/cartridge,wbtuomela/cartridge,ryneeverett/cartridge,stephenmcd/cartridge,syaiful6/cartridge,stephenmcd/cartridge,ryneeverett/cartridge,wyzex/cartridge,dsanders11/cartridge,Parisson/c... |
f701e04294edc967db017c50550b3feb9482d5a5 | docker-compose.yml | docker-compose.yml | version: '2'
services:
factory:
image: obitec/dstack-factory:3.5
build:
context: ./factory/3.5/
dockerfile: Dockerfile
args:
- UID=${UID}
volumes:
- /srv/build/wheelhouse:/wheelhouse
- /srv/build/archive:/archive
- /srv/build/recipes:/app/
environment:
... | version: '2'
services:
factory:
image: obitec/dstack-factory:3.5
build:
context: ./factory/3.5/
dockerfile: Dockerfile
args:
- UID=${UID:-4801}
volumes:
- /srv/build/wheelhouse:/wheelhouse
- /srv/build/archive:/archive
- /srv/build/recipes:/app/
environment... | Add default value for UID | Add default value for UID
| YAML | mit | obitec/dstack-factory,jr-minnaar/wheel-factory,obitec/dstack-factory |
93ac8a52eb86d91df6dc8f9e680a2169dde0e3e1 | docker-compose.yml | docker-compose.yml | version: '2'
services:
php:
container_name: php-school-fpm
image: php:7-fpm
build:
context: .
dockerfile: ./.docker/files/php-school-fpm
volumes:
- .:/var/www/html
environment:
- MYSQL_USER
- MYSQL_PASSWORD
- XDEBUG_ENABLE
- XDEBUG_CONFIG
ports:
... | version: '2'
services:
php:
container_name: php-school-fpm
image: php:7-fpm
build:
context: .
dockerfile: ./.docker/files/php-school-fpm
volumes:
- .:/var/www/html
environment:
- MYSQL_USER
- MYSQL_PASSWORD
- XDEBUG_ENABLE
- XDEBUG_CONFIG
ports:
... | Update to latest mysql image | Update to latest mysql image
| YAML | apache-2.0 | php-school/phpschool.io,php-school/phpschool.io,php-school/phpschool.io,php-school/phpschool.io |
a551e70abcdef0961217d0868f55543cde7d255a | docker-compose.yml | docker-compose.yml | # Docker-like setup that serves as a local drop-in for the corresponding Travis services
version: "2"
services:
test:
build: .
user: 1000:1000
links:
- crossbar
volumes:
- .:/app
environment:
CROSSBAR_HOST: crossbar
entrypoint: dockerize -wait http://crossbar:8080 pytest
c... | # Docker-like setup that serves as a local drop-in for the corresponding Travis services
version: "2"
services:
test:
build: .
user: 1000:1000
links:
- crossbar
volumes:
- .:/app
environment:
CROSSBAR_HOST: crossbar
entrypoint: dockerize -wait http://crossbar:8080 pytest
c... | Use the latest Crossbar version for testing | Use the latest Crossbar version for testing
| YAML | apache-2.0 | asphalt-framework/asphalt-wamp |
b0e3569d01b6ac0d1388373ab611d2538acdaa62 | .travis.yml | .travis.yml | # Branch definition: only build master and PRs
branches:
only:
master
# Build definition; language, deps, scripts
language: python
python:
- "3.6"
install:
- pip install -r requirements/dev.txt
script:
- tox
after_success:
- pip install coveralls
- coveralls
- coverage erase
| # Branch definition: only build master and PRs
branches:
only:
master
# Build definition; language, deps, scripts
language: python
python:
- "3.5"
- "3.6"
install:
- pip install -r requirements/dev.txt
script:
- tox
after_success:
- pip install coveralls
- coveralls
- coverage erase
| Add 3.5 as well (test) | Add 3.5 as well (test)
| YAML | mit | kako-nawao/django-group-by |
4356b4c108c34d1b6771c15514f89963b3edea26 | .travis.yml | .travis.yml | dist: xenial
language: ruby
rvm:
- 2.4.5
- 2.3.8
cache:
bundler: true
yarn: true
timeout: 600
addons:
postgresql: '10'
env:
matrix:
- TEST_SUITE=spec
- TEST_SUITE=spec:javascript
- TEST_SUITE=spec:compile
- TEST_SUITE=spec:jest
matrix:
exclude:
- rvm: 2.4.5
env: TEST_SUITE=spec:javascript
- ... | dist: xenial
language: ruby
rvm:
- 2.4.5
- 2.5.3
cache:
bundler: true
yarn: true
timeout: 600
addons:
postgresql: '10'
env:
matrix:
- TEST_SUITE=spec
- TEST_SUITE=spec:javascript
- TEST_SUITE=spec:compile
- TEST_SUITE=spec:jest
matrix:
exclude:
- rvm: 2.4.5
env: TEST_SUITE=spec:javascript
- ... | Update supported ruby versions on Travis | Update supported ruby versions on Travis
| YAML | apache-2.0 | ManageIQ/manageiq-ui-classic,ManageIQ/manageiq-ui-classic,ManageIQ/manageiq-ui-classic,ManageIQ/manageiq-ui-classic |
a3dc302988c95e1445b6b9f4c511424b35ae885b | docker-compose.yml | docker-compose.yml | version: "2"
services:
loraserver:
build:
context: .
dockerfile: Dockerfile-devel
command: make serve
volumes:
- ./:/go/src/github.com/brocaar/loraserver
links:
- postgres
- redis
- mosquitto
environment:
- DB_AUTOMIGRATE=true
- NET_ID=010203
-... | version: "2"
services:
loraserver:
build:
context: .
dockerfile: Dockerfile-devel
command: make serve
volumes:
- ./:/loraserver
links:
- postgres
- redis
- mosquitto
environment:
- DB_AUTOMIGRATE=true
- NET_ID=010203
- BAND=EU_863_870
- R... | Fix Compose path after Dep > Go modules migration. | Fix Compose path after Dep > Go modules migration.
| YAML | mit | brocaar/loraserver,brocaar/loraserver |
14e872b4b187341ac9635e60ab97c1e36fc7af99 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- rbx
- rbx-2.0
- ree
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- rbx-18mode
- rbx-19mode
- ree
| Test against Rubinius in both Ruby 1.8 and 1.9 mode | Test against Rubinius in both Ruby 1.8 and 1.9 mode
| YAML | mit | ru-faraon/Faraday-is-an-HTTP-client,spyofchina/faraday,iamjarvo/faraday,flower-pot/faraday,daviswahl/faraday,avdi/faraday,davoclavo/faraday,iamjarvo/faraday,luvtechno/faraday,coinbase/faraday,coinbase/faraday,lostisland/faraday,customink/faraday,pvdb/faraday,ru-faraon/Faraday-is-an-HTTP-client,stayhero/faraday,mehulkar... |
da4d719063badfa1bb8d339b44b9cd86c3148760 | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: bash
script:
# build image
- ./build.sh
# test image
- ./test.sh
# push image
- >
if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
docker login -u="$DOCKER_USER" -p="$DOCKER_PASS"
./deploy.sh
fi
| sudo: required
services:
- docker
language: bash
script:
# build image
- ./build.sh
# test image
- ./test.sh
# push image
- >
if [ !z "$TRAVIS_TAG" ]; then
docker login -u="$DOCKER_USER" -p="$DOCKER_PASS"
./deploy.sh
fi
| Deploy only on tag builds | Deploy only on tag builds
Signed-off-by: Stefan Scherer <2fe843265e65a9540d5df64f4bed2ee6b7ca283e@icloud.com>
| YAML | apache-2.0 | StefanScherer/winspector,StefanScherer/winspector |
0b1bf32c767cbf58b57afd52503a4a10aed8bea8 | .travis.yml | .travis.yml | language: perl6
perl6:
- latest
install:
- rakudobrew build-panda
- panda --notests installdeps .
script:
- perl6 -MPanda::Builder -e 'Panda::Builder.build(~$*CWD)'
- PERL6LIB=$PWD/lib prove -e perl6 -vr t/
sudo: false
| language: perl6
perl6:
- latest
install:
- rakudobrew build-zef
- zef --debug --depsonly --/test install .
script:
- zef build .
- PERL6LIB=$PWD/lib prove -e perl6 -vr t/
sudo: false
| Use zef instead of panda | Use zef instead of panda
| YAML | artistic-2.0 | okaoka/p6-Algorithm-BinaryIndexedTree |
313028a75eef0ad67baafc936dfed8de2fb41778 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- 2.1.*
gemfile:
- Gemfile
| rvm:
- 1.9.3
- 2.0.0
- 2.1.*
- 2.2
gemfile:
- Gemfile
| Add Ruby 2.2 job in Travis | Add Ruby 2.2 job in Travis
| YAML | mit | sonots/fluent-plugin-grepcounter |
cd32182efd8270893017f66f8154e9308350f455 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
dist: trusty
sudo: false
addons:
apt:
packages:
- python3-pip
before_install:
- wget https://storage.googleapis.com/wasm-llvm/builds/linux/26619/wasm-toolchain_0.1.26619_amd64.deb
... | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust:
- beta
- nightly
dist: trusty
sudo: false
addons:
apt:
packages:
- python3-pip
before_install:
- wget https://storage.googleapis.com/wasm-llvm/builds/linux/26619/was... | Change the Travis config to allow failures in rust beta. | Change the Travis config to allow failures in rust beta.
Rustc beta and nightly crash when compiling Cretonne. I've filed
https://github.com/rust-lang/rust/issues/49528 to track this upstream.
For now, add Beta to the allow-failures list to temporarily work
around this.
| YAML | apache-2.0 | stoklund/cretonne,stoklund/cretonne,stoklund/cretonne |
5b4d6f2feee3b65740d1eeb11936279397d72c5a | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_script:
- npm install grunt-cli -g
| language: node_js
node_js:
- "0.10"
- "0.11"
matrix:
allow_failures:
- node_js: "0.11"
before_script:
- npm install grunt-cli -g
| Add node 0.11 to Travis, but allow it to fail. | Add node 0.11 to Travis, but allow it to fail.
| YAML | mit | pjump/bower,dreamauya/bower,fernandomoraes/bower,magnetech/bower,fewspider/bower,krahman/bower,DrRataplan/bower,Teino1978-Corp/Teino1978-Corp-bower,Jeremy017/bower,Jinkwon/naver-bower-cli,lukemelia/bower,akaash-nigam/bower,DevVersion/bower,wenyanw/bower,kruppel/bower,msbit/bower,pertrai1/bower,insanehong/bower,cnbin/bo... |
80d821ccba4f3f004b9d4fdcc5a634f7ce95d6dd | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements/test.txt
# command to run tests using coverage
script: make test
... | # Config file for automatic testing at travis-ci.org
language: python
python:
- "3.6"
- "3.5"
- "3.4"
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements/test.txt
# command to run tests using coverage
script: make test
# report ... | Stop support for old Python 3.4. | Stop support for old Python 3.4.
| YAML | bsd-3-clause | jsmits/django-logutils,jsmits/django-logutils |
ff7ed0b37782f8b15c8d31cd29f33dcc1b82477d | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
install:
# - npm install recess
- pip install .
- pip install pep8
- pip install coverage
- pip install python-coveralls
before_script:
- cp sampleproj/manage.py manage.py
- python manage.py migrate --noinput --settings=sampleproj.settings.travis
script:
-... | sudo: false
language: python
python:
- "2.7"
install:
# - npm install recess
- pip install .
- pip install pycodestyle
- pip install coverage
- pip install python-coveralls
before_script:
- cp sampleproj/manage.py manage.py
- python manage.py migrate --noinput --settings=sampleproj.settings.travis
scri... | Use pycodestyle instead of pep8. | Use pycodestyle instead of pep8.
| YAML | apache-2.0 | uw-it-aca/mdot,charlon/mdot,uw-it-aca/mdot,uw-it-aca/mdot,charlon/mdot,charlon/mdot,uw-it-aca/mdot |
68ee8a3a943f5ddafdd121dcb49539db3ae74e80 | .travis.yml | .travis.yml | language: node_js
node_js:
- '14'
- '16'
- '18'
before_install:
- npm install -g codecov
install:
- npm install
script:
- npm test
- npm run lint
- codecov
| language: node_js
node_js:
- '14'
- '16'
- '17'
before_install:
- npm install -g codecov
install:
- npm install
script:
- npm test
- npm run lint
- codecov
| Add support for node 17 | Add support for node 17
| YAML | mit | HQarroum/Fsm |
58f6fdf12b5723f4511bca5aeb39e7df8edea765 | .travis.yml | .travis.yml | cache: bundler
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1"
- "2.2"
- "2.3.0"
#- ruby-head
- jruby-19mode
- rbx-2
install:
- bundle install --retry=3
script:
- bundle exec rspec
- bundle exec rubocop
| cache: bundler
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1"
- "2.2"
- "2.3.0"
- jruby-19mode
- rbx-2
matrix:
# Doesn't play well with Rubocop
allow_failures:
- rvm: rbx-2
install:
- bundle install --retry=3
script:
- bundle exec rspec
- bundle exec rubocop
| Allow it to fail on Rubinius | Allow it to fail on Rubinius
| YAML | mit | zverok/time_boots,zverok/time_math2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.