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 |
|---|---|---|---|---|---|---|---|---|---|
8bac4b3663292fcf770eadb30368bb360bfc74e7 | .travis.yml | .travis.yml | sudo: false
# Enable C++ support
language: cpp
# Compiler selection
compiler:
- clang++
- g++
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-5" CC="gcc-5"; fi
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
- llvm-toolchain-precise
packages:
... | sudo: false
# Enable C++ support
language: cpp
# Compiler selection
compiler:
- clang++
- g++
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-5" CC="gcc-5"; fi
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
- llvm-toolchain-precise
packages:
... | Revert commit for the debugging | Revert commit for the debugging
| YAML | mit | yakigac/test_travis |
501cfda1b314768a74d4e010793b938e4087a3b2 | .travis.yml | .travis.yml | language: ruby
rvm:
# - "1.9.3" # Fails on migrations on travis?
- "2.0"
before_script:
- psql -c 'create database "que-test"' -U postgres
- bundle exec ruby -r sequel -r ./lib/que -e 'Que.connection=Sequel.connect("postgres://localhost/que-test"); Que.migrate!'
addons:
postgresql: 9.3
| language: ruby
rvm:
- "1.9.3"
- "2.0"
- "2.1"
- "rbx-2.1.1"
- "jruby-1.7.5"
before_script:
- psql -c 'create database "que-test"' -U postgres
- bundle exec ruby -r sequel -r ./lib/que -e 'Que.connection=Sequel.connect("postgres://localhost/que-test"); Que.migrate!'
addons:
postgresql: 9.3
| Add a few more Ruby versions to Travis. | Add a few more Ruby versions to Travis.
| YAML | mit | joevandyk/que,hardbap/que,brandur/que,gocardless/que,chanks/que,zloydadka/que,gocardless/que,godfat/que,goddamnhippie/que,heroku/que |
08a180d3550e46e311c14eef69410a5639863dda | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.4.1
- 2.3.3
- 2.2.5
- 2.1.10
- 2.0.0
- jruby-head
before_install: # For jruby-head to work.
- gem install bundler || gem install bundler --version '< 2'
- gem update bundler
| language: ruby
rvm:
- 2.4.1
- 2.3.3
- jruby-head
before_install: # For jruby-head to work.
- gem install bundler || gem install bundler --version '< 2'
- gem update bundler
| Remove support for deprecated Rubies (2.2 and earlier) | Remove support for deprecated Rubies (2.2 and earlier)
If you're stuck on an earlier Ruby, you can keep using an earlier version of this lib, but I don't want us to be held back by compatibility with deprecated versions.
| YAML | mit | barsoom/attr_extras |
9917bd9c59990018c9b883bdc80c8eba7d4fc9e5 | .travis.yml | .travis.yml | rvm:
- "1.8.7"
env:
- LOW_CARD_TABLES_AR_TEST_VERSION=3.0.20 LOW_CARD_TABLES_TRAVIS_CI_DATABASE_TYPE=mysql
- LOW_CARD_TABLES_AR_TEST_VERSION=3.0.20 LOW_CARD_TABLES_TRAVIS_CI_DATABASE_TYPE=postgres
before_script:
- mysql -e 'create database myapp_test;'
- psql -c 'create database myapp_test;' -U post... | rvm:
- "1.8.7"
- "2.0.0"
env:
- LOW_CARD_TABLES_AR_TEST_VERSION=3.0.20 LOW_CARD_TABLES_TRAVIS_CI_DATABASE_TYPE=mysql
- LOW_CARD_TABLES_AR_TEST_VERSION=3.0.20 LOW_CARD_TABLES_TRAVIS_CI_DATABASE_TYPE=postgres
- LOW_CARD_TABLES_AR_TEST_VERSION=4.0.1 LOW_CARD_TABLES_TRAVIS_CI_DATABASE_TYPE=mysql
- L... | Test against ActiveRecord 4.0.1 with Ruby 2.0.0. | Test against ActiveRecord 4.0.1 with Ruby 2.0.0. | YAML | mit | ageweke/low_card_tables |
2165d34248ae6914142c991b6f0dfab1bbfd5575 | .travis.yml | .travis.yml | sudo: false
cache: bundler
language: ruby
rvm:
- 2.1.9
- 2.2.5
- 2.3.0
- 2.3.1
before_install: gem update --remote bundler
install:
- bundle install --retry=3
script:
- bundle exec rubocop
- bundle exec rspec
| sudo: false
cache: bundler
language: ruby
rvm:
- 2.2.5
- 2.3.0
- 2.3.1
before_install: gem update --remote bundler
install:
- bundle install --retry=3
script:
- bundle exec rubocop
- bundle exec rspec
| Remove support for ruby 2.1.9 | Remove support for ruby 2.1.9
| YAML | mit | socialcast/masamune,socialcast/masamune |
0ef6f1dfc6866144378a9d84fd3b38b970be6835 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: cpp
compiler:
- gcc
install:
- ./thrift/build/deps_ubuntu_14.04.sh
script:
- ./thrift/build/travis/install.sh
notifications:
email: false
| sudo: required
dist: trusty
language: cpp
compiler:
- gcc
install:
- ./thrift/build/deps_ubuntu_14.04.sh
script:
- ./thrift/build/travis/install.sh
notifications:
email:
recipients:
- thrift_oncall@fb.com
on_success: never
on_failure: always
| Enable email notifications for broken oss builds | Enable email notifications for broken oss builds
Summary:
This will enable email notifications sent to Thrift oncall (only) when Travis CI
build is broken.
This configuration uses special external `thrift_oncall@fb.com` email
that will be redirected to internal Thrift oncall email.
Reviewed By: eduardo-elizondo
Diff... | YAML | apache-2.0 | SergeyMakarenko/fbthrift,facebook/fbthrift,SergeyMakarenko/fbthrift,getyourguide/fbthrift,SergeyMakarenko/fbthrift,facebook/fbthrift,getyourguide/fbthrift,facebook/fbthrift,getyourguide/fbthrift,facebook/fbthrift,SergeyMakarenko/fbthrift,SergeyMakarenko/fbthrift,facebook/fbthrift,facebook/fbthrift,SergeyMakarenko/fbthr... |
d3ac6da72b1bd5d58736df3497725751992ec7c6 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
env:
- TARGET=runUnitTests
- TARGET=runAutoReplayIT
- TARGET=buildDedicatedServer
- TARGET=buildSwing
- TARGET=runAiDifficultiesIT
- TARGET=runReplayValidationIT
script: ANT_OPTS="-Xmx2048m" ant -buildfile ./build.ant $TARGET
| language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
env:
- TARGET=runUnitTests
- TARGET=runAutoReplayIT
- TARGET=buildDedicatedServer
- TARGET=buildSwing
- TARGET=runAiDifficultiesIT
- TARGET=runReplayValidationIT
script: ANT_OPTS="-Xmx2048m" ant -buildfile ./build.ant $TARGET
matrix:
exc... | Exclude buildSwing from java 7 builds. | Exclude buildSwing from java 7 builds.
| YAML | mit | andreasb242/settlers-remake,phirschbeck/settlers-remake,phirschbeck/settlers-remake,phirschbeck/settlers-remake,andreas-eberle/settlers-remake,jsettlers/settlers-remake,andreasb242/settlers-remake,jsettlers/settlers-remake,andreasb242/settlers-remake,andreas-eberle/settlers-remake,JKatzwinkel/settlers-remake,Peter-Maxi... |
471a27f66c015766613453f18caded529bdaac05 | .travis.yml | .travis.yml | language: nix
os:
- linux
- osx
install:
- bash <(curl https://raw.githubusercontent.com/purcell/nix-emacs-ci/master/travis-install)
- nix-env -iA $EMACS_VER -f https://github.com/purcell/nix-emacs-ci/archive/master.tar.gz
env:
- EMACS_VER=emacs-24-4
- EMACS_VER=emacs-24-5
- EMACS_VER=emacs-25-1
- EM... | language: nix
os:
- linux
- osx
install:
- bash <(curl https://raw.githubusercontent.com/purcell/nix-emacs-ci/master/travis-install)
- nix-env -iA $EMACS_VER -f https://github.com/purcell/nix-emacs-ci/archive/master.tar.gz
env:
- EMACS_VER=emacs-24-4
- EMACS_VER=emacs-24-5
- EMACS_VER=emacs-25-1
- EM... | Use snapshot version in CI too | Use snapshot version in CI too
| YAML | bsd-2-clause | blueseason/emacs.d,dcorking/emacs.d,svenyurgensson/emacs.d,krzysz00/emacs.d,blueabysm/emacs.d,arthurl/emacs.d,qianwan/emacs.d,cjqw/emacs.d,baohaojun/emacs.d,wegatron/emacs.d,sgarciac/emacs.d,braveoyster/emacs.d,gsmlg/emacs.d,purcell/emacs.d,emuio/emacs.d,lust4life/emacs.d |
9a821b8d7c9a4fc9cc47595b9c65e091f070f0ef | .travis.yml | .travis.yml | language: node_js
node_js:
- '6'
- '5'
- '4'
# fail asap when there is a failure
matrix:
fast_finish: true
before_install:
# https://yarnpkg.com/en/docs/install-ci#travis-tab
# Repo for newer Node.js versions
- curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
# Repo for Yarn
- sudo ap... | language: node_js
node_js:
- '6'
- '5'
- '4'
# fail asap when there is a failure
matrix:
fast_finish: true
before_install:
# https://yarnpkg.com/en/docs/install-ci#travis-tab
# Repo for newer Node.js versions
- curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
# Repo for Yarn
- sudo ap... | Disable webpack 2 test on Travis | Disable webpack 2 test on Travis
| YAML | mit | MoOx/phenomic,phenomic/phenomic,phenomic/phenomic,phenomic/phenomic,pelhage/phenomic,MoOx/phenomic,MoOx/statinamic,MoOx/phenomic |
6b6a8e4d51122305c3b10c086a48e61f9aaaebda | .travis.yml | .travis.yml | language: python
python: 3.4
env:
globals:
- DJANGO_SETTINGS_MODULE="edwin.settings"
- DJANGO_CONFIGURATION="Base"
install:
- npm install
script:
- ./manage.py test
- npm test
| language: python
python: 3.4
env:
globals:
- DJANGO_SETTINGS_MODULE="edwin.settings"
- DJANGO_CONFIGURATION="Base"
install:
- npm --python=$(which python2.7) install
script:
- ./manage.py test
- npm test
| Use Python 2.7 during npm install. | Use Python 2.7 during npm install.
| YAML | mpl-2.0 | mythmon/edwin,mythmon/edwin,mythmon/edwin,mythmon/edwin |
88d19b796cd9c5c4f9dc58d6b2eb4580e37c1fdf | .github/workflows/ci.yml | .github/workflows/ci.yml | # This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on... | # This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on... | Fix unexpected behaviour of CI. | Fix unexpected behaviour of CI.
| YAML | mit | richardbarran/django-minipub,richardbarran/django-minipub |
83559e5ed5e2ef753c5577d0e6c844a67f322701 | .travis.yml | .travis.yml | language: node_js
node_js:
- '5'
- '4' | language: node_js
# test on two node.js versions: 0.8 0.10
node_js:
- 0.8
- 0.10
# configure notifications (email, IRC, campfire etc)
# please update this section to your needs!
#notifications:
# irc: "irc.freenode.org#travis"
| Revert "update to newest node.js versions" | Revert "update to newest node.js versions"
This reverts commit 290f3a104895fd838de9cf1114238c9f01bbabeb.
| YAML | mit | alexfernandez/prototypes |
0e0e1dfe9d78f157ee40bedb892acf755313b5cd | .travis.yml | .travis.yml | language: cpp
os: osx
osx_image: xcode7.3
env:
- BUILD_TOOL=Xcode
- BUILD_TOOL=CMake
git:
submodules: false
branches:
only:
- master
compiler:
- clang
before_script:
# Take care of dependencies.
- sed -i '' 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- ./setup.sh
- >
xcodebuil... | language: cpp
os: osx
osx_image: xcode7.3
env:
- BUILD_TOOL=Xcode
- BUILD_TOOL=CMake
git:
submodules: false
branches:
only:
- master
compiler:
- clang
before_script:
# Take care of dependencies.
- sed -i '' 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- ./setup.sh
- >
xcodebuil... | Build all examples in Travis | Build all examples in Travis
| YAML | bsd-3-clause | damellis/ESP,damellis/ESP |
b21311611eafa7bd213bd234f26aaa296dc5030d | examples/babel/serverless.yml | examples/babel/serverless.yml | service: babel-dynamically-entries-example
# Add the serverless-webpack plugin
plugins:
- serverless-webpack
provider:
name: aws
runtime: nodejs6.10
functions:
first:
handler: first.hello
events:
- http:
method: get
path: first
integration: lambda
second:
han... | service: babel-example
# Add the serverless-webpack plugin
plugins:
- serverless-webpack
provider:
name: aws
runtime: nodejs6.10
functions:
first:
handler: first.hello
events:
- http:
method: get
path: first
integration: lambda
second:
handler: second.hello
... | Fix small error in service name | Fix small error in service name | YAML | mit | elastic-coders/serverless-webpack,serverless-heaven/serverless-webpack |
9d315fe0ec069e2ed9eb0e3dc20fde810625cb46 | .github/workflows/ci.yml | .github/workflows/ci.yml | on: [push, pull_request]
name: Continuous Integration
jobs:
ci:
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
rust:
- stable
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with... | on: [push, pull_request]
name: Continuous Integration
jobs:
ci:
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
rust:
- stable
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install rust
... | Add names to steps in CI job | Add names to steps in CI job
| YAML | mit | jhbabon/scout |
a48c63884d7b4d38b4e2c030032433370bfa9066 | .travis.yml | .travis.yml | language: objective-c
before_install: rake setup --trace
script: rake build --trace
after_success: rake coveralls --trace
| language: objective-c
rvm: 1.9.3
before_install: rake setup --trace
script: rake build --trace
after_success: rake coveralls --trace
| Set rvm env to 1.9.3 | Set rvm env to 1.9.3
| YAML | mit | MattesGroeger/MGBenchmark |
d56718de16f5e0b35d65cf1989c90d8987ffad6c | .travis.yml | .travis.yml | language: ruby
sudo: false
bundler_args: --without development
rvm:
- 2.2.2
- 2.3.0
- jruby-9.0.0.0
gemfile:
- Gemfile
- gemfiles/rails5master.gemfile
env:
global:
- CI="travis"
- JRUBY_OPTS="--server -J-Xms512m -J-Xmx1024m"
matrix:
- MONGODB=2.4.14
- MONGODB=2.6.11
- MONGODB=3.0.... | language: ruby
sudo: false
bundler_args: --without development
rvm:
- 2.2.2
- 2.3.0
- jruby-head
gemfile:
- Gemfile
- gemfiles/rails5master.gemfile
env:
global:
- CI="travis"
- JRUBY_OPTS="--server -J-Xms512m -J-Xmx1024m"
matrix:
- MONGODB=2.4.14
- MONGODB=2.6.11
- MONGODB=3.0.7
... | Test against jruby head in Travis | Test against jruby head in Travis
| YAML | mit | jbrien/mongoid,jbrien/mongoid |
0c05391c454f185e23fca4aea53a8d4d26562f74 | .travis.yml | .travis.yml | language: php
## Run on container environment
sudo: false
php:
- 5.6
- 7.0
- 7.1
- nightly
- hhvm
matrix:
allow_failures:
- php: [nightly, hhvm]
before_install:
- composer self-update
install:
- composer install --dev --prefer-dist --no-autoloader --no-scripts
- composer dump-autoload -o -a... | language: php
## Run on container environment
sudo: false
php:
- 5.6
- 7.0
- 7.1
- nightly
- hhvm
matrix:
allow_failures:
- php: [nightly, hhvm]
before_install:
- composer self-update
- composer global require hirak/prestissimo 0.3.4
install:
- composer install --dev --prefer-dist --no-autol... | Speed up composer install by downloading packages in parallel | Speed up composer install by downloading packages in parallel
| YAML | mit | skaut/SkautisBundle,skaut/SkautisBundle,skaut/SkautisBundle |
ab1477d933bbd7c491d0d6b6e666d714f40b3c28 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: Development
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: [2.4, 2.5, 2.6, 2.7, jruby, truffleruby-head]
gemfile: [Gemfile, Gemfile.turnip3]
runs-on: ${{matrix.os}}
steps:
- uses: actions/check... | name: Development
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: [2.4, 2.5, 2.6, 2.7, jruby]
gemfile: [Gemfile, Gemfile.turnip3]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- us... | Remove truffleruby since fails sometimes | Remove truffleruby since fails sometimes | YAML | mit | simplybusiness/rutabaga |
b40f35d34739e43d5006594e183d4f5fef9a69db | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3"
script: scripts/runtest.sh
| sudo: false
language: python
cache: pip
python:
- '2.7'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
- pypy
- pypy3
script: scripts/runtest.sh
deploy:
provider: pypi
user: uncovertruth
password:
secure: EbuYCrzrV4X9cJhj832zikWP9KUn6mEpf+/Ajm40amMS2jY5j9sJaLZulf3D+Ff3/I5K2fIjYrzzr+M+UxoD56eg2wfMmn3tvsngtDMhwMU5CCMWKJrcponE... | Add auto deployment to pypi | Add auto deployment to pypi
| YAML | mit | uncovertruth/py-geohex3,uncovertruth/py-geohex3 |
6623dc3b1f210b55f77e34d2c3d435a478aecfd0 | .travis.yml | .travis.yml | language: c
compiler: gcc
sudo: required
dist: xenial
before_install:
- sudo add-apt-repository ppa:vala-team/ppa -y
- sudo apt-get update -y
- sudo apt-get install -y xvfb build-essential gnome-common libglib2.0-dev libgtk-3-dev libgee-0.8 libjson-glib-1.0.0 libjson-glib-dev libvala-0.30-dev valac-0.30 libvte-2.... | language: c
compiler: gcc
sudo: required
dist: xenial
before_install:
- sudo add-apt-repository ppa:vala-team/ppa -y
- sudo apt-get update -y
- sudo apt-get install -y xvfb build-essential gnome-common libglib2.0-dev libgtk-3-dev libgee-0.8 libjson-glib-1.0.0 libjson-glib-dev libvala-0.30-dev valac-0.30.1 libvte-... | Upgrade valac from 0.30 to 0.30.1 | Upgrade valac from 0.30 to 0.30.1 | YAML | mit | lcallarec/dockery,lcallarec/gnome-docker-manager |
a9375dab12b3085c85472cd0d4a69e7e453dffa8 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
- jruby-18mode
env:
- SPHINX_BIN=/usr/local/sphinx-2.0.9/bin SPHINX_VERSION=2.0.9
- SPHINX_BIN=/usr/local/sphinx-2.1.3/bin SPHINX_VERSION=2.1.3
- SPHINX_BIN=/usr/local/sphinx-2.2.1/bin SPHINX_VERSION=2.2.1
before_script: killall searchd; echo '... | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
- jruby-18mode
env:
- SPHINX_BIN=/usr/local/sphinx-2.0.10/bin SPHINX_VERSION=2.0.10
- SPHINX_BIN=/usr/local/sphinx-2.1.9/bin SPHINX_VERSION=2.1.9
- SPHINX_BIN=/usr/local/sphinx-2.2.6/bin SPHINX_VERSION=2.2.6
before_script: killall searchd; echo... | Update Sphinx versions for Travis. | Update Sphinx versions for Travis.
| YAML | mit | pat/riddle,pat/riddle |
7d9d479a2c9fc3eceb8ce8fd2c0636772eb68dac | .travis.yml | .travis.yml | language: c
before_install:
- scripts/travis-before-install.sh
script:
- scripts/travis-build.sh
- scripts/travis-test.sh
matrix:
include:
- os: linux
dist: trusty
sudo: required
compiler: gcc
- os: linux
dist: trusty
sudo: required
compiler: gcc-i686
- os: linux
... | language: c
before_install:
- scripts/travis-before-install.sh
script:
- scripts/travis-build.sh
- scripts/travis-test.sh
matrix:
include:
- os: linux
dist: trusty
sudo: required
compiler: gcc
- os: linux
dist: trusty
sudo: required
compiler: gcc-i686
- os: linux
... | Allow failures on the OSX build | Allow failures on the OSX build
They OSX builds are very slow to run; it's good to test them, but
they're unlikely to differ from the Linux builds significantly.
| YAML | apache-2.0 | WebAssembly/sexpr-wasm-prototype,WebAssembly/sexpr-wasm-prototype,citisolo/wabt,WebAssembly/wabt,WebAssembly/wabt,citisolo/wabt,WebAssembly/wabt,citisolo/wabt,citisolo/wabt,WebAssembly/sexpr-wasm-prototype,WebAssembly/wabt,WebAssembly/sexpr-wasm-prototype,WebAssembly/sexpr-wasm-prototype,citisolo/wabt,WebAssembly/wabt,... |
c9d4223a7262eb6dda3fdb4d05204ae8348deb09 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- ruby-head
before_install:
- |
if [[ `ruby -v` =~ 2\.[0-2]\.[0-9]+ ]]; then
gem install rubygems-update -v '<3' && update_rubygems
gem install bundler -v '<2'
else
gem update --system
gem u... | sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
before_install:
- |
if [[ `ruby -v` =~ 2\.[0-2]\.[0-9]+ ]]; then
gem install rubygems-update -v '<3' && update_rubygems
gem install bundler -v '<2'
else
gem update --system
... | Test against Ruby 2.6.0 on Travis CI | Test against Ruby 2.6.0 on Travis CI
| YAML | mit | emsk/mask_sql,emsk/mask_sql |
34fd69b5cd546783bd2984ade2d2cf87f6038cba | .travis.yml | .travis.yml | language: groovy
#Yeah, we are going to want to cache our build dependencies so our builds aren't held up downloading for every container
cache:
directories:
- $HOME/.gradle
- $HOME/protobuf
jdk:
- oraclejdk7
- oraclejdk8
- openjdk7
# Allow running on a container instead of a traditional VM
sudo: fal... | language: groovy
#Yeah, we are going to want to cache our build dependencies so our builds aren't held up downloading for every container
cache:
directories:
- $HOME/.gradle
- $HOME/protobuf
dist: trusty
jdk:
- oraclejdk8
- openjdk8
# Allow running on a container instead of a traditional VM
sudo: fals... | Update CI to use openjdk8 and oraclejdk8 for builds | Update CI to use openjdk8 and oraclejdk8 for builds
| YAML | apache-2.0 | TWCable/grabbit |
b7adf45014b750e9a39e20404e7214ba1d12c6a7 | .travis.yml | .travis.yml | language: php
php:
- 5.2
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
env:
- AUTOLOAD=1
- AUTOLOAD=0
before_script: composer install -n --dev --prefer-source
after_script: ./vendor/bin/coveralls -v | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
env:
- AUTOLOAD=1
- AUTOLOAD=0
before_script: composer update
after_script: ./vendor/bin/coveralls -v | Remove php 5.2 to run automated unit tests | Remove php 5.2 to run automated unit tests
| YAML | mit | agmscode/agms_php_lite |
109cb03faea0bcfeab3fa23e261d349c2c15f204 | .travis.yml | .travis.yml | language: go
# https://github.com/golang/go/issues/31293
dist: xenial
sudo: false
addons:
apt:
packages:
- xorg-dev
- libx11-dev
- libxrandr-dev
- libxinerama-dev
- libxcursor-dev
- libxi-dev
- libopenal-dev
- li... | language: go
# https://github.com/golang/go/issues/31293
dist: xenial
sudo: false
addons:
apt:
packages:
- xorg-dev
- libx11-dev
- libxrandr-dev
- libxinerama-dev
- libxcursor-dev
- libxi-dev
- libopenal-dev
- li... | Update TravisCI to fail if dependencies are missing in go.mod | Update TravisCI to fail if dependencies are missing in go.mod
| YAML | mit | faiface/pixel |
59cc65ca020975d7a67f7cbf0780a4b20935bba2 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
# fixes SWT display problem
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
script:
- mvn clean verify
| language: java
# Fixes Travis issue
group: edge
jdk:
- oraclejdk8
# fixes SWT display problem
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
script:
- mvn clean verify
| Fix memory issue allocating memory for Java processes | [Travis] Fix memory issue allocating memory for Java processes
| YAML | mit | archimatetool/archi,archimatetool/archi,archimatetool/archi |
95e3607f73fa9aead56667c172cbd99c41471b14 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
cache:
directories:
- node_modules
install:
- npm install -g gulp
- npm install karma-coveralls --save-dev
# https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI
before_script:
- "export DISPLAY=:99.0"
- "sh -e /et... | language: node_js
node_js:
- "0.12"
cache:
directories:
- node_modules
install:
- npm install
- npm install -g gulp
- npm install karma-coveralls --save-dev
# https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI
before_script:
- "export DISPLAY=:99.0... | Install depdendencies … was only working because of the cache | Install depdendencies … was only working because of the cache
| YAML | apache-2.0 | coolcrowd/control-ui,coolcrowd/control-ui |
7963d8727228f0151f8bc4b8bc22d6d767fd48ea | .travis.yml | .travis.yml | language: python
python:
- "3.6"
cache: pip
install:
- pip install --upgrade pip setuptools
- pip install .
script:
- python setup.py test
| language: python
python:
- "3.6"
cache: pip
install:
- pip install --upgrade pip setuptools
- pip install coveralls
- pip install .
script:
- python setup.py test
after_success:
- coveralls
| Add coveralls coverage report from Travis CI Add coveralls installation so it works | Add coveralls coverage report from Travis CI
Add coveralls installation so it works
| YAML | mit | NedYork/viper |
8c3090c1ee90fcbc284b711440e0a0d19517f424 | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.4
- 5.5
- 5.6
- 7.0
install:
- composer install --no-interaction
script: vendor/bin/phpunit --configuration .phpunit.xml
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
install:
- composer install --no-interaction
script: vendor/bin/phpunit --configuration .phpunit.xml
| Remove PHP 5.3.3 from Travis due to SSL fail | Remove PHP 5.3.3 from Travis due to SSL fail
| YAML | mit | JangoBrick/php-svg |
06968374421075d4dab1d256c79c0077ea0888b5 | .travis.yml | .travis.yml | language: android
jdk: oraclejdk8
android:
components:
- extra-android-m2repository
- build-tools-21.1.2
- android-19
script:
- ./gradlew build
| language: android
jdk: oraclejdk8
android:
components:
- extra-android-m2repository
- build-tools-21.1.2
- android-22
script:
- ./gradlew build
| Use correct android in Travis | Use correct android in Travis
| YAML | mit | pivotal/macchiato |
310eb4c1fc2e5034d804ef37fc0f059e4c9f2bc2 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.3
before_install:
- gem update --system
- gem install bundler
script:
- bundle exec jekyll build
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
| language: ruby
rvm:
- 2.4.1
before_install:
- gem update --system
- gem install bundler
script:
- bundle exec jekyll build
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
cache: bundler | Use a pre-installed version of ruby | Use a pre-installed version of ruby
Signed-off-by: Suhaib Khan <964831d24cb3e47c0155ab3cd65f31c238fd30ac@teampicnic.com>
| YAML | apache-2.0 | aktech/aktech.github.io,aktech/aktech.github.io,aktech/aktech.github.io,aktech/aktech.github.io,aktech/aktech.github.io |
5dde76d9ae6f38129f5006ce93dca0eb35c5dfb6 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
services:
- redis-server
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- jruby-19mode
before_script:
- git config --local user.email "travis@travis.ci"
- git config --local user.name "Travis CI"
script:
- bundle exec rspec
- bundle exec overcommit --run
matrix:
allow_... | language: ruby
sudo: false
cache: bundler
services:
- redis-server
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby-19mode
before_script:
- git config --local user.email "travis@travis.ci"
- git config --local user.name "Travis CI"
script:
- bundle exec rspec
- bundle exec overcommit --run
matrix:
al... | Test latest Ruby 2.2 version in CI runs | Test latest Ruby 2.2 version in CI runs
| YAML | mit | GearboxSoftware/mock_redis,batizhevsky/mock_redis,anujdas/mock_redis,brigade/mock_redis |
22e505c9d6a77b94f21ee9c4d6b8ec719c43f6ff | .travis.yml | .travis.yml | #
# Copyright 2017, gRPC Authors All rights reserved.
#
# Licensed 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 ... | #
# Copyright 2017, gRPC Authors All rights reserved.
#
# Licensed 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 ... | Remove the current working directoy from the Travis PATH environment variable. | Remove the current working directoy from the Travis PATH environment variable.
| YAML | apache-2.0 | grpc/grpc-swift,grpc/grpc-swift,grpc/grpc-swift,grpc/grpc-swift,grpc/grpc-swift |
1b7e1275df36547704285d210a78e0629379378a | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
branches:
only:
- master
install:
- sudo apt-get update -qq
- sudo apt-get install -qq libqt4-dev subversion
script:
- svn checkout -q http://sparsehash.googlecode.com/svn/trunk sparsehash-read-only
- cd sparsehash-read-only
- ./configure
- make -j2
- cp... | language: cpp
compiler:
- gcc
- clang
branches:
only:
- master
sudo: false
addons:
apt:
packages:
- libqt4-dev
script:
- git clone https://github.com/google/sparsehash
- cd sparsehash
- ./configure
- make -j2
- cp -R src/sparsehash ../
- cp -R src/google ../
- cd ../tests
- qmak... | Migrate to container-based Travis infrastructure | Migrate to container-based Travis infrastructure | YAML | mit | sjinks/qt_sparsehash |
89bb441e94c3080c9133832f677391fb534113f8 | .travis.yml | .travis.yml | language: node_js
node_js:
- 7.7.0
# safelist
branches:
only:
- master
script: bash ./deploy.sh
| language: node_js
node_js:
- 7.7.0
# safelist
addons:
apt:
packages:
ffmpeg
branches:
only:
- master
script: bash ./deploy.sh
| Add ffmpeg to get the duration. | Add ffmpeg to get the duration.
| YAML | mpl-2.0 | bwinton/podcasts |
7770be5b824bf9c184bd141a00143ff3bc991765 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
install:
- pip install pytest
- pip install -e .
script:
- py.test
| language: python
python:
- "2.7"
- "3.6"
install:
- pip install pytest
- pip install -e .
script:
- py.test
| Drop testing on older Python 3 | Drop testing on older Python 3
Signed-off-by: Philippe Ombredanne <ca95c4a6a4931f366cbdaf5878c5016609417d37@nexb.com> | YAML | mpl-2.0 | pombredanne/python-publicsuffix2 |
6241adbc854222adf7ef4a852f6652630c8d5086 | .travis.yml | .travis.yml | language: php
php:
- '5.6'
- '7.0'
- '7.1'
- nightly
| language: php
php:
- '5.6'
- '7.0'
- '7.1'
- nightly
before_script:
- travis_retry composer install --prefer-source --no-interaction --dev
| Make sure dependencies actually get installed | Make sure dependencies actually get installed
| YAML | mit | ksassnowski/laravel-shareable-models |
d53f35c57dce7dd3bbe73283ad86c1e1981404f3 | .travis.yml | .travis.yml | language: "node_js"
env: DEBUG=*
branches:
only:
- master
- next
- rewrite
node_js:
- "0.12"
- "4.2"
- "5"
- "node"
os:
- linux
before_install:
- npm update -g npm
| language: "node_js"
env: DEBUG=*
branches:
only:
- master
- next
- rewrite
node_js:
- "node"
- "6"
- "4"
os:
- linux
before_install:
- npm update -g npm
| Update nodejs versions under test | Update nodejs versions under test
| YAML | apache-2.0 | cloudant/nodejs-cloudant,cloudant/nodejs-cloudant |
b40bfc9de36fb12df2251a79ab7a6f7119b9d9d8 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
install:
- "pip install -r requirements.txt"
- "pip install coveralls"
- "if [[ $TEST_PEP8 == '1' ]]; then pip install pep8; fi"
script:
- "if [[ $TEST_PEP8 == '1' ]]; then pep8 --repeat --show-source --exclude=.venv,.tox,dist,docs,build,lastpass_python.egg... | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
install:
- "pip install -r requirements.txt"
- "pip install coveralls"
- "if [[ $TEST_PEP8 == '1' ]]; then pip install pep8; fi"
script:
- "if [[ $TEST_PEP8 == '1' ]]; then pep8 --repeat --show-s... | 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 | konomae/lastpass-python |
c92f34f7d85c560fde8ebb5fe9236560ba4e83f3 | .travis.yml | .travis.yml | # Use Docker infrastructure
sudo: false
language: ruby
cache: bundler
| # Use Docker infrastructure
sudo: false
language: ruby
cache: bundler
rvm:
- 2.1.6
| Upgrade rvm version to support dependencies | Upgrade rvm version to support dependencies
| YAML | apache-2.0 | mikewiebe/cisco-network-puppet-module,cisco/cisco-network-puppet-module,cisco/cisco-network-puppet-module,mikewiebe/cisco-network-puppet-module,mikewiebe/cisco-network-puppet-module,cisco/cisco-network-puppet-module,mikewiebe/cisco-network-puppet-module,cisco/cisco-network-puppet-module |
a00e9ad329664497e3b31d3c9f31c53e9bfb3551 | .travis.yml | .travis.yml | language: python
python: "3.5"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script:
- flake8 .
- pylint .
- nosetests --with coverage --cover-package=sudoku_py3
| language: python
python: "3.5"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script:
- flake8 .
- pylint .
- nosetests --with-coverage --cover-package=sudoku_py3
| Correct typo in coverage (as a --flag to nosetests) | Correct typo in coverage (as a --flag to nosetests)
| YAML | mit | ReblochonMasque/sudoku |
9f7bf863be41ad8a85b53bcddf621e01065d3093 | .travis.yml | .travis.yml | sudo: false
language: android
android:
components:
- build-tools-27.0.1
jdk:
- oraclejdk8
script: ./gradlew build
cache:
directories:
- "$HOME/.gradle/caches"
branches:
only:
- master
| sudo: false
language: android
android:
components:
- build-tools-27.0.1
- android-22
jdk:
- oraclejdk8
script: ./gradlew build
cache:
directories:
- "$HOME/.gradle/caches"
branches:
only:
- master
| Add android SDK config to Travis build | Add android SDK config to Travis build
| YAML | apache-2.0 | ewerk/gradle-plugins,griffio/gradle-plugins |
52962a5ea502e14560224ccd8142edec0a0fc50f | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.8"
- "0.6"
install:
- npm install gulp -g
script:
- gulp compile | language: node_js
node_js:
- "0.11"
install:
- npm install gulp -g
script:
- gulp compile | Upgrade Node, and we only really need one version | Upgrade Node, and we only really need one version
| YAML | bsd-3-clause | tdukart/backbone-bootbox-view |
76327580ddaa7a59571246e9a766f4dbd287d430 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
sudo: false
cache:
directories:
- disque
before_install:
- $PWD/scripts/run_disque
install:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
- python setup.py install
script: py.test .
| language: python
matrix:
include:
- python: 2.7
script: tox -epep8
- python: 2.6
- python: 2.7
- python: 3.2
- python: 3.3
- python: 3.4
sudo: false
cache:
directories:
- disque
before_install:
- $PWD/scripts/run_disque
install:
- pip install -r requirements.txt
- pip install... | Check PEP8 style in Travis-CI | Check PEP8 style in Travis-CI
| YAML | apache-2.0 | ryansb/disq,ryansb/disq |
7958a50e210588bd1b57ab6b184f694a6615d01e | .travis.yml | .travis.yml | notifications:
email:
recipients:
- tim.beadle@gmail.com
language: node_js
node_js:
- "10"
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
before_script:
- npm install -g grunt-cli
| notifications:
email:
recipients:
- tim.beadle@gmail.com
language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
- "9"
- "10"
before_script:
- npm install -g grunt-cli
| Reorder nodejs versions in ascending order | [CHORE] Reorder nodejs versions in ascending order
| YAML | mit | Bartvds/tv4-reporter,timbeadle/tv4-reporter |
9e568d82d9a7c411a76db47e4cd1875ae655759b | .travis.yml | .travis.yml | sudo: false
language: php
php:
- "7.1"
- "7.2"
- "7.3"
cache:
directories:
- vendor
- $HOME/.composer/cache
env:
matrix:
- DEPENDENCIES=latest
- DEPENDENCIES=oldest
before_install:
- phpenv config-rm xdebug.ini || echo "xdebug not available"
install:
- >
echo;
if [ "$DEPENDENCIES" = "latest" ]; th... | sudo: false
language: php
php:
- "7.1"
- "7.2"
- "7.3"
cache:
directories:
- $HOME/.composer/cache
env:
matrix:
- DEPENDENCIES=latest
- DEPENDENCIES=oldest
before_install:
- phpenv config-rm xdebug.ini || echo "xdebug not available"
install:
- >
echo;
if [ "$DEPENDENCIES" = "latest" ]; then
echo... | Stop caching vendor/ on Travis CI | [BUGFIX] Stop caching vendor/ on Travis CI
Caching this directory creates problems between builds with different
PHP versions and highest/lowest dependencies.
Caching the Composer cache directory should suffice to not download
the packages.
| YAML | mit | mjaschen/collmex |
f9e75e250998e209015e56198210ec8abbafae9d | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8
# Important to specify the simulator SDK, otherwise Travis CI will attempt to
# build for the real iPhone and fail due to code-signing issues.
# See https://docs.travis-ci.com/user/languages/objective-c for details.
xcode_sdk: iphonesimulator
before_install:
- brew update
-... | language: objective-c
osx_image: xcode8
# Important to specify the simulator SDK, otherwise Travis CI will attempt to
# build for the real iPhone and fail due to code-signing issues.
# See https://docs.travis-ci.com/user/languages/objective-c for details.
xcode_sdk: iphonesimulator
before_install:
- brew update
-... | Upgrade Xcode Tool rather than install from HEAD | Upgrade Xcode Tool rather than install from HEAD
| YAML | mit | royratcliffe/NetworkReachability,royratcliffe/NetworkReachability |
2fbbb3ad2ee522305f7e928e7a6a670d2582af39 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.1
- jruby
gemfile:
- gemfiles/ar30.gemfile
- gemfiles/ar31.gemfile
- gemfiles/ar32.gemfile
- gemfiles/ar40.gemfile
- gemfiles/ar41.gemfile
- gemfiles/ar42.gemfile
sudo: false
services:
- mysql
- postgresql
before_script:
- mysq... | language: ruby
rvm:
- 2.0.0
- 2.1.1
- jruby
gemfile:
- gemfiles/ar30.gemfile
- gemfiles/ar31.gemfile
- gemfiles/ar32.gemfile
- gemfiles/ar40.gemfile
- gemfiles/ar41.gemfile
- gemfiles/ar42.gemfile
sudo: false
services:
- mysql
- postgresql
before_script:
- mysql -e 'create database makara_t... | Drop Ruby < 2.0 builds | Drop Ruby < 2.0 builds
| YAML | mit | wanelo/makara,instacart/makara,Drakula2k/makara,taskrabbit/makara |
a7f104288ea65f5292c892d89bccd5cdea6c5716 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
install:
- composer install
script:
- vendor/bin/pake $TASK
env:
- TASK="phpunit"
cache:
directories:
- vendor
branches:
only:
- master
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
install:
- composer install
script:
- vendor/bin/pake $TASK
env:
- TASK="phpunit"
matrix:
allow_failures:
- php: 7
- php: hhvm
cache:
directories:
- vendor
branches:
only:
- master
| Allow PHP 7 and HHVM to fail | Allow PHP 7 and HHVM to fail
| YAML | mit | mscharley/colourist |
99cb1d0ddb7ab19d73520665975dc6246da47201 | .travis.yml | .travis.yml | language: rust
rust:
- stable
| language: rust
sudo: false
matrix:
include:
- rust: stable
env:
- FEATURES='serialize'
- rust: nightly
env:
- FEATURES='serialize'
- BENCH=1
script:
- |
cargo build --verbose --features "$FEATURES" &&
cargo test --verbose --features "$FEATURES" &&
([ "$BENC... | Use build matrix, and set 'serialize' feature in Travis build script | Use build matrix, and set 'serialize' feature in Travis build script
| YAML | apache-2.0 | rusticata/tls-parser,rusticata/tls-parser |
c3803c92221a2c8d4ab3e5273df2ad7dbc85bf08 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 6
- 5
- 4
notifications:
email: false
| sudo: false
language: node_js
node_js:
- 6
- 4
notifications:
email: false
| Remove a test case for Node.js v5 | Remove a test case for Node.js v5
| YAML | mit | 1000ch/grunt-image |
23d4655fc045c23fc673c8cad867bea850e0185d | .travis.yml | .travis.yml | language: ruby
rvm:
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- rbx-18mode
- rbx-19mode
- jruby-18mode
- jruby-19mode
script: "bundle exec rake test"
gemfile:
- gemfiles/3.0.gemfile
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
matrix:
exclude:
- rvm: jruby-18mode
... | language: ruby
rvm:
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- rbx-2
- jruby-18mode
- jruby-19mode
script: "bundle exec rake test"
gemfile:
- gemfiles/3.0.gemfile
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
matrix:
exclude:
- rvm: jruby-18mode
gemfile: gemfile... | Test against supported versions of Rubinius. | Test against supported versions of Rubinius.
See http://docs.travis-ci.com/user/languages/ruby/#Rubinius for
details
| YAML | mit | transloadit/rails-sdk |
c5f7f848be3ddc564dbf31533f153db21b61442a | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: node_js
matrix:
include:
#- os: osx
- os: linux
node_js:
- 8
env:
- ELECTRON_CACHE=$HOME/.electron
cache:
directories:
- $HOME/.electron
- node_modules
addons:
apt:
packages:
- icnsutils
install:
- npm install
script:
- npm run dist
| sudo: required
dist: trusty
language: node_js
matrix:
include:
#- os: osx
- os: linux
node_js:
- 8
env:
- ELECTRON_CACHE=$HOME/.electron
cache:
directories:
- $HOME/.electron
- node_modules
addons:
apt:
packages:
- icnsutils
install:
- npm install
#script:
# - npm run dist
| Disable linux dist for a meanwhile | Disable linux dist for a meanwhile
| YAML | apache-2.0 | meltedspark/electron-angular2-native,meltedspark/electron-angular2-native,meltedspark/electron-angular2-native,meltedspark/electron-angular2-native |
d19e9fe2baeba34eb9073c1dcf6dc9f72a3d5e9b | azure-pipelines.yml | azure-pipelines.yml | # Maven package Java project Web App to Linux on Azure
# Build your Java project and deploy it to Azure as a Linux web app
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/java
trigger:
- master
- develop
pool:
vmImage: 'ubuntu-late... | # Maven package Java project Web App to Linux on Azure
# Build your Java project and deploy it to Azure as a Linux web app
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/java
trigger:
- master
- develop
pool:
vmImage: 'ubuntu-late... | Update pipeline with new war name | Update pipeline with new war name
| YAML | agpl-3.0 | musIndex/mouseinventory,musIndex/mouseinventory,musIndex/mouseinventory |
0c8997131de87cab184e73fed0a853143508d037 | azure-pipelines.yml | azure-pipelines.yml | strategy:
matrix:
linux:
imageName: 'ubuntu-latest'
windows:
imageName: 'windows-latest'
trigger:
- master
pool:
vmImage: $(imageName)
variables:
buildConfiguration: 'Release'
steps:
- task: UseDotNet@2
displayName: 'Install .NET Core SDK (based on global.json)'
inputs:
packageType... | strategy:
matrix:
linux:
imageName: 'ubuntu-latest'
windows:
imageName: 'windows-latest'
trigger:
- master
pool:
vmImage: $(imageName)
variables:
buildConfiguration: 'Release'
steps:
- task: UseDotNet@2
displayName: 'Install .NET Core SDK (based on global.json)'
inputs:
packageType... | Build packages in CI though | Build packages in CI though
| YAML | apache-2.0 | TahaHachana/XPlot,fslaborg/XPlot,TahaHachana/XPlot,fslaborg/XPlot,fslaborg/XPlot |
8c4762caa6960fc334f1bb28b0e6dc3e95884273 | azure-pipelines.yml | azure-pipelines.yml | # .NET Desktop
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
pool:
vmImage: 'VS2017-Win2016'
variables:
solution: 'build/*.sln'
buildPlatform:... | # .NET Desktop
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
pool:
vmImage: 'VS2017-Win2016'
variables:
solution: 'build/*.sln'
buildPlatform:... | Fix azure openssl link errors | Fix azure openssl link errors
| YAML | mit | yourWaifu/sleepy-discord,yourWaifu/sleepy-discord,NoNamer64/sleepy-discord,NoNamer64/sleepy-discord,yourWaifu/sleepy-discord |
145b9be7e4bec1f9ed25eb91b59b119f4a588d20 | .travis.yml | .travis.yml | language: java
sudo: false
before_install:
# Install zookeeper
- mkdir /tmp/zookeeper
- wget http://www.eu.apache.org/dist/zookeeper/zookeeper-3.4.8/zookeeper-3.4.8.tar.gz
- tar xzf zookeeper-3.4.8.tar.gz -C /tmp/zookeeper
- cp /tmp/zookeeper/zookeeper-3.4.8/conf/zoo_sample.cfg /tmp/zookeeper/zookeeper-3.4.8... | language: java
sudo: false
before_install:
# Install zookeeper
- mkdir /tmp/zookeeper
- wget http://www.eu.apache.org/dist/zookeeper/zookeeper-3.4.8/zookeeper-3.4.8.tar.gz
- tar xzf zookeeper-3.4.8.tar.gz -C /tmp/zookeeper
- cp /tmp/zookeeper/zookeeper-3.4.8/conf/zoo_sample.cfg /tmp/zookeeper/zookeeper-3.4.8... | Change zookeeper node to localhost | Change zookeeper node to localhost | YAML | apache-2.0 | jnidzwetzki/bboxdb,jnidzwetzki/scalephant,jnidzwetzki/scalephant,jnidzwetzki/bboxdb,jnidzwetzki/bboxdb |
bd5b87a4530921aaa6b9915a580c26aa040678bb | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.2.5"
- "2.3.1"
env:
- 'RAILS_VERSION="~> 3.2.0"'
- 'RAILS_VERSION="~> 4.0.0"'
- 'RAILS_VERSION="~> 4.1.0"'
- 'RAILS_VERSION="~> 4.2.0"'
- 'RAILS_VERSION="~> 5.0.0"'
- 'RAILS_VERSION="= 5.1.4"'
- 'RAILS_VERSION="= 5.1.5"'
- 'RAILS_VERSION="~> 5.1.5"'
- 'RAILS_VERSION="~> 5.... | language: ruby
rvm:
- "2.3.7"
- "2.4.4"
- "2.5.1"
env:
- 'RAILS_VERSION="~> 3.2.0"'
- 'RAILS_VERSION="~> 4.0.0"'
- 'RAILS_VERSION="~> 4.1.0"'
- 'RAILS_VERSION="~> 4.2.0"'
- 'RAILS_VERSION="~> 5.0.0"'
- 'RAILS_VERSION="= 5.1.4"'
- 'RAILS_VERSION="= 5.1.5"'
- 'RAILS_VERSION="~> 5.1.5"'
- 'RAILS_VE... | Stop testing against Ruby 2.2, start 2.4 and 2.5 | Stop testing against Ruby 2.2, start 2.4 and 2.5
| YAML | mit | magnusvk/counter_culture,magnusvk/counter_culture |
c921e4fa7f69f96f9bec549094ab0158e90d17ca | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- ruby-head
- 2.1.1
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-19mode
- jruby-head
- rbx-2.1
- rbx-2.2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
cache: bundler
rvm:
- ruby-head
- 2.1.1
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-19mode
- jruby-head
- rbx-2.1.1
- rbx-2.2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| Use a specific RBX version, attempt at fixing CI. | Use a specific RBX version, attempt at fixing CI.
| YAML | mit | elliotlarson/grape,QuickPay/grape,ruby-grape/grape,klaustopher/grape,peterwillcn/grape,phusion/grape,suan/grape,ronald/grape,ryancheung/grape,brainyandbrown/grape,reprah/grape,xurde/grape,LIQIDTechnology/grape,samotarnik/grape,gencer/grape,cutalion/grape,hnq90/grape,intridea/grape,tildeio/grape,jlfaber/grape,cyberid41/... |
3dc51bfd5e6f00e1550ca491d540333d26100171 | .travis.yml | .travis.yml | version: ~> 1.0
os: linux
dist: bionic
language: python
cache:
pip: true
directories:
- .tox
jobs:
include:
- python: 3.6
env: TOXENV=py36-lower_bound_deps
- python: 3.7
env: TOXENV=py37-lower_bound_deps
- python: 3.8
env: TOXENV=py38-lower_bound_deps
- python: 3.6
env:... | version: ~> 1.0
os: linux
dist: bionic
language: python
cache:
pip: true
directories:
- .tox
jobs:
include:
- python: 3.6
env: TOXENV=py36-lower_bound_deps
- python: 3.7
env: TOXENV=py37-lower_bound_deps
- python: 3.8
env: TOXENV=py38-lower_bound_deps
- python: 3.6
env:... | Add missing extras dependencies for linting | Add missing extras dependencies for linting
| YAML | mit | springload/draftjs_exporter,springload/draftjs_exporter,springload/draftjs_exporter |
4adf7f46e6cf189b09c67244ecbcef1e0c7f3646 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "4"
- "0.12"
| language: node_js
node_js:
- stable
- "6"
- "4"
- "0.12"
| Add node.js 7 to Travis CI | Add node.js 7 to Travis CI
| YAML | mit | postcss/postcss,pascalduez/postcss,postcss/postcss,Semigradsky/postcss,jonathantneal/postcss,bezoerb/postcss |
ead915dee1934035a1ba7562e68b7131b72a3716 | .travis.yml | .travis.yml | language: php
dist: trusty
sudo: false
php:
- '7.2'
- '7.3'
cache:
directories:
- ~/.composer/cache/files
env:
global:
- APP_ENV=test
before_install:
- phpenv config-rm xdebug.ini
- echo "memory_limit=4096M" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini... | language: php
dist: trusty
sudo: false
php:
- '7.2'
- '7.3'
cache:
directories:
- ~/.composer/cache/files
env:
global:
- APP_ENV=test
before_install:
- phpenv config-rm xdebug.ini
- echo "memory_limit=4096M" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini... | Fix build: use Sylius version similar to Skeleton framework used | Fix build: use Sylius version similar to Skeleton framework used
| YAML | mit | stefandoorn/sitemap-plugin,stefandoorn/sitemap-plugin,stefandoorn/sitemap-plugin |
b0dc2a707035035b9a689105c8f833894fb59eb7 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install: pip install --use-mirrors
script:
- python setup.py test
| language: python
python:
- "2.7"
install: pip install
script:
- python setup.py test
| Remove --use-mirrors on pip command line | Remove --use-mirrors on pip command line
The pip Travis CI uses doesn't appear to have this flag anymore.
| YAML | mit | pteichman/cobe,pteichman/cobe |
08316ef4e8bfe51f845ba2b637250495cdd37b0c | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- jruby-19mode # JRuby in 1.9 mode
- rbx-19mode
# TODO: restore hashrocks before eveing thinking about these:
# - "1.8.7"
# - jruby-18mode # JRuby in 1.8 mode
# - rbx-18mode
gemfile:
- will_paginate.rails31.gemfile
- will_paginate.rails32.gemfile
- kaminari.rail... | language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- "2.0.0"
- jruby-19mode # JRuby in 1.9 mode
- rbx-19mode
# TODO: restore hashrocks before eveing thinking about these:
- "1.8.7"
- jruby-18mode # JRuby in 1.8 mode
- rbx-18mode
gemfile:
- will_paginate.rails31.gemfile
- will_paginate.rails32.gemfile
- kami... | Enable more versions of Ruby in Travis | Enable more versions of Ruby in Travis
| YAML | mit | rmg/magic_grid,rmg/magic_grid |
e971e1ea949b7844232ec58cf8807cf9066468d8 | .travis.yml | .travis.yml | language: go
go:
- '1.6'
- '1.7'
- '1.8'
- '1.9'
- '1.10'
script:
make test
sudo: false
| language: go
go:
- "1.6"
- "1.7"
- "1.8"
- "1.9"
- "1.10"
- "1.11"
script:
make test
sudo: false
| Add Go 1.11 to Travis test matrix | Add Go 1.11 to Travis test matrix
| YAML | mit | renstrom/fuzzysearch |
9237b4e700e11770d1479f2dcb8ac8a24bbba448 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
matrix:
allow_failures:
- rvm: jruby-head
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ree
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
matrix:
allow_failures:
- rvm: jruby-head
| Test against Ruby 2.0.0 preview | Test against Ruby 2.0.0 preview
| YAML | mit | bensie/sshkey |
f7893266b82697110b3036721fc6398f7b478068 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.8"
- "0.6"
- "iojs"
- "iojs-v1.0.4" | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "iojs" | Update nodejs versions for Travis | Update nodejs versions for Travis
| YAML | apache-2.0 | reecms/cocktail |
63e73faa2ff0d9badebc454783658b6b0d6dce55 | .travis.yml | .travis.yml | language: scala
scala:
- 2.12.1 | language: scala
scala:
- 2.12.1
script:
travis wait 30 sbt ++$TRAVIS_SCALA_VERSION test | Increase the build output timeout period, as two of the tests take a *long* time to complete. | Increase the build output timeout period, as two of the tests take a *long* time to complete. | YAML | mit | sageserpent-open/open-plutonium |
9568e21725cd76f1e8792f950cfe1a11cf48c310 | .travis.yml | .travis.yml | language: php
dist: trusty
sudo: false
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- "cp app/config/parameters.yml{.dist,}"
- "composer install --prefer-source"
- "composer require --dev phpunit/phpunit"
script: phpunit -c app
| language: php
dist: trusty
sudo: false
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- "cp app/config/parameters.yml{.dist,}"
- "composer install --prefer-source"
- "composer require --dev phpunit/phpunit --profile -vvv"
script: phpunit -c app
| Install phpunit with profiling enabled | [Travis] Install phpunit with profiling enabled
| YAML | agpl-3.0 | vierbergenlars/authserver,vierbergenlars/authserver,vierbergenlars/authserver,vierbergenlars/authserver |
6e2b65a6c2e343437b4a88b879ee693422e32319 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
cache:
directories:
- node_modules
notifications:
email: false
sudo: false
| dist: trusty
language: node_js
node_js:
- "0.10"
cache:
directories:
- node_modules
notifications:
email: false
sudo: false
| Use a Travis environment with PhantomJS 2. | Use a Travis environment with PhantomJS 2.
| YAML | mit | benpickles/peity,benpickles/peity,benpickles/peity |
416556023365a3fd679bc938a86b8785b66175a5 | build.yaml | build.yaml | java:
- oraclejdk8
os:
- ubuntu/trusty64/m3.large
cassandra:
- '2.1'
- '2.2'
- '3.0'
- '3.11'
build:
- script: |
git clone --depth 1 https://github.com/datastax/native-protocol.git
pushd native-protocol
mvn install -Dmaven.javadoc.skip=true -B -V
popd
rm -rf native-protocol
... | java:
- openjdk8
os:
- ubuntu/trusty64/m3.large
cassandra:
- '2.1'
- '2.2'
- '3.0'
- '3.11'
build:
- script: |
git clone --depth 1 https://github.com/datastax/native-protocol.git
pushd native-protocol
mvn install -Dmaven.javadoc.skip=true -B -V
popd
rm -rf native-protocol
-... | Use openjdk8 instead of oraclejdk8 | Use openjdk8 instead of oraclejdk8
| YAML | apache-2.0 | datastax/java-driver,datastax/java-driver |
17039e58b73459d24f9ab402ecc81832bbb4e5d2 | .travis.yml | .travis.yml | language: php
services:
- mysql
php:
- 5.5
- 5.6
- 7.0
- 7.1
before_script:
- composer install
- echo "USE mysql;\nUPDATE user SET password=PASSWORD('battle218pw') WHERE user='root';\nFLUSH PRIVILEGES;\n" | mysql -u root
script:
- bin/bgawb validate
- vendor/bin/phpunit | language: php
services:
- mysql
php:
- 5.6
- 7.0
- 7.1
before_script:
- composer install
- echo "USE mysql;\nUPDATE user SET password=PASSWORD('battle218pw') WHERE user='root';\nFLUSH PRIVILEGES;\n" | mysql -u root
script:
- bin/bgawb validate
- vendor/bin/phpunit | Revert to PHP version 5.6 | Revert to PHP version 5.6
| YAML | mit | danielholmes/battle-for-hill-218,danielholmes/battle-for-hill-218,danielholmes/battle-for-hill-218 |
7c4755c2a561257f39d465e2b454fa7698fe4976 | .travis.yml | .travis.yml | dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: '49.0.2'
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 && ... | 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 &... | Use the latest Firefox ESR for testing | Use the latest Firefox ESR for testing
| YAML | apache-2.0 | Collaborne/bing-static-map |
a3a0e0800976061b0c9dcb405da6a6d7339839b9 | .travis.yml | .travis.yml | language: python
python:
- "3.5"
- "3.6"
install:
- "pip install -r requirements.txt"
- "pip install -e ."
script: pytest tests/main_tests.py
notifications:
email: false | language: python
python:
- "3.5"
- "3.6"
- "3.7"
install:
- "pip install -r requirements.txt"
- "pip install -e ."
script: pytest tests/main_tests.py
notifications:
email: false | Add python 3.7 test target | Add python 3.7 test target
| YAML | lgpl-2.1 | katajakasa/aiohttp-spyne |
c9d2d384410c4b3105ddce55378808d5dec8c220 | .travis.yml | .travis.yml | language: node_js
os:
- "linux"
- "osx"
node_js:
- "0.12"
- "0.11"
- "0.10"
- "6.1"
- "5.11"
- "4.4"
services:
- elasticsearch
- rabbitmq
before_install:
- "export NODE_ENV=test"
- "npm config set strict-ssl false"
- "npm install -g chai istanbul jsdoc mocha babel-register"
before_script:... | language: node_js
os:
- "linux"
- "osx"
node_js:
- "4.4"
- "5.11"
- "6.1"
services:
- elasticsearch
- rabbitmq
before_install:
- "export NODE_ENV=test"
- "npm config set strict-ssl false"
- "npm install -g chai istanbul jsdoc mocha babel-register"
before_script:
- "sleep 10"
install:
- .... | Use only modern nodejs versions | Use only modern nodejs versions
| YAML | mit | korczis/microcrawler,korczis/microcrawler |
7e4d12731d5fa35b7e239ea7d998283c148e5c5e | .travis.yml | .travis.yml | language: python
sudo: false
matrix:
include:
- python: "3.5"
env: TEST_TYPE=typecheck
- python: "2.7"
env: TEST_TYPE=test
- python: "2.7"
env: TEST_TYPE=check
install:
- pip install -e .
- travis_retry pip install -r requirements-dev.txt
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then pip in... | language: python
sudo: false
matrix:
include:
- python: "3.5"
env: TEST_TYPE=typecheck
- python: "2.7"
env: TEST_TYPE=coverage
- python: "2.7"
env: TEST_TYPE=check
install:
- pip install -e .
- travis_retry pip install -r requirements-dev.txt
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then pi... | Switch test type to coverage | Switch test type to coverage
| YAML | apache-2.0 | awslabs/chalice,freaker2k7/chalice |
3ea82bf6003ea9a636d9c5b9074acfab87765d1e | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby
install:
- sudo apt-get install -qq graphviz
- bundle install
| language: ruby
python:
- 2.7
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby
install:
- pip install shaape
- sudo apt-get install -qq graphviz
- bundle install
| Make sure shaape is installed when running tests on Travis CI | Make sure shaape is installed when running tests on Travis CI
| YAML | mit | chanibal/asciidoctor-diagram,asciidoctor/asciidoctor-diagram |
054adceb39e8f216944ef57839236e1b5913d6cd | .travis.yml | .travis.yml | language: cpp
sudo: required
dist: trusty
before_install:
- sudo add-apt-repository --yes ppa:beineri/opt-qt58-trusty
- sudo apt-get update -qq
install:
- sudo apt-get -y install qt58[QTPACKAGE]
- sudo apt-get -y install qt58serialbus
- sudo git clone git://github.com/stephane/libmodbus.git
- cd libmodbus... | language: cpp
sudo: required
dist: trusty
compiler:
- clang
- gcc
env:
- QMAKE_OPTIONS="CONFIG+=debug CONFIG+=qml_debug"
- QMAKE_OPTIONS="CONFIG+=release"
before_install:
- sudo add-apt-repository --yes ppa:beineri/opt-qt58-trusty
- sudo apt-get update -qq
install:
- sudo apt-get -y install qt58[QTPAC... | Add clang to build matrix. | Add clang to build matrix.
| YAML | mit | michpolicht/CuteHMI,michpolicht/CuteHMI,michpolicht/CuteHMI,michpolicht/CuteHMI,michpolicht/CuteHMI |
b4e8cd5bca6e0e25d60d532e90b539476d305007 | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
sudo: false
services:
- mysql
env:
global:
- ARTISAN_DB_HOST=127.0.0.1
- ARTISAN_DB_PORT=3306
- ARTISAN_DB_USER=travis
- ARTISAN_DB_PASS=""
matrix:
- PHPUNIT_VERSION="^5.7"
- PHPUNIT_VERSION="^6.0"
cache:
directories:
- $HOME/.composer/cache
b... | language: php
php:
- 7.0
- 7.1
sudo: false
services:
- mysql
env:
global:
- ARTISAN_DB_HOST=127.0.0.1
- ARTISAN_DB_PORT=3306
- ARTISAN_DB_USER=travis
- ARTISAN_DB_PASS=""
matrix:
- PHPUNIT_VERSION="^5.7"
- PHPUNIT_VERSION="^6.0"
cache:
directories:
- $HOME/.composer/cache
b... | Disable Xdebug before running tests | Disable Xdebug before running tests
| YAML | mit | thecrypticace/suitey |
b58031f64bdaf3777dea0a47380dd7ee552748e7 | .travis.yml | .travis.yml | language: php
php:
- 5.5.9
- 5.6
- 7.0
- hhvm
sudo: false
matrix:
allow_failures:
- php: hhvm
install:
- if [[ ${TRAVIS_PHP_VERSION} == "5.5.9" ]];
then travis_retry composer require laravel/framework;
else travis_retry composer update --no-interaction --prefer-source;
fi
script: make t... | language: php
php:
- 5.5.9
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
- nightly
sudo: false
matrix:
allow_failures:
- php: hhvm
- php: nightly
install:
- if [[ ${TRAVIS_PHP_VERSION} == "5.5.9" ]];
then travis_retry composer require laravel/framework;
else travis_retry composer update --no-inte... | Update Travis CI with later PHP versions | Update Travis CI with later PHP versions
| YAML | apache-2.0 | aws/aws-sdk-php-laravel |
b3fe9a3e916234218fe74c8862064650f9d39a56 | .travis.yml | .travis.yml | sudo: false
language: d
os:
- linux
d:
- dmd-2.068.2
- dmd-2.067.1
- dmd-2.066.1
- ldc-0.15.1
- gdc-5.2.0
matrix:
allow_failures:
d: gdc-5.2.0
- env: ARCH=x86
d: gdc-5.2.0
addons:
apt:
packages:
- gcc-multilib
notifications:
email: false
env:
global:
- secure: "Xa3ZSmQPQytDFrM... | sudo: false
language: d
os:
- linux
d:
- dmd-2.068.2
- dmd-2.067.1
- dmd-2.066.1
- ldc-0.15.1
- gdc-5.2.0
matrix:
allow_failures:
d: gdc-5.2.0
- env: ARCH=x86
d: gdc-5.2.0
addons:
apt:
packages:
- gcc-multilib
notifications:
email: false
env:
global:
- secure: "Xa3ZSmQPQytDF... | Fix indentation in Travis config | Fix indentation in Travis config
| YAML | mit | JakobOvrum/Dirk |
540b3be4b869a054f52172c77d45a95e7ff2a34a | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: node_js
env:
global:
- TEST_INTEGRATION_KONG_HOST="127.0.0.1:8001"
- KONG_VERSION=0.12
matrix:
- EXPERIMENTAL_USE_LOCAL_STATE=0
- EXPERIMENTAL_USE_LOCAL_STATE=1
node_js:
- stable
- "8"
- "6"
before_install:
- docker run -d --name kong-da... | sudo: required
services:
- docker
language: node_js
env:
global:
- TEST_INTEGRATION_KONG_HOST="127.0.0.1:8001"
- KONG_VERSION=0.12.1
matrix:
- EXPERIMENTAL_USE_LOCAL_STATE=0
- EXPERIMENTAL_USE_LOCAL_STATE=1
node_js:
- stable
- "8"
- "6"
before_install:
- docker run -d --name kong-... | Change kong docker image version as newer ones are broken | Change kong docker image version as newer ones are broken
| YAML | mit | mybuilder/kongfig |
1d9efc427ab9f71d8ee8298b9010eb3e6ddc8676 | .travis.yml | .travis.yml | language: go
go:
- 1.6.3
- 1.7.1
script:
- go test -v -p 1 --race $(go list ./... | grep -v '/vendor/')
| language: go
go:
- 1.7.1
- 1.8
script:
- go test -v -p 1 --race $(go list ./... | grep -v '/vendor/')
| Move testing from go version 1.6 to 1.8 | Move testing from go version 1.6 to 1.8
| YAML | apache-2.0 | mailgun/vulcand,vulcand/vulcand,vulcand/vulcand,mailgun/vulcand |
5c1a433e2ae40b2c5275a6aca04bb8aba67d243d | .travis.yml | .travis.yml | git:
depth: 10
branches:
only:
- master
env:
global:
- ATOM_ACCESS_TOKEN=da809a6077bb1b0aa7c5623f7b2d5f1fec2faae4
osx_image: xcode7.3
compiler: clang
matrix:
include:
- os: linux
env: NODE_VERSION=4
- os: osx
env: ATOM_SPECS_TASK=core NODE_VERSION=4
- os: osx
env: ATOM... | git:
depth: 10
branches:
only:
- master
env:
global:
- ATOM_ACCESS_TOKEN=da809a6077bb1b0aa7c5623f7b2d5f1fec2faae4
osx_image: xcode7.3
compiler: clang
matrix:
include:
- os: linux
env: NODE_VERSION=4
- os: osx
env: ATOM_SPECS_TASK=core NODE_VERSION=4
- os: osx
env: ATOM... | Put back node_modules in the cache | Put back node_modules in the cache
| YAML | mit | sotayamashita/atom,atom/atom,AlexxNica/atom,AdrianVovk/substance-ide,xream/atom,andrewleverette/atom,bsmr-x-script/atom,brettle/atom,FIT-CSE2410-A-Bombs/atom,bolinfest/atom,decaffeinate-examples/atom,FIT-CSE2410-A-Bombs/atom,decaffeinate-examples/atom,helber/atom,PKRoma/atom,xream/atom,ardeshirj/atom,brumm/atom,CraZySa... |
c238af6c9712ade7d0de3314627ebe006b6869e4 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo add-apt-repository -y ppa:donk/gstreamer
- sudo apt-get -qq update
- sudo apt-get install -qq python-numpy python-scipy python-matplotlib python... | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
setuptools: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo add-apt-repository -y ppa:donk/gstreamer
- sudo apt-get -qq update
- sudo apt-get install -qq python-numpy python-scipy python... | Delete pkg-ressource install and add option for setuptools in virtualenv | Travis: Delete pkg-ressource install and add option for setuptools in virtualenv
| YAML | agpl-3.0 | Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide |
4b00e0a3f4e959c8325589a617c0b9bbb0db9557 | .travis.yml | .travis.yml | # Project Language
language: node_js
# NodeJS versios
node_js:
- 10
- 9
- 8
- 7
| # Project Language
language: node_js
# NodeJS versios
node_js:
- 11
- 10
- 9
- 8
- 7
| Add support for nodejs 11 | Add support for nodejs 11
| YAML | mit | WyriHaximus/nodejs-persistent-autobahn |
bd8f3b2c0fae057db38ae04468e9b16348199e0f | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.1.1
env:
- DB=sqlite
- DB=pgsql
bundler_args: "--without development"
before_script:
- psql -c "CREATE USER katoy WITH PASSWORD 'katoy';" -U postgres
script:
- RAILS_ENV=test bundle exec rake db:create db:migrate
- RAILS_ENV=test bundle exec rake test
- RAILS_ENV=test bun... | language: ruby
rvm:
- 1.9.3
- 2.1.1
env:
- DB=sqlite
- DB=pgsql
bundler_args: "--without development"
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
- cp config/database.yml.travis config/database.yml
script:
- RAILS_ENV=test bundle exec rake db:create db:migrate
- RAILS_ENV=test... | Add before_scrip for copy database.yml. | Add before_scrip for copy database.yml.
| YAML | mit | katoy/rails-canvas,katoy/rails-canvas,katoy/rails-canvas |
a8bd79cf7bda8bd6e46073d1f90bfd51ba2efbf8 | .travis.yml | .travis.yml | language: cpp
matrix:
include:
- os: osx
osx_image: xcode10
env: MATRIX_EVAL="brew install qt" BUILD_TYPE=Release
- os: linux
addons: { apt: {
packages: [ g++-6, libboost1.55-all-dev, qt5-default ],
sources: [ ubuntu-toolchain-r-test, boost-latest ] } }
env: MATRIX_EV... | language: cpp
matrix:
include:
- os: osx
osx_image: xcode10
env: MATRIX_EVAL="brew install qt" BUILD_TYPE=Release
- os: linux
addons: { apt: {
packages: [ g++-6, libboost1.55-all-dev, qt5-default ],
sources: [ ubuntu-toolchain-r-test, boost-latest ] } }
env: MATRIX_EV... | Add clang-6 build on linux | Add clang-6 build on linux
| YAML | mit | benvenutti/core8,benvenutti/core8 |
73058b3f56644ee3e983b96ac3cc7d3dd256ba29 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
cache:
directories:
- $HOME/.m2/repository/io
- $HOME/.m2/repository/it
- $HOME/.m2/repository/org
- $HOME/.m2/repository/mysql
sudo: false
| language: java
jdk:
- oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
cache:
directories:
- $HOME/.m2/repository/io
- $HOME/.m2/repository/it
- $HOME/.m2/repository/org
- $HOME/.m2/repository/mysql
sudo: false
before_install:
- rm -f ~/.m2/settings.xml
| Remove Maven settings file on Travis | Remove Maven settings file on Travis
This file contains many obsolete repositories and is not needed.
| YAML | apache-2.0 | johngmyers/airlift,johngmyers/airlift,airlift/airlift,electrum/airlift,airlift/airlift,dain/airlift,dain/airlift,dain/airlift,electrum/airlift,electrum/airlift,johngmyers/airlift,airlift/airlift,airlift/airlift,johngmyers/airlift,electrum/airlift,dain/airlift |
f8a737b8faec8f201d3a61cecc7981b2ca61ef79 | .travis.yml | .travis.yml | cache:
pip: true
- $HOME/Library/Caches/Homebrew
matrix:
include:
- os: osx
osx_image: xcode8.3
language: generic
- os: osx
osx_image: xcode8.2
language: generic
- os: osx
osx_image: xcode8.1
language: generic
- os: osx
osx_image: xcode8
language: g... | matrix:
include:
- os: osx
osx_image: xcode8.3
language: generic
- os: osx
osx_image: xcode8.2
language: generic
- os: osx
osx_image: xcode8.1
language: generic
- os: osx
osx_image: xcode8
language: generic
- os: osx
osx_image: xcode7.3
l... | Remove cache section for now | Remove cache section for now
| YAML | mit | jbarlow83/homebrew-ocrmypdf |
0239ba2581df322b1a5264dacef0280b73b3c909 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm: 2.1.0
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
| language: ruby
cache: bundler
rvm: 2.0.0
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
| Update Travis config to match Ruby version | Update Travis config to match Ruby version
| YAML | mit | wiserfirst/hound,makersacademy/hound,wadetandy/hound,timoschilling/hound,kolosek/hound,dobtco/hound,bronislav/hound,kirs/hound,enricogenauck/labhound,Rademade/reviewer,platanus/hound,yatish27/hound,viniciustorves/hound,rgp/hound,yatish27/hound,enricogenauck/labhound,Koronen/hound,JuanitoFatas/hound,Reprazent/hound,jean... |
7088fe263302920c0547dee2b93782ee9239c4a9 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.6"
script: python setup.py test
| language: python
python:
- "2.7"
- "3.3"
- "3.6"
install: pip install . nose coverage codacy-coverage
script: nosetests --with-coverage --cover-package=canopen --cover-xml
after_script: python-codacy-coverage -r coverage.xml
| Add coverage stats to Codacy | Add coverage stats to Codacy
| YAML | mit | christiansandberg/canopen,christiansandberg/canopen |
7d59b1f03e8398de2295339e7eb3569149ee993a | .travis.yml | .travis.yml | language: node_js
node_js:
- '5.5'
- '5.2'
- '4.1'
- '4.0'
script: gulp
after_success:
- cat ./docs/code-coverage/lcov.info | node node_modules/coveralls/bin/coveralls.js
| language: node_js
node_js:
- '6.0'
- '5.5'
- '5.2'
- '4.1'
- '4.0'
script: gulp
after_success:
- cat ./docs/code-coverage/lcov.info | node node_modules/coveralls/bin/coveralls.js
deploy:
provider: npm
api_key: "$NPM_AUTH_KEY"
email: eventsauce@cobaltsoftware.net
skip_cleanup: true
on:
tags: true
n... | Test on Node 6, and npm publish. | Test on Node 6, and npm publish.
| YAML | mit | steve-gray/somersault |
f72575e75fc92214e5a2fded32dae25a468f56a7 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.2.2
- 1.3.3
- 1.4
- tip
script:
- go get ./...
- go test -v ./...
| language: go
sudo: false
go:
- 1.3.3
- 1.4.2
- 1.5
script:
- go get ./...
- go test -v ./...
| Remove support for go 1.2 now that go 1.5 is out | Remove support for go 1.2 now that go 1.5 is out
| YAML | mit | klauspost/rclone,olihey/rclone,X1011/rclone,yonjah/rclone,B4dM4n/rclone,alexcouper/rclone,ncw/rclone,B4dM4n/rclone,greendayo7/rclone,klauspost/rclone,kynikos/rclone,jackschmidt/rclone,klauspost/rclone,simlelievre/rclone,arcimboldo/rclone,greendayo7/rclone,arcimboldo/rclone,B4dM4n/rclone,simlelievre/rclone,olihey/rclone... |
e579cc65035515c347120d49329c0c7792a8cabd | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.5.7
- 2.6.5
- 2.7.0
script:
- bundle exec rake db:test:prepare
- bundle exec rake test
| language: ruby
rvm:
- 2.5.7
- 2.6.5
- 2.7.0
script:
- bundle update --bundler
- bundle exec rake db:test:prepare
- bundle exec rake test
| Update bundler version when running tests | Update bundler version when running tests
| YAML | mit | jasoncharnes/pay,jasoncharnes/pay,jasoncharnes/pay |
99800fad3036fcca6cd32b5218ff54513ff17e9a | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
| sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.0
| Add ruby 2.3.0 to Travis CI Build | Add ruby 2.3.0 to Travis CI Build
| YAML | mit | openminds/pronto-foodcritic,mmozuras/pronto-foodcritic |
5947ca06a9fff4970cfa7218939daee490b554b3 | .travis.yml | .travis.yml | language: haskell
install:
- cabal install elm-get
- sudo ln -s ~/.cabal/bin/elm /usr/local/bin/elm
- sudo ln -s ~/.cabal/bin/elm-get /usr/local/bin/elm-get
- git clone git://github.com/maxsnew/IO
- cd IO
- git checkout tags/0.1.1
- cabal install
- sudo ln -s ~/.cabal/bin/elm-io /usr/local/bin/elm-io
... | language: haskell
install:
- cabal install language-ecmascript-0.15.4
- cabal install elm-get
- sudo ln -s ~/.cabal/bin/elm /usr/local/bin/elm
- sudo ln -s ~/.cabal/bin/elm-get /usr/local/bin/elm-get
- git clone git://github.com/maxsnew/IO
- cd IO
- git checkout tags/0.1.1
- cabal install
- sudo ln -s... | Revert to earlier version of language-ecmascript | Revert to earlier version of language-ecmascript
Until this is fixed in Elm/master | YAML | bsd-3-clause | robertjlooby/elm-test,elm-community/elm-test |
40bddde24bfb308faf121e8995f05154b7d4fc97 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.1
script: ./build.sh ci
branches:
only:
- master
| language: objective-c
osx_image: xcode7.2
script: ./build.sh ci
branches:
only:
- master
| Enable Xcode 7.2 on Travis | Enable Xcode 7.2 on Travis
| YAML | mit | facebook/FBSimulatorControl,plu/FBSimulatorControl,StevenUpForever/FBSimulatorControl,plu/FBSimulatorControl,facebook/FBSimulatorControl,ichu501/FBSimulatorControl,plu/FBSimulatorControl,facebook/FBSimulatorControl,bootstraponline/FBSimulatorControl,bootstraponline/FBSimulatorControl,StevenUpForever/FBSimulatorControl,... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.