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 |
|---|---|---|---|---|---|---|---|---|---|
13400837650575765b3e82345760d40e63ba8bae | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="/home/travis/miniconda/bin:$PATH"
- conda update --yes conda
- conda install --yes py... | language: python
python:
- "2.7"
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="/home/travis/miniconda/bin:$PATH"
- conda update --yes conda
- conda install --yes py... | Add jsonschema to Travis script | Add jsonschema to Travis script
| YAML | bsd-2-clause | bgyori/indra,johnbachman/indra,sorgerlab/indra,pvtodorov/indra,bgyori/indra,pvtodorov/indra,jmuhlich/indra,johnbachman/belpy,johnbachman/indra,jmuhlich/indra,pvtodorov/indra,bgyori/indra,sorgerlab/indra,sorgerlab/belpy,sorgerlab/belpy,jmuhlich/indra,johnbachman/indra,sorgerlab/belpy,johnbachman/belpy,pvtodorov/indra,jo... |
71163b3f2e7e0fc6363292b94541d5a720aea114 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: vendor/bin/phpspec run
| language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: vendor/bin/phpspec run
| Remove PHP 5.4 from CI tests | Remove PHP 5.4 from CI tests
| YAML | mit | codezero-be/mailer |
b3b7c331875edc32f5dc44eee7278fe5b8b7e89d | .travis.yml | .travis.yml | # After changing this file, check it on:
# http://lint.travis-ci.org/
language: python
python:
- 3.3
virtualenv:
system_site_packages: false
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda3-3.0.0-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
... | # After changing this file, check it on:
# http://lint.travis-ci.org/
language: python
python:
- 3.3
virtualenv:
system_site_packages: false
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda3-3.0.0-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
... | Add build doc in Travis conf | Add build doc in Travis conf
| YAML | bsd-3-clause | bnoi/scikit-tracker,bnoi/scikit-tracker,bnoi/scikit-tracker |
0aa4a348f0bde17c53d912c943f39ce7cfaa2b65 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3
- 2.4
- 2.5
before_install:
- gem update --system
- gem install bundler
script:
bundle exec rake test
notifications:
email:
recipients:
- fhir-testing-list@lists.mitre.org
on_failure: change
| language: ruby
rvm:
- 2.4
- 2.5
- 2.6
before_install:
- gem update --system
- gem install bundler
script:
bundle exec rake test
notifications:
email:
recipients:
- fhir-testing-list@lists.mitre.org
on_failure: change
| Remove v2.3 support because EOL. | Remove v2.3 support because EOL.
| YAML | apache-2.0 | fhir-crucible/plan_executor,fhir-crucible/plan_executor |
e817ee9ac97f08ebe633eadf2d11ac0b5d1dd1b9 | .travis.yml | .travis.yml | language: go
go:
- master
before_install:
- . $HOME/.nvm/nvm.sh
- nvm install stable
- nvm use stable
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
install:
- cd static && npm rebuild node-sass --force
script:
- make
| language: go
go:
- master
before_install:
- . $HOME/.nvm/nvm.sh
- nvm install stable
- nvm use stable
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
install:
- cd static && npm rebuild node-sass --force && cd ..
script:
- make
| Change the current directory after rebuilding node-sass | Change the current directory after rebuilding node-sass
| YAML | apache-2.0 | decaf-emu/huehuetenango,decaf-emu/huehuetenango,decaf-emu/huehuetenango |
2f3c0fe9bd9b2352c7ebab8cbcceb351ecc708e7 | .travis.yml | .travis.yml | language: go
go:
- 1.3
- 1.4
- 1.5
- tip
script:
- go vet github.com/echlebek/strictjson
- go test -coverprofile=coverprofile github.com/echlebek/strictjson
after_success:
- bash <(curl -s https://codecov.io/bash) -f coverprofile
| language: go
go:
- 1.3
- 1.4
- 1.5
- 1.6
- tip
script:
- go vet github.com/echlebek/strictjson
- go test -coverprofile=coverprofile github.com/echlebek/strictjson
| Add Go 1.6, remove codecov | Add Go 1.6, remove codecov
| YAML | mit | echlebek/strictjson |
586e0b014ad587289b0b4dde22332601bd4c55bc | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "4.0"
- "4.1"
- "5.0"
- "5.1"
after_script:
- npm run coveralls
| sudo: false
language: node_js
node_js:
- 4.0
- 5.0
- stable
after_script:
- npm run coveralls
| Test against the latest stable node | Test against the latest stable node
| YAML | mit | chriso/validator.js |
c31b0b0218c19db4ba8ef0aaed2b1eca0c70596a | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
branches:
only:
- master
install:
- pip install flake8 --use-mirrors
script:
- flake8 --ignore=E501,E265,E266,E402 .
| language: python
python:
- "2.6"
- "2.7"
branches:
only:
- master
- develop
install:
- pip install flake8 --use-mirrors
script:
- flake8 --ignore=E501,E265,E266,E402 .
| Add branch develop to TravisCI | Add branch develop to TravisCI
| YAML | mit | SpunkyBot/spunkybot,SpunkyBot/spunkybot |
70af3a761259df1196092bfd8267a0f27feb1c36 | tasks/Gentoo.yml | tasks/Gentoo.yml | - name: install basic packages
portage: name={{ item }} state=present
with_items:
- curl
- hdparm
# - heirloom-mailx
- iftop
- iotop
- lsof
- ncdu
- netcat
- openssl
- app-misc/screen
- smartmontools
- sysstat
- net-misc/telnet-bsd
-... | - name: install basic packages
portage: name={{ item }} state=present
with_items:
- curl
- hdparm
# - heirloom-mailx
- iftop
- iotop
- lsof
- ncdu
- netcat6
- openssl
- app-misc/screen
- smartmontools
- sysstat
- net-misc/telnet-bsd
... | Add netcat6 instead of netcat | Add netcat6 instead of netcat
| YAML | mit | gitinsky/ansible-role-common-utils |
8ee2867b6a288021635f555edf13eae064e03f33 | tasks/ubuntu.yml | tasks/ubuntu.yml | ---
- name: Add Zulu.org JDK repository key
apt_key: keyserver=keyserver.ubuntu.com key=0x219BD9C9
when: corda_java == "openjdk"
- name: Add Zulu.org JDK repository
apt_repository:
repo: http://repos.azulsystems.com/ubuntu stable main
state: present
when: corda_java == "openjdk"
- name: Update APT cac... | ---
- name: Add Zulu.org JDK repository key
apt_key: keyserver=keyserver.ubuntu.com id=0x219BD9C9
when: corda_java == "openjdk"
- name: Add Zulu.org JDK repository
apt_repository:
repo: deb http://repos.azulsystems.com/ubuntu stable main
state: present
when: corda_java == "openjdk"
- name: Update APT ... | Fix Ubuntu zulu OpenJDK installation | Fix Ubuntu zulu OpenJDK installation
| YAML | apache-2.0 | corda/corda-ansible |
5ac3900463bee0003c3f99c53a3666fc679bb48a | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
services:
- mysql
before_script:
- cp travis.properties config.properties
- mysql -e 'create database movies_db;'
script:
- mvn clean verify
| language: java
jdk:
- oraclejdk8
services:
- mysql
before_script:
- cp travis.properties config.properties
- mysql -e 'create database movies_db;'
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
script:
- mvn test -B
| Add maven command to install dependencies. | Add maven command to install dependencies.
| YAML | mit | MontealegreLuis/movies,MontealegreLuis/movies |
2fcf6a201f3d9bf5cc37f7a170ad9836919b7f6f | .travis.yml | .travis.yml | language: go
go:
- 1.0
- 1.1
script:
- make test
| language: go
go:
- 1.0
- 1.1
- 1.2
before_script:
- go get
script:
- make test
| Add go get before run tests and use of version 1.2 | Add go get before run tests and use of version 1.2
| YAML | mit | cloudson/gitql,loveluther/gitql,senthilnayagam/gitql,cloudson/gitql |
da40d7c2e4260fbea8fbc934cca8d5229e001800 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8
env:
- IOS_VER="10.0" FL_ARGS="verify" FASTLANE_XCODE_LIST_TIMEOUT=120
# - IOS_VER="9.3" FL_ARGS="verify" FASTLANE_XCODE_LIST_TIMEOUT=120
# - IOS_VER="9.2" FL_ARGS="analyze"
# - IOS_VER="9.2" FL_ARGS="verify scheme:WikipediaRTL"
# - IOS_VER="8.4" FL_ARGS="v... | language: objective-c
osx_image: xcode8
env:
- IOS_VER="10.0" FL_ARGS="verify" FASTLANE_XCODE_LIST_TIMEOUT=120
# - IOS_VER="9.3" FL_ARGS="verify" FASTLANE_XCODE_LIST_TIMEOUT=120
# - IOS_VER="9.2" FL_ARGS="analyze"
# - IOS_VER="9.2" FL_ARGS="verify scheme:WikipediaRTL"
# - IOS_VER="8.4" FL_ARGS="v... | Revert "Revert "Revert "Revert "Revert "add before_install""""" | Revert "Revert "Revert "Revert "Revert "add before_install"""""
This reverts commit 3c97f50f3dfe48aa3609e016973f5776e78f1759.
| YAML | mit | wikimedia/apps-ios-wikipedia,montehurd/apps-ios-wikipedia,anirudh24seven/wikipedia-ios,josve05a/wikipedia-ios,wikimedia/wikipedia-ios,wikimedia/apps-ios-wikipedia,wikimedia/wikipedia-ios,wikimedia/wikipedia-ios,julienbodet/wikipedia-ios,anirudh24seven/wikipedia-ios,wikimedia/apps-ios-wikipedia,julienbodet/wikipedia-ios... |
63efb1d0626909bbfa04b92021617d95e66ac03b | .travis.yml | .travis.yml | language: perl
perl:
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
before_install:
- git submodule update --init --recursive
- git clone git://github.com/maxmind/libmaxminddb
- cd libmaxminddb
- ./bootstrap
- ./configure
- make
- sudo make install
- sudo ldconfig
- cd ..
- sudo apt-get inst... | language: perl
perl:
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
before_install:
- git submodule update --init --recursive
- git clone git://github.com/maxmind/libmaxminddb
- cd libmaxminddb
- ./bootstrap
- ./configure
- make
- sudo make install
- sudo ldconfig
- cd ..
- sudo apt-get inst... | Use a more verbose cpanm command. | Use a more verbose cpanm command.
| YAML | apache-2.0 | maxmind/mod_maxminddb,maxmind/mod_maxminddb,maxmind/mod_maxminddb |
c01c4c17b9c47c29c01f3c52d73e966333d6b3dd | .travis.yml | .travis.yml | before_script:
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake test_app"
env:
- DB=sqlite
- DB=mysql
- DB=postgres
script: "DISPLAY=:99.0 bundle exec rake"
notifications:
email:
- ryan@spreecommerce.com
irc: "irc.freenode.org#spree"
branches:
only:
- 1-0-stable
- master
rvm:
- 1.8.7
... | before_script:
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake test_app"
env:
- DB=sqlite
- DB=mysql
- DB=postgres
script: "DISPLAY=:99.0 bundle exec rake"
notifications:
email:
- ryan@spreecommerce.com
irc: "irc.freenode.org#spree"
branches:
only:
- 1-0-stable
- master
rvm:
- 1.8.7
... | Remove ree testing, given that it's the same as 1.8.7p352 | Remove ree testing, given that it's the same as 1.8.7p352
| YAML | bsd-3-clause | woboinc/spree,keatonrow/spree,kitwalker12/spree,thogg4/spree,ramkumar-kr/spree,wolfieorama/spree,quentinuys/spree,azranel/spree,DarkoP/spree,edgward/spree,jordan-brough/solidus,jparr/spree,vinsol/spree,adaddeo/spree,trigrass2/spree,cutefrank/spree,pjmj777/spree,pulkit21/spree,welitonfreitas/spree,LBRapid/spree,alejandr... |
b0cdca520927b2f56e8be789500cfff1d2189ce7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
- rbx-head
env:
- COVERALLS=true
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-head
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode
- jruby-head
- rbx-2.2.1
- rbx-2.1.1
- rbx-head
env:
- COVERALLS=true
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-head
- rvm: rbx-2.1.1
- rvm: rbx-2.2.1
| Update Ruby versions for Travis. | Update Ruby versions for Travis.
| YAML | mit | cupakromer/emoji-rspec |
6840098dfd6953b72b35a2fa14e3d051944a2953 | .travis.yml | .travis.yml | ---
language: ruby
bundler_args: --without development
script: "bundle exec rake ci SPEC_OPTS='--format documentation'"
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 2.7.0"
- PUPPET_GEM_VERSION="~> 3.0.0"
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.2.0"
matrix:
fast_finish: t... | ---
language: ruby
bundler_args: --without development
script: "bundle exec rake ci SPEC_OPTS='--format documentation'"
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 2.7.0"
- PUPPET_GEM_VERSION="~> 3.0.0"
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.2.0"
- PUPPET_GEM_VERSION="... | Add support for Puppet v3.4.0 | Add support for Puppet v3.4.0
| YAML | apache-2.0 | puppetlabs/puppetlabs-firewall,jaakkosipari/puppetlabs-firewall,ianand0204/puppetlabs-firewall |
ed5595d7d1c8deae49ebef2ec3a3b7b44a8e69c2 | .travis.yml | .travis.yml | language: android
android:
components:
- build-tools-23.0.0
- android-23
- extra-android-support
- extra-google-google_play_services
- extra-android-m2repository
- extra-google-m2repository
- addon-google_apis-google-21
before_install:
- chmod +x gradlew
script: ./gradlew build assembl... | language: android
android:
components:
- build-tools-23.0.0
- android-23
- extra-android-support
- extra-google-google_play_services
- extra-android-m2repository
- extra-google-m2repository
- addon-google_apis-google-21
before_install:
- chmod +x gradlew
script:
- ./gradlew testReleas... | Add script to Travis .yml for running unit tests | Add script to Travis .yml for running unit tests
| YAML | apache-2.0 | brave-warrior/TravisClient_Android,dkhmelenko/Varis-Android,DreierF/TravisClient-Android,dkhmelenko/Varis-Android,brave-warrior/TravisClient_Android,dkhmelenko/TravisClient-Android,brave-warrior/TravisClient-Android,dkhmelenko/Varis-Android,brave-warrior/TravisClient-Android,dkhmelenko/TravisClient-Android,DreierF/Trav... |
2188ce7f80d75e8591bd952132c2d0478afa787f | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
install: "pip install -r requirements.txt"
script: "python -m unittest discover"
after_success: "coveralls"
| language: python
python:
- "2.7"
- "3.5"
install: "pip install -r requirements.txt"
script: "coverage run -m unittest discover"
after_success: "coveralls"
| Add correct coverage test command | Add correct coverage test command
| YAML | mit | mgrijalva/nose2-html-report,mgrijalva/nose2-html-report |
e8f2b923cbb2dd43d8a6bceb0f167b7fced67b12 | .travis.yml | .travis.yml | matrix:
include:
- language: node_js
node_js:
- "12"
before_script:
- cd website
- npm install --ignore-scripts
script:
- npm run lint
- language: python
python: 3.6
before_script:
- cd website
- pip install -r requirements-dev.txt... | matrix:
include:
- language: node_js
node_js:
- "12"
before_script:
- cd website
- npm install --ignore-scripts
script:
- npm run lint
- language: python
python: 3.6
before_script:
- cd website
- pip install -r requirements-dev.txt... | Change linter to exit with 0 | Change linter to exit with 0
| YAML | mit | michmech/lexonomy,michmech/lexonomy |
60a6242b2df8ce828c84323c45f744835bb9dafc | .travis.yml | .travis.yml | sudo: false
language: generic
env:
global:
- BUILDER=catkin
- NO_SUDO=true
- NOT_TEST_INSTALL=true
- USE_DEB=true
- ROS_PARALLEL_JOBS="-j8"
- ROSWS=wstool
matrix:
- ROS_DISTRO=indigo
- ROS_DISTRO=jade
matrix:
allow_failures:
- env: ROS_DISTRO=jade
script: source .travis/tra... | sudo: false
language: generic
env:
global:
- BUILDER=catkin
- NO_SUDO=true
- NOT_TEST_INSTALL=true
- USE_DEB=true
- ROS_PARALLEL_JOBS="-j8"
- ROSWS=wstool
matrix:
- ROS_DISTRO=indigo
script: source .travis/travis.sh
notifications:
email:
on_success: always
on_failure: alway... | Stop testing jade because it is not supported | Stop testing jade because it is not supported
| YAML | bsd-3-clause | pazeshun/jsk_apc,pazeshun/jsk_apc,pazeshun/jsk_apc,pazeshun/jsk_apc,pazeshun/jsk_apc |
b373f85311b81a4aaf2104ac26f15f77bf2d42ba | .travis.yml | .travis.yml | language: python
python:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
before_install: sudo apt-get install unzip
before_script:
- export TFVER=0.13.4
- export TFURL=https://releases.hashicorp.com/terraform/
- TFURL+=$TFVER
- TFURL+="/terraform_"
- TFURL+=$TFVER
- TFURL+="_linux_amd64.zip"
- wget $TFURL -O terraform_bi... | language: python
python:
- '3.6'
- '3.7'
- '3.8'
before_install: sudo apt-get install unzip
before_script:
- export TFVER=0.13.4
- export TFURL=https://releases.hashicorp.com/terraform/
- TFURL+=$TFVER
- TFURL+="/terraform_"
- TFURL+=$TFVER
- TFURL+="_linux_amd64.zip"
- wget $TFURL -O terraform_bin.zip
... | Remove Python 3.9 as it is not yet available on Travis | Remove Python 3.9 as it is not yet available on Travis
| YAML | mit | beelit94/python-terraform |
a2a7c16ef56ace6a612ccffb411b170c89149f20 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.3
script: 'rake spec'
before_install:
- sudo add-apt-repository -y ppa:raphink/augeas
- sudo apt-get update -qq
- sudo apt-get install -qq libaugeas0 libaugeas-dev
- sudo chmod -r /usr/share/augeas/lenses/dist/splunk.aug
env:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET... | language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
script: 'rake spec'
env:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION="~> 3.6.0"
- PUPPET_VERSION="~> 3"
gemfile: .gemfile
matrix:
fast_finish: true
allow_failures:
- rvm: 1.9.3
- rvm: 2.0.0
exclude:
- rvm: 2.0.0
env: ... | Normalize Travis-CI config w/my other Puppet projects | Normalize Travis-CI config w/my other Puppet projects
Including:
* Move sections to be the same order.
* Move varying sections to end for easier diffing.
* Test against Ruby 1.8.7, 1.9.3 and 2.0.0.
* Test against Puppet 2.7.x, 3.6.x and 3.x.x.
* Add test matrix, setting fast_finish, allowing failures for all Rubies bu... | YAML | apache-2.0 | wcooley/puppet-splunk_conf |
e31850da51a30e13ffd7edec6ea28710715d1e62 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: node_js
node_js:
- "6"
python:
- "3.4"
before_install:
- hash -r
- rvm install 2.4.1
- sudo apt-get -y install python3-pip python-dev
cache:
directories:
- node_modules
install:
- bundle install
- npm install
- pip3 install -r demo/requirements.txt
befor... | sudo: required
dist: trusty
language: node_js
node_js:
- "6"
python:
- "3.4"
before_install:
- sudo apt-get install curl -y
- rvm install 2.4.1
- sudo apt-get -y install python3-pip python-dev
cache:
directories:
- node_modules
install:
- bundle install
- npm install
- pip3 install -r demo/re... | Install curl for rvm (again) | Install curl for rvm (again)
| YAML | mit | LandRegistry/land-registry-elements,LandRegistry/land-registry-elements,LandRegistry/land-registry-elements,LandRegistry/land-registry-elements,LandRegistry/land-registry-elements |
c3b8a62e2cb40c21e472414716cfb29adfec0797 | .travis.yml | .travis.yml | sudo: False
language: python
cache: pip
python:
- "2.7.14"
- "3.3.6"
- "3.4.6"
- "3.5.4"
- "3.6.4"
- "nightly"
install:
- pip install -r requirements.txt
- pip install coverage codacy-coverage
script:
- touch userdb.json
- echo '{}' > userdb.json
- coverage run test.py --source="test.py,plugins/*.... | sudo: False
language: python
cache: pip
python:
- "2.7.14"
- "3.3.6"
- "3.4.6"
- "3.5.4"
- "3.6.4"
- "nightly"
install:
- pip install -r requirements.txt
- pip install coverage codacy-coverage
script:
- touch userdb.json
- echo '{"##wolfy1339":{},"#zirc":{}}' > userdb.json
- coverage run test.py -... | Add the inner JSON content | Add the inner JSON content | YAML | mit | wolfy1339/Python-IRC-Bot |
208540c5101d04d632361bc769a1f23df8547ff9 | .travis.yml | .travis.yml | before_install:
- gem update
- gem --version
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v '< 2'
script:
- bundle exec rake
rvm:
- 2.0.0-p648
- 2.1.0
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
gemfile:
- Gemfile
| language: ruby
before_install:
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v '< 2'
script:
- bundle exec rake
rvm:
- 2.0.0-p648
- 2.1.0
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
gemfile:
- Gemfile
| Revert gem update from before_install | Revert gem update from before_install
| YAML | mit | MindscapeHQ/raygun4ruby,MindscapeHQ/raygun4ruby,MindscapeHQ/raygun4ruby |
021e1ed57d1d32b067be4ae2e11973517bbf10d5 | .travis.yml | .travis.yml | language: ruby
sudo: false
before_install:
- gem update --system 3.1.3
- gem install bundler:2.1.4
rvm:
- 2.5.8
- 2.6.6
- 2.7.1
- jruby-9.2.11.1
branches:
only:
- master
cache: bundler
| language: ruby
sudo: false
before_install:
- gem update --system 3.2.0.rc.1
- gem install bundler:2.1.4
rvm:
- 2.5.8
- 2.6.6
- 2.7.1
- jruby-9.2.11.1
branches:
only:
- master
cache: bundler
| Fix a jruby warning about unrelated default gemspec with deprecated attributes | Fix a jruby warning about unrelated default gemspec with deprecated attributes
Newer rubygems no longer reads all gemspecs on startup and thus no
longer warns.
| YAML | mit | activeadmin/arbre,activeadmin/arbre |
e3f04a42c9a5e0f4d0d19aa936caff0c4ffe2512 | .travis.yml | .travis.yml | language: "node_js"
node_js:
- 0.8
- 0.10
services:
- rabbitmq # will start rabbitmq-server
- mongodb # will start mongodb
branches:
only:
- v1.1
before_install:
- npm install
- sudo mkdir -p /var/log/push_server/ # To store log files
- sudo chmod 777 /var/log/push_server/
- cd scripts/
- aw... | language: "node_js"
node_js:
- 0.8
- 0.10
services:
- rabbitmq # will start rabbitmq-server
- mongodb # will start mongodb
branches:
only:
- v1.1
before_install:
- npm install
- sudo mkdir -p /var/log/push_server/ # To store log files
- sudo chmod 777 /var/log/push_server/
- cd scripts/
- aw... | Call make to create the version.info file | Call make to create the version.info file
| YAML | agpl-3.0 | telefonicaid/notification_server,telefonicaid/notification_server,frsela/notification_server,frsela/notification_server,telefonicaid/notification_server,frsela/notification_server,frsela/notification_server,telefonicaid/notification_server,telefonicaid/notification_server,frsela/notification_server |
4757fb4442dfb1b1b4444a281fc3b246b0952cb7 | .travis.yml | .travis.yml | sudo: true
language: cpp
os:
- osx
compiler:
- gcc
cache:
directories:
- "$HOME/Library/Caches/Homebrew"
script:
- curl -L https://rawgit.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/macpython-download-cache-and-build-module-wheels.sh -O
- chmod u+x macpython-download-cache-and-build-module-wheel... | sudo: true
language: cpp
os:
- osx
compiler:
- gcc
cache:
directories:
- "$HOME/Library/Caches/Homebrew"
script:
- curl -L https://rawgit.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/macpython-download-cache-and-build-module-wheels.sh -O
- chmod u+x macpython-download-cache-and-build-module-wheel... | Use transfer.sh for macOS package upload. | ENH: Use transfer.sh for macOS package upload.
Prefer transfer.sh over file.io for macOS package upload.
| YAML | apache-2.0 | jhlegarreta/ITKIsotropicWavelets,phcerdan/ITKIsotropicWavelets,jhlegarreta/ITKIsotropicWavelets,phcerdan/ITKIsotropicWavelets |
1abc155d2f32ac0128febfb34d7f27987204a6e3 | .travis.yml | .travis.yml | # R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
# Header
language: r
sudo: required
warnings_are_errors: false
r_check_args: --no-vignettes
#env
env:
global:
- CRAN: http://cran.rstudio.com
- NOT_CRAN: true
#notifications
notifications:
email:
on_success: change
on_... | # R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
# Header
language: r
sudo: required
warnings_are_errors: false
r_check_args: --no-vignettes
#env
env:
global:
- CRAN: http://cran.rstudio.com
- NOT_CRAN: true
#notifications
notifications:
email:
on_success: change
on_... | Update Travis Config for Naive Bayes Package | Update Travis Config for Naive Bayes Package
| YAML | apache-2.0 | opendatagroup/hadrian,opendatagroup/hadrian,opendatagroup/hadrian,opendatagroup/hadrian |
0b51b87e646b7fa4f8902eb1fc554b6a0f3eb8d5 | .travis.yml | .travis.yml | language: go
go:
- 1.5.1
install:
- make deps
script:
- make install
| language: go
go:
- 1.5.1
script:
- make install
| Remove make deps for TravisCI | Remove make deps for TravisCI
The client and model code is already included. We dont' want to
regenerate it. At least not until
https://github.com/emccode/gorackhd/issues/19 is resolved.
| YAML | mit | emccode/gorackhd |
286669839ab0c48751a991946fcb95eb51d185d1 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.4
- 0.6 | language: node_js
node_js:
- 0.4
- 0.6
- 0.7
| Add node v0.7.x to Travis. | Add node v0.7.x to Travis.
| YAML | mit | cliffano/ae86 |
4adfb2e15481f1032786809bc63c1efb26fa9ff0 | .travis.yml | .travis.yml | language: php
php: 7.1
sudo: false
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
- yarn install
- yarn production
script:
- vendor/bin/phpspec run --verbose
- vendor/bin/parallel-lint --exclude vendor .
- vendor/bin/phpunit --verbose --coverage-clover ... | language: php
php: 7.1
sudo: false
cache:
yarn: true
directories:
- node_modules
- vendor
before_install:
# Repo for newer Node.js versions
- curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
# Repo for Yarn
- sudo apt-key adv --keyserver pgp.mit.edu --recv D101F7899D41F3C3
- echo... | Add cache and install Yarn | Add cache and install Yarn
| YAML | mit | laravelio/portal,laravelio/portal,LaravelIO/laravel.io,laravelio/portal,LaravelIO/laravel.io,LaravelIO/laravel.io |
e4da7a22dc8d503298fae9efc174ce4c11059b4f | .travis.yml | .travis.yml | ---
before_install: gem update --system 2.1.11
script: "./script/tests"
gemfile: "this/does/not/exist"
rvm:
- 2.0
- 2.1
- 2.2
- 2.3
| ---
before_install: gem update --system 2.5.2
script: "./script/tests"
gemfile: "this/does/not/exist"
rvm:
- 2.3
| Use latest versions from OS X 10.13 | Use latest versions from OS X 10.13
| YAML | mit | n0ts/boxen,boxen/boxen,boxen/boxen,n0ts/boxen,n0ts/boxen,boxen/boxen |
602013a3d00961726b05dbdbb1d1f01027e34ad5 | .travis.yml | .travis.yml | language: ruby
before_install:
- gem install bundler
before_script:
- rake db:migrate
script:
- rake ci
rvm:
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
gemfile:
- test/gemfiles/Gemfile.rails.4.0
- test/gemfiles/Gemfile.rails.4.1
- test/gemfiles/Gemfile.rails.4.2
- test/gemfiles/Gemfile.rails.5.0
branches:
... | language: ruby
before_install:
- gem install bundler
before_script:
- rake db:migrate
script:
- rake ci
rvm:
- 2.2.4
- 2.3.0
gemfile:
- test/gemfiles/Gemfile.rails.4.0
- test/gemfiles/Gemfile.rails.4.1
- test/gemfiles/Gemfile.rails.4.2
- test/gemfiles/Gemfile.rails.5.0
branches:
only:
- master
m... | Drop older verisons of ruby at EOL | Drop older verisons of ruby at EOL
| YAML | mit | 2rk/comfortable-mexican-sofa,comfy/comfortable-mexican-sofa,nasmorn/comfortable-mexican-sofa,movingfox/comfortable-mexican-sofa,simple-and-powerful/comfortable-mexican-sofa,comfy/comfortable-mexican-sofa,simple-and-powerful/comfortable-mexican-sofa,comfy/comfortable-mexican-sofa,elyalvarado/comfortable-mexican-sofa,sim... |
5259a718ccf2a3e54b390c350e93d67357784a46 | .travis.yml | .travis.yml | # Not using to test compilation of go component of project because it requires
# xcodebuild which is not available in the ubuntu environment travis-ci
# provides.
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
gemfile: rubygem/Gemfile
script: make rubygem/lib/zeus/version.rb && cd rubygem && bundle exec rspec spec
| # Not using to test compilation of go component of project because it requires
# xcodebuild which is not available in the ubuntu environment travis-ci
# provides.
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.1.3
gemfile: rubygem/Gemfile
script: make rubygem/lib/zeus/version.rb && cd rubygem && bundle exec rs... | Add Ruby 2.1.3 to Travis support | Add Ruby 2.1.3 to Travis support | YAML | mit | Lexxville/zeus,pelletencate/zeus,stripe/zeus,latortuga/zeus,kgrz/zeus,latortuga/zeus,burke/zeus,matrinox/zeus,burke/zeus,latortuga/zeus,matrinox/zeus,matrinox/zeus,Lexxville/zeus,Lexxville/zeus,kgrz/zeus,stripe/zeus,ylansegal/zeus,ylansegal/zeus,ylansegal/zeus,pelletencate/zeus,stripe/zeus,pelletencate/zeus,kgrz/zeus,b... |
7627171580ebbff16f876bca86692d10e1055930 | .travis.yml | .travis.yml | # Based on the settings found in https://github.com/thoughtbot/carnival
# Copyright (C) 2014 thoughtbot <hello@thoughtbot.com>, released under the MIT License
language: sh
notifications:
email: false
slack:
secure: dNE7nOHDxyrwcgPfcDJB6WZeoYCYx/ZGI4rOJsSxbxK//0uUjZ1ECwUW4wN0+sQkYUqm0xKku9ZUHFCVDr8R572srM+7cJ8... | # Based on the settings found in https://github.com/thoughtbot/carnival
# Copyright (C) 2014 thoughtbot <hello@thoughtbot.com>, released under the MIT License
language: sh
notifications:
email: false
slack:
secure: dNE7nOHDxyrwcgPfcDJB6WZeoYCYx/ZGI4rOJsSxbxK//0uUjZ1ECwUW4wN0+sQkYUqm0xKku9ZUHFCVDr8R572srM+7cJ8... | Install yesod-bin as an extra app too | Install yesod-bin as an extra app too
| YAML | mit | jspahrsummers/ScrumBut |
056419628314bdd8a8bdd8fd2b37babc18d364d0 | .travis.yml | .travis.yml | language: python
sudo: required
dist: xenial
python:
- "2.7"
- "3.6"
- "3.7"
env:
- DJANGO_VERSION=1.8
- DJANGO_VERSION=1.10
- DJANGO_VERSION=1.11
- DJANGO_VERSION=2.0
- DJANGO_VERSION=2.1
- DJANGO_VERSION=2.2
- DJANGO_VERSION=3.0
matrix:
exclude:
- python: "2.7"
env: DJANGO_VERSION=2... | language: python
sudo: required
dist: xenial
python:
- "2.7"
- "3.6"
- "3.7"
env:
- DJANGO_VERSION=1.8
- DJANGO_VERSION=1.10
- DJANGO_VERSION=1.11
- DJANGO_VERSION=2.0
- DJANGO_VERSION=2.1
- DJANGO_VERSION=2.2
- DJANGO_VERSION=3.0
matrix:
exclude:
- python: "2.7"
env: DJANGO_VERSION=2... | Exclude run tests for Python 3.7 and Django 1.11 due to incompatible syntax error | Exclude run tests for Python 3.7 and Django 1.11 due to incompatible syntax error
| YAML | mit | catcombo/django-speedinfo,catcombo/django-speedinfo,catcombo/django-speedinfo |
fad7a7b456b21a4009795efba7def59987afe708 | .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_fini... | language: node_js
node_js:
- "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_VERSION}" == "0.6" ] || npm install -g... | Test on `io.js` `v1.7` and `v1.8` | Test on `io.js` `v1.7` and `v1.8` | YAML | mit | tomekwi/array-includes,reggi/array-includes,ljharb/array-includes,es-shims/array-includes |
247a89367b6f691206d2c5fae91ba4182f2c8483 | .travis.yml | .travis.yml | sudo: required
services:
- docker
before_install:
- docker build -t wakumaku/jitterbit_test .
- docker run -d --name jitterbit_test -t jitterbit_test
- wait 20
script: ./.travis.sh | sudo: required
services:
- docker
before_install:
- docker build -t wakumaku/jitterbit_test .
- docker run -d --name jitterbit_test -t wakumaku/jitterbit_test
- wait 20
script: ./.travis.sh | Fix docker image name to tag | Fix docker image name to tag
| YAML | mit | wakumaku/docker-jitterbit |
455c4ac49c5eef4ae1949338faa615bcd451c51e | .travis.yml | .travis.yml | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
script:... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode7.2
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-direc... | Add osx_image to yml file | Add osx_image to yml file
| YAML | mit | pixeldock/PXDToolkit,pixeldock/PXDToolkit |
6e7733a1170e434f8cfc84baf294716cfd458c9c | .github/workflows/Publish-Website.yml | .github/workflows/Publish-Website.yml | name: Publish the mkdocs to gh-pages
on:
push:
branches:
- master
jobs:
deploy-website:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Prep mkdocs
run: .github/workflows/prepare_mkdocs.sh
- name: Deploy to GitHub Pag... | name: Publish the mkdocs to gh-pages
on:
release:
types: [published]
jobs:
deploy-website:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
... | Use this other plugin that has more stars | Use this other plugin that has more stars
| YAML | apache-2.0 | square/sqldelight,cashapp/sqldelight,cashapp/sqldelight,cashapp/sqldelight,square/sqldelight,cashapp/sqldelight,square/sqldelight,square/sqldelight |
39f304d99f4b396b064b263cfee4af024ffc1b2e | .github/workflows/autotools-cmake.yml | .github/workflows/autotools-cmake.yml | # Copyright (C) 2021 Sebastian Pipping <sebastian@pipping.org>
# Licensed under the MIT license
name: Ensure that Autotools install identical CMake files
on:
- pull_request
- push
jobs:
checks:
name: Ensure that Autotools install identical CMake files
runs-on: ubuntu-20.04
steps:
- uses: actions/ch... | # Copyright (C) 2021 Sebastian Pipping <sebastian@pipping.org>
# Licensed under the MIT license
name: Ensure that Autotools install identical CMake files
on:
- pull_request
- push
jobs:
checks:
name: Ensure that Autotools install identical CMake files
runs-on: ubuntu-20.04
steps:
- uses: actions/ch... | Make CI fail on non-triple version from configure.ac | Actions: Make CI fail on non-triple version from configure.ac
| YAML | mit | libexpat/libexpat,libexpat/libexpat,libexpat/libexpat,libexpat/libexpat,libexpat/libexpat,libexpat/libexpat |
c19f5adfd87d79a4dc884751bed6c2bda1c33d8a | .travis.yml | .travis.yml | os:
- linux
- osx
# JRuby isn't working on the new default distribution
dist: trusty
language: ruby
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- 3.0
- jruby-9.1.7.0
gemfile:
- testing/gemfiles/gherkin9.gemfile
- testing/gemfiles/gherkin10.gemfile
- testing/gemfiles/gherkin11.gemfile
- testing/gemfi... | os:
- linux
- osx
# JRuby isn't working on the new default distribution
dist: trusty
language: ruby
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- jruby-9.1.7.0
gemfile:
- testing/gemfiles/gherkin9.gemfile
- testing/gemfiles/gherkin10.gemfile
- testing/gemfiles/gherkin11.gemfile
- testing/gemfiles/gher... | Remove Ruby 3 from CI matrix | Remove Ruby 3 from CI matrix
Not building against Ruby 3 because it doesn't appear to be working on
TravisCI yet.
| YAML | mit | enkessler/cuke_modeler,enkessler/cuke_modeler |
1914eaf6406cae67bcc7661f3ba48c61bf0b28b2 | .github/workflows/codeql-analysis.yml | .github/workflows/codeql-analysis.yml | name: "CodeQL"
on:
push:
branches: [ master, test ]
pull_request:
branches: [ master ]
schedule:
- cron: '31 6 * * 1'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: f... | name: "CodeQL"
on:
push:
branches: [ master, test ]
pull_request:
branches: [ master ]
schedule:
- cron: '31 6 * * 1'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: f... | Update all codeql workflow actions versions. | Update all codeql workflow actions versions.
This subsumes #1222, #1223, #1224.
| YAML | mit | mysql-net/MySqlConnector,mysql-net/MySqlConnector |
55ad86446e83ca2a95914abb8e7da1aba6291290 | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
- nightly
before_script:
- composer self-update
- travis_retry composer install --prefer-source --no-interaction --dev
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: php
php:
- 7.0
- 7.1
- 7.2
- 7.3
- nightly
before_script:
- composer self-update
- travis_retry composer install --prefer-source --no-interaction --dev
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov.io/bash)
| Add Travis CI builds for PHP 7.2 and 7.3 | Add Travis CI builds for PHP 7.2 and 7.3
| YAML | mit | slwdc/NICParser |
8c6434f99757bf668d89214b04d77563d904f792 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
| language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| Add testing against node 0.12 and iojs | Add testing against node 0.12 and iojs
| YAML | mit | rogeriopvl/windrose,rogeriopvl/windrose |
6eb6d39be4a77fee1998b09f214f696a8fde922a | .travis.yml | .travis.yml | language: node_js
node_js:
- 7
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install cloudfront-invalidate-cli
script:
- node ./internals/scripts/generate-templates-for-linting
- npm run test
after_success:
- npm run coveralls
- npm run build
befor... | language: node_js
node_js:
- 7
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- node ./internals/scripts/generate-templates-for-linting
- npm run test
after_success:
- npm run coveralls
- npm run build
before_deploy:
- sudo pip install awscli
- aw... | Remove npm invalidate cloudfront cache cli | Remove npm invalidate cloudfront cache cli
| YAML | mit | hugogrochau/rocketleaguesam-web,hugogrochau/rocketleaguesam-web,hugogrochau/rocketleaguesam-web |
eb60cbf40bae2595de098b88ede466a3db604fed | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| sudo: false
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
| Test on `stable` instead of `iojs` | Test on `stable` instead of `iojs`
| YAML | mit | kevva/github-token-user |
ae4e3ab60458e0fb9dd31fc3342d164e69dbe45b | .travis.yml | .travis.yml | language: ruby
dist: bionic
cache: bundler
services:
- postgresql
- elasticsearch
addons:
postgresql: "10"
apt:
packages:
- postgresql-10
- postgresql-client-10
chrome: stable
bundler_args: '--without development'
env:
global:
- DATABASE_URL=postgres://postgres@localhost/timeoverflow_tes... | language: ruby
dist: bionic
cache: bundler
services:
- postgresql
- elasticsearch
addons:
postgresql: "9.4"
apt:
packages:
- postgresql-9.4
- postgresql-client-9.4
chrome: stable
bundler_args: '--without development'
env:
global:
- DATABASE_URL=postgres://postgres@localhost/timeoverflow_... | Use production's PostgreSQL version in CI | Use production's PostgreSQL version in CI
| YAML | agpl-3.0 | coopdevs/timeoverflow,coopdevs/timeoverflow,coopdevs/timeoverflow,coopdevs/timeoverflow |
687d8bca9ea5141a1d135cf296f310b59e9171ca | .travis.yml | .travis.yml | language: go
go:
- 1.4
- 1.5.4
- 1.6
install:
- go get github.com/onsi/ginkgo/ginkgo
- go get github.com/onsi/gomega
- go get github.com/tools/godep
- godep restore -v
script: ginkgo
| language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x
install:
- go get github.com/onsi/ginkgo/ginkgo
- go get github.com/onsi/gomega
- go get github.com/tools/godep
- godep restore -v
script: ginkgo
| Add go 1.8 / 1.7 to CI matrix | Add go 1.8 / 1.7 to CI matrix
| YAML | mit | odlp/antifreeze,odlp/antifreeze |
f1840ca3d4cb3706adeca1ece73fda45e017db55 | .travis.yml | .travis.yml | language: ruby
services:
- mysql
- redis
rvm:
- "1.9.3"
env:
- DB=sqlite
- DB=mysql
- DB=postgresql
script:
- bundle exec rspec spec
before_script:
- cp config/database.yml.dist config/database.yml
- cp config/initializers/sugar.rb.dist config/initializers/sugar.rb
- sh -c "if [ '$DB' = 'mysql' ]; t... | language: ruby
services:
- mysql
- redis
rvm:
- "1.9.3"
env:
- DB=sqlite
- DB=mysql
- DB=postgresql
script:
- bundle exec rspec spec
before_script:
- cp config/database.yml.dist config/database.yml
- cp config/initializers/sugar.rb.dist config/initializers/sugar.rb
- sh -c "if [ '$DB' = 'mysql' ]; t... | Load schema instead of migrate on Travis build | Load schema instead of migrate on Travis build
| YAML | mit | vena/sugar,elektronaut/sugar,elektronaut/sugar,vena/sugar,vena/sugar,Wevah/sugar,Wevah/sugar,elektronaut/sugar,elektronaut/sugar,Wevah/sugar |
ceffab805ced61f45be914e9b1530533a66fb891 | .travis.yml | .travis.yml | language: ruby
sudo: false
before_install:
- gem install bundler
rvm:
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.1
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
| language: ruby
sudo: false
before_install:
- gem install bundler
rvm:
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.1
- ruby-head
- rbx
- jruby
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx
- rvm: jruby
fast_finish: true
| Add rbx, jruby as allow_failures | Add rbx, jruby as allow_failures
Add those platforms referring "i18n" that is one of the popular project
"test_declarative" is used for.
https://github.com/svenfuchs/i18n/blob/master/.travis.yml
| YAML | mit | svenfuchs/test_declarative |
1e60391cfdec0cf2fb2054308f9b8d5caf8307c7 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10.10
| language: node_js
node_js:
- '0.11'
- '0.10'
- '0.9'
| Add 0.11 and 0.9 to the supported node js versions. | Add 0.11 and 0.9 to the supported node js versions.
| YAML | mit | gonzedge/rambling.slider,gonzedge/rambling.slider |
88de417885472f406d761c4edd7a856c36c242e9 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.4
install:
- pip install -r requirements.txt -r test-requirements.txt -r docs-requirements.txt
script:
- flake8 sphinxcontrib/
- nosetests --verbose --with-cov --cov-report xml --cover-package=sphinxcontrib.chapeldomain
- ( export PYTHONPATH=`pwd` && cd docs/ && make html ... | language: python
python:
- 3.5
install:
- pip install -r requirements.txt -r test-requirements.txt -r docs-requirements.txt
script:
- flake8 sphinxcontrib/
- nosetests --verbose --with-cov --cov-report xml --cover-package=sphinxcontrib.chapeldomain
- ( export PYTHONPATH=`pwd` && cd docs/ && make html )
- ( ... | Update Python versions used by Travis | Update Python versions used by Travis
Stop testing Python 2 at all, we want to drop support for it. Also, update the
version of Python 3 being used, as the latest Sphinx only supports Python 3.5
and up (I am going with the lowest one supported for now, but it seems
reasonable to require a later one if we so choose).
... | YAML | apache-2.0 | chapel-lang/sphinxcontrib-chapeldomain |
51cce86d0f159a67e7f75a4816d490e9299e53ef | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
install: bundle install
script: bundle exec rake travis
branches:
only:
- master
| language: ruby
rvm:
- 1.8.7
- 1.9.3
install: bundle install
script: bundle exec rake travis
branches:
only:
- master
| Remove Ruby 2.0.0 from Travis config | Remove Ruby 2.0.0 from Travis config
| YAML | apache-2.0 | Jimdo/puppet-beanstalkd |
a027808d66e6f5ce97109323773dfe011aa4dfd5 | .travis.yml | .travis.yml | language: python
script:
- tox
addons:
apt:
packages:
- slapd
- ldap-utils
install:
- pip install tox
matrix:
include:
- python: "2.7"
env: TOXENV=py27-django111
- python: "3.4"
env: TOXENV=py34-django111
- python: "3.5"
env: TOXENV=py35-django111
- python: ... | language: python
script:
- tox
addons:
apt:
packages:
- slapd
- ldap-utils
install:
- pip install tox
matrix:
include:
- python: "2.7"
env: TOXENV=py27-django111
- python: "3.4"
env: TOXENV=py34-django111
- python: "3.5"
env: TOXENV=py35-django111
- python: ... | Add Travis tests for Python 3.7 and for Django 2.2. | Add Travis tests for Python 3.7 and for Django 2.2.
| YAML | bsd-2-clause | django-ldapdb/django-ldapdb,jlaine/django-ldapdb |
6fac64d6e45363d10fc99882b580ab0af6129b95 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "4"
- "0.12"
- "0.11"
- "0.10"
- "iojs-v1.0.4"
| sudo: false
language: node_js
node_js:
- "6"
- "4"
- "0.12"
- "0.11"
- "0.10"
- "iojs-v1.0.4"
| Use Travis CI's container-based infrastructure | Use Travis CI's container-based infrastructure
https://docs.travis-ci.com/user/workers/container-based-infrastructure/
| YAML | mit | phuesler/ain |
0d0c445e63e015c6747e7fb841753d44d23ab647 | .travis.yml | .travis.yml | language: node_js
node_js:
- stable
| before_install:
- export CHROME_BIN=chromium-browser
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
before_script:
- npm install -g bower
- bower install -f
language: node_js
node_js:
- stable
| Add GUI support for Travis | Add GUI support for Travis
| YAML | mit | vitorabner/decoraki,vitorabner/decoraki |
75c6a0cf852d949b9c906163701afbb5d41437a6 | .travis.yml | .travis.yml | language: node_js
node_js:
- '4'
- '5'
- '6'
- '7'
- '8'
- stable
sudo: false
services:
- mysql
before_install:
# use Travis CI default MySQL acount
- export DB_HOST=localhost
- export DB_USER=travis
- export DB_PWD=''
# package-lock.json was introduced in npm@5
- if [[ `node -v` != v9* ]]; then n... | language: node_js
node_js:
- '6'
- '7'
- '8'
- stable
sudo: false
services:
- mysql
before_install:
# use Travis CI default MySQL acount
- export DB_HOST=localhost
- export DB_USER=travis
- export DB_PWD=''
# package-lock.json was introduced in npm@5
- if [[ `node -v` != v9* ]]; then npm install -g np... | Drop node 4 and 5 | Drop node 4 and 5
| YAML | mit | lukeb-uk/node-promise-mysql |
2b93e822725a0d84ef8bee86169178b667fdcc10 | .travis.yml | .travis.yml | language: java
matrix:
include:
- env: JDK='Oracle JDK 8'
jdk: oraclejdk8
- env: JDK='OpenJDK 8'
jdk: openjdk8
- env: JDK='Oracle JDK 9'
jdk: oraclejdk9
# - env: JDK='Oracle JDK 10'
# jdk: oraclejdk10
sudo: required
services:
- docker
before_script:
- chmod +x gradlew
... | language: java
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk10
- oraclejdk11
- openjdk8
- openjdk9
- openjdk10
- openjdk11
sudo: required
services:
- docker
before_script:
- chmod +x gradlew
script:
- java -version
- ./gradlew check --parallel
- ./gradlew codeCoverageReport
notifications:
email... | Increase the Travis CI JDK matrix | Increase the Travis CI JDK matrix
| YAML | apache-2.0 | mokies/ratelimitj |
1ca6bac47ee544bd8dabca30f34b038a278eff5a | .travis.yml | .travis.yml | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=connectors-centos-6
- INSTANCE=mysql... | addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=connectors-centos-6
- INS... | Update for Chef 15 license agreement and Chef Workstation | Update for Chef 15 license agreement and Chef Workstation
| YAML | apache-2.0 | chef-cookbooks/yum-mysql-community,chef-cookbooks/yum-mysql-community |
f5ae2d39f2545531e8e4e3d5f82707b9f45752a1 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- "0.11"
- "0.10"
| Remove 0.8 and 0.6 versions. | Remove 0.8 and 0.6 versions. | YAML | mit | agusdiyansyah/bootstrap-iconpicker,NeoFragCMS/bootstrap-iconpicker,smartcorestudio/bootstrap-iconpicker,victor-valencia/bootstrap-iconpicker,nmccready/bootstrap-iconpicker,smartcorestudio/bootstrap-iconpicker,agusdiyansyah/bootstrap-iconpicker,victor-valencia/bootstrap-iconpicker,nmccready/bootstrap-iconpicker,NeoFragC... |
b9ac8c703142d12c6d2317f22b3ea9ad225a230d | .travis.yml | .travis.yml | language: d
d:
- dmd-2.068.2-b1
- dmd-2.068.0
- dmd-2.067.1
- dmd-2.066.1
- ldc-0.15.1
- gdc-4.9.2
addons:
apt:
packages:
- libev-dev
env:
- VIBED_DRIVER=libevent BUILD_EXAMPLE=1 RUN_TEST=1
- VIBED_DRIVER=libev BUILD_EXAMPLE=0 RUN_TEST=0
- VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
... | language: d
d:
- dmd-2.068.2
- dmd-2.067.1
- dmd-2.066.1
- ldc-0.15.1
- gdc-4.9.2
addons:
apt:
packages:
- libev-dev
env:
- VIBED_DRIVER=libevent BUILD_EXAMPLE=1 RUN_TEST=1
- VIBED_DRIVER=libev BUILD_EXAMPLE=0 RUN_TEST=0
- VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
matrix:
exclude:... | Test with DMD 2.068.2 final. | Test with DMD 2.068.2 final.
| YAML | mit | gedaiu/vibe.d,schuetzm/vibe.d,rejectedsoftware/vibe.d,chalucha/vibe.d,Mihail-K/vibe.d,AndreyMZ/vibe.d,machindertechnologies/vibe.d,DBankov/vibe.d,Geod24/vibe.d,etcimon/vibe.d,redstar/vibe.d,etcimon/vibe.d,ColdenCullen/vibe.d |
9dd31c97ce5415823b152d7b80375e2cffb540cd | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- jruby-19mode
| sudo: false
language: ruby
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- jruby-19mode
- jruby-21mode
| Add JRuby 2 mode to Travis CI | Add JRuby 2 mode to Travis CI
| YAML | mit | ai/rails-sass-images |
6783351b5ce6ff192168fd04eb38f74d3169c526 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.6
- 0.8
- 0.9
| language: node_js
node_js:
- 0.8
- "0.10"
- "0.11"
| Stop testing on ancient node versions | Stop testing on ancient node versions
| YAML | mit | mmalecki/spawn-command |
140d0c8ed15e5f0310d37d1750801e378f63cdf8 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.0
before_script:
- cp .env.sample .env
- bundle exec rake db:create db:setup
env: DATABASE_USERNAME=postgres DATABASE_PASSWORD=''
cache: bundler
script: bundle exec rake spec
sudo: false
| language: ruby
rvm:
- 2.2.0
before_script:
- cp .env.sample .env
- bundle exec rake db:create db:setup
env: DATABASE_USERNAME=postgres DATABASE_PASSWORD=''
cache: bundler
script: bundle exec rspec spec
sudo: false
| Isolate CI failure to run tests from rake | Isolate CI failure to run tests from rake
| YAML | mit | adhearsion/SIPtreadmill,adhearsion/SIPtreadmill,mojolingo/SIPtreadmill,adhearsion/SIPtreadmill,adhearsion/SIPtreadmill,mojolingo/SIPtreadmill,mojolingo/SIPtreadmill,wdrexler/SIPtreadmill,mojolingo/SIPtreadmill,wdrexler/SIPtreadmill,wdrexler/SIPtreadmill,wdrexler/SIPtreadmill |
401de1f8d3e79b8b438d64221551c228b3cb60bd | .travis.yml | .travis.yml | sudo: required
dist: trusty
# Those two above are for getting most recent Ubuntu at Travis
# https://docs.travis-ci.com/user/ci-environment/
language: node_js
node_js:
- "7"
- "6"
cache:
directories:
- node_modules
matrix:
fast_finish: true
script:
- npm run lint
- npm test
after_script: "npm run cove... | sudo: required
dist: trusty
# Those two above are for getting most recent Ubuntu at Travis
# https://docs.travis-ci.com/user/ci-environment/
language: node_js
node_js:
- "8"
- "6"
cache:
directories:
- node_modules
matrix:
fast_finish: true
script:
- npm run lint
- npm test
after_script: "npm run cove... | Test against Node.js version 8 at Travis CI | Test against Node.js version 8 at Travis CI
| YAML | mit | paazmaya/tarita |
f14fc59b3ab0178e6f44952a51fce4e23ef5426b | .travis.yml | .travis.yml | language: haskell
env:
- CABALVER=1.22 GHCVER=7.8.4
before_install:
- travis_retry sudo apt-add-repository -y ppa:hvr/ghc
- travis_retry sudo apt-get update
- travis_retry sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH
install:
-... | language: haskell
env:
- CABALVER=1.22 GHCVER=7.8.4
before_install:
- travis_retry sudo apt-add-repository -y ppa:hvr/ghc
- travis_retry sudo apt-get update
- travis_retry sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH
install:
-... | Use the example secrets.m4 in Travis CI build. | Use the example secrets.m4 in Travis CI build.
| YAML | agpl-3.0 | sajith/betty-web |
c5bfba11f23e6bad7faa8c10b0f2e834695b0e8c | .travis.yml | .travis.yml | sudo: false
language: ruby
cache: bundler
rvm:
- 2.3.4
- 2.2.2
- 1.9.3
gemfile:
- test/gemfiles/Gemfile.chef-11
- test/gemfiles/Gemfile.chef-10
- test/gemfiles/Gemfile.chef-12
- test/gemfiles/Gemfile.chef-master
matrix:
allow_failures:
- gemfile: test/gemfiles/Gemfile.chef-master
exclude:
# Ch... | sudo: false
language: ruby
cache: bundler
rvm:
- 2.3.4
- 2.2.2
- 1.9.3
gemfile:
- test/gemfiles/Gemfile.chef-11
- test/gemfiles/Gemfile.chef-10
- test/gemfiles/Gemfile.chef-12
- test/gemfiles/Gemfile.chef-master
matrix:
allow_failures:
- gemfile: test/gemfiles/Gemfile.chef-master
exclude:
# Ch... | Exclude Gemfile.chef-10 with Ruby 2.3.4 | Exclude Gemfile.chef-10 with Ruby 2.3.4
| YAML | mit | matschaffer/knife-solo,matschaffer/knife-solo,matschaffer/knife-solo |
8ddb1fb360148e18161db328c7ca6e10c81a9227 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.3
- 3.4
- pypy
- pypy3
install:
- python setup.py install
- pip install coverage coveralls
script:
- coverage run --source=signxml ./test/test.py
# - coverage report --show-missing
after_success:
- coveralls
matrix:
allow_failures:
- py... | language: python
python:
- 2.7
- 3.3
- 3.4
- pypy
- pypy3
install:
- python setup.py install
- pip install coverage coveralls
script:
- coverage run --source=signxml ./test/test.py
# - coverage report --show-missing
after_success:
- coveralls
matrix:
allow_failures:
- py... | Use Travis CI container infrastructure | Use Travis CI container infrastructure
| YAML | apache-2.0 | soby/signxml,kislyuk/signxml,CoresecSystems/signxml,joelmir/signxml,XML-Security/signxml,XML-Security/signxml |
9df0dee3fb0e46b03431dbe72e8d6aaf24c298b7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
- 2.2.3
- 2.3.1
before_install:
- gem update --system
- gem --version
- gem install bundler
- bundler --version
script: bundle exec rake test
branches:
only:
- master
- development
gemfile:
- gemfiles/activemodel_4_0.gemfile
- gemfiles/acti... | language: ruby
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
- 2.2.3
- 2.3.1
before_install:
- gem update --system
- gem --version
- gem install bundler
- bundler --version
script: bundle exec rake test
branches:
only:
- master
- development
gemfile:
- gemfiles/activemodel_4_0.gemfile
- gemfiles/acti... | Copy and paste is wrong | Copy and paste is wrong
Especially if you don't know what you're doing and you add an extra option your test environments don't have
| YAML | mit | odarriba/telegram_bot_gem,odarriba/fantastic_robot,odarriba/fantastic_robot,odarriba/telegram_bot_gem |
635f6e0decc8bc3744100463b04f5ca056afa2a6 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "5"
- "4.4"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
code_climate:
repo_token: 7e9342659cccc97e7107c9d07df0026e9e4e8382a55ade170045ca6fe22a1c3b
before_script:
- npm i -g mocha
- npm i -g codeclimat... | language: node_js
node_js:
- "6"
- "5"
- "4.4"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
code_climate:
repo_token: 7e9342659cccc97e7107c9d07df0026e9e4e8382a55ade170045ca6fe22a1c3b
before_script:
- npm i -g mocha
- npm i -g istanbul
a... | Update Travis CI for CodeClimate | Update Travis CI for CodeClimate
| YAML | mit | zackharley/gcloud-datastore |
bcbd9d2d4cc8110cea6a024da14a4400d7c250bc | .travis.yml | .travis.yml | language: node_js
node_js:
- "12.14.0"
- "8.16.2"
- "6.14.4"
- "4.9.1"
| language: node_js
node_js:
- node # Current stable
- lts/* # Most recent LTS
- 10
- 8
| Remove support for deprecated node versions | Remove support for deprecated node versions
| YAML | mit | MindscapeHQ/raygun4node,MindscapeHQ/raygun4node |
20deb3743eaeffc9d1d092974a06ae8696b65be9 | .travis.yml | .travis.yml | language: php
stages:
- test
- name: deploy
if: branch = master
php:
- 7.0
- 7.1
- 7.2
- 7.3
sudo: false
addons:
apt:
packages:
- ca-certificates
cache:
directories:
- $HOME/.composer/cache
install:
- composer global require phpstan/phpstan
- composer install
before_script:
... | language: php
stages:
- test
- name: deploy
if: branch = master
php:
- 7.0
- 7.1
- 7.2
- 7.3
sudo: false
addons:
apt:
packages:
- ca-certificates
cache:
directories:
- $HOME/.composer/cache
install:
- composer global require phpstan/phpstan
- composer install
before_script:
... | Revert "Travis: add some debug cmds" | Revert "Travis: add some debug cmds"
This reverts commit fcf941b66a49223ab7ba4dc07ba4a317a187d7b5.
| YAML | mit | baethon/phln,baethon/phln,baethon/phln |
7f9938adf2f02f071f8042dee5d052e69fd7fd21 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.5
- 2.2.2
| language: ruby
rvm:
- 2.1.5
- 2.2.2
before_install:
- gem install bundler
| Fix Travis CI issue "undefined method `spec` for nil:NilClass" | Fix Travis CI issue "undefined method `spec` for nil:NilClass"
A newish verison of rubygems (v2.6.13) and an oldish version of bundler (v1.7.6) don't play well together, resulting in the above error when bundling.
Updating the version of bundler Travis CI provides to a newer version fixes this problem.
| YAML | mit | zilverline/google-maps |
31447ae6742c6f679f31ea17cfbdb9dece041596 | .travis.yml | .travis.yml | language: android
android:
components:
- tools
- platform-tools
- build-tools-24.0.2
- android-24
- extra-android-m2repository
- sys-img-armeabi-v7a-android-18
jdk:
- oraclejdk8
before_script:
# Create and start an emulator for instrumentation tests.
- echo no | android create avd --f... | language: android
android:
components:
- tools
- platform-tools
- build-tools-24.0.2
- android-24
- extra-android-m2repository
- sys-img-armeabi-v7a-android-18
jdk:
- oraclejdk8
before_script:
# Create and start an emulator for instrumentation tests.
- echo no | android create avd --f... | Remove -no-audio from test emulator config on Travis | Remove -no-audio from test emulator config on Travis
| YAML | mit | fcostaa/kotlin-rxjava-android,fcostaa/kotlin-rxjava-android |
3806602ea2659d31133ae7f998a407f7e8b60b66 | .travis.yml | .travis.yml |
language: ruby
rvm:
- 2.2
before_script:
- gem install awesome_bot
script:
- awesome_bot README.md --allow-redirect --white-list mastodon
|
language: ruby
rvm:
- 2.5.3
cache: bundler
before_script:
- gem update --system
- gem install bundler
- gem install awesome_bot
script:
- awesome_bot README.md --allow-redirect --white-list mastodon
| Update Ruby for Travis CI to 2.5.3... | Update Ruby for Travis CI to 2.5.3...
| YAML | mit | ekremkaraca/awesome-rails |
b4c67f7b5143975bf832aaadd9e1984ae096876f | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
script:
- "python setup.py test"
- coverage run setup.py test
- coverage report -m
| language: python
python:
- 2.6
- 2.7
before_install:
- pip install -r requirements-dev.txt --use-mirrors
script:
- python setup.py test
- coverage run setup.py test
- coverage report -m
| Install dev dependencies as part of CI run. | Install dev dependencies as part of CI run.
| YAML | mit | wildone/pyaem,Sensis/pyaem |
326cd32367d6914c47da4531f24d7a98e3e3326c | .travis.yml | .travis.yml | language: objective-c
before_install:
- cd `brew --prefix` && git fetch origin && git reset --hard origin/master && cd $TRAVIS_BUILD_DIR
- brew update
- brew install xctool --HEAD
- bundle install
script:
- rake server:start
- rake test
| language: objective-c
before_install:
- brew update
- brew install xctool --HEAD
- bundle install
script:
- rake server:start
- rake test
| Drop `git reset` step from Travis pre-requisites | Drop `git reset` step from Travis pre-requisites
| YAML | apache-2.0 | mberube09/RestKit,SuPair/RestKit,djz-code/RestKit,0x73/RestKit,qingsong-xu/RestKit,moneytree/RestKit,erichedstrom/RestKit,0x73/RestKit,loverbabyz/RestKit,PonderProducts/RestKit,zjh171/RestKit,wangjiangwen/RestKit,gank0326/restkit,jrtaal/RestKit,samkrishna/RestKit,ppierson/RestKit,gank0326/restkit,lucasecf/RestKit,wyzza... |
3ba8e15ded2bf82ab65c0d445e0fc80838000f51 | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
branches:
except:
- /^bugfix\/.*$/
- /^feature\/.*$/
- /^optimization\/.*$/
matrix:
include:
- php: 5.4
- php: 5.5
- php: 5.6
env: DEPENDENCIES='low'
- php: 5.6
- php: 7.0
- php: 7.1
- php: ... | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
branches:
except:
- /^bugfix\/.*$/
- /^feature\/.*$/
- /^optimization\/.*$/
matrix:
include:
- php: 5.3
dist: precise
- php: 5.4
dist: trusty
- php: 5.5
dist: trusty
- php: 5.6
env: DE... | Fix broken build for PHP 5.4 and PHP 5.5 | Fix broken build for PHP 5.4 and PHP 5.5
| YAML | mit | phpspec/prophecy |
4a719a66b0e1f682fdb3c0a348c6988926fe4501 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8
script:
- xcodebuild -scheme Toast-Swift -sdk iphonesimulator build
| language: objective-c
osx_image: xcode9
script:
- xcodebuild -scheme Toast-Swift -sdk iphonesimulator build
| Bump Travis osx image to xcode9 | Bump Travis osx image to xcode9
| YAML | mit | waterskier2007/Toast-Swift,scalessec/Toast-Swift,scalessec/Toast-Swift,waterskier2007/Toast-Swift |
5cc62d6597dcb7be856f9e57de4b6e816e8dfe5b | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update --snapshot
- composer update $COMPOSER_OPTS
script:
- vendor/bin/phpunit
- tests/lint.sh
git:
depth: 5
| language: php
php:
- 7.1
- 7.2
- 7.3
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update --snapshot
- composer update $COMPOSER_OPTS
script:
- vendor/bin/phpunit
- tests/lint.sh
git:
depth: 5
| Add support for PHP 7.3 | Add support for PHP 7.3
| YAML | apache-2.0 | duncan3dc/guzzle-tools |
e3caa0147d34939743c6c630d411450f66bf02fc | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: ruby-head
env:
- DB=sqlite
- DB=mysql
- DB=postgres
before_script:
- "cp config/database.$DB.travis.yml config/database.yml"
- sh -c "if [ '$DB' = 'postgres' ]; then psql -c 'cr... | language: ruby
rvm:
- 2.2.3
- 2.1.7
- 2.0.0-p647
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
env:
- DB=sqlite
- DB=mysql
- DB=postgres
before_script:
- "cp config/database.$DB.travis.yml config/database.yml"
- sh -c "if [ '$DB' = 'postgres' ]; then psql -c 'create database firefly_... | Test against current, previous and old stable rubies | Test against current, previous and old stable rubies
| YAML | mit | ariejan/firefly,ariejan/firefly,ariejan/firefly |
07a1b51a276942e955cb49593175109e3b59bd32 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
# command to install dependencies
install:
- sudo apt-get update -qq
- sudo apt-get install -qq git-buildpackage
- sudo pip install empy
- sudo python setup.py develop
# command to run tests
script:
- nosetests -s
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
# command to install dependencies
install:
- sudo apt-get update -qq
- sudo apt-get install -qq git-buildpackage
- sudo pip install empy
- sudo python setup.py develop
# command to run tests
script:
- sudo python setup.py nosetests -s
| Switch back to the setup.py running of nosetests | Switch back to the setup.py running of nosetests
| YAML | bsd-3-clause | vrabaud/bloom,nayomal/bloom |
57ffe8cf464b30eec403d591ff43bf7194883569 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update
- composer update $COMPOSER_OPTS
script:
- ./vendor/bin/phpunit
- ./tests/lint.sh
git:
depth: 5
dist: trusty
su... | language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update
- composer update $COMPOSER_OPTS
script:
- ./vendor/bin/phpunit
- ./tests/lint.sh
git:
depth: 5
dist: t... | Add support for PHP 7.2 | Add support for PHP 7.2
| YAML | apache-2.0 | duncan3dc/console |
c537d4085b90d981df2805afb725ee07f0207da2 | .travis.yml | .travis.yml | language: haskell
ghc:
- "7.10"
- "7.8"
- "7.6"
- "7.4"
| language: c
sudo: false
matrix:
include:
- env: CABALVER=1.22 GHCVER=7.6.3
addons: {apt: {packages: [cabal-install-1.22,ghc-7.6.3], sources: [hvr-ghc]}}
- env: CABALVER=1.22 GHCVER=7.8.4
addons: {apt: {packages: [cabal-install-1.22,ghc-7.8.4], sources: [hvr-ghc]}}
- env: CABALVER=1.22 GHCVER... | Stop testing with ghc-7.4 and build with ghc-7.10. | Stop testing with ghc-7.4 and build with ghc-7.10.
| YAML | bsd-3-clause | haskell-distributed/network-transport |
998ec881f9fe7f5bbc34ea7fbc769f272c002c8b | .travis.yml | .travis.yml | language: php
services:
- mysql
php:
- 5.6
- 7.0
sudo: required
before_install:
- composer self-update
- composer install --dev --prefer-source --no-interaction
- mysql -e 'create database friendships_test;'
script:
- cp src/database/migrations/create_friendships_table.php vendor/laravel/laravel/datab... | language: php
services:
- mysql
php:
- 5.6
- 7.0
sudo: required
before_install:
- composer self-update
- composer install --dev --prefer-source --no-interaction
- mysql -e 'create database friendships_test;'
script:
- cp src/database/migrations/create_friendships_table.php vendor/laravel/laravel/datab... | Copy Config & Groups pivot table migration | Copy Config & Groups pivot table migration
| YAML | mit | nikolaynesov/laravel-friendships,hootlex/laravel-friendships,stephane-monnot/laravel-friendships,nateritter/laravel-friendships |
0d487925958cebdc91ba68b6253fd1b5093bcbe1 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.0
- 2.1
- 2.2
script:
- bundle exec rake travis
| language: ruby
cache: bundler
rvm:
- 2.1
- 2.2
script:
- bundle exec rake travis
| Drop ruby 2.0 testing support | Drop ruby 2.0 testing support
chefspec dependencies only support 2.1+
| YAML | apache-2.0 | inviqa/tideways-cookbook,inviqa/tideways-cookbook |
98108fbe7dea05ba0de3f1219ef930e28d068bc6 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
env:
-
- MIGRATIONS=yes
- SEARCH=elasticsearch
- DB=mysql
- DB=postgres
before_install:
- sh -c "if [ '$SEARCH' = 'elasticsearch' ]; then sudo service elasticsearch start; sleep 3; fi"
install:
- pip install . --no-deps
- pip install --use-mirrors -r test_mc_... | language: python
python:
- "2.6"
- "2.7"
env:
-
- MIGRATIONS=yes
- SEARCH=elasticsearch
- DB=mysql
- DB=postgres
before_install:
- sh -c "if [ '$SEARCH' = 'elasticsearch' ]; then sudo service elasticsearch start; sleep 3; fi"
install:
- pip install . --no-deps
- pip install --use-mirrors -r test_mc_... | Switch back to toastdriven's fork of pyelasticsearch. | Switch back to toastdriven's fork of pyelasticsearch.
| YAML | agpl-3.0 | pculture/mirocommunity,pculture/mirocommunity,pculture/mirocommunity,pculture/mirocommunity |
284dcff36e42d47579ef8f76116072a88be5a491 | .travis.yml | .travis.yml | language: java
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- $HOME/.gradle/go/
env:
global:
- GOGS_DIR=/home/travis/gogs
- JAVA_OPTS=-Xmx1024m -XX:MaxPermSize=256m
jdk:
- oraclejdk8
script: ./gradlew check --info --stacktrace --max-workers=2
after_success:
- ./gradle... | language: java
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- $HOME/.gradle/go/
env:
global:
- GOGS_DIR=/home/travis/gogs
- JAVA_OPTS=-Xmx1024m -XX:MaxPermSize=256m
jdk:
- oraclejdk8
script: ./gradlew check --info --stacktrace --max-workers=1
after_success:
- ./gradle... | Decrease worker number to 1 | Decrease worker number to 1
| YAML | apache-2.0 | gogradle/gogradle,gogradle/gogradle,gogradle/gogradle,blindpirate/gogradle,blindpirate/gogradle,gogradle/gogradle |
74d24a91c7d2b329888624722980e3d14519061d | .travis.yml | .travis.yml | language: python
sudo: false
python:
- 3.4
env:
matrix:
- TOXENV="py26"
- TOXENV="py27"
- TOXENV="py33"
- TOXENV="py34"
- TOXENV="pypy"
- TOXENV="pypy3"
install: pip install tox
script: tox -e $TOXENV
| language: python
sudo: false
python:
- 3.4
env:
matrix:
- TOXENV="py26"
- TOXENV="py27"
- TOXENV="py32"
- TOXENV="py33"
- TOXENV="py34"
- TOXENV="pypy"
- TOXENV="pypy3"
install: pip install tox
script: tox -e $TOXENV
| Enable Python3.2 environment on TravisCI | Enable Python3.2 environment on TravisCI
| YAML | mit | berdario/pew,berdario/pew |
2f356869db4127d02c02acddc7343eec9be89d58 | .travis.yml | .travis.yml | language: ruby
jdk:
- oraclejdk7
rvm:
- "1.9.3"
# - "1.9.2"
- "1.8.7"
- jruby-19mode
- jruby-18mode
scala:
# - 2.10.0
- 2.9.2
# - 2.9.1
# - 2.8.1
install:
- gem install bundler
- bundle install
- export JRUBY_OPTS="-J-XX:MaxPermSize=312m -J-Xmx1024M"
- export JAVA_OPTS="-Xmx1024m -XX:MaxPermSize... | language: ruby
jdk:
- oraclejdk7
rvm:
- "1.9.3"
# - "1.9.2"
# - "1.8.7"
- jruby-19mode
- jruby-18mode
scala:
# - 2.10.0
- 2.9.2
# - 2.9.1
# - 2.8.1
install:
- gem install bundler
- bundle install
- export JRUBY_OPTS="-J-XX:MaxPermSize=312m -J-Xmx1024M"
- export JAVA_OPTS="-Xmx1024m -XX:MaxPermSiz... | Stop testing against an older ruby | Stop testing against an older ruby
git-svn-id: d8f3215415546ce936cf3b822120ca56e5ebeaa0@1469662 13f79535-47bb-0310-9956-ffa450edef68
| YAML | apache-2.0 | apache/buildr,stewi2/buildr,jpcaruana/buildr,liamchristopher/buildr,jpcaruana/buildr,jpcaruana/buildr,stewi2/buildr,apache/buildr,apache/buildr,stewi2/buildr,stewi2/buildr,liamchristopher/buildr,liamchristopher/buildr,liamchristopher/buildr,jpcaruana/buildr,apache/buildr |
79f5176d796ddf051847ea87c1fb4f5f9603dc13 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.10"
- iojs
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| language: node_js
node_js:
- "0.12"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| Remove iojs for now due to node-gyp problem. Drop 0.10, too old. | Remove iojs for now due to node-gyp problem. Drop 0.10, too old.
| YAML | mit | cliffano/feedpaper,cliffano/feedpaper,cliffano/feedpaper |
d30400fe1592b0f81746950d420843e7dfa38756 | .travis.yml | .travis.yml | language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono: none
os:
- linux
- osx
branches:
... | language: csharp
sudo: false
dist: trusty
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono: none
os:
- linux
- osx
osx_image: xcode8.2
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
before_install:
- if test "$TRAVIS_OS_NAME" == ... | Update Travis to macOS Sierra | Update Travis to macOS Sierra
[skip appveyor]
| YAML | apache-2.0 | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore |
2622c15f05163cdfaa1ee98c007653383bfa34f0 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.12
- 0.10
after_script:
- codeclimate < coverage/lcov.info
| language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
- "0.10"
after_script:
- codeclimate < coverage/lcov.info
| Add Node 4.0 and 4.1 to Travis config | Add Node 4.0 and 4.1 to Travis config
| YAML | mit | lumeet/barbarian-ombudsman |
5820324374f735dea3cc5e327efb100e8c8df3d4 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
after_success:
- curl https://copilot.blackducksoftware.com/scripts/init/gradle -o bds_init.gradle
- ./gradlew --init-script bds_init.gradle buildBom -DbdsPluginVersion=5.0.0
- bash <(curl -s https://copilot.blackducksoftware.com/bash/travis) ./build/blackduck/*_bdio.jsonld
... | language: java
jdk:
- oraclejdk8
after_success:
- bash <(curl -s https://copilot.blackducksoftware.com/ci/travis/scripts/upload)
notifications:
email:
recipients:
- corona.ide.dev@gmail.com
on_success: change
on_failure: always
| Update to single line CoPilot call | Update to single line CoPilot call | YAML | apache-2.0 | StarChart-Labs/chronicler,StarChart-Labs/chronicler |
6453e72285d1625e07840f8baba763410d9032d4 | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: ruby
rvm:
- 2.2
node_js:
- 4.1
before_install:
- bundle install
- npm install
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- cd _assets && ../node_modules/bower/bin/bower install && cd ..
script:
- bundle exec jekyll build
... | sudo: required
services:
- docker
language: ruby
rvm:
- 2.2
node_js:
- 4.1
before_install:
- bundle install
- npm install
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- cd _assets && ../node_modules/bower/bin/bower install && cd ..
script:
- bundle exec jekyll build
- node_modules/jshi... | Remove email from docker login command | Remove email from docker login command
| YAML | apache-2.0 | anroots/sqroot.eu,sqroot-eu/sqroot.eu,anroots/sqroot.eu,sqroot-eu/sqroot.eu,anroots/sqroot.eu,sqroot-eu/sqroot.eu |
297c0abc571256529c68ea17b5cf63858a080412 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- iojs
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- iojs
| Set sudo:false to run on Travis new infrastructure. | Set sudo:false to run on Travis new infrastructure.
| YAML | mit | cdvir1/node-coap,mcollina/node-coap,boneskull/node-coap,utopiaprince/node-coap,OJFord/node-coap,dmoranj/node-coap |
9483a36ed79d41135b1f78eab20acc60d8c7641d | .travis.yml | .travis.yml | sudo: required
env:
# - GHCVER=7.2.2 # not supported by haskell-src-exts
- GHCVER=7.4.2 # not supported by cpphs
- GHCVER=7.6.3
- GHCVER=7.8.4
- GHCVER=7.10.3
- GHCVER=8.0.2
- GHCVER=head
script:
- export HLINT_ARGUMENTS=src
- wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --quiet | sh
| sudo: required
env:
- GHCVER=7.4.2
- GHCVER=7.6.3
- GHCVER=7.8.4
- GHCVER=7.10.3
- GHCVER=8.0.2
- GHCVER=head
script:
- export HLINT_ARGUMENTS=src
- curl -sL https://raw.github.com/ndmitchell/neil/master/travis.sh | sh
| Switch to the new curl script | Switch to the new curl script | YAML | bsd-3-clause | ndmitchell/hlint,ndmitchell/hlint |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.