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 |
|---|---|---|---|---|---|---|---|---|---|
c980719928e3f1f97b253ce5df5f351b6d8a0416 | .travis.yml | .travis.yml | language: c
env:
- EnableNuGetPackageRestore=true
before_install:
# Make sure mono is installed,
# pipe stdout to dev/null because qq is still too chatty
- sudo apt-get update -qq > /dev/null
- sudo apt-get install -qq mono-devel mono-gmcs > /dev/null
# update root certs for nuget
- mozroots --import --... | language: c
env:
- EnableNuGetPackageRestore=true
before_install:
# Make sure mono is installed,
# pipe stdout to dev/null because qq is still too chatty
- sudo apt-get update -qq > /dev/null
- sudo apt-get install -qq mono-devel mono-gmcs > /dev/null
# update root certs for nuget
- mozroots --import --... | Update build.sh to be executable on CI server | Update build.sh to be executable on CI server
| YAML | mit | stigping/SteamBot,GAMELASTER/SteamBot,JackHarknes/Bot1,niachris/SteamBotNew,novasdream/SteamBot,ChalkyBrush/SteamBots,Alex-Nabu/CSGOWinBig-SteamBot,ChalkyBrush/SteamBots,BlueRaja/SteamBot,Murzyneczka/CSGOWinBig-SteamBot,novasdream/SteamBot,trervorx/SteamBot,Schwehn42/SteamBot,Bottswana/SteamBot,avoak/SteamBot,23RDGit/C... |
3e3335674291d0ee28fbdda34e7f1fc046a642b3 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8
- 1.9
- 2.5
- ruby-head
- jruby
| language: ruby
rvm:
- 1.8
- 1.9
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
- ruby-head
- jruby
| Test on different Ruby 2 versions | Test on different Ruby 2 versions | YAML | mit | DataWraith/ascii85gem |
5e624e60ace50f3ebf1832cd26cc4086281f74c2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
| sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.12"
- 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
| Add 0.12 and iojs to CI run. | Add 0.12 and iojs to CI run.
| YAML | mit | cliffano/bagofholding |
0a0a9220ae4ddb1139b73d88e395d51cf62f03d1 | .travis.yml | .travis.yml | ---
# Verify this with: http://lint.travis-ci.org/
language: ruby
# Delete dependency locks for matrix builds.
before_install: rm Gemfile.lock || true
script: bundle exec rake test
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
env:
matrix:
- PUPPET_VERSION="~> 3.8.5"
- PUPPET_VERSION="~> 4.3.2"
matrix:
exclu... | ---
# Verify this with: http://lint.travis-ci.org/
language: ruby
# Delete dependency locks for matrix builds.
before_install: rm Gemfile.lock || true
script: bundle exec rake test
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
env:
matrix:
- PUPPET_VERSION="~> 3.8.5"
- PUPPET_VERSION="~> 4.8.0"
matrix:
exclu... | Test on a newer minor version of puppet 4. | Test on a newer minor version of puppet 4.
| YAML | mit | gds-operations/puppet-rbenv,gds-operations/puppet-rbenv |
2f9661c30b929f5b4b63d46091c32fc843033837 | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
# - jruby-18mode
# - jruby-19mode
- ree
env:
- RAILS_VERSION=""
- RAILS_VERSION="~>3.2.0"
- RAILS_VERSION="~>3.1.0"
- RAILS_VERSION="~>3.0.0"
- RAILS_VERSION="" MONETA_VERSION="~> 0.6.0"
- RAILS_VERSION="~>3.2.0" MONETA_VERSION="~> 0.6.0"
- RAILS... | ---
language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
env:
- RAILS_VERSION=""
- RAILS_VERSION="~>3.2.0"
- RAILS_VERSION="~>3.1.0"
- RAILS_VERSION="~>3.0.0"
- RAILS_VERSION="~>4.0.0.beta1"
- RAILS_VERSION="" MONETA_VERSION="~> 0.6.0"
- RAILS_VERSION="" MONETA_VERSION="~> 0.7.0"
notifications:
email:
... | Cut down what we test against, add tests for Ruby 2.0.0 | Cut down what we test against, add tests for Ruby 2.0.0
| YAML | mit | nikolai-b/rocket_pants,jsmestad/tradesman,Sutto/rocket_pants,Dealermade/rocket_pants,Pathgather/rocket_pants,CloudVLab/rocket_pants,michaelachrisco/rocket_pants,DamirSvrtan/rocket_pants |
b16fb2bf4ba611b40c0ac18e4b0bc55669f47bc7 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
env:
- SYMFONY_VERSION=3.2.*
before_install:
- composer self-update
- composer require --no-update symfony/symfony "$SYMFONY_VERSION"
install:
- composer install --no-interaction --prefer-dist
script:
- ./vendor/bin/phpcs ./ -p --encoding=utf-8 --... | language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
env:
- SYMFONY_VERSION=3.2.*
- SYMFONY_VERSION=3.3.*
before_install:
- composer self-update
- composer require --no-update symfony/symfony "$SYMFONY_VERSION"
install:
- composer install --no-interaction --prefer-dist
script:
- ./vendor/bin/php... | Add Symfony 3.3 to Travis.CI env | Add Symfony 3.3 to Travis.CI env | YAML | mit | fre5h/DoctrineEnumBundle |
a36a64826f1e9468d5771a4caead1ee4b65e4676 | .travis.yml | .travis.yml | language: haskell
ghc:
- 7.6
- 7.8
install:
- cabal install happy # a "haskell-src-exts" implicit dependency workaround
- cabal install --only-dependencies --enable-tests --enable-benchmarks --force-reinstalls
script:
- cabal configure --enable-tests --enable-benchmarks
- cabal build
- cabal test --sho... | language: haskell
ghc:
- 7.6
- 7.8
env:
- transformers=0.2.*
- transformers=0.4.*
install:
- cabal install "transformers == $transformers"
- cabal install happy # a "haskell-src-exts" implicit dependency workaround
- cabal install --only-dependencies --enable-tests --enable-benchmarks --force-reinstall... | Update Travis to test older transformers | Update Travis to test older transformers
| YAML | mit | nikita-volkov/hasql |
5074e1502fe1a8af8ecccec70f4386ba3f8bc781 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- jruby-20mode
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
#- jruby-19mode
#- jruby-20mode
| Drop support of buggy JRuby 1.7.4 | Drop support of buggy JRuby 1.7.4
| YAML | mit | m4i/tee |
96abbeee792aa89941ec3688db80a2c5cec1a0c0 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script:
- composer self-update
- composer install --dev
script: vendor/bin/phpunit --configuration phpunit.xml.dist | language: php
php:
- 5.3
- 5.4
before_script:
- composer self-update
- composer install --dev --no-interaction
script: vendor/bin/phpunit --configuration phpunit.xml.dist | Disable Composr interaction to work around rate limits. | Disable Composr interaction to work around rate limits.
| YAML | mit | rchouinard/rych-otp,Ennosuke/rych-otp |
54136b1c96de85b702704d12605197ba7cf1d513 | .travis.yml | .travis.yml | language: node_js
node_js:
- "5"
- "5.1"
- "4"
- "4.2"
- "4.1"
- "4.0"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
| language: node_js
node_js:
- "5"
- "5.1"
- "4"
- "4.1"
- "4.0"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
| Remove Travis node version 4.2 | Remove Travis node version 4.2
This brings the number of node versions down to 5, the limit for
simultaneous travis builds for one project.
| YAML | isc | cjlarose/argon2-ffi,cjlarose/argon2-ffi,cjlarose/argon2-ffi |
4b3dd6370369310219cdc38d9c2ed1169ee28eca | .travis.yml | .travis.yml | language: ruby
script: rake ci
rvm:
- 1.9.3
- 2.0
- 2.1
- ruby-head
- jruby
- jruby-head
- rbx-2.1
- rbx-2.2
- rbx-2.3
gemfile:
- Gemfile
- Gemfile-jruby
matrix:
include:
- rvm: jruby
env: JRUBY_OPTS='--2.0'
exclude:
- rvm: 1.9.3
gemfile: Gemfile-jruby
- rvm: 2.0
... | language: ruby
script: rake ci
rvm:
- 1.9.3
- 2.0
- 2.1
- ruby-head
- jruby
- jruby-head
- rbx-2.1
- rbx-2.2
- rbx-2.3
gemfile:
- Gemfile
- Gemfile-jruby
matrix:
include:
- rvm: jruby
env: JRUBY_OPTS='--2.0'
exclude:
- rvm: 1.9.3
gemfile: Gemfile-jruby
- rvm: 2.0
... | Fix matrix excludes (again) (hopefully) | Fix matrix excludes (again) (hopefully)
| YAML | mit | usmu/usmu,usmu/usmu |
e5684fcda02c45d8884e90ab10a63ac05a168aa8 | .travis.yml | .travis.yml | language: php
sudo: true
php:
- 5.6
before_script:
- mysql -e 'create database homestead_test;'
# fix ipv6 issue that prevented composer requests and resulted in failing builds
- sudo sh -c "echo 'precedence ::ffff:0:0/96 100' >> /etc/gai.conf"
# updates composer on travis
- travis_retry composer self-u... | language: php
sudo: true
php:
- 7.1
before_script:
- mysql -e 'create database homestead_test;'
# fix ipv6 issue that prevented composer requests and resulted in failing builds
- sudo sh -c "echo 'precedence ::ffff:0:0/96 100' >> /etc/gai.conf"
# updates composer on travis
- travis_retry composer self-u... | Update PHP version for Travis CI | Update PHP version for Travis CI
| YAML | apache-2.0 | MyGrades/mygrades-server,MyGrades/mygrades-server |
69ae80b20d5b20b83d00899c2d326a7319c7143e | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2
env:
- DOCKER_COMPOSE_VERSION=1.24.0
install: mvn install -B
before_script:
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname... | dist: trusty
language: java
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2
env:
- DOCKER_COMPOSE_VERSION=1.24.0
install: mvn install -B
before_script:
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`un... | Add "dist: trusty" to fix Travis issues | Add "dist: trusty" to fix Travis issues
| YAML | mit | elixir-no-nels/trackfind,elixir-no-nels/trackfind,elixir-no-nels/trackfind |
a2dd1c57ff6e63236254b54d3751c868934ad2b3 | .travis.yml | .travis.yml | language: node_js
node_js:
- '4.2'
before_script:
- npm install -g grunt-cli
env:
global:
secure: aOSQkEeIGiLNcMucvVJF4mBpukVkDM0+UbiuX1dunk8tPQbfKlNEACyEZneMAYCDTJBT2wlujKVEIKMzaBsrUKRKPYZ5vi77X/DrowW+3pGF0r2AdYxJKNO3FEHxzCSYaVxusDtMT0ohsDBLwyPxjll8zu9PPfcUe6EIb+AWemQ=
deploy:
provider: npm
email: jononor@gm... | language: node_js
node_js:
- '0.12'
before_script:
- npm install -g grunt-cli
env:
global:
secure: aOSQkEeIGiLNcMucvVJF4mBpukVkDM0+UbiuX1dunk8tPQbfKlNEACyEZneMAYCDTJBT2wlujKVEIKMzaBsrUKRKPYZ5vi77X/DrowW+3pGF0r2AdYxJKNO3FEHxzCSYaVxusDtMT0ohsDBLwyPxjll8zu9PPfcUe6EIb+AWemQ=
deploy:
provider: npm
email: jononor@g... | Use 0.12 instead of 4.2 | Travis: Use 0.12 instead of 4.2
Lots of errors about C++11 compiler deep down in a dep on 'bufferutils'
| YAML | mit | the-grid/apidocs,the-grid/apidocs,the-grid/apidocs,the-grid/apidocs |
05c7d37daf08fac57ad400ad0c900a4948a60d55 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "8"
- "10"
- "11"
| language: node_js
node_js:
- "6"
- "8"
- "10"
- "12"
- "13"
| Add node 12, 13 to test coverage matrix | Add node 12, 13 to test coverage matrix
| YAML | mit | rexxars/registry-auth-token |
3b72bf0f90d40efb0418ee5a61d0936b3f23dbd3 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
cache:
apt: true
# TODO local node modules path correct?
directories:
- $HOME/.pip-cache/
- $HOME/.tox
- /home/travis/virtualenv/python2.7
install:
- echo 'Running installation in directory $PWD'
- # Python
- pip install -r dev-requirements.txt --download-cache... | language: python
python:
- "2.7"
cache:
apt: true
# TODO local node modules path correct?
directories:
- $HOME/.pip-cache/
- $HOME/.tox
- /home/travis/virtualenv/python2.7
install:
- echo 'Running installation in directory $PWD'
- # Python
- pip install -r dev-requirements.txt --cache-dir $HOM... | Use new pip parameter name | Use new pip parameter name
| YAML | mit | bbiskup/pytest-purkinje,bbiskup/pytest-purkinje |
0d90bcad5e69052218c01ad91257ef4e49d25f9d | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- '0.10'
- '0.12'
- 'iojs'
before_install:
- "mkdir -p ~/.npm"
before_script:
- npm install -g grunt-cli istanbul codeclimate-test-reporter
script:
- grunt lint
- istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec
- CODECLIMATE_REPO_TOKEN=cdedf6... | language: node_js
sudo: false
node_js:
- '0.10'
- '0.12'
- '4.0'
- '4.1'
- '5.0'
before_install:
- "mkdir -p ~/.npm"
before_script:
- npm install -g grunt-cli istanbul codeclimate-test-reporter
script:
- grunt lint
- istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec
- CODECLIMAT... | Update Travis build to include most recent version of Node | Update Travis build to include most recent version of Node
| YAML | mit | hybridgroup/node-bebop |
96e9c06aa1dfa527d4601d967bcc125d73aeecc5 | .travis.yml | .travis.yml | ---
language: python
python: "2.7"
env:
- ANSIBLE_VERSION=1.9.2
install:
# Install Ansible.
- pip install ansible==$ANSIBLE_VERSION
# Add ansible.cfg to pick up roles path.
- printf "[defaults]\nroles_path=./" > ansible.cfg
script:
# TODO: once travis-ci includes an option to use CentOS, run the playbo... | ---
language: python
python: "2.7"
env:
- ANSIBLE_VERSION=2.1.2.0
install:
# Install Ansible.
- pip install ansible==$ANSIBLE_VERSION
# Add ansible.cfg to pick up roles path.
- printf "[defaults]\nroles_path=./" > ansible.cfg
script:
# TODO: once travis-ci includes an option to use CentOS, run the play... | Update the version of ansible used to test. | Update the version of ansible used to test.
| YAML | mit | craighurley/ansible-roles,craighurley/ansible-roles |
0bb7c539129316938b5dcc783faa390cb0a439f9 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.4
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then python -m unittest discover; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then python -m unittest discover; fi | language: python
python:
- 2.7
- 3.4
install:
- python setup.py install
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then python -m unittest discover; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then python -m unittest discover; fi | Add install instructions to Travis | Add install instructions to Travis
| YAML | mit | jdkato/codetype,jdkato/codetype |
a8152d3e0f3c66130b8565b192c80446c2dbc2ca | .travis.yml | .travis.yml | language: ruby
sudo: required
before_install:
- sudo apt-get update
- sudo apt-get install cups wicd
- apt-cache search wicd
script: bundle exec make
| language: ruby
sudo: required
before_install:
- sudo apt-get update
- sudo apt-get install cups
script: bundle exec make
| Revert "Install & search wicd to check for wicd-cli" | Revert "Install & search wicd to check for wicd-cli"
This reverts commit afba35acd48119552bda7ecea595be53aad4a7ef.
| YAML | agpl-3.0 | l0b0/travis-ci-helper,l0b0/travis-ci-helper |
aa1909d4b2e1bc0fc2c547628d5c0d1bd0ec7cad | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode9
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- PROJECT=OAuthSwift.xcodeproj
- IOS_FRAMEWORK_SCHEME="OAuthSwift"
- MACOS_FRAMEWORK_SCHEME="OAuthSwiftOSX"
- IOS_SDK=iphonesimulator10.0
- MACOS_SDK=macosx10.12
matrix:
- DESTINATION="OS=1... | language: objective-c
osx_image: xcode9
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- PROJECT=OAuthSwift.xcodeproj
- IOS_FRAMEWORK_SCHEME="OAuthSwift"
- MACOS_FRAMEWORK_SCHEME="OAuthSwiftOSX"
- IOS_SDK=iphonesimulator11.0
- MACOS_SDK=macosx10.12
matrix:
- DESTINATION="OS=1... | Switch CI to iOS 11 | Switch CI to iOS 11
| YAML | mit | OAuthSwift/OAuthSwift,dongri/OAuthSwift,dongri/OAuthSwift,OAuthSwift/OAuthSwift |
c732dbfe3cad8ee524509515542adbd36a217a8a | .travis.yml | .travis.yml | language: android
android:
components:
- build-tools-23.0.3
- android-23
- extra-android-m2repository
- sys-img-armeabi-v7a-android-16
licenses:
- 'android-sdk-license-.+'
before_script:
- echo no | android create avd --force -n test -t android-16 --abi armeabi-v7a
- emulator -avd test -no-a... | language: android
android:
components:
- platform-tools
- tools
- build-tools-23.0.3
- android-23
- extra-android-m2repository
- sys-img-armeabi-v7a-android-16
licenses:
- 'android-sdk-license-.+'
before_script:
- echo no | android create avd --force -n test -t android-16 --abi armeabi... | Fix build tools 23.0.3 is not found. | Fix build tools 23.0.3 is not found.
| YAML | apache-2.0 | kubode/Wiggle |
72cd24024477ff2aabd4c703b68b66981c349a8c | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
| language: node_js
node_js:
- "0.10"
- "0.12"
| Remove Io.js from test targets | Remove Io.js from test targets | YAML | agpl-3.0 | sgmap/ludwig-api |
6064f26a52ac41a02b15a5ef4cc249fba9c6c38a | ansible/infra.yaml | ansible/infra.yaml | ---
#####################
# Install Python
#####################
- hosts: all
gather_facts: false # As Python is not yet installed, we cannot gather host facts
tasks:
- name: Install Python
raw: "apt-get -y -q install python"
become: true
#######################
# Setup K8s components
###########... | ---
#####################
# Install Python
#####################
- hosts: all
gather_facts: false # As Python is not yet installed, we cannot gather host facts
tasks:
- name: Install Python
raw: "apt-get -y -q install python"
become: true
retries: 10
delay: 20
# If you run this p... | Add retry to install python, in case the playbook is run immediately after Terraform, when sshd is not yet ready to respond | Add retry to install python, in case the playbook is run immediately after Terraform, when sshd is not yet ready to respond
| YAML | mit | nicusX/k8s-terraform-ansible-sample |
7e041f5355ea02b7c4e099707d0adc584d484500 | .travis.yml | .travis.yml | sudo: required
language: go
go: 1.9.x
services:
- docker
before_install:
- rvm install 2.4.2
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- sudo apt update
- s... | sudo: required
language: go
go: 1.9.x
services:
- docker
before_install:
- rvm install 2.4.2
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- sudo apt update
- s... | Add sleep command to attempt to resolve the issue with vuln wp containers | Add sleep command to attempt to resolve the issue with vuln wp containers
| YAML | mit | l50/mass-wpscan,l50/mass-wpscan |
d54a4a60ec82ceae450eee366b229e28e7038927 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 1.9.2
- ruby-head
env:
- "CHEF_VERSION=11.4.0"
- "CHEF_VERSION=10.24.0"
- "CHEF_VERSION=0.10.10"
- "CHEF_VERSION=0.9.18"
- "CHEF_VERSION=0.8.16"
- "CHEF_VERSION=0.7.16"
matrix:
allow_failures:
- rvm: ruby-head
| language: ruby
rvm:
- 1.9.3
- 1.9.2
- ruby-head
env:
- "CHEF_VERSION=11.4.0"
- "CHEF_VERSION=10.24.0"
- "CHEF_VERSION=0.10.10"
- "CHEF_VERSION=0.9.18"
matrix:
allow_failures:
- rvm: ruby-head
| Revert "How far in Chef versions can we go?" | Revert "How far in Chef versions can we go?"
This reverts commit 898c66ade87d381b65259321f53d333397777c1a.
| YAML | mit | fnichol/searchef |
d840cb9840610bad26364758e2e1bc111f0caac8 | .circleci/web-values.yaml | .circleci/web-values.yaml |
fullnameOverride: "web"
replicaCount: 3
service:
port: 3000
containers:
- name: web
image: cyberdojo/web
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 200m
memory: 256Mi
#livenessProbe:
# path: /alive?
# port: 3000
#readinessProbe... |
fullnameOverride: "web"
replicaCount: 3
service:
port: 3000
containers:
- name: web
image: cyberdojo/web
securityContext:
runAsUser: 65534 # nobody
fsGroup: 65534 # nobody
allowPrivilegeEscalation: false
resources:
requests:
cpu: 100m
memory: 128Mi
limit... | Add explicit k8s securityContext entries | Add explicit k8s securityContext entries
| YAML | bsd-2-clause | cyber-dojo/web,cyber-dojo/web,cyber-dojo/web,cyber-dojo/web |
cf21ac8e1f68461b8ead51874f77c2f3c62a4ca5 | .travis.yml | .travis.yml | ---
sudo: false
before_script:
- git clone https://github.com/exercism/problem-specifications.git
- bin/fetch-configlet
- docker pull rakudo-star:latest
script:
- bin/configlet lint .
- docker run -e EXERCISM=1 -t -v $PWD:/exercism rakudo-star prove /exercism -re perl6
| ---
sudo: false
before_script:
- git clone https://github.com/exercism/problem-specifications.git
- bin/fetch-configlet
- docker pull rakudo-star:latest
script:
- bin/configlet lint .
- docker run
--env EXERCISM=1
--volume $PWD:/exercism
rakudo-star prove /exercism
--exec perl6
--recurse
... | Use parallel jobs with prove | Use parallel jobs with prove
| YAML | mit | mienaikage/exercism-perl6,mienaikage/exercism-perl6,exercism/xperl6,mienaikage/xperl6,mienaikage/exercism-perl6,mienaikage/xperl6,exercism/xperl6,exercism/xperl6,mienaikage/xperl6 |
cdd0db49b33eacede2c5a2853cc905f159540bb2 | .travis.yml | .travis.yml | language: go
os:
- linux
- osx
go:
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- tip
notifications:
email:
on_success: change
on_failure: always
| language: go
os:
- linux
- osx
go:
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- 1.8
- tip
notifications:
email:
on_success: change
on_failure: always
| Test Go 1.8 with Travis | Test Go 1.8 with Travis
| YAML | agpl-3.0 | muesli/beehive,muesli/beehive |
ea753a93b2c9563005b84c8762803c48c1cbd29e | .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=default-ubuntu-1404
- INSTANCE=defau... | 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=default-debian-8
- INSTANCE=default-... | Test Debian 8/9 and Ubuntu 18.04 in Travis | Test Debian 8/9 and Ubuntu 18.04 in Travis
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef-cookbooks/gems,opscode-cookbooks/gems,chef-cookbooks/gems,opscode-cookbooks/gems |
822e8a9d13cfbb7c9be0d91dd6cd35b6d9e799a6 | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
| language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
| Allow ruby-head to fail (at least until Travis fixes it) | Allow ruby-head to fail (at least until Travis fixes it)
| YAML | mit | abevoelker/nomen |
0ecd55e79c00bbc6045ba7ab3e17dfb8588d515b | .travis.yml | .travis.yml | language: python
sudo: required
branches:
only:
- master
services:
- docker
install:
- docker pull jvarho/pylibscrypt
script:
- docker run -v ${PWD}:/app jvarho/pylibscrypt
| language: python
sudo: required
branches:
only:
- master
services:
- docker
install:
- docker pull jvarho/pylibscrypt
- pip install coveralls
script:
- docker run -v ${PWD}:/app jvarho/pylibscrypt
after_success:
- sed -i "s@/app@$TRAVIS_BUILD_DIR@g" .coverage
- coveralls
| Add coveralls integration now that all implementations are tested | Add coveralls integration now that all implementations are tested
| YAML | isc | jvarho/pylibscrypt,jvarho/pylibscrypt |
5775b46e023eecf7b5b7248760c0f7d0d1db3053 | .github/workflows/ci.yaml | .github/workflows/ci.yaml | name: Build and publish to ECR
on:
workflow_dispatch:
branches:
- main
push:
branches:
- main
paths-ignore:
- "Jenkinsfile"
- ".git**"
jobs:
build-publish-image-to-ecr:
uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main
secrets:
AWS_GOVUK_ECR... | name: CI
on:
workflow_dispatch:
branches:
- main
push:
branches:
- main
paths-ignore:
- "Jenkinsfile"
- ".git**"
jobs:
build-and-publish-image:
name: Build and publish image
uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main
secrets:
AWS_... | Update CI workflow to trigger deploy to integration | Update CI workflow to trigger deploy to integration
This adds an additional job to the CI workflow to run a reusable
workflow that writes the newly built image tag to helm charts file.
This triggers ArgoCD to deploy the integration.
| YAML | mit | alphagov/publishing-api,alphagov/publishing-api |
8f003dcb7058b1b6ce9e44266a0c29030c4509ef | .github/workflows/ci.yaml | .github/workflows/ci.yaml | name: Tests
on:
- push
- pull_request
env:
GOPATH: ${{ github.workspace }}/go
jobs:
test-and-verify:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- uses: actions/checkout@v2
with:
path: ${{ en... | name: Tests
on:
- push
- pull_request
env:
GOPATH: ${{ github.workspace }}/go
jobs:
test-and-verify:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17.5
- uses: actions/checkout@v2
with:
path: ${{ ... | Update github unittest checks to use go1.17 | Update github unittest checks to use go1.17
CA no longer compiles on go1.16.
| YAML | apache-2.0 | mmerrill3/autoscaler,kubernetes/autoscaler,mmerrill3/autoscaler,kubernetes/autoscaler,mmerrill3/autoscaler,kubernetes/autoscaler,kubernetes/autoscaler,mmerrill3/autoscaler |
9b4e3ce2dbf848305537b13da80f72a7346047ee | .travis.yml | .travis.yml | language: node_js
node_js:
- 7
- 8
cache:
directories:
- node_modules
- public/components
before_install:
- npm i -g bower codecov istanbul
install:
- yarn
- bower install
script:
- istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec
- codecov
- yarn run posttest
notif... | language: node_js
node_js:
- 6
- 7
- 8
cache:
directories:
- node_modules
- public/components
before_install:
- npm i -g bower codecov istanbul
install:
- yarn
- bower install
script:
- istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec
- codecov
- yarn run posttest... | Update config of Travis CI | Update config of Travis CI
| YAML | mit | osk2/gogo-cash-rebate,osk2/gogo-cash-back,osk2/gogo-cash-rebate |
1c0a571091e00d18dbb585649ee937ca986c3bbb | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
before_install:
- pip install codecov
- pip install pytest-cov
install:
- "pip install -r requirements.txt"
script:
- "py.test -v --cov"
after_success:
- codecov
| language: python
python:
- "2.6"
- "2.7"
before_install:
- pip install codecov
- pip install pytest-cov
- pip install pytest-pep8
install:
- "pip install -r requirements.txt"
script:
- "py.test -v --cov --pep8"
after_success:
- codecov
| Add pep8 check with py.test | Add pep8 check with py.test
| YAML | apache-2.0 | criteo/netcompare,cpaillet/netcompare |
bd4b6e184e005e193b3c5a49d5dacfb8486ddbae | .travis.yml | .travis.yml | language: java
sudo: false
dist: trusty
addons:
apt:
packages:
- oracle-java8-installer # Travis is running v8u31 which exposes problems with instrumentation of invokedynamic call sites.
- oracle-java9-installer # JDK 9 is not currently installed by default.
branches:
only:
- master
matrix:
... | language: java
sudo: false
branches:
only:
- master
matrix:
include:
- jdk: openjdk6
- jdk: oraclejdk7
env: TARGET=-Pjava7 -Pintegration
- jdk: oraclejdk8
env: TARGET=-Pjava8 -Pintegration
#- jdk: oraclejdk9
# env: TARGET=-Pjava9 # Findbugs cannot currently process Java 9
in... | Remove Java 9 build for now. | Remove Java 9 build for now.
| YAML | apache-2.0 | DALDEI/byte-buddy,raphw/byte-buddy,CodingFabian/byte-buddy,raphw/byte-buddy,raphw/byte-buddy |
566dd92b7d9b858bba37a339c32f51eb0b522132 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- "6"
sudo: false
dist: trusty
addons:
chrome: stable
cache:
yarn: true
env:
global:
# See https://git.io/vdao3 for details.
- JOBS=1
matrix:
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
- EMBER_... | ---
language: node_js
node_js:
- "6"
sudo: false
dist: trusty
addons:
chrome: stable
cache:
yarn: true
env:
global:
# See https://git.io/vdao3 for details.
- JOBS=1
matrix:
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
- EMBER_... | Allow ember-beta to fail tests | Allow ember-beta to fail tests
Until a new version of ember-tether is published this test is going to
continue failing so let's ignore that failure for now
| YAML | mit | ilios/common,ilios/common |
235a0d5e8b42b65c3446ec0a1cbf8dcdfbf19161 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer install -n --dev --prefer-source
script: vendor/bin/phpcs --standard=PSR2 src && vendor/bin/phpunit --coverage-text
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer install -n --dev --prefer-source
script: vendor/bin/phpcs --standard=PSR2 src && vendor/bin/phpunit --coverage-text
| Add PHP 7.1 to the automated tests. | Add PHP 7.1 to the automated tests.
| YAML | mit | thephpleague/omnipay-authorizenet,academe/omnipay-authorizenet |
e29cfa54555874eba0269d0f60a1ab1f129e8b1a | .travis.yml | .travis.yml | dist: trusty
language: python
python: 2.7
cache:
- apt
- pip
- directories:
- ~/ediscovery-files
# These files are huge!
before_cache:
- rm -rf ~/ediscovery-files/.git
- rm -rf ~/ediscovery-files/assets/scale/randomTextDataZip
addons:
apt:
sources:
- sourceline: 'ppa:libreoffice/ppa'
pa... | dist: trusty
language: python
python: 2.7
cache:
- apt
- pip
- directories:
- ~/ediscovery-files
# These files are huge!
before_cache:
- rm -rf ~/ediscovery-files/.git
- rm -rf ~/ediscovery-files/assets/scale/randomTextDataZip
addons:
apt:
sources:
- sourceline: 'ppa:libreoffice/ppa'
pa... | Make sure pip and Co. are up-to-date. | Make sure pip and Co. are up-to-date.
| YAML | mit | alephdata/ingestors |
d42e881f72e0e7e32c8379bdc5aa8f320e691b9e | .travis.yml | .travis.yml | language: node_js
node_js:
- v7
- v6
after_script:
- 'npm run coveralls'
| language: node_js
node_js:
- v8
- v7
- v6
after_script:
- 'npm run coveralls'
| Test with Node 8 on Travis | Test with Node 8 on Travis
| YAML | mit | foxbenjaminfox/vue-async-computed |
e2bd14d4d842c63cf9f670af9e4d5122aa493cdd | .travis.yml | .travis.yml | language: android
jdk:
- oraclejdk8
android:
components:
- tools
- platform-tools
- tools
- build-tools-25.0.2
- android-25
- extra-android-m2repository
- sys-img-armeabi-v7a-android-18
licenses:
- 'android-sdk-license-.+'
before_script:
- echo no | android create avd --force -n ... | language: android
jdk:
- oraclejdk8
android:
components:
- tools
- platform-tools
- tools
- build-tools-25.0.2
- android-25
- extra-android-m2repository
licenses:
- 'android-sdk-license-.+'
before_script:
- echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
... | Change emulator version to 22. | Change emulator version to 22.
| YAML | apache-2.0 | kubode/Wiggle |
ae37b354d726b77a054921b40c0505d1614ae30a | .travis.yml | .travis.yml | language: ruby
env:
- ARUBA_TIMEOUT=240
before_install:
- gem update --system
- gem update bundler
- gem cleanup bundler
cache: bundler
rvm:
- 2.1.5
- 2.2.4
- 2.3.0
- jruby-19mode
branches:
only:
- master
install:
- "travis_retry bundle install --jobs 8"
gemfile:
- gemfiles/rails3.2.gemfile
... | language: ruby
env:
- ARUBA_TIMEOUT=240
before_install:
- gem update --system
- gem update bundler
- gem cleanup bundler
cache: bundler
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
branches:
only:
- master
install:
- "bundle install --retry 3 --jobs 8"
gemfile:
- gemfiles/rails3.2.gemfile
- gemfiles... | Drop jruby & add modern Rubies to Travis config | Drop jruby & add modern Rubies to Travis config
| YAML | mit | thoughtbot/factory_girl_rails,thoughtbot/factory_girl_rails |
2d8c4263ae589dbe33873d6f64605344e486e524 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
# Use container based infrastructure
sudo: false
python:
- 2.6
- 2.7
- 3.3
- 3.4
env:
matrix:
- DJANGO=1.4 CMD=./test
- DJANGO=1.5 CMD=./test
- DJANGO=1.6 CMD=./test
- DJANGO=1.7 CMD=./test
matrix:
allow_failures:
- pytho... | # Config file for automatic testing at travis-ci.org
language: python
# Use container based infrastructure
sudo: false
python:
- 2.6
- 2.7
- 3.3
- 3.4
env:
matrix:
- DJANGO=1.6 CMD=./test
- DJANGO=1.7 CMD=./test
matrix:
allow_failures:
- python: 3.3
- python: 3.4
- env: CMD="flake8 aldr... | Remove testing for Django 1.5, 1.5 | Remove testing for Django 1.5, 1.5
| YAML | bsd-3-clause | mkoistinen/aldryn-newsblog,czpython/aldryn-newsblog,czpython/aldryn-newsblog,mkoistinen/aldryn-newsblog,mkoistinen/aldryn-newsblog,czpython/aldryn-newsblog,czpython/aldryn-newsblog |
059cfddeb04adbca9ee229fff9e3b9302ac083c5 | .travis.yml | .travis.yml | language: objective-c
before_install:
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
- brew update
- brew uninstall xctool && brew install xctool
install:
- pushd objc/VotingInformationProject && pod install
- cp VotingInformationProject/CivicAPIKey.plist.template VotingInformation... | language: objective-c
before_install:
# Cocoapods expects UTF-8 terminal and throws warning
- export LANG=en_US.UTF-8
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
- brew update
# Faster than uninstall + install
- brew upgrade xctool
install:
- pushd objc/VotingInformatio... | Update xctool args to clean+build+test | Update xctool args to clean+build+test
Something in build #184 broke the travis CI with 'simulator
failed to start errors. Likely the Localizable.strings update.
Updating the xctool flags and forcing a clean/build/test cycle
seemed to fix the issue.
| YAML | bsd-3-clause | votinginfoproject/ios7-white-label-app,votinginfoproject/ios7-white-label-app |
11f082ee41e83b6a01ac519aa190bdd59a90e8ce | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.2
- 2.2.1
- 2.2.0
- 2.1.6
| language: ruby
rvm:
- 2.3.0
- 2.2.4
- 2.1.8
| Update ruby versions for Travis CI | Update ruby versions for Travis CI
| YAML | mit | rhynix/allowing |
b032147387782b81a63c5c0b97f63668d27800dd | .travis.yml | .travis.yml | language: python
python:
- '2.7'
- '3.3'
- '3.4'
env:
global:
- DB=postgres
matrix:
- DJANGO=1.6.5
install:
- pip install -q coveralls coverage flake8 Django==$DJANGO
before_script:
- psql -c 'CREATE DATABASE {{ project_name }};' -U postgres
script:
- flake8 .
- coverage run setup.py test
- ... | language: python
python:
- '2.7'
- '3.3'
- '3.4'
env:
global:
- DB=postgres
matrix:
- DJANGO=1.6.5
install:
- pip install -q coveralls coverage flake8 Django==$DJANGO
- pip install -r requirements/docs.txt
before_script:
- psql -c 'CREATE DATABASE {{ project_name }};' -U postgres
script:
- fla... | Build docs as part of CI | Build docs as part of CI | YAML | mit | ambitioninc/django-app-template |
a06ec8c19a440005f887cd9db9190b0de002dd28 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
notifications:
email: false
| language: node_js
node_js:
- '0.11'
notifications:
email: false
deploy:
provider: npm
email: wayne.graham@virginia.edu
api_key:
secure: EqXvpuo2H5o4GnS/UbeweWwGe6D3XVAfKxkA2mET1dL9UhuTH15gB2mPVbqkzbxrWceD0qPpmvcLnLmuPJXTTCjJtEVFPvoN3gagj47N3gdccaWkzWQFtihyex6WSw7g+1CxHmZbZfzf4KuMv58RPkCyk7U3O4fNwejw4oS/rUmp... | Automate npm deployments on tags | Automate npm deployments on tags
| YAML | mit | waynegraham/hubot-memes |
14f83effabd2d5fbec15a86be8a3863265e8d41c | .travis.yml | .travis.yml | language: python
python: "2.7"
script:
- "python setup.py test"
after_script:
- sudo apt-get update -qq
- sudo apt-get install -yy ansible
- config/deploy
notifications:
irc: "irc.freenode.org#takeyourmeds"
| language: python
python: "2.7"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y ansible
script:
- "python setup.py test"
after_script:
- config/deploy
notifications:
irc: "irc.freenode.org#takeyourmeds"
| Put these earlier - for caching? | Put these earlier - for caching?
| YAML | mit | takeyourmeds/takeyourmeds-web,takeyourmeds/takeyourmeds-web,takeyourmeds/takeyourmeds-web,takeyourmeds/takeyourmeds-web |
7de2417c9a99990d7b53e429e7113aa3feda46b2 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- jruby
before_script:
- "pushd ruby && gem install bundler && bundle && popd"
script: "make travis"
notifications:
email:
- cukes-devs@googlegroups.com
irc:
- "irc.freenode.org#cucumber"
| rvm:
- 1.9.3
- jruby
before_script:
- "pushd ruby && gem install bundler && bundle && popd"
script: "make travis"
branches:
only:
- master
- /^issue.*$/
- /^fix.*$/
notifications:
email:
- cukes-devs@googlegroups.com
irc:
- "irc.freenode.org#cucumber"
| Build issue and fix branches | Build issue and fix branches
| YAML | mit | cucumber/bool,cucumber/bool,cucumber/bool,cucumber/bool,cucumber/bool,cucumber/bool |
c014a64b116096039999d4e3e5d8d72232589f72 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 7.1
- 7.2
env:
global:
- coverage=no
matrix:
- setup=basic
- setup=lowest
- setup=stable
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-d... | language: php
sudo: false
php:
- 7.1
- 7.2
- 7.3
- nightly
env:
global:
- coverage=no
matrix:
- setup=basic
- setup=lowest
- setup=stable
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry compose... | Update test to run against php 7.3 and nightly | Update test to run against php 7.3 and nightly
Signed-off-by: Mior Muhammad Zaki <e1a543840a942eb68427510a8a483282a7bfeddf@gmail.com>
| YAML | mit | laravie/html |
f5d94963e4caa7bc785ef94a2719c8394f8f0393 | .travis.yml | .travis.yml | language: erlang
env:
- LUAROCKS_VERSION="2.1.2"
branches:
only:
- master
install:
- sudo apt-get install npm
- sudo npm update npm -g
- sudo npm config set registry http://registry.npmjs.org/
- sudo npm install -g docco
- sudo apt-get install lua5.2
- sudo apt-get install lua5.2-dev
- wget htt... | language: erlang
env:
- LUAROCKS_VERSION="2.1.2"
- PATH=${PATH}:${HOME}/bin
branches:
only:
- master
install:
- sudo apt-get install npm
- sudo npm update npm -g
- sudo npm config set registry http://registry.npmjs.org/
- sudo npm install -g docco
- sudo apt-get install lua5.2
- sudo apt-get in... | Add /home/alinard/bin to path for Travis. | Add /home/alinard/bin to path for Travis.
| YAML | mit | CosyVerif/library,CosyVerif/library,CosyVerif/library |
c2ab5f2bbf57484a3761023061222e6b96b6eca5 | .travis.yml | .travis.yml | language: c
sudo: false
services:
- docker
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-docker.sh
script: bash ./.travis-docker.sh
env:
global:
- PACKAGE=pkcs11
- DISTRO=debian-stable
matrix:
- OCAML_VERSION=4.02.3
- OCAML_VERSION=4.03.0
- OCAML_... | language: c
sudo: false
services:
- docker
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-docker.sh
script: bash ./.travis-docker.sh
env:
global:
- PACKAGE=pkcs11
- DISTRO=debian-stable
matrix:
- OCAML_VERSION=4.02.3
- OCAML_VERSION=4.03.0
- OCAML_... | Add a CI job on Alpine | Add a CI job on Alpine
| YAML | bsd-2-clause | cryptosense/pkcs11 |
61772e71c0caefeae40b067a82b592628e151553 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| Build with Node.js 10 on Travis CI. | Build with Node.js 10 on Travis CI.
| YAML | mit | bigeasy/turnstile |
ae96a0b23bfa809a2bfa25d49c7244ce8b781e7f | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.7
- 2.3.1
# User container based travis infrastructure which allows caching
# features for open source projects.
sudo: false
cache:
bundler: true
directories:
- node_modules
env:
- PAGEFLOW_RAILS_VERSION=4.2.6 PUBLISH_THEME_DOC=true COVERALLS_PARALLEL=true
services:
- redis-... | language: ruby
rvm:
- 2.1.7
- 2.3.1
# User container based travis infrastructure which allows caching
# features for open source projects.
sudo: false
cache:
bundler: true
directories:
- node_modules
env:
- PAGEFLOW_RAILS_VERSION=4.2.6 PUBLISH_THEME_DOC=true COVERALLS_PARALLEL=true
services:
- redis-... | Fix dummy app generation on Travis for Rubygems 2.7 | Fix dummy app generation on Travis for Rubygems 2.7
Calling `bundle exec` from a ruby script after Bundler has been set up
fails for vendored Bundler version that comes with Rubygems 2.7.
https://github.com/rubygems/rubygems/issues/2055
`rake pageflow:dummy` invokes `bundle exec rails new`. Calling `rake`
via `bun... | YAML | mit | tf/pageflow,codevise/pageflow,codevise/pageflow,Modularfield/pageflow,Modularfield/pageflow,codevise/pageflow,codevise/pageflow,Modularfield/pageflow,tf/pageflow,Modularfield/pageflow,tf/pageflow,tf/pageflow |
a81b45dd5ac17e90104f6ecc6727459902dfa790 | .travis.yml | .travis.yml | language: python
matrix:
include:
- python: 3.3
- python: 3.4
- python: 3.5
- python: 3.5-dev
- python: nightly
allow_failures:
- python: 3.3
fast_finish: true
install: python setup.py install
services: rabbitmq
before_script:
- pushd test_project
- celery -A cosmic_ray.tasks.worker ... | language: python
matrix:
include:
- python: 3.4
- python: 3.5
- python: 3.5-dev
- python: nightly
fast_finish: true
install: python setup.py install
services: rabbitmq
before_script:
- pushd test_project
- celery -A cosmic_ray.tasks.worker worker &
- popd
script:
- py.test cosmic_ray/te... | Remove Python 3.3 from test matrix | Remove Python 3.3 from test matrix
`cosmic_ray/importing.py` makes use of
`importlib.machinery.ModuleSpec` which was introduced in 3.4 and
we don't want to backport and support that for now.
| YAML | mit | sixty-north/cosmic-ray |
69e15b6ae6326692a411e13ff0ffc2334fffdcdd | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
after_success:
- npm install -g codeclimate-test-reporter lcov-result-merger
- lcov-result-merger 'coverage/*.info' coverage.info
- codeclimate-test-reporter < coverage.info
services:
- mongodb
addons:
code_climate:
repo_token: 456ad90bfb6a7127443d64b5100c75db696e93... | language: node_js
node_js:
- "7"
script:
- npm run test-client && npm run test-server
after_success:
- npm install -g codeclimate-test-reporter lcov-result-merger
- lcov-result-merger 'coverage/*.info' coverage.info
- codeclimate-test-reporter < coverage.info
services:
- mongodb
addons:
code_climate... | Remove spec cleanup from Travis-CI build | Remove spec cleanup from Travis-CI build | YAML | mit | kylekatarnls/momentum,kylekatarnls/momentum |
284bc287638253ece54a3042302ed2d71bf2c58d | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3 | language: ruby
rvm:
- 1.9.2
- 1.9.3
notifications:
email:
recipients:
- mwilson@majorleaguegaming.com
| Stop spamming the mailing list :). | Stop spamming the mailing list :). | YAML | mit | agoragames/oembedr,llxff/oembedr |
8b8062a38d4af77458220e82deecb680052f8f79 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- npm update -g npm
- npm install -g bob --loglevel error
script: "bob build"
| language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| Add coveralls report to CI run. | Add coveralls report to CI run.
| YAML | mit | cliffano/bagofrequest |
fba176e250661c5dcee01f16b81e8e8ee333a19e | .travis.yml | .travis.yml | # Currently fails on JRuby, partly due to Nokogiri behaving differently,
# and partly for some other reason I'm not sure about regarding
# Hexp::Node::Normalize
language: ruby
script: "bundle exec rspec"
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1
- rbx
- jruby
- jruby-head
- ruby-head
matrix... | # Currently fails on JRuby, partly due to Nokogiri behaving differently,
# and partly for some other reason I'm not sure about regarding
# Hexp::Node::Normalize
language: ruby
script: "bundle exec rspec"
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1
- rbx
- jruby
- jruby-head
- ruby-head
matrix... | Allow rbx to fail on Travis | Allow rbx to fail on Travis
| YAML | mit | plexus/hexp |
a3f3da4aa945fba096ac7780b9124f8de0fd6e26 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
before_install:
# install GCC v4.8 with better C++11 support, required to build Brotli extension
# See: https://github.com/travis-ci/travis-ci/issues/1379
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get -qq updat... | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
# - "pypy3" # Disable pypy3 until Travis updates it to >= 3.3
before_install:
# install GCC v4.8 with better C++11 support, required to build Brotli extension
# See: https://github.com/travis-ci/travis-ci/issues/1379
- sudo add-apt-repository -y ppa... | Disable pypy3 until Travis updates it to >= 3.3 | [Travis] Disable pypy3 until Travis updates it to >= 3.3
| YAML | mit | googlefonts/fonttools,fonttools/fonttools |
a395bb09df89e6bfce48ac95eed275aeeb650055 | .travis.yml | .travis.yml | language: perl
services:
- docker
env:
global:
- ES="localhost:9200"
sudo: false
matrix:
fast_finish: true
include:
- perl: dev
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
- perl: 5.30
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
- perl: 5.28
env: CLIENT_VER="6_0" ES_VERSION="6.0.... | language: perl
services:
- docker
env:
global:
- ES="localhost:9200"
sudo: false
matrix:
fast_finish: true
include:
- perl: dev
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
- perl: 5.30
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
- perl: 5.28
env: CLIENT_VER="6_0" ES_VERSION="6.0.... | Use of dzil test command | Use of dzil test command
| YAML | apache-2.0 | elastic/elasticsearch-perl,elastic/elasticsearch-perl |
ebf3a5744668b270106756147abc147050b876ac | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.0.0"
- "2.1.0"
addons:
code_climate:
repo_token: "3fa15641f89d7fce5dde29b03abaa3a07225b6f1509b3046cdbf4c64e22619f4"
| language: ruby
rvm:
- "2.0.0"
- "2.1.0"
- "2.1.1"
- "2.1.2"
- "2.1.3"
- "2.1.4"
- "2.1.5"
addons:
code_climate:
repo_token: "3fa15641f89d7fce5dde29b03abaa3a07225b6f1509b3046cdbf4c64e22619f4"
| Add coverage for all ruby 2.1.x's | [dependencies] Add coverage for all ruby 2.1.x's
| YAML | mit | jedcn/reveal-ck,jedcn/reveal-ck,jedcn/reveal-ck |
6d525c528f9a187672344b26852d4e49f0d368f6 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without extras
script:
- bundle
- rake appraisal:install
- rake appraisal
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode
- rbx-19mode
gemfile:
- gemfiles/activerecord-3.0.gemfile
- gemfiles/activerecord-3.1.gemfile
- gemfiles/activerecord-master.gemfile
matrix:
allow_failures:
... | language: ruby
bundler_args: --without extras
script:
- bundle
- rake appraisal:install
- rake appraisal
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode
- rbx-19mode
gemfile:
- gemfiles/activerecord-3.0.gemfile
- gemfiles/activerecord-3.1.gemfile
- gemfiles/activerecord-3.2.gemfile
matrix:
allow_failures:
... | Fix gemfiles in Travis config | Fix gemfiles in Travis config
| YAML | mit | gizmore/validate_as_email,mariochavez/validate_as_email,jcf/validate_as_email,lmars/validate_as_email,jcf/validate_as_email,change/validate_as_email |
1a4b996da01260fcbc700f6dd854a37257c159b5 | .travis.yml | .travis.yml | # .travis.yml
# Build Options
language: ruby
rvm:
- 2.3.3
gemfile:
- gemfiles/rails_5_0.gemfile
before_script:
- cp .rspec.example .rspec
script:
- bundle exec appraisal thor ci:steps
# Travis-CI Configuration
cache: bundler
sudo: false # Enable containerized builds.
| # .travis.yml
# Build Options
language: ruby
rvm:
- 2.3.3
gemfile:
- gemfiles/rails_5_0.gemfile
before_script:
- cp .rspec.example .rspec
script:
- bundle exec thor ci:steps
# Travis-CI Configuration
cache: bundler
sudo: false # Enable containerized builds.
| Remove Appraisal dependency in CI environment. | Remove Appraisal dependency in CI environment.
| YAML | mit | sleepingkingstudios/bronze-rails |
784b61878dfddd44e6ba2e72cad84cca3abfc4fa | .travis.yml | .travis.yml | sudo: required
services:
- docker
cache:
directories:
- $HOME/.m2
dist: trusty
language: java
before_install:
- nvm install 9.5.0
addons:
chrome: stable
hosts:
- dataflow.local
jdk:
- oraclejdk8
install: true
script:
- '[ "${TRAVIS_PULL_REQUEST}" != "false" ] || ./mvnw package'
- '[ "${TRAVIS_PU... | sudo: required
services:
- docker
cache:
directories:
- $HOME/.m2
dist: trusty
language: java
before_install:
- nvm install 9.5.0
addons:
chrome: stable
hosts:
- dataflow.local
jdk:
- oraclejdk8
install: true
script:
- '[ "${TRAVIS_PULL_REQUEST}" != "false" ] || ./mvnw package'
- '[ "${TRAVIS_PU... | Disable Unit tests saucelabs + browserstack | Disable Unit tests saucelabs + browserstack
| YAML | apache-2.0 | ghillert/spring-cloud-dataflow-ui,cppwfs/spring-cloud-dataflow-ui,spring-cloud/spring-cloud-dataflow-ui,cppwfs/spring-cloud-dataflow-ui,BoykoAlex/spring-cloud-dataflow-ui,BoykoAlex/spring-cloud-dataflow-ui,spring-cloud/spring-cloud-dataflow-ui,ghillert/spring-cloud-dataflow-ui,BoykoAlex/spring-cloud-dataflow-ui,ghiller... |
181aa25a00af3c30adb8d1f13058184a8d701ecd | examples/champion.yaml | examples/champion.yaml | initial_walls:
x: [29, 50]
y: [31]
z: [264]
intra_node_shape: [64,46,512]
monitor_interval: 32
mpi_grid_shape: [2,2,2]
temporal_blocking_interval: 8
option_strings: ['stick-single-comp', 'omp', 'omp-collapse', 'no-subroutine', 'nbux2']
| initial_walls:
x: [29, 50]
y: [31]
z: [264]
intra_node_shape: [64,46,512]
monitor_interval: 32
mpi_grid_shape: [2,2,2]
temporal_blocking_interval: 8
option_strings: ['stick-single-comp', 'omp', 'omp-collapse', 'no-subroutine', 'nbux2', 'bench-fine-collection', 'bench-fine-fapp']
| Set benchmark mode in C++ | Set benchmark mode in C++
| YAML | mit | nushio3/formura,nushio3/formura,nushio3/formura,nushio3/formura,nushio3/formura,nushio3/formura |
e630453acb7fd8f0e68e0e31075074bfcb36e0e3 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install:
- sudo apt-get update -qq
- sudo apt-get install gcc libffi-dev libldap2-dev libsasl2-dev libssl-dev python-dev
install:
# Build/test dependencies
- python setup.py install
script:
- python setup.py test
| language: python
python:
- '2.7'
before_install:
- sudo apt-get update -qq
- sudo apt-get install gcc libffi-dev libldap2-dev libsasl2-dev libssl-dev python-dev
install:
- python setup.py install
script:
- python setup.py test
deploy:
provider: pypi
user: opennode
password:
secure: K4nUGpELCyhmEvqVh7Q74W+9tOY... | Add a proof of concept pypi uploader | Add a proof of concept pypi uploader
| YAML | mit | opennode/nodeconductor,opennode/nodeconductor,opennode/nodeconductor |
7058205935cd9928d8467981da137080ec7fc7c6 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.8"
| language: node_js
node_js:
- "stable"
- "5"
- "4"
- "0.10"
| Update TravisCI to modern versions of Node.js | Update TravisCI to modern versions of Node.js
Also remove 0.8, as it's ancient.
| YAML | mit | felixge/node-dirty,felixge/node-dirty |
7dd6d95ec5d2c4d3741184c5ca4b9431f0952759 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.4
- hhvm
before_script:
- composer update --prefer-source
script:
- ./vendor/bin/phpcs --standard=./phpcs.xml -np --report=summary .
- phpunit
notifications:
irc: "irc.freenode.org#zftalk.modules"
| language: php
php:
- 5.4
- 5.5
- hhvm
before_script:
- composer update --prefer-source
script:
- ./vendor/bin/phpcs --standard=./phpcs.xml -np --report=summary .
- phpunit
notifications:
irc: "irc.freenode.org#zftalk.modules"
| Maintain sensible order of PHP versions | Fix: Maintain sensible order of PHP versions
| YAML | bsd-3-clause | PatidarWeb/modules.zendframework.com,ins0/modules.zendframework.com,vrkansagara/modules.zendframework.com,PatidarWeb/modules.zendframework.com,localheinz/modules.zendframework.com,nomaanp/modules.zendframework.com,zendframework/modules.zendframework.com,ins0/modules.zendframework.com,nomaanp/modules.zendframework.com,v... |
9e357fb1adecc24acf2bc41af4f655e3afc51e8e | .travis.yml | .travis.yml | language: node_js
env:
- CXX=g++-4.8
services:
- memcached
node_js:
- "4.0.0"
- "0.12"
- "0.11"
- "0.10"
- "iojs"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
sudo: false
before_script:
- npm install
script:
- NODE_ENV=production mocha -R spec test/spec/se... | language: node_js
env:
- CXX=g++-4.8
services:
- memcached
node_js:
- "5.x"
- "4.x"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
sudo: false
before_script:
- npm install
script:
- NODE_ENV=production mocha -R spec test/spec/server --recursive
after_script:
- ... | Build only on node 4.x and node 5.x | Build only on node 4.x and node 5.x
| YAML | mit | ripliveit/riplive.it,ripliveit/riplive.it |
59a80f278adc64945036cac08a74bfd64ce041dc | .travis.yml | .travis.yml | language: python
python:
- "3.6"
- "3.6-dev"
- "3.7"
- "3.7-dev"
- "3.8-dev"
- "nightly"
install:
- pip install pipenv
- pipenv install
script:
- python tests.py
- mypy parsenvy/parsenvy.py
| language: python
python:
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
install:
- pip install pipenv
- pipenv install
script:
- python tests.py
- mypy parsenvy/parsenvy.py
| Remove Python versions not yet supported by Travis | Remove Python versions not yet supported by Travis
| YAML | bsd-3-clause | nkantar/Parsenvy |
ae811c978dc7b18cdeb1e7c695a5dc930283b797 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
script:
- ant all | language: java
jdk:
- oraclejdk8
script:
- ant all
deploy:
provider: releases
api_key:
secure: OkS1oQ39WbXQMRDmKkC3VB4rWzyJdpmXRMMnGIpPc3CSvVS8WFroVs9mYXOqvD/y33bnzTY2p84roYLrYkr6C1G0v5gS7SfQVfhmV2/DiooBpaSB414VfBLftmRiVNs8M9nwXjLp7F84TOE9weJgbiu//J91FrKe0z5XH3ETFX5QbnkoTA38XHfVwaWeylERy+O7sKOcPbD6Jcxs4BrWHcQin... | Add automated publishing to github releases | Add automated publishing to github releases
| YAML | apache-2.0 | matt-richardson/teamcity-octopus-build-trigger-plugin,matt-richardson/teamcity-octopus-build-trigger-plugin |
dff84d6a20d4ab1cedaf96b2e43d25d425362f53 | .travis.yml | .travis.yml | language: python
python:
- '2.7'
before_install:
- sudo apt-get update -qq
- sudo apt-get install gcc libffi-dev libsasl2-dev libssl-dev python-dev
install:
- pip install --upgrade -e .
- python setup.py install
script:
- python setup.py test
deploy:
provider: pypi
user: opennode
distributions: "sdist bdist_wheel... | language: python
python:
- '2.7'
before_install:
- sudo apt-get update -qq
- sudo apt-get install gcc libffi-dev libsasl2-dev libssl-dev python-dev
install:
- pip install --upgrade -e .
- python setup.py install
script:
- python setup.py test
deploy:
provider: pypi
user: opennode
distributions: "sdist bdist_wheel... | Fix release branch for pypi | Fix release branch for pypi
| YAML | mit | opennode/nodeconductor,opennode/nodeconductor,opennode/nodeconductor |
e1ae5ad4c609afeeb137f1398d4b17bd50e517fc | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_script: make jshint | language: node_js
node_js:
- '0.10'
before_script: make jshint
deploy:
provider: npm
email: peter@twistedstream.com
api_key:
secure: l2yoeQUCu6ZGVPQ8m9HaAjLqfezAUyfv2Mdqulr4XGiwavNhlUYL0cS45s+6wzrfIW0t/GnZwJJ1XZDV8M+pydgSTkSh9UfQZbRf6H+j6HNFVWtP+VW//GNmObfOP5HuitsE1/gl8hM2CGy/MFZ7yGtW4oNmOvn6LyPyKo+qtJ4=
on... | Configure Travis to auto-deploy to npmjs.org | Configure Travis to auto-deploy to npmjs.org
| YAML | mit | twistedstream/singleton-process |
a887312728e698780c5be3ebe6f5f2cee9aecfa6 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- "sudo apt-get update"
- "sudo apt-get install python-numpy python-scipy"
# Fetch and install ASE
- "curl https://wiki.fysik.dtu.dk/ase-files/python-ase-3.8.1.3440.tar.gz | tar -zvx ; cd python-ase-3.8.1.3440 ; python setup.py install ; cd .."
- "python setup.py in... | language: python
python:
- "2.6"
- "2.7"
install:
- "sudo apt-get update"
- "sudo apt-get install python-numpy python-scipy"
# Fetch and install ASE
- "curl https://wiki.fysik.dtu.dk/ase-files/python-ase-3.8.1.3440.tar.gz | tar -zvx ; cd python-ase-3.8.1.3440 ; python setup.py install ; cd .."
- "python s... | Test on Python 2.6 as well as 2.7 | Test on Python 2.6 as well as 2.7
| YAML | lgpl-2.1 | libAtoms/matscipy,libAtoms/matscipy,libAtoms/matscipy,libAtoms/matscipy |
6abadbbd7e7abbdbc811b907b61cdb0dea0d111a | .travis.yml | .travis.yml | # Use Docker environment
sudo: false
# Setup build matrix
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm-nightly
# Special environments
matrix:
fast_finish: true
allow_failures:
- php: hhvm-nightly
include:
- php: 5.4
env: dependencies=lowest
# Dependencies
before_script:
- composer self-u... | # Use Docker environment
sudo: false
# Setup build matrix
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm-nightly
# Special environments
matrix:
fast_finish: true
include:
- php: 5.4
env: dependencies=lowest
# Dependencies
before_script:
- composer self-update
- travis_retry composer install --... | Remove allowed failures for HHVM | Remove allowed failures for HHVM
| YAML | mit | rocketeers/rocketeer |
d4bcb018a61964502a5e5f25107e3a722a90a122 | .travis.yml | .travis.yml | on:
tags: true
sudo: required
services:
- docker
before_install:
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USER" -p="$DOCKER_PASSWORD"
script:
- ALPINE_ID=$(docker build -t "carbonsrv/carbon:${TRAVIS_TAG:-latest}" -f Dockerfile . | tail -1 | sed 's/.*Successfully built \(.*\)$/\1/') # Build with Alpine
... | on:
tags: true
sudo: required
services:
- docker
before_install:
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USER" -p="$DOCKER_PASSWORD"
script:
- ALPINE_ID=$(docker build -t "carbonsrv/carbon:${TRAVIS_TAG:-latest}" -f Dockerfile . | tee /dev/stderr | tail -1 | sed 's/.*Successfully built \(.*\)$/\1/') # ... | Copy build output to stderr too, so you can see it. | Docker: Copy build output to stderr too, so you can see it.
| YAML | mit | carbonsrv/carbon,vifino/carbon,carbonsrv/carbon,vifino/carbon,carbonsrv/carbon,vifino/carbon |
109b874c83051de7337501540077c03ba756cc18 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction
script:
- if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then phpunit; fi
- if [ "$TRAVIS_PHP_VERSION" !... | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction
script:
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then phpuni... | Disable code coverage for PHP 7 | Disable code coverage for PHP 7 | YAML | mit | Lykegenes/laravel-datagrid-builder |
8682d06d958d9d0dba741db6b43ad563b515999a | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- rbx
gemfile:
- gemfiles/ar3.1.gemfile
- gemfiles/ar3.2.gemfile
- gemfiles/ar4.0.gemfile
- gemfiles/ar4.1.gemfile
- gemfiles/ar4.2.gemfile
- gemfiles/mongoid2.gemfile
- gemfiles/mongoid3.gemfile
- gemfiles/mongoid4.gemfile
- gemfiles/mongoid5.... | language: ruby
rvm:
- 2.1
- 2.2
- rbx
gemfile:
- gemfiles/ar3.1.gemfile
- gemfiles/ar3.2.gemfile
- gemfiles/ar4.0.gemfile
- gemfiles/ar4.1.gemfile
- gemfiles/ar4.2.gemfile
- gemfiles/mongoid2.gemfile
- gemfiles/mongoid3.gemfile
- gemfiles/mongoid4.gemfile
- gemfiles/mongoid5.gemfile
- gemfil... | Drop support for 1.9 and 2.0 | Drop support for 1.9 and 2.0
| YAML | mit | andriusch/blueprints_boy |
ce803370a80fb4da68586748496bf533d6cbf53a | .travis.yml | .travis.yml | language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
notifications:
email:
- mbj@seonic.net
... | language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
notifications:
irc: "irc.freenode.org#datamap... | Add IRC notification on successful builds | Add IRC notification on successful builds
| YAML | mit | sferik/devtools,mvz/devtools,zaidan/devtools,JonathonMA/devtools,backus/devtools,mbj/devtools |
4f610e18b3d88a238859e7f5081ea4487c2dac02 | .travis.yml | .travis.yml | language: python
python:
- 3.4
- 3.5
install:
- pip install --upgrade setuptools
- pip install coveralls
- pip install -r requirements.txt
script:
py.test --cov=aiohttp_jinja2 tests
after_success:
coveralls
env:
matrix:
- PYTHONASYNCIODEBUG=x
- PYTHONASYNCIODEBUG=
| language: python
python:
- 3.4
- 3.5
install:
- pip install --upgrade setuptools
- pip install coveralls
- pip install -r requirements-dev.txt
script:
py.test --cov=aiohttp_jinja2 tests
after_success:
coveralls
env:
matrix:
- PYTHONASYNCIODEBUG=x
- PYTHONASYNCIODEBUG=
| Fix error in requirements file name | Fix error in requirements file name
| YAML | apache-2.0 | aio-libs/aiohttp_jinja2 |
7360e13d62df72c046d76613f927e505ea37a900 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.2
script: script/cibuild
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
| language: ruby
rvm:
- 2.2.2
script: script/cibuild
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
sudo: false # migrate to container-based infrastructure
| Use container-based infrastructure for CI | Use container-based infrastructure for CI
| YAML | mit | alykhank/alykhank.github.io,alykhank/alykhank.github.io,alykhank/alykhank.github.io |
91c46fa7a939efe2d67175c7fddb1d44b44f0ab2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.0"
- "5.0"
- "6.0"
| language: node_js
node_js:
- "6.0"
- "7.0"
| Update node versions for koa2 syntax | Update node versions for koa2 syntax
| YAML | mit | dlau/koa-body |
3172f3f0850ac4a41ded4643f3f73c5d8b773dc0 | .travis.yml | .travis.yml | language: c
install:
- autoreconf --install
script:
- ./configure && make
| language: c
env:
global:
- MAKEFLAGS="-j 2"
install:
- autoreconf --install
script:
- ./configure && make
| Speed up the build, according to Travis | Speed up the build, according to Travis
| YAML | bsd-3-clause | dharple/detox,dharple/detox,dharple/detox |
2e43cad7801a0e0f4eff6fd263aa6ab3c5f1e408 | .travis.yml | .travis.yml | language: php
php:
- 7.1
branches:
only:
- master
cache:
directories:
- $HOME/.composer/cache/files
- tmp/components
before_script:
- composer install
script:
- ./bin/build
deploy:
provider: pages
skip_cleanup: true
local_dir: ./tmp/build
project_name: "ReactPHP Website"
fqdn: $DEP... | language: php
sudo: false
php:
- 7.1
branches:
only:
- master
cache:
directories:
- $HOME/.composer/cache/files
- tmp/components
before_script:
- composer install
script:
- ./bin/build
deploy:
provider: pages
skip_cleanup: true
local_dir: ./tmp/build
project_name: "ReactPHP Website"... | Add sudo:false to run on container infrastructure | Add sudo:false to run on container infrastructure
| YAML | mit | jsor-labs/website,jsor-labs/website |
bb78ad28cca72f0a5e1133da6dabb6847c5d7ea5 | .travis.yml | .travis.yml | language: go
script:
- go test -check.vv ./...
install:
- go get gopkg.in/check.v1
env:
global:
- secure: RsNugq1R2VlLqa8hZzcccagr+4D6fMeoxt2T7YK4nzSiFA3zkw0IwCDO9oMSuDHcVrmuPVUJIi8QUsGNOzp0uffuSNtc8RLIXRZuGbeb0v8joSSdYyDXB2O6RrW6gipmq8JGgBm4KOp+QFLw1VH4ilPfZ/gHsyMA171TVjicyAc=
| language: go
script:
- go test -v ./...
install:
- go get gopkg.in/check.v1
env:
global:
- secure: RsNugq1R2VlLqa8hZzcccagr+4D6fMeoxt2T7YK4nzSiFA3zkw0IwCDO9oMSuDHcVrmuPVUJIi8QUsGNOzp0uffuSNtc8RLIXRZuGbeb0v8joSSdYyDXB2O6RrW6gipmq8JGgBm4KOp+QFLw1VH4ilPfZ/gHsyMA171TVjicyAc=
| Remove -check.v flags from go test because it causes subpackages to be skipped | Remove -check.v flags from go test because it causes subpackages to be skipped
| YAML | apache-2.0 | tmlbl/oanda,santegoeds/oanda |
bed0477cb3b9064cf362b5e2a047b50304092f26 | .travis.yml | .travis.yml | sudo: false
language: node_js
os:
- osx
- linux
node_js:
- 8
- 10
after_success: npm run coverage
| sudo: false
language: node_js
os:
- osx
- linux
node_js:
- 8
- 10
after_success: npm run coverage
notifications:
email: false
| Disable email notifications from Travis | Disable email notifications from Travis
Ref Level/community#40 | YAML | mit | Level/level |
ed889d94865d22d4c8a87acf51a43cde94112601 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.5
- 2.2.0
- jruby
| language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.5
- 2.2.0
- jruby
| Enable tests to run on new (much faster) Travis architecture | Enable tests to run on new (much faster) Travis architecture
| YAML | mit | codebender/its_business_time,kantox/business_time,bokmann/business_time,bokmann/business_time |
2a53186223517ac05bdf9eeeae087e05acf138e0 | .travis.yml | .travis.yml | # This is necessary until https://github.com/travis-ci/travis-ci/issues/3120 is
# fixed
sudo: required
language: scala
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/scala-$TRAVIS_SCALA_VERSION
scala:
- 2.10.5
- 2.11.6
jdk:
- orac... | # This is necessary until https://github.com/travis-ci/travis-ci/issues/3120 is
# fixed
sudo: required
language: scala
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/scala-$TRAVIS_SCALA_VERSION
scala:
- 2.10.5
- 2.11.6
- 2.12.0-M1
... | Add 2.12.0-M1 testing to Travis | Add 2.12.0-M1 testing to Travis
| YAML | apache-2.0 | travisbrown/util,travisbrown/util,travisbrown/util,travisbrown/util |
fb6dce8c9fcdc164f704cf6400fcbd18323360b8 | .travis.yml | .travis.yml | language: php
addons:
apt:
packages:
- language-pack-nl
php:
- 5.6
- 7.0
- 7.1
branches:
only:
- master
install:
- composer install
- wget https://scrutinizer-ci.com/ocular.phar -O "$HOME/ocular.phar"
script:
- vendor/bin/phpunit --coverage-clover cache/logs/clover.xm... | language: php
addons:
apt:
packages:
- language-pack-nl
php:
- 7.0
- 7.1
branches:
only:
- master
install:
- composer install
- wget https://scrutinizer-ci.com/ocular.phar -O "$HOME/ocular.phar"
script:
- vendor/bin/phpunit --coverage-clover cache/logs/clover.xml
after... | Remove PHP 5.6 as Twig 2.x only supports ^7.0 | Remove PHP 5.6 as Twig 2.x only supports ^7.0 | YAML | mit | jasny/twig-extensions |
fe8a6fdd1cc8193898bd010884e13cfbd53e37cd | .travis.yml | .travis.yml | language: objective-c
cache: cocoapods
podfile: Example/Podfile
osx_image: xcode8
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- npm install ios-sim -g
script:
# OCSlimProject Example Acceptance Tests
- set -o pipefail && xcodebuild -workspace Example/OCSlimProject.xcworkspace ... | language: objective-c
cache: cocoapods
podfile: Example/Podfile
osx_image: xcode8
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- npm install ios-sim -g
- ios-sim start --devicetypeid iPhone-6s
script:
# OCSlimProject Example Acceptance Tests (iOS, macOS)
- set -o pipefail && xc... | Add all the xcodebuild steps to fully excercise and verify all mac,ios and pod setups | Add all the xcodebuild steps to fully excercise and verify all mac,ios and pod setups
| YAML | mit | paulstringer/OCSlimProject,paulstringer/OCSlimProject,paulstringer/OCSlimProject,ncoelle/Slim-iOS-TestRunner,ncoelle/Slim-iOS-TestRunner,ncoelle/Slim-iOS-TestRunner,paulstringer/OCSlimProject,ncoelle/Slim-iOS-TestRunner |
ea6b39bfa21fb990fbd4b4700478498eeae0944f | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
script: "npm run-script travis"
| language: node_js
node_js:
- "6"
- "8"
- "9"
script: "npm run-script travis"
| Drop node.js 4 support (semver-major) | Drop node.js 4 support (semver-major)
| YAML | bsd-3-clause | unexpectedjs/unexpected-messy |
229c820eb0721dcbaf79dfdc82fa8ef380a84b16 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3
- 2.4
- 2.5
addons:
apt:
packages:
- libqtwebkit-dev
- xvfb
code_climate:
repo_token:
secure: "cT2wvWS2Uk2trYGwZ38Qo9XWCeL+OOXH0lVmLfNb1Xy/tWAXycDdZsc9CN8igjhD+/cKvvh529/qdDm2PJnb1Hux1bxHSTuMuE2xQWlfJqaOR/IX0z96MbP1eITKjhGv9vccmIPdV3Rh/OQLeHkyqyHvXio9NXiARMJU... | language: ruby
rvm:
- 2.3
- 2.4
- 2.5
addons:
apt:
packages:
- libqtwebkit-dev
- xvfb
code_climate:
repo_token:
secure: "cT2wvWS2Uk2trYGwZ38Qo9XWCeL+OOXH0lVmLfNb1Xy/tWAXycDdZsc9CN8igjhD+/cKvvh529/qdDm2PJnb1Hux1bxHSTuMuE2xQWlfJqaOR/IX0z96MbP1eITKjhGv9vccmIPdV3Rh/OQLeHkyqyHvXio9NXiARMJU... | Use BLAST 2.6.0+ on Travis | Use BLAST 2.6.0+ on Travis
Signed-off-by: Anurag Priyam <6e6ab5ea9cb59fe7c35d2a1fc74443577eb60635@gmail.com>
| YAML | agpl-3.0 | yeban/sequenceserver,yeban/sequenceserver,yeban/sequenceserver,yeban/sequenceserver |
432f52a019785cc8820c84244ce1ba6aaa2c619a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 1.9.3
before_install:
- "mkdir ~/.gemcert && cd ~/.gemcert && gem cert --build test@example.com && cp gem-public_cert.pem $TRAVIS_BUILD_DIR/"
install: bundle install
script: rspec
| language: ruby
rvm:
- 2.0.0
- 1.9.3
before_install:
- "mkdir ~/.gemcert && cd ~/.gemcert && gem cert --build test@example.com && cp gem-public_cert.pem $TRAVIS_BUILD_DIR/"
- "cd $TRAVIS_BUILD_DIR"
install: bundle install
script: rspec
| Move back to the project directory | Move back to the project directory
| YAML | mit | collectiveidea/travis_bundle_cache |
0f578f747968b1d90d9b4b1e08c1c43ab82e3930 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- hhvm
sudo: required
before_install:
- printf "\n" | pecl install yaml-beta
- echo "extension = yaml.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
install:
- travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit
| language: php
php:
- 5.6
- 7.0
- hhvm
sudo: required
before_install:
- if [[ $TRAVIS_PHP_VERSION < 7.0 ]]; then printf "\n" | pecl install yaml; fi
- if [[ $TRAVIS_PHP_VERSION >= 7.0 ]]; then printf "\n" | pecl install yaml-beta; fi
install:
- travis_retry composer install --no-interaction --prefer-sour... | Install pecl yaml based on PHP version. | Install pecl yaml based on PHP version.
Still trial and error for HHVM.
| YAML | mit | samrap/gestalt |
9bb2ca73163a74a44d9df61b2bba882791a8b19a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.2
env:
global:
- CC_TEST_REPORTER_ID=9302884ead7bad6d1cc81026ba78b5cd8551024643cf14c72fe2d42eaaef36e6
before_install:
- gem update --system
- gem install bundler
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-... | language: ruby
rvm:
- 2.4.5
- 2.5.3
env:
global:
- CC_TEST_REPORTER_ID=9302884ead7bad6d1cc81026ba78b5cd8551024643cf14c72fe2d42eaaef36e6
before_install:
- gem update --system
- gem install bundler
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ... | Build for current Ruby versions | Build for current Ruby versions
| YAML | mit | padde/stateoscope,padde/stateoscope |
b030574c84c58bcebdc7749c31c96f31435910f8 | .travis.yml | .travis.yml | language: php
php:
- 5.5.9
- 5.5
- 5.6
- 7.0
- 7.1
env:
global:
- setup=basic
matrix:
include:
- php: 5.5.9
env: setup=lowest
- php: 5.5.9
env: setup=stable
sudo: false
install:
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source;... | language: php
php:
- 5.5.9
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
env:
global:
- setup=basic
matrix:
include:
- php: 5.5.9
env: setup=lowest
- php: 5.5.9
env: setup=stable
sudo: false
install:
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer... | Add PHP 7.2 to the Travis test matrix | Add PHP 7.2 to the Travis test matrix
| YAML | mit | JosephSilber/bouncer,grantholle/bouncer |
bcb89a3ccb30aebb72ef774ac2e5943cdb9e6d44 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
before_install:
- sudo apt-get update -qq
- sudo apt-get install -yqq libevent-dev
script: mkdir build && cd build && cmake .. && make && ./test/test
| language: cpp
compiler:
- gcc
before_install:
# We need GCC 4.8 for the unit tests
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
- sudo apt-get install -yqq g++-4.8 libevent-dev
- export CXX="g++-4.8"
script: mkdir build && cd build && cmake .. && make && ./... | Install GCC 4.8 for C++11 support in tests | Install GCC 4.8 for C++11 support in tests
Removes clang from the builds.
| YAML | mit | flandr/pproxy,flandr/pproxy,flandr/pproxy |
75108adcf1ac766899e3c5052a2e2f8146c46b9e | .travis.yml | .travis.yml | language: ruby
addons:
postgresql: "9.3"
rvm:
- '2.2.0'
before_install:
- sudo apt-get install -qq phantomjs
before_script:
- bundle exec rake db:test:prepare
notifications:
email: false
env:
| language: ruby
addons:
postgresql: "9.3"
rvm:
- '2.1.5'
before_install:
- sudo apt-get install -qq phantomjs
before_script:
- bundle exec rake db:test:prepare
notifications:
email: false
env:
| Use Ruby 2.1.5 for CI. | Use Ruby 2.1.5 for CI.
| YAML | mit | ministryofjustice/scs_performance,ministryofjustice/scs_performance,ministryofjustice/scs_performance,ministryofjustice/scs_performance |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.