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 |
|---|---|---|---|---|---|---|---|---|---|
d22d20bc4bb1ee75daea6b5cdb7517b3d28c5220 | .travis.yml | .travis.yml | language: node_js
sudo: required # requirement for postgres 9.5
dist: trusty
node_js:
- "6.10"
- "7.7"
services:
- postgresql
- redis-server
env:
- CXX=g++-4.8 NODE_ENV=development DB_ENV=travis
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- unicode-data
... | language: node_js
sudo: required # requirement for postgres 9.5
dist: yakkety
node_js:
- "6.10"
- "7.7"
services:
- postgresql
- redis-server
env:
- CXX=g++-4.8 NODE_ENV=development DB_ENV=travis
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- unicode-data
... | Use newer ubuntu for tests | Use newer ubuntu for tests
(we use Yakkety on "alpha")
| YAML | agpl-3.0 | Lokiedu/libertysoil-site,Lokiedu/libertysoil-site |
fc662ca76e61d91bf4da68d84d57055530c46792 | .travis.yml | .travis.yml | language: ruby
branches:
only:
- master
script:
- bundle exec rake
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
| language: ruby
branches:
only:
- master
script:
- bundle exec rake
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
| Update Travis Config for Ruby 2.6.0 | Update Travis Config for Ruby 2.6.0
| YAML | mit | panthomakos/timezone |
804746ee85bafe0934bd0e9bde6d3995ded27f05 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
before_script:
- psql -c 'create database database_test;' -U postgres
| language: ruby
rvm:
- 2.3
before_script:
- psql -c 'create database database_test;' -U postgres
| Use ruby 2.3 on Travis | Use ruby 2.3 on Travis
| YAML | mit | joshpeterson/summa,joshpeterson/summa,joshpeterson/summa,joshpeterson/summa |
e21d428b71cdb3a1d03a0ec34730ef4a59aeb27a | .travis.yml | .travis.yml | language: rust
sudo: false
notifications:
irc: "irc.mozilla.org#piston-internals"
os:
- linux
- osx
rust:
- stable
- beta
- nightly
env:
global:
- secure: "WI/r7hbDhenb7zPXht8J0mhcx5aUgY22cCrwYmNksMmgIK9hYfPjZ68XzaQ7+Ity8b12TlHM8lGRN9bIsyAZEiRIkxkZAArY9bXAOExJaAT+yOyxhEs/QdrGB6iRhC6F... | language: rust
sudo: false
notifications:
irc: "irc.mozilla.org#piston-internals"
os:
- linux
- osx
rust:
- stable
- beta
- nightly
env:
global:
- secure: "WI/r7hbDhenb7zPXht8J0mhcx5aUgY22cCrwYmNksMmgIK9hYfPjZ68XzaQ7+Ity8b12TlHM8lGRN9bIsyAZEiRIkxkZAArY9bXAOExJaAT+yOyxhEs/QdrGB6iRhC6F... | Build doc with relevant feaures flags. | Build doc with relevant feaures flags.
As suggested by @HeroicKatora .
| YAML | mit | PistonDevelopers/image,PistonDevelopers/image,mbrubeck/image |
746dd7999f9db23276144ee2160920bd01ed860c | .travis.yml | .travis.yml | sudo: false
language: python
python:
- 2.7
- 3.5
install:
- pip install tox "setuptools>=28.2"
script:
- tox
branches:
except:
- skeleton
deploy:
provider: pypi
server: https://upload.pypi.org/legacy/
on:
tags: true
all_branches: true
python: 3.5
user: jaraco
# supply password with `travis enc... | sudo: false
language: python
python:
- 2.7
- 3.6
install:
- pip install tox "setuptools>=28.2"
script:
- tox
branches:
except:
- skeleton
deploy:
provider: pypi
server: https://upload.pypi.org/legacy/
on:
tags: true
all_branches: true
python: 3.6
user: jaraco
# supply password with `travis enc... | Use Python 3.6 by default | Use Python 3.6 by default
| YAML | mit | jaraco/keyring,jaraco/jaraco.context,yougov/librarypaste,jaraco/zipp,cherrypy/cheroot,jaraco/jaraco.classes,jaraco/backports.functools_lru_cache,yougov/pmxbot,yougov/librarypaste,jazzband/inflect,pwdyson/inflect.py,yougov/mettle,pytest-dev/pytest-runner,jaraco/jaraco.collections,yougov/pmxbot,yougov/mettle,jaraco/hgtoo... |
cb7d50acb426b5f6c4e195bab1fbcb6a303ddf6a | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk11
- openjdk11
before_install:
- wget https://archive.apache.org/dist/maven/maven-3/3.6.1/binaries/apache-maven-3.6.1-bin.zip
- unzip -qq apache-maven-3.6.1-bin.zip
- export M2_HOME=$PWD/apache-maven-3.6.1
- export PATH=$M2_HOME/bin:$PATH
install: true
script:
- mvn --er... | language: java
jdk:
- oraclejdk11
- openjdk11
before_install:
- wget https://archive.apache.org/dist/maven/maven-3/3.6.2/binaries/apache-maven-3.6.2-bin.zip
- unzip -qq apache-maven-3.6.2-bin.zip
- export M2_HOME=$PWD/apache-maven-3.6.2
- export PATH=$M2_HOME/bin:$PATH
install: true
script:
- mvn --er... | Use Maven 3.6.2 in CI | Use Maven 3.6.2 in CI
| YAML | bsd-3-clause | io7m/jpplib,io7m/jpplib |
93f0ce2c4f99598187295fb53179ee0778cabf2f | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.8"
before_script:
- wget http://s3.amazonaws.com/influxdb/influxdb_0.5.5_amd64.deb
- sudo dpkg -i influxdb_0.5.5_amd64.deb
- sleep 15
script: npm run travis-test
| language: node_js
node_js:
- "0.10"
- "0.8"
env:
- INFLUX=0.5.5
- INFLUX=0.4.0
before_script:
- wget "http://s3.amazonaws.com/influxdb/influxdb_$(echo $INFLUX)_amd64.deb"
- sudo dpkg -i influxdb_0.5.5_amd64.deb
- sleep 15
script: npm run travis-test
| Test both 0.4.0 & 0.5.5 | Test both 0.4.0 & 0.5.5
| YAML | mit | dandv/node-influx,node-influx/node-influx,dandv/node-influx,node-influx/node-influx |
e7a6002b73f1627b24d21f180dce027bc03b389f | .travis.yml | .travis.yml | language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
env:
global:
- MAVEN_OPTS="-XX:MaxPermSize=512m -Xmx4g"
script:
- mvn clean package jacoco:report coveralls:jacoco
- mvn -f lob-java-examples/pom.xml clean package
| language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
env:
global:
- MAVEN_OPTS="-XX:MaxPermSize=512m -Xmx2048m"
script:
- mvn clean package jacoco:report coveralls:jacoco
- mvn -f lob-java-examples/pom.xml clean package
| Fix -Xmx parameter with 2048m. | Fix -Xmx parameter with 2048m.
| YAML | mit | lob/lob-java |
f7beaee1ee5459141280c7c70bae5d248c9333a2 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
# Use container based infrastructure
sudo: false
env:
- CMD=./test
python:
- 2.6
- 2.7
- 3.3
- 3.4
matrix:
allow_failures:
# Python 3.3, 3.4 allowed to fail for now. This is because
# django-appdata==0.1.3, (latest on GitHub ... | # Config file for automatic testing at travis-ci.org
language: python
# Use container based infrastructure
sudo: false
env:
- CMD=./test
python:
- 2.6
- 2.7
- 3.3
- 3.4
matrix:
# allow_failures:
fast_finish: true
include:
- python: 2.7
env: CMD="flake8 aldryn_faq"
cache:
directories:
... | Update test matrix now that appdata has been updated | Update test matrix now that appdata has been updated
| YAML | bsd-3-clause | czpython/aldryn-faq,czpython/aldryn-faq,czpython/aldryn-faq,czpython/aldryn-faq |
c6b086c5df319856d8c22fd6734397b4f7fde3b4 | .travis.yml | .travis.yml | sudo: required
language: python
services:
- docker
before_install:
- sudo apt-get -qq update
- sudo apt-get install -o Dpkg::Options::="--force-confold" --force-yes -y docker-engine
- sudo pip install docker
install:
- pip install molecule
# - pip install required driver (e.g. docker, python-vagrant, shade)... | sudo: required
language: python
services:
- docker
before_install:
- sudo apt-get -qq update
- sudo apt-get install -o Dpkg::Options::="--force-confold" --force-yes -y docker-engine
- sudo pip install --upgrade docker
install:
- pip install molecule
# - pip install required driver (e.g. docker, python-vagra... | Add docker python client as dependency again | Add docker python client as dependency again
| YAML | mit | dockerized89/kvm-ansible-role |
24f166704232e6abac41294882b68377bc68acd6 | .travis.yml | .travis.yml | language: php
php:
- 7.1
install:
- composer install
after_success:
- travis_retry php vendor/bin/coveralls -v
| language: php
php:
- 7.1
install:
- composer install
after_success:
- travis_retry php bin/coveralls -v
| Fix vendor bin path in after_success | Fix vendor bin path in after_success
| YAML | mit | atf-hackathon/ebox,atf-hackathon/ebox,atf-hackathon/ebox |
0b7d9fbb918aa04ee8c132e24c01afad7216b1a1 | .travis.yml | .travis.yml | language: cpp
sudo: required
dist: trusty
compiler:
- gcc
os:
- linux
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y git
- sudo apt-get install -y libboost-all-dev
- sudo apt-get install -y libpqxx-3.1 libpqxx3-dev
- sudo apt-get install -y libconfig++
- sudo apt-get install -y cmake... | language: cpp
sudo: required
dist: trusty
compiler:
- gcc
os:
- linux
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y git
- sudo apt-get install -y sshpass
- sudo apt-get install -y libboost-all-dev
- sudo apt-get install -y libpqxx-3.1 libpqxx3-dev
- sudo apt-get install -y libconfig+... | Update download_data.sh for non-interactive use | Update download_data.sh for non-interactive use
| YAML | apache-2.0 | kmuzalewska/j-pet-framework,kmuzalewska/j-pet-framework,kmuzalewska/j-pet-framework,kmuzalewska/j-pet-framework,kmuzalewska/j-pet-framework |
b2cedc593c3251a649449aaefd547aa456792b9e | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
before_install: gem install bundler -v 1.16.1
| language: ruby
rvm:
- 2.4.5
- 2.5.4
- 2.6.1
before_install: gem install bundler -v 1.16.1
| Update supported Ruby versions to Ruby >= 2.4 | Update supported Ruby versions to Ruby >= 2.4
This removes support for Ruby < 2.4 and adds Travis CI configurations
for the most recent minor versions >= 2.4 (2.4.5, 2.5.4, 2.6.1).
Support for Ruby 2.3 has already ended and 2.4 will reach its end of
life at the end of March 2019.
| YAML | mit | proiel/proiel,proiel/proiel |
c1002b6cac4781fa169dea2d5a7a0a9b5a4466a3 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.2.5
- 2.3.1
- ruby-head
- jruby-9.0.5.0
- jruby-9.1.5.0
- jruby-head
before_install:
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
addons:
apt:
packages:
- graphviz
| language: ruby
cache: bundler
rvm:
- 2.2.5
- 2.3.3
- 2.4.0
- ruby-head
- jruby-9.1.6.0
- jruby-head
before_install:
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
addons:
apt:
packages:
- graphviz
| Use latest ruby versions for test | Use latest ruby versions for test
- Update Ruby 2.3.1 to 2.3.3
- Add Ruby 2.4.0
- Remove jruby-9.0.5.0
- Update jruby-9.1.5.0 to jruby-9.1.6.0
| YAML | apache-2.0 | tumugi/tumugi,tumugi/tumugi,tumugi/tumugi |
7a9f5f9571c9c548f37a4001bccf00b5ffaa8a48 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
addons:
apt:
packages:
- libgraphicsmagick++1-dev
install:
- pip install -r requirements/dev.txt
before_script:
- createuser -U postgres -S -D -R -P uqam
- createdb -U postgres --owner uqam --encoding UTF8 uqam
script:
- ./manage.py test | language: python
python:
- "2.7"
addons:
apt:
packages:
- git
- libboost-python-dev
- libgraphicsmagick++1-dev
- libjpeg62-turbo-dev
- libldap2-dev
- libpq-dev
- libsasl2-dev
- postgresql
- postgresql-contrib
- python-dev
- python-pip
install:
... | Add system depedencies for Python packages | Add system depedencies for Python packages
| YAML | bsd-3-clause | uq-eresearch/uqam,uq-eresearch/uqam,uq-eresearch/uqam,uq-eresearch/uqam |
39bebfd0cc0506d93380c4a6420730038e0a1083 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.2
xcode_project: HHKL.xcodeproj
xcode_scheme: HHKL
xcode_sdk: iphonesimulator9.2
script:
- carthage bootstrap --platform iOS --no-use-binaries
- xctool -project HHKL.xcodeproj -scheme HHKL -sdk iphonesimulator9.2 -destination 'platform=iOS Simulator,name=iPhone 6s' ... | language: objective-c
osx_image: xcode7.2
xcode_project: HHKL.xcodeproj
xcode_scheme: HHKL
xcode_sdk: iphonesimulator9.2
before_script:
- carthage bootstrap --platform iOS --no-use-binaries
script:
- xctool -project HHKL.xcodeproj -scheme HHKL -sdk iphonesimulator9.2 -destination 'platform=iOS Simulator,name=iP... | Move carthage command to before_script section | Move carthage command to before_script section
| YAML | mit | alphatroya/hhkl-ios,alphatroya/hhkl-ios |
1459f1921e27a11606149f648f95687425f04855 | .travis.yml | .travis.yml | sudo: false
language: php
php:
- hhvm
- 7.0
- 5.6
- 5.3
- 5.4
- 5.5
matrix:
allow_failures:
- php: hhvm
install:
- composer install
- composer require satooshi/php-coveralls
script:
- vendor/bin/phpunit --coverage-text
after_script:
- travis_retry vendor/bin/coveralls
| sudo: false
language: php
php:
- 7.1
- 7.0
- 5.6
- 5.3
- 5.4
- 5.5
matrix:
fast_finish: true
include:
# test against the latest HHVM version by using a newer image
- php: hhvm
sudo: true
dist: trusty
group: edge # Use edge image until the next travis CI stable image update
... | Test against the current hhvm version and php 7.1 | Test against the current hhvm version and php 7.1
This provides the current HHVM version (3.17.1 as of this PR) and will track with each release (i.e. will be 3.18 when 3.18 is released).
If testing against HHVM LST versions is desired follow this guide. https://docs.travis-ci.com/user/languages/php#HHVM-versions
... | YAML | bsd-3-clause | mikey179/vfsStream |
4d9891c8d0733095eb24d8b28829479b37a30283 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: 7.2
- php: nightly
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
## Cache composer
cache:
directories:
... | language: php
php:
- 7.1
- 7.2
- 7.3
- nightly
matrix:
allow_failures:
- php: nightly
## Cache composer
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
- composer dumpautoload -o
script:
- vendor/bin/... | Remove sudo, remove unsupported PHP versions, added PHP 7.3 | Remove sudo, remove unsupported PHP versions, added PHP 7.3
| YAML | mit | cmgmyr/laravel-messenger |
985f6a102723c2502673e1573fde0623ecea7a7d | .travis.yml | .travis.yml | language: python
python:
- "2.7"
env:
- DJANGO=1.6
- DJANGO=1.7
- DJANGO=1.8
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install -r requirements.txt --use-mirrors
- pip install pep8 --use-mirrors
- pip install https://github.com/dcramer/pyflakes/tarball/master
- pip install coveralls... | language: python
python:
- "2.7"
env:
- DJANGO=1.6
- DJANGO=1.7
- DJANGO=1.8
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install -r requirements.txt --use-mirrors
- pip install pep8 --use-mirrors
- pip install https://github.com/dcramer/pyflakes/tarball/master
- pip install coveralls... | Remove quiet option from pip install | Remove quiet option from pip install
| YAML | agpl-3.0 | rezometz/django-paiji2-carpooling,rezometz/django-paiji2-carpooling |
54115f9df57089b4e9d92963cfcc5f3bebcd79c6 | .travis.yml | .travis.yml | language: python
python:
- "3.6"
- "3.7-dev" # 3.7 development branch
# Command to install dependencies.
install:
- pip install pipenv
- make install-dev
# Command to run tests.
script: make lint
| language: python
# Versions on https://docs.travis-ci.com/user/languages/python/
python:
- "3.5"
- "3.6"
- "3.7"
- "3.7-dev"
- "3.8-dev"
# Command to install dependencies.
install:
- pip install pipenv
- make install-dev
# Command to run tests.
script: make lint
| Add Python versions for tests | Add Python versions for tests
| YAML | mit | MonsieurV/PiPocketGeiger |
61a9ae52d6c65cb319cf0b86045eff6df5ed0ef5 | .travis.yml | .travis.yml | language: ruby
env:
AWS_REGION=ap-southeast-1
AWS_ACCESS_KEY_ID=xxx
AWS_SECRET_ACCESS_KEY=xxx
rvm:
- 1.9.3
- 2.1.2
script: 'bundle exec rspec'
| language: ruby
env:
AWS_REGION=ap-southeast-1
AWS_ACCESS_KEY_ID=xxx
AWS_SECRET_ACCESS_KEY=xxx
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
cache: bundler
script: 'bundle exec rspec'
| Add Ruby 2.0 and bundler cache. | Add Ruby 2.0 and bundler cache.
| YAML | mit | clearhaus/dynamodb-mutex,clearhaus/dynamodb-mutex |
3c0e042d49a73fc8eef699419101bb8e0ba52347 | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directories:
- vendor/
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- nightly
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: nightly
notifications:
email: false
irc: "irc.iiens.net#Clicky"
before_script:
- rm composer.lock... | language: php
sudo: false
cache:
directories:
- vendor/
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- nightly
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: nightly
notifications:
email: false
irc: "irc.iiens.net#Clicky"
before_script:
- rm composer.lock... | Remove obsolete --dev composer option | Remove obsolete --dev composer option
| YAML | bsd-3-clause | fpoirotte/XRL |
5f3a4a478fd3bb950d227522b232299bb3370244 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-2.2.3
| Update list of supported rubies | Update list of supported rubies | YAML | mit | ikhakoo/pundit,idlweb/pundit,justin808/pundit,geekninja/pundit,thewatts/pundit,luisdaher/pundit,AlexVPopov/pundit,rickypchen/pundit,xuwupeng2000/pundit,yatmsu/pundit,elabs/pundit,goodylabs/pundit,olegantonyan/pundit,sideci-sample/sideci-sample-pundit,beanieboi/pundit,demiazz/pundit,stefania11/pundit,ram-krishan/pundit,... |
cc0e58712f30eb37c9b1df475b42015f2fde4b9f | .travis.yml | .travis.yml | language: sh
script: make
matrix:
include:
- os: osx
- os: linux
before_install:
- git clone git://github.com/bmizerany/roundup
- cd roundup
- ./configure
- make
- export PATH="$PATH:$PWD"
- cd -
- os: linux
before_install: command -v brew >/dev/... | language: sh
script: make
matrix:
include:
- os: osx
- os: linux
before_install:
- git clone git://github.com/bmizerany/roundup
- cd roundup
- ./configure
- make
- export PATH="$PATH:$PWD"
- cd -
allow_failures:
- os: linux
before_install: comm... | Allow linux brew to fail | Allow linux brew to fail
| YAML | mit | aaronjameslang/git-hook-commit-message-cbeams |
6db85fd3b5693982bb07eb19522d407287357d57 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
matrix:
allow_failures:
- python: "2.6"
# Need mongodb for testing
services: mongodb
# command to install dependencies
install:
- pip install -r requirements_for_tests.txt --use-mirrors
# command to run tests
env:
- SKIP_VIRUS_SCAN=1
script:
- ./run_tests.sh
aft... | language: python
python:
- "2.7"
# Need mongodb for testing
services: mongodb
# command to install dependencies
install:
- pip install -r requirements_for_tests.txt --use-mirrors
# command to run tests
env:
- SKIP_VIRUS_SCAN=1
script:
- ./run_tests.sh
after_script:
- coveralls
branches:
except:
- relea... | Remove Python 2.6 from build matrix | Remove Python 2.6 from build matrix
While it is useful to advertise the versions that backdrop does not work
with I think this can be done in a better way than a travis build that
runs every time but always fails.
| YAML | mit | alphagov/backdrop,alphagov/backdrop,alphagov/backdrop |
52ec5113cddf9e9ddc6c1f7b622cf0d13f8be67b | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.3
- 5.4
before_script:
- wget -nc http://getcomposer.org/composer.phar
- php composer.phar install --dev
script: phpunit --coverage-text
| language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
before_script:
- wget -nc http://getcomposer.org/composer.phar
- php composer.phar install --dev
script: phpunit --coverage-text
| Update buildmatrix to include PHP 5.5 & 5.6 | Update buildmatrix to include PHP 5.5 & 5.6 | YAML | mit | dflydev/dflydev-dot-access-data |
f82df4dd4bec654edce1a29bdbba8c85144b0e3f | .travis.yml | .travis.yml | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(chef shell... | services:
- docker
install:
- docker pull chef/chefdk
branches:
only:
- master
script:
- docker run -t chef/chefdk chef -v
- docker run -v $PWD:/cookbook -w /cookbook -t chef/chefdk delivery local all
| Switch testing to use the docker ChefDK container | Switch testing to use the docker ChefDK container
This avoids the need to install the packages from the chef apt repo.
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef-cookbooks/iptables,chef-cookbooks/iptables,opscode-cookbooks/iptables,opscode-cookbooks/iptables,chef-cookbooks/iptables,opscode-cookbooks/iptables |
2fb6135032b1238b895aa9234a9e734296d0c717 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
script: go build
| sudo: false
language: go
go:
- 1.6
script: go build
| Remove old Go versions from Travis | Remove old Go versions from Travis
rand.Read requires Go 1.6
| YAML | mit | marksamman/gotorrent |
5f2606139a317e7b16ed716f622a2b0627643b4d | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
- "3.5"
env:
- DJANGO_VERSION=1.7.11
- DJANGO_VERSION=1.8.7
- DJANGO_VERSION=1.9.0
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements-test.txt
... | # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
- "3.4"
env:
- DJANGO_VERSION=1.7.11
- DJANGO_VERSION=1.8.7
- DJANGO_VERSION=1.9.0
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements-test.txt
... | Drop python back to 3.4 | Drop python back to 3.4
| YAML | bsd-3-clause | blag/django-watchman,ulope/django-watchman,mwarkentin/django-watchman,blag/django-watchman,mwarkentin/django-watchman,JBKahn/django-watchman,JBKahn/django-watchman,ulope/django-watchman |
77d3ab8e4be1d4688915e4f9455556c0e88a667e | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-19mode
- rbx-2.1.1
- 2.0.0-preview2
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-19mode
- rbx-2.1.1
- 2.1.0-preview2
- jruby-head
- ruby-head
bundler_args: --without guard
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| Exclude guard bundler group from installing on TravisCI. | Exclude guard bundler group from installing on TravisCI.
| YAML | mit | fnichol/nameit |
124b4a51b153945739ba17aaac7fb570c660818a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
services:
- redis-server
before_script:
- cp config/settings.yml.travis config/settings.yml
- cp config/database.yml.travis config/database.yml
- psql -c 'create database travis_ci_test;' -U postgres
script:
- bundle exec rake db:schema:load
- bundle exec rake db:test:prepare
... | language: ruby
rvm:
- 2.0.0
services:
- redis-server
before_script:
- cp config/settings.yml.travis config/settings.yml
- cp config/database.yml.travis config/database.yml
- psql -c 'create database travis_ci_test;' -U postgres
script:
- bundle exec rake db:schema:load
- bundle exec rake db:test:prepare
... | Use Postgres 9.3 on Travis | Use Postgres 9.3 on Travis
| YAML | mit | krautcomputing/rubydocs,krautcomputing/rubydocs,krautcomputing/rubydocs |
e30ddc2e39acd981ba1d3fdaa26e5b36e13ba8d6 | .travis.yml | .travis.yml | language: php
before_script: composer install --dev --prefer-source --no-interaction
script: phpunit --coverage-text
| language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
- hhvm
install:
- composer install --prefer-source --no-interaction
script:
- phpunit --coverage-text
| Test against different PHP versions | Test against different PHP versions | YAML | mit | clue/graph-composer |
48f09ab210277a25f054b9c66d4dd726590b5d05 | .travis.yml | .travis.yml | language: rust
env:
global:
- secure: xvgEoA6Etp8KWAnA9FrCkPNTdz8dunFN93sgWFkd55NGtTqlLehHCvuqG/7DFteoQ6FK2+g45NqJoc2UWp1CUIs27Qm5ICvnmFFLSncHN2ofefN0fj0BWXJunVBuKsO1xYCossnXKsEBDSpLJ5BI1eMrJETyHW75Nb3YIXH0Dm4=
install:
- sudo apt-get install libleveldb-dev
- sudo apt-get install libsnappy-dev
after_script:
... | language: rust
sudo: false
env:
global:
- secure: xvgEoA6Etp8KWAnA9FrCkPNTdz8dunFN93sgWFkd55NGtTqlLehHCvuqG/7DFteoQ6FK2+g45NqJoc2UWp1CUIs27Qm5ICvnmFFLSncHN2ofefN0fj0BWXJunVBuKsO1xYCossnXKsEBDSpLJ5BI1eMrJETyHW75Nb3YIXH0Dm4=
install:
- sudo apt-get install libleveldb-dev
- sudo apt-get install libsnappy-dev
aft... | Switch to Travis container based builds | Switch to Travis container based builds | YAML | mit | skade/leveldb,alekseysidorov/leveldb,alekseysidorov/leveldb |
ad0494bc7e79178b9811e1ebfc1770a7b3e9f67e | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
matrix:
include:
- php: 7.0
env:
- DEPS="low"
- php: 7.0
env:
- DEPS="lock"
- php: 7.0
env:
- TEST_COVERAGE=true
- php: 7.1
- php: nightly
fast_finish: true
install:
... | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
matrix:
include:
- php: 7.0
env:
- DEPS="low"
- php: 7.0
env:
- DEPS="lock"
- php: 7.0
env:
- TEST_COVERAGE=true
- php: 7.1
- php: nightly
fast_finish: true
install:
... | Fix PHPUnit path in Travis build | Fix PHPUnit path in Travis build
| YAML | mit | Jean85/pretty-package-versions |
548eab493d78272015b25f5253cac297ef09e6da | .travis.yml | .travis.yml | sudo: required
language: python
python:
- "2.7"
# - "3.3"
# Have Travis CI start mongodb and redis for us
services:
- docker
before_install:
- docker pull docker.sunet.se/eduid/redis:latest
- docker pull docker.sunet.se/eduid/mongodb:latest
install:
- pip install -U setuptools
- python setup.py develop
-... | sudo: required
language: python
python:
- "2.7"
# - "3.3"
# Have Travis CI start mongodb and redis for us
services:
- docker
before_install:
- docker pull docker.sunet.se/eduid/redis:latest
- docker pull docker.sunet.se/eduid/mongodb:latest
install:
- pip install -U setuptools
- python setup.py develop
-... | Use setup.py to install test reqs | Use setup.py to install test reqs
| YAML | bsd-3-clause | SUNET/eduid-signup,SUNET/eduid-signup,SUNET/eduid-signup |
bbc0de3b22075e9c2f30ba42a6c5597837b63ae1 | .travis.yml | .travis.yml | ---
sudo: required
language: ruby
cache: bundler
# necessary for docker to work
dist: xenial
services:
- docker
bundler_args: --without integration tools
branches:
only:
- master
matrix:
include:
- rvm: 2.3.8
before_install:
- gem install bundler
- gem --version
- rvm: 2.4.5
before_i... | ---
sudo: required
language: ruby
cache: bundler
# necessary for docker to work
dist: xenial
services:
- docker
bundler_args: --without integration tools
branches:
only:
- master
- 2-release
matrix:
include:
- rvm: 2.3.8
before_install:
- gem install bundler
- gem --version
- rvm: 2.4.... | Add v2 release to TravisCI temporarily | Add v2 release to TravisCI temporarily
Signed-off-by: Clinton Wolfe <472bf9e3c4d623f1ea9ea20ba8a695844f3dbd03@gmail.com>
| YAML | apache-2.0 | chef/train,chef/train |
642dbc9dd5eb26ef4a7a21bfeed80806dddba82f | .travis.yml | .travis.yml | sudo: required
services:
- docker
script:
- docker build -t dlecan/rust-crosscompiler-arm:stable rust-crosscompiler-armv6 | sudo: required
services:
- docker
script:
- docker build -t dlecan/rust-crosscompiler-arm:stable rust-crosscompiler-armv6
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push dlecan/rust-crosscompiler-arm:stable
| Deploy Docker image with Travis | Deploy Docker image with Travis
| YAML | mit | dlecan/rust-crosscompiler-arm,dlecan/docker-rust-x86_64-armv6 |
66492ae5616f16aaedc634b98684f124ec8f29e0 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "stable"
- "0.11"
- "0.10"
| language: node_js
sudo: false
node_js:
- "stable"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
| Test against more versions of node. | Test against more versions of node.
| YAML | mit | monooso/brettcase |
700a5015d69713840070521c5fe3b27862026d57 | .travis.yml | .travis.yml | language: python
python:
- '2.6'
- '2.7'
install:
- pip install -r requirements-test.txt
script: py.test
before_deploy:
- mkdir dist
- tar czf dist/bigpanda-alert-`git describe|sed s/^v//`.tar.gz bigpanda-alert --exclude
*.pyc
- tar czf dist/bigpanda-alert-latest.tar.gz bigpanda-alert --exclude *.pyc
deploy:
provid... | language: python
python:
- '2.6'
- '2.7'
install:
- pip install -r requirements-test.txt
script: py.test
before_deploy:
- mkdir dist
- tar czf dist/bigpanda-alert-`git describe|sed s/^v//`.tar.gz bigpanda-alert --exclude
*.pyc
- tar czf dist/bigpanda-alert-latest.tar.gz bigpanda-alert --exclude *.pyc --owner root --g... | Package files as owned by root:root | Package files as owned by root:root
| YAML | apache-2.0 | bigpandaio/bigpanda-appdynamics-extension |
bd85f1701d001ab2da86a6b89195ef6b95aeb603 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install:
- ./scripts/travis/before_install.sh
install:
- sudo apt-get install tor tor-geoipdb python-pip
- pip install -r GLBackend/requirements.txt
- pip install coverage coveralls
script:
- cd GLBackend
- coverage run setup.py test && coveralls || true
| language: python
python:
- "2.7"
before_install:
- ./scripts/travis/before_install.sh
install:
- sudo apt-get install tor tor-geoipdb python-pip
- cd $TRAVIS_BUILD_DIR/GLBackend
- pip install -r requirements.txt
- pip install coverage coveralls
script:
- cd $TRAVIS_BUILD_DIR/GLBackend
- coverage run set... | Use $TRAVIS_BUILD_DIR environment variable to cd into backend/frontend. | Use $TRAVIS_BUILD_DIR environment variable to cd into backend/frontend.
| YAML | agpl-3.0 | vodkina/GlobaLeaks,vodkina/GlobaLeaks,vodkina/GlobaLeaks,vodkina/GlobaLeaks |
79cf6772aa95c008c3f835efe9eb04cb2b5d3a80 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
- "3.3"
install:
- pip install codecov coverage catkin_pkg catkin_tools futures python-dateutil requests rosdep pyyaml
script:
- nosetests --verbose --with-coverage --cover-erase --cover-package=rosrepo test
after_success:
- codecov
| language: python
sudo: false
python:
- "2.7"
- "3.3"
install:
- pip install codecov coverage catkin_pkg catkin_tools futures python-dateutil pygit2 requests rosdep pyyaml
script:
- nosetests --verbose --with-coverage --cover-erase --cover-package=rosrepo test
after_success:
- codecov
| Update dependencies for Travis CI | Update dependencies for Travis CI
| YAML | apache-2.0 | fkie/rosrepo,fkie/rosrepo |
e4f704bb947fefc6d998c452bd661e20bc974e16 | .travis.yml | .travis.yml | ---
language: "node_js"
node_js: [ 4, 5 ]
sudo: false
install: "npm install"
script:
- npm test
- npm run lint
| ---
language: "node_js"
node_js:
- '4'
- node
sudo: false
install: "npm install"
script:
- npm test
- npm run lint
| Configure Travis CI to test on Node.js 4 and current | Configure Travis CI to test on Node.js 4 and current
| YAML | mit | kemitchell/reviewers-edition-upgrade.js |
ab261b51b2f8b429a7d79bc1900f580feb8e6919 | .travis.yml | .travis.yml | language: php
php:
- "7.0"
- "7.1"
- "7.2"
- "7.3"
- "nightly"
before_script:
- composer selfupdate
- composer install
script:
- ./vendor/bin/phpunit --configuration=phpunit.travis.xml
matrix:
allow_failures:
- php: nightly
addons:
code_climate:
repo_token:
secure: "I3eTx9kL0G59wHo3pppEBlAt0eq3Dkx... | language: php
php:
- "7.0"
- "7.1"
- "7.2"
- "7.3"
- "nightly"
before_script:
- composer selfupdate
- composer install
script:
- ./vendor/bin/phpunit --configuration=phpunit.travis.xml
matrix:
allow_failures:
- php: nightly
- php: "7.0"
- php: "7.1"
addons:
code_climate:
repo_token:
secure: "I... | Remove support for PHP 7.0 and PHP 7.1 | Remove support for PHP 7.0 and PHP 7.1
This is necessary due to the changed signature of the `setup`-function
in PHPUnit.
The library itself should still work on PHP7.0 and 7.1 but it will not
be tested in these two versions
| YAML | mit | heiglandreas/UTCDateTime |
9f1b32e07100d9a7da5439532b14cb7c349a2563 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- 2.1.9
- 2.2.5
- 2.3.1
- ruby-head
- jruby-19mode
- rbx-2
before_install:
- gem update --system
- gem update bundler
- gem cleanup bundler
install: "bundle install --jobs 8"
script: "bundle exec rake"
gemfile:
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
- gemfiles/4.1... | rvm:
- 1.9.3
- 2.0.0
- 2.1.9
- 2.2.5
- 2.3.1
- ruby-head
- rbx-2
before_install:
- gem update --system
- gem update bundler
- gem cleanup bundler
install: "bundle install --jobs 8"
script: "bundle exec rake"
gemfile:
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemf... | Remove jruby from TravisCI build matrix | Remove jruby from TravisCI build matrix
The build is consistently failing with jruby-19 / 3.2.gemfile because
bundler cannot install activesupport.
| YAML | mit | composerinteralia/factory_girl,thoughtbot/factory_girl |
555c7e51b948bdb710d5f727ddc8ef3eefb16618 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 6
- 4
cache:
directories:
- node_modules
install:
- npm i -g npm@latest
- npm install
| sudo: false
language: node_js
node_js:
- 6
cache:
directories:
- node_modules
install:
- npm i -g npm@latest
- npm install
| Remove Node.js v4 from Travis | Remove Node.js v4 from Travis
| YAML | mit | caiogondim/fast-memoize,caiogondim/fast-memoize.js,caiogondim/fast-memoize.js,caiogondim/fast-memoize.js |
939ceb95f9df4efcc41151d4bee9548fb6d08315 | .travis.yml | .travis.yml | language: go
go:
- 1.8.3
- 1.7.5
- tip
script:
- ./dev/tests.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: go
go:
- "1.10"
- 1.9.x
- 1.8.x
- master
script:
- ./dev/tests.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
| Add Go 1.10 to TravisCI file | Add Go 1.10 to TravisCI file
| YAML | mit | fern4lvarez/piladb,fern4lvarez/piladb |
18871a767bdbb1c411f8ccada039d975b7d4e1ab | .travis.yml | .travis.yml | notifications:
email:
on_success: never
on_failure: change
os:
- linux
- osx
sudo: required
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
env:
global:
- DOTFILES_PATH=~/.dotfiles
install:
- curl -L https://raw.githubusercontent.com/jmlntw/dotfiles/master/bin/dotf... | notifications:
email:
on_success: never
on_failure: change
os:
- linux
- osx
sudo: required
env:
global:
- DOTFILES_PATH=~/.dotfiles
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
before_install:
- brew update
- brew install shellcheck
install:
- curl -L http... | Add Mac OS X configuration to Travis CI | Add Mac OS X configuration to Travis CI
| YAML | mit | jmlntw/dotfiles,jmlntw/dotfiles |
6dfe8748384a441bc3b4260c26b19a9b00d5f93f | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.8'
before_script:
- npm install -g grunt-cli
- npm install -g bower
- bower install
| language: node_js
node_js:
- '0.10'
before_script:
- npm install -g grunt-cli
- npm install -g bower
- bower install --config.interactive=false
| Remove node 0.8 support, add non interactive flag | Remove node 0.8 support, add non interactive flag | YAML | mit | pablojim/highcharts-ng,huadong1989/highcharts-ng,marvinlee/highcharts-ng,yngvebn/highcharts-ng,HawiCaesar/highcharts-ng,chenflat/highcharts-ng,ASethi77/highcharts-ng,chenflat/highcharts-ng,huangchaosuper/highcharts-ng,huadong1989/highcharts-ng,marvinlee/highcharts-ng,mdedetrich/highcharts-ng,Ranku/highcharts-ng,pabloji... |
b8997fc08745744403cea0c48d359dd227d72b1e | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- nightly
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction
- phpenv config-rm xdebug.ini
script:
- composer test
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- nightly
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction
- if [ $TRAVIS_PHP_VERSION != "hhvm" ]; then phpenv config-rm xdebug.ini ; fi
script:
- composer test
| Fix only disable Xdebug for non HHVM versions | Fix only disable Xdebug for non HHVM versions
| YAML | mit | raphaelstolt/json-merge-patch |
5225fa9edc7ab7f8870e464dd4e3d302b15fe9c3 | .travis.yml | .travis.yml | language: ruby
before_install: gem update --system
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
| language: ruby
before_install: gem update --system
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-18mode
- jruby-19mode
- rbx
| Clean up Rubies used for Travis build | Clean up Rubies used for Travis build
| YAML | mit | fastlane/commander,commander-rb/commander,commander-rb/commander,tj/commander,andrewvc/commander,andrewvc/commander,tj/commander,fastlane/commander |
c1dfc8a8e5e3027a6655c6ff91120f55366819c3 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "7"
- "8"
install:
- npm install
after_success: npm run coverage
| language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
install:
- npm install
after_success: npm run coverage
| Add node 9.x to test environments | Add node 9.x to test environments
| YAML | mit | albe/node-event-storage,albe/node-event-store |
735472c199ad56a9ef78f59d193fd6d9f47b04c6 | .travis.yml | .travis.yml | language: go
go:
- 1.0
- 1.1
- 1.2
install:
- go get github.com/onsi/ginkgo
- go get github.com/onsi/gomega
| language: go
go:
- 1.1
- 1.2
- tip
install:
- go get github.com/onsi/ginkgo
- go get github.com/onsi/gomega
| Remove go 1.0 and add tip | Remove go 1.0 and add tip | YAML | mit | gdavison/factory_gorl |
87b1adb95e02eed0dec8e57db2c48d179372a507 | .travis.yml | .travis.yml | language: go
go:
- 1.8
| language: go
go:
- 1.8
before_script:
- sudo apt-get update && sudo apt-get install protobuf-compiler
| Install the protobuf compiler before running the build. | Install the protobuf compiler before running the build.
| YAML | mit | wallaceicy06/muni-sign,wallaceicy06/muni-sign,wallaceicy06/muni-sign |
4ed4144e2edb5a2707e73d768ba7e25bf71bd41c | .travis.yml | .travis.yml | language: node_js
node_js:
- node
- lts/*
- 8
before_script:
os:
- linux
- osx
| language: node_js
node_js:
- node
- lts/*
- 10
- 8
before_script:
os:
- linux
- osx
| Add node 10 now it is no lonhger newest lts | Add node 10 now it is no lonhger newest lts
| YAML | mit | JohnRGee/forest-arborist,JohnRGee/forest-arborist,JohnRGee/arm |
216c0a992b362109d813a5ce8b6d911d1386f4b9 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.3.1
before_install: gem install bundler -v 1.13.2
script: rake spec
| sudo: false
language: ruby
rvm:
- 2.4.0
- 2.3.3
- 2.2.6
- 2.1.10
- 2.0.0
before_install: gem update bundler --no-document
script: rake spec
| Add CI target rvm version from 2.0 to 2.4 | Add CI target rvm version from 2.0 to 2.4
| YAML | mit | ryu39/ltsv_logger_formatter,ryu39/ltsv_logger_formatter |
2d3cfe4ae8848259ac628355b4eca4744ecdfc40 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
cache:
directories:
- node_modules
matrix:
fast_finish: true
allow_failures:
- node_js: "0.12"
- node_js: "iojs"
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "3"
- "4"
cache:
directories:
- node_modules
matrix:
fast_finish: true
allow_failures:
- node_js: "3"
| Add recent Node.js to Travis CI. Future has already been here for some days... | Add recent Node.js to Travis CI. Future has already been here for some days...
| YAML | mit | paazmaya/grunt-image-profile |
3573d7790c3082c548088fd82be691bb079a4c9d | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
script:
- npm run validate
after_success:
- npm run report-coverage
| language: node_js
node_js:
- "lts/*"
script:
- npm run validate
after_success:
- npm run report-coverage
| Test on the latest LTS release instead of 6 | Test on the latest LTS release instead of 6
| YAML | apache-2.0 | Topdoc/postcss-topdoc |
d12000f5e87102e9f0ba20bfd087118a21d81e43 | .travis.yml | .travis.yml | language: node_js
node_js:
- "8.5"
| language: node_js
node_js:
- "8.5"
script:
- "npm run test"
- "npm run lint"
| Add lint task to CI | Add lint task to CI
| YAML | mpl-2.0 | clemstoquart/webextension-json-mime-type |
841b6acb18b6415cd37e2c0ed2e18819af556694 | packages/gs/gstorable.yaml | packages/gs/gstorable.yaml | homepage: ''
changelog-type: ''
hash: e934670c205899e16afdd174425c6c6aeb0435a35ba12b2fd382d1169959f944
test-bench-deps:
base: -any
hspec: ! '>=1.1'
generic-storable: -any
ghc-prim: ! '>=0.2'
QuickCheck: ! '>=2.4'
maintainer: vamchale@gmail.com
synopsis: Generic implementation of Storable
changelog: ''
basic-d... | homepage: ''
changelog-type: ''
hash: 63004dde29b28251d8d04abb49cf6770016d7693b47c91f9c93ece8a50ed7a0f
test-bench-deps:
base: -any
hspec: ! '>=1.1'
generic-storable: -any
ghc-prim: ! '>=0.2'
QuickCheck: ! '>=2.4'
maintainer: vamchale@gmail.com
synopsis: Generic implementation of Storable
changelog: ''
basic-d... | Update from Hackage at 2018-01-31T05:01:04Z | Update from Hackage at 2018-01-31T05:01:04Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
3206da2ea0880e732d5c4f66af2870de91b90313 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
install:
- "npm install -g grunt-cli"
- "npm install"
- "bower install"
script:
- "grunt test"
- "grunt build"
deploy:
provider: heroku
api_key:
secure: c/wHTZAzJUgWBm1w7KLlEDq6o9a/tbgzaZctJ+SkwwpqEIAJPEEeFzteRDzcQgGIRsws+C3m/zzWvqoQMmIoKvgJoNyoObZQazUCImly6hQM... | language: node_js
node_js:
- "0.10"
install:
- "npm install -g grunt-cli bower"
- "npm install"
- "bower install"
script:
- "grunt test"
- "grunt build"
deploy:
provider: heroku
api_key:
secure: c/wHTZAzJUgWBm1w7KLlEDq6o9a/tbgzaZctJ+SkwwpqEIAJPEEeFzteRDzcQgGIRsws+C3m/zzWvqoQMmIoKvgJoNyoObZQazUCIm... | Add further install steps after deployment | Add further install steps after deployment
| YAML | mit | davidknezic/bitcoin-trade-guard |
7f55b0b9413bd2f5ec2f86aa40d763bd80d386ab | .travis.yml | .travis.yml | language: perl
perl:
# - '5.8'
- '5.10'
- '5.12'
- '5.14'
- '5.16'
- '5.18'
- '5.20'
- '5.22'
- '5.24'
addons:
postgresql: "9.3"
env:
- DB_TESTING=1 COVERAGE=1 RELEASE_TESTING=1
before_install:
- eval $(curl https://travis-perl.github.io/init) --auto
| language: perl
perl:
# - '5.8'
- '5.10'
- '5.12'
- '5.14'
- '5.16'
- '5.18'
- '5.20'
- '5.22'
- '5.24'
- '5.26'
addons:
postgresql: "9.3"
env:
- DB_TESTING=1 COVERAGE=1 RELEASE_TESTING=1
before_install:
- eval $(curl https://travis-perl.github.io/init) --auto
| Add Perl 5.26 to Travis testing | Add Perl 5.26 to Travis testing
| YAML | bsd-2-clause | ledgersmb/PGObject,ledgersmb/PGObject,einhverfr/PGObject,einhverfr/PGObject |
e4104791e448e9f45f0f2593cdd9b25d5e747e59 | .travis.yml | .travis.yml | branches:
only:
- master
- develop
except:
- /^v\d+\.\d+\.\d+$/
language: node_js
node_js:
- v8
- v7
- v6
- v5
- v4
before_script:
- npm install -g gulp
script: gulp
after_success:
- npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
| branches:
except:
- /^v\d+\.\d+\.\d+$/
language: node_js
node_js:
- v8
- v7
- v6
before_script:
- npm install -g gulp
script: gulp
after_success:
- npm run semantic-release
| Use except rule along with a regex to be flexible | fix(CI): Use except rule along with a regex to be flexible
| YAML | mit | emyann/morphism,emyann/morphism |
894f4891439ab5ac3627d71db0d0784cdd0d7537 | .travis.yml | .travis.yml | language: python
before_install: sudo apt-get install leveldb libleveldb-dev
python:
- "2.7"
env:
- TOX_ENV=flake8
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=py27-bench
- TOX_ENV=py33-bench
install:
- pip install tox
script:
- tox -e $TOX_ENV
notifications:
email:
- on_success: chang... | language: python
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libleveldb-dev
python:
- "2.7"
env:
- TOX_ENV=flake8
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=py27-bench
- TOX_ENV=py33-bench
install:
- pip install tox
script:
- tox -e $TOX_ENV
notifications:
ema... | Fix LevelDB installation on Travis | Fix LevelDB installation on Travis
| YAML | mit | onitu/onitu,onitu/onitu,onitu/onitu |
abb640142f32ea4ee5f21da18b3c46dc25292b06 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- pypy
before_install:
- sudo apt-get install subversion bzr mercurial
- echo -e "[web]\ncacerts = /etc/ssl/certs/ca-certificates.crt" >> ~/.hgrc
- git config --global user.email "python-virtualenv@googlegroups.com"
- git config --global user.na... | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- pypy
before_install:
- sudo apt-get install subversion bzr mercurial
- echo -e "[web]\ncacerts = /etc/ssl/certs/ca-certificates.crt" >> ~/.hgrc
- git config --global user.email "python-virtualenv@googlegroups.com"
- git config --global user.na... | Test against the master virtualenv | Test against the master virtualenv
| YAML | mit | msabramo/pip,benesch/pip,mindw/pip,nthall/pip,supriyantomaftuh/pip,Gabriel439/pip,esc/pip,sigmavirus24/pip,ChristopherHogan/pip,mindw/pip,zvezdan/pip,Carreau/pip,chaoallsome/pip,haridsv/pip,mattrobenolt/pip,pfmoore/pip,sigmavirus24/pip,Carreau/pip,willingc/pip,wkeyword/pip,blarghmatey/pip,ncoghlan/pip,alex/pip,ianw/pip... |
155d46b542b893577bc5e4eb0efd1ad86fa3ba7b | install.conf.yaml | install.conf.yaml | ---
- defaults:
link:
create: true
relink: true
- clean: ['~']
- shell:
- [sh pre-install.sh, Running pre installation script]
- link:
~/.dotfiles: ''
~/.vimrc: vimrc
~/.vimrc.bundles: vim/bundle.vim
~/.vimrc.map: vim/map.vim
~/.zshrc:
force: true
path: zshrc
~/... | ---
- defaults:
link:
create: true
relink: true
- clean: ['~']
- shell:
- [sh pre-install.sh, Running pre installation script]
- link:
~/.vimrc: vimrc
~/.vimrc.bundles: vim/bundle.vim
~/.vimrc.map: vim/map.vim
~/.zshrc:
force: true
path: zshrc
~/.zsh: zsh
~/.p10... | Remove dotfiles linking as it is not needed | Remove dotfiles linking as it is not needed
| YAML | mit | captain-proton/dotfiles,captain-proton/dotfiles |
639cd8a8b828095a6508c1b8f2436fd00b48381d | openpathsampling/meta.yaml | openpathsampling/meta.yaml | package:
name: openpathsampling
version: 0.9.0
source:
git_url: https://github.com/openpathsampling/openpathsampling.git
git_tag: v0.9.0
build:
preserve_egg_dir: True
number: 0
skip:
- [py3k]
requirements:
build:
- python
- setuptools
- pyyaml
run:
- python
- numpy
- sc... | package:
name: openpathsampling
version: 0.9.0
source:
git_url: https://github.com/openpathsampling/openpathsampling.git
git_tag: v0.9.0
build:
preserve_egg_dir: True
number: 0
skip:
- [py3k]
requirements:
build:
- python
- setuptools
- pyyaml
run:
- python
- numpy
- sc... | Remove requires: section from testing block for openpathsampling | Remove requires: section from testing block for openpathsampling
| YAML | mit | peastman/conda-recipes,swails/conda-recipes,cwehmeyer/conda-recipes,swails/conda-recipes,omnia-md/conda-recipes,omnia-md/conda-recipes,cwehmeyer/conda-recipes,swails/conda-recipes,peastman/conda-recipes,cwehmeyer/conda-recipes,swails/conda-recipes,jchodera/conda-recipes,jchodera/conda-recipes,jchodera/conda-recipes,jch... |
cb014b5fc4ec41ef179a7bfe1c0929e49566ee6f | packages/web_benchmarks/pubspec.yaml | packages/web_benchmarks/pubspec.yaml | name: web_benchmarks
description: A benchmark harness for performance-testing Flutter apps in Chrome.
version: 0.0.4
homepage: https://github.com/flutter/packages/tree/master/packages/web_benchmarks
environment:
sdk: ">=2.7.0 <3.0.0"
flutter: ">=1.17.0"
# Using +2 upper limit on some packages to allow null-safe v... | name: web_benchmarks
description: A benchmark harness for performance-testing Flutter apps in Chrome.
version: 0.0.5
homepage: https://github.com/flutter/packages/tree/master/packages/web_benchmarks
environment:
sdk: ">=2.7.0 <3.0.0"
flutter: ">=1.17.0"
# Using +2 upper limit on some packages to allow null-safe v... | Allow web_benchmarks to depend on webkit_inspection_protocol 1.0 | Allow web_benchmarks to depend on webkit_inspection_protocol 1.0
Towards https://github.com/flutter/flutter/pull/79099 | YAML | bsd-3-clause | flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages |
636820ddd4788c38ad1485737db9406cf48f215c | packages/ye/yesod-auth-bcryptdb.yaml | packages/ye/yesod-auth-bcryptdb.yaml | homepage: https://github.com/yusent/yesod-auth-bcryptdb
changelog-type: ''
hash: 211f8d59de5735934255fbb511113245f57c5085e0b4458e8f39929c0cd1c219
test-bench-deps: {}
maintainer: Yusent Chig <yusent@protonmail.com>
synopsis: Authentication plugin for Yesod.
changelog: ''
basic-deps:
bytestring: ! '>=0.9.1.4'
yesod-c... | homepage: https://github.com/yusent/yesod-auth-bcryptdb
changelog-type: ''
hash: e52d8cb24ebad66998a557ad9cea0ab6c8f6c0df82ea6d82a718d1dc77c11638
test-bench-deps: {}
maintainer: Yusent Chig <yusent@protonmail.com>
synopsis: Authentication plugin for Yesod.
changelog: ''
basic-deps:
bytestring: ! '>=0.9.1.4'
yesod-c... | Update from Hackage at 2017-11-26T19:53:37Z | Update from Hackage at 2017-11-26T19:53:37Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
5c60224cceab2367dedd2590a6edd592da6ee92d | packages/af/affection.yaml | packages/af/affection.yaml | homepage: https://github.com/nek0/affection#readme
changelog-type: ''
hash: 5719adb376a6152106ceeecda7fa9120712c2b66e3062cba95299266ae77bc97
test-bench-deps: {}
maintainer: nek0@chelnok.de
synopsis: A simple Game Engine using SDL
changelog: ''
basic-deps:
base: ! '>=4.9 && <4.10'
babl: -any
text: -any
glib: -an... | homepage: https://github.com/nek0/affection#readme
changelog-type: ''
hash: ac5bb6d8597bb2b22a5b651c7fd3056ff96668f01b1362f1423da2db87194e9f
test-bench-deps: {}
maintainer: nek0@chelnok.de
synopsis: A simple Game Engine using SDL
changelog: ''
basic-deps:
base: ! '>=4.9 && <4.10'
babl: -any
text: -any
glib: -an... | Update from Hackage at 2017-03-05T15:50:06Z | Update from Hackage at 2017-03-05T15:50:06Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
00e295e390237acc9cde9079129184e7184a0ee6 | skaffold.yaml | skaffold.yaml | apiVersion: skaffold/v2beta13
kind: Config
metadata:
name: full-stack
requires:
- path: frontend
- path: backend | apiVersion: skaffold/v2beta13
kind: Config
metadata:
name: full-stack
requires:
- path: frontend
- path: backend
profiles:
- name: prod
deploy:
kustomize:
paths:
- frontend/k8s/prod
- backend/k8s/prod | Add profiles at top level | Add profiles at top level
| YAML | apache-2.0 | google/golden-path-for-app-delivery,google/golden-path-for-app-delivery,google/golden-path-for-app-delivery |
d0f22079d95c7b38b8a600fadea53ae609db4eb6 | .travis.yml | .travis.yml | language: general
services:
- docker
branches:
only:
- master
install:
- curl -sSL https://raw.githubusercontent.com/acidgenomics/Rcheck/master/install | bash
jobs:
include:
- stage: test
name: "bioc-release"
script: image="bcbiornaseq" tag="bioc-release" ./.Rcheck/docker
- stage: te... | language: general
services:
- docker
branches:
only:
- master
install:
- curl -sSL https://raw.githubusercontent.com/acidgenomics/Rcheck/master/install | bash
jobs:
include:
- stage: test
name: "bioc-release"
script: image="acidgenomics/bcbiornaseq" tag="bioc-release" ./.Rcheck/docker
... | Rework Rcheck to support any Docker image | Rework Rcheck to support any Docker image [ci skip] | YAML | mit | hbc/bcbioRnaseq,hbc/bcbioRnaseq |
95ad222246d236a2d37eb658bc493b01d1eab51e | .forestry/front_matter/templates/review-no.yml | .forestry/front_matter/templates/review-no.yml | ---
label: review-no
hide_body: false
is_partial: false
fields:
- type: include
name: defaults
label: defaults
template: partial-default
- type: include
name: date
label: date
template: partial-date
- name: attribution
label: Attribution
type: text
hidden: false
default: ''
- type: select
name: bo... | ---
label: review-no
hide_body: false
is_partial: false
fields:
- type: text
name: title
label: Title
- type: include
name: date
label: date
template: partial-date
- name: attribution
label: Attribution
type: text
hidden: false
default: ''
- type: select
name: book
config:
source:
type: ... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration | YAML | mit | sonnetmedia/linnullmann,sonnetmedia/linnullmann,sonnetmedia/linnullmann |
b87700f02b16a6868c9462c8c968f63b600f2ffe | .travis.yml | .travis.yml | sudo: false
language: python
cache:
directories:
- $HOME/.pip-cache/
python:
- "2.6"
- "2.7"
env:
matrix:
-TOX-ENV=py26
-TOX-ENV=py26-withlxml
-TOX-ENV=py27
-TOX-ENV=py27-withlxml
-TOX-ENV=docs
install:
- pip install --upgrade pip
- pip install tox
scrip... | sudo: false
language: python
cache:
directories:
- $HOME/.pip-cache/
python:
- "2.6"
- "2.7"
env:
matrix:
- TOX-ENV=py26
- TOX-ENV=py26-withlxml
- TOX-ENV=py27
- TOX-ENV=py27-withlxml
- TOX-ENV=docs
install:
- pip install --upgrade pip
- pip install tox
script:
- tox -e $TOX_ENV
af... | Fix broken Travis CI environment matrix definitions for Tox | Fix broken Travis CI environment matrix definitions for Tox
| YAML | mit | jmurty/xml4h |
8c7d57bf070e4730d6ae36459829aac2627adfc4 | tasks/main.yml | tasks/main.yml | # roles/el7/tasks/main.yml
---
include install.yml # Install repositories and packages
include config.yml # Configuration (/etc/)
include services.yml # Start/stop basic services
include security.yml # Security settings
include users.yml # Create users
include admin.yml # Admin user (a.o. SSH key)
| # roles/el7/tasks/main.yml
---
- include: install.yml # Install repositories and packages
- include: config.yml # Configuration (/etc/)
- include: services.yml # Start/stop basic services
- include: security.yml # Security settings
- include: users.yml # Create users
- include: admin.yml # Admin user (a.o. SS... | Fix syntax errors in include statements | Fix syntax errors in include statements
| YAML | bsd-2-clause | bertvv/ansible-role-el7,bertvv/ansible-role-el7 |
61c1924d645da428bbabfaa9cb956606eb664016 | .coveralls.yml | .coveralls.yml | repo_token: Hr7j4omnfY0n6awXlcKesg42djsYmmFBj
| service_name: travis-ci
repo_token: Hr7j4omnfY0n6awXlcKesg42djsYmmFBj
| Revert "Revert "add service name for coverall"" | Revert "Revert "add service name for coverall""
This reverts commit c6a7920e884ec96c2d803d136878ac2f92ebf83f.
| YAML | mit | marcusg/foreign_key_validation |
e2ce174cb3ac0d9e0e9aaf4f81f6a7c1d552056d | packages/n2/n2o-nitro.yaml | packages/n2/n2o-nitro.yaml | homepage: https://github.com/xafizoff/n2o#readme
changelog-type: ''
hash: 6cdad1ce2b2a501784475f04273d3762c765af31c10adb83f6955c1ff1ec5c67
test-bench-deps: {}
maintainer: xafizoff@gmail.com
synopsis: Nitro Elements, Events and Actions
changelog: ''
basic-deps:
bytestring: ! '>=0.10'
base: ! '>=4.7 && <5'
base64-b... | homepage: https://github.com/xafizoff/n2o#readme
changelog-type: ''
hash: a0a3e54be651bc5d229e4b519682acf62fc2490ddf684d9afe2609d8a3e1ee30
test-bench-deps: {}
maintainer: xafizoff@gmail.com
synopsis: Nitro Elements, Events and Actions
changelog: ''
basic-deps:
bytestring: ! '>=0.10'
base: ! '>=4.7 && <5'
base64-b... | Update from Hackage at 2018-11-01T06:13:52Z | Update from Hackage at 2018-11-01T06:13:52Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
6a3f30796babe3b03e498c0ca98b13ccc4a03274 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: Publish package to GitHub Packages
on:
push:
pull_request:
jobs:
test:
runs-on: windows-latest
env:
JDK_JAVA_OPTIONS: "--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/java.io=ALL-UNNAMED"
steps:
- uses: actions/checkout@v... | name: Publish package to GitHub Packages
on:
push:
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
java-version: [8, 11, 17]
runs-on: ${{ matrix.os }}
env:
JDK_JAVA_OPTIONS: "--add-opens java.base/java.la... | Test on all systems, several java versions | Test on all systems, several java versions
| YAML | apache-2.0 | Codeforces/codeforces-commons,Codeforces/codeforces-commons |
6d079581814faa030c0e73a3c3622bdb0f7eeab2 | ansible/playbooks/apps/stack-data.yaml | ansible/playbooks/apps/stack-data.yaml | ---
- name: AEM Author CloudFormation Stack
hosts: all
gather_facts: no
connection: local
tasks:
- name: Create random credentials for system users
system_users_credentials:
register: credentials
tags:
- create
- name: Ensure data bucket exists
s3_bucket:
name: "... | ---
- name: AEM Author CloudFormation Stack
hosts: all
gather_facts: no
connection: local
tasks:
- name: Generate random credentials for system users
system_users_credentials:
register: credentials
tags:
- create
- name: Ensure stage directory exists
file:
path: ... | Add system user credentials upload to S3. | Add system user credentials upload to S3.
| YAML | apache-2.0 | shinesolutions/aem-aws-stack-builder,shinesolutions/aem-aws-stack-builder |
c0bc8919abe50d24ca4f0a3e624745a333b4c2d0 | recipes/gtabview/meta.yaml | recipes/gtabview/meta.yaml | {% set name = "gtabview" %}
{% set version = "0.10" %}
{% set sha256 = "f791b0a103c9eeb9aa7c76c47c85f16d682d77c07a6f433a0d8a50bd9e7df7e1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ s... | {% set name = "gtabview" %}
{% set version = "0.10" %}
{% set sha256 = "f791b0a103c9eeb9aa7c76c47c85f16d682d77c07a6f433a0d8a50bd9e7df7e1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ s... | Use the same python version on host and run | Use the same python version on host and run
| YAML | bsd-3-clause | goanpeca/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,ReimarBauer/staged-recipes,jakirkham/staged-recipes,scopatz/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,patricksnape/staged-recipes,jochym/staged-recipes,ocefpaf/staged-recipes,hadim/staged-recipes,jakirkham/staged-recip... |
c8de26fff061f08159aeaf3d4a27a30d33778ebc | ansible/roles/openshift/tasks/main.yml | ansible/roles/openshift/tasks/main.yml | ---
- name: Set timezone to UTC
command: timedatectl set-timezone UTC
when: ansible_date_time.tz != 'UTC'
- name: Put /etc/hosts in place
copy:
src: ../files/etc.hosts
dest: /etc/hosts
owner: root
group: root
mode: 0644
- name: Enable selinux
selinux:
policy: targeted
state: enfor... | ---
- name: Set timezone to UTC
command: timedatectl set-timezone UTC
when: ansible_date_time.tz != 'UTC'
- name: Put /etc/hosts in place
copy:
src: ../files/etc.hosts
dest: /etc/hosts
owner: root
group: root
mode: 0644
- name: Enable selinux
selinux:
policy: targeted
state: enfor... | Disable fastmirror as causing timeout issues | Disable fastmirror as causing timeout issues
| YAML | mit | wicksy/vagrant-openshift,wicksy/vagrant-openshift,wicksy/vagrant-openshift |
e71394a58428ccb973f34b874a4ab3ce8ac6d641 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: Build the project
run: ./gradlew build
| name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: Build the project
run: ./gradlew build
connectedCheck:
runs-on: macos-latest
strategy:
matrix:
api-level: [21, 23, 29]
target: [default, g... | Revert "'android-emulator-runner' doesn't support the latest NDK" | Revert "'android-emulator-runner' doesn't support the latest NDK"
This reverts commit 4b1ab6d557510a69c190e3bd821e3983ec240b30.
| YAML | apache-2.0 | yongce/AndroidLib,yongce/AndroidLib |
f8215dae55eb3ac62fe18c74597bbfd9c9f38131 | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- oraclejdk7
install: true
script: "./gradle/buildViaTravis.sh"
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_3529ba3ea696_key -iv $encrypted_3529ba3ea696_iv
-in gr... | language: java
sudo: false
git:
depth: 100
jdk:
- oraclejdk7
install: true
script: "./gradle/buildViaTravis.sh"
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_3529ba3ea696_key -iv $encrypted_3529ba... | Fix version inference failure due to shallow git history | Fix version inference failure due to shallow git history
| YAML | apache-2.0 | nebula-plugins/nebula-ospackage-plugin |
f58ac46724b5e03efb2fe2c8189dbd8d9901f678 | .gitlab-ci.yml | .gitlab-ci.yml | before_script:
- apt-get update -y
- apt-get install default-jre -y
- wget https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein
- chmod a+x lein
- export LEIN_ROOT=1
- export PATH=$PATH:.
build:
stage: build
script:
- ./scripts/build.sh .
only:
- master
# linters:
# stag... | before_script:
- apt-get update -y
- apt-get install default-jre -y
- wget https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein
- chmod a+x lein
- export LEIN_ROOT=1
- export PATH=$PATH:.
build:
stage: build
script:
- ./scripts/build.sh $(pwd)
only:
- master
# linters:
# ... | Build script has been improved to get the lein path via args | Build script has been improved to get the lein path via args
| YAML | mit | Codamic/hellhound |
634528c0b27a9f533db1878ed6971464e93debb6 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
# allow python dependencies to be installed via apt-get
virtualenv:
system_site_packages: true
# command to install dependencies
install:
- pip install --upgrade pip
- sudo apt-get update
- sudo apt-get install -qq ibus python3-gi gir1.2-ibus-1.0 gir1.2-wnck-3.0
- ... | language: python
python:
- "2.7"
- "3.2"
# allow python dependencies to be installed via apt-get
virtualenv:
system_site_packages: true
# setup system for GUI testing
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xv... | Set Travis CI to be able to test GUI | Set Travis CI to be able to test GUI
Added several commands to the Travis CI config file to allow Travis CI to be able to run the GUI Gtk in order to stop it from throwing an initialization error.
Fixes #5
| YAML | mit | ExcaliburZero/jekyll-helper,ExcaliburZero/jekyll-helper |
da0c888ded27e5159ec50e4747545476e2836ea2 | .travis.yml | .travis.yml | sudo: false
language: ruby
cache:
- bundler
bundler_args: --jobs 1 --retry 5 --without development --path vendor/bundle
rvm:
- 2.1.10
- 2.2.5
- 2.3.1
- ruby-head
- rbx-2
env:
- COMPILER=gcc
- COMPILER=clang
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
branch... | sudo: false
language: ruby
cache:
- bundler
bundler_args: --jobs 1 --retry 5 --without development --path vendor/bundle
rvm:
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- ruby-head
- rbx-2
env:
- COMPILER=gcc
- COMPILER=clang
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: rbx... | Update Ruby version in Travis CI. | Update Ruby version in Travis CI.
Signed-off-by: Krzysztof Wilczynski <5f1c0be89013f8fde969a8dcb2fa1d522e94ee00@linux.com>
| YAML | apache-2.0 | kwilczynski/ruby-fizzbuzz,kwilczynski/ruby-fizzbuzz,kwilczynski/ruby-fizzbuzz |
fef44e16fb62ef6148de344b0268b4b83b291d86 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
sudo: false
env:
- DJANGO=1.4.10
- DJANGO=1.5.5
services:
- memcache
before_install:
- bash bin/check_signoff.sh
- pip install -q flake8
- flake8
install:
- pip install -q coverage Django==$DJANGO
- pip install -q -r requirements.txt... | language: python
python:
- "2.6"
- "2.7"
sudo: false
env:
- DJANGO=1.4.16
- DJANGO=1.5.11
services:
- memcached
before_install:
- bash bin/check_signoff.sh
- pip install -q flake8
- flake8
install:
- pip install -q coverage Django==$DJANGO
- pip install -q -r requirements.t... | Fix memcached service name in Travis config | Fix memcached service name in Travis config
Update to the latest Django point versions for testing.
Signed-off-by: Byron Ruth <e9d71f5ee7c92d6dc9e92ffdad17b8bd49418f98@devel.io>
| YAML | bsd-2-clause | murphyke/avocado,murphyke/avocado,murphyke/avocado,murphyke/avocado |
01099ec33140867f7df019069b901182adf384cc | config/jobs/kubernetes-sigs/scheduler-plugins/scheduler-plugins-presubmits.yaml | config/jobs/kubernetes-sigs/scheduler-plugins/scheduler-plugins-presubmits.yaml | # sigs.k8s.io/scheduler-plugins presubmits
presubmits:
kubernetes-sigs/scheduler-plugins:
- name: pull-scheduler-plugins-verify-gofmt
decorate: true
path_alias: sigs.k8s.io/scheduler-plugins
always_run: true
spec:
containers:
- image: golang:1.15.5
command:
- make
... | # sigs.k8s.io/scheduler-plugins presubmits
presubmits:
kubernetes-sigs/scheduler-plugins:
- name: pull-scheduler-plugins-verify-gofmt
decorate: true
path_alias: sigs.k8s.io/scheduler-plugins
always_run: true
spec:
containers:
- image: golang:1.15.8
command:
- make
... | Update scheduler-plugins CI To Go 1.15.8 | Update scheduler-plugins CI To Go 1.15.8
| YAML | apache-2.0 | pwittrock/test-infra,michelle192837/test-infra,BenTheElder/test-infra,cblecker/test-infra,pwittrock/test-infra,BenTheElder/test-infra,dims/test-infra,monopole/test-infra,BenTheElder/test-infra,BenTheElder/test-infra,cblecker/test-infra,monopole/test-infra,BenTheElder/test-infra,fejta/test-infra,cjwagner/test-infra,kube... |
3d087d7714cfc3a86f35251d2e3c6119c9ba8411 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: node-pushnotifications CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 15.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
... | name: node-pushnotifications CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 15.x, 16.x, 17.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
... | Add node 16 and 17 to build matrix | Add node 16 and 17 to build matrix
| YAML | mit | appfeel/node-pushnotifications,appfeel/node-pushnotifications |
09d8eafef3671c4fa4f078be5cfa19dcff766611 | .gitlab-ci.yml | .gitlab-ci.yml | cache:
paths:
- node_modules/
build:
script:
- npm prune
- npm update --depth Infinity
- npm install
- node node_modules/.bin/gulp test | build:
script:
- yarn install
- node node_modules/.bin/gulp test | Update CI to use yarn | Update CI to use yarn
| YAML | mit | spicypixel/cs-concurrency-kit,spicypixel/cs-concurrency-kit,spicypixel/cs-concurrency-kit |
0b7b6237ab3d7f07351d48b57b129a177e477ab8 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
script:
- bundle exec rake test
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
script:
- bundle exec rake test
| Remove ruby < 2 support | Remove ruby < 2 support | YAML | apache-2.0 | inviqa/chef-serverdensity-inviqa,inviqa/chef-serverdensity-inviqa |
b4166c6110b0337a16d38e4c3b3cce31a26ed859 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ '*' ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 'Check out repository'
uses: actions/checkout@v2
- name: 'Set up latest JDK 17'
uses: oracle-actions/setup-java@v1
- na... | name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ '*' ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 'Check out repository'
uses: actions/checkout@v2
- name: 'Set up latest JDK 17'
uses: oracle-actions/setup-java@v1
- na... | Include JFR in build artifact | Include JFR in build artifact
| YAML | mit | sormuras/bach,sormuras/bach |
0b5e4b8e381c07728cb5a20f95efa5ef07824af4 | dispatch.yaml | dispatch.yaml | dispatch:
# Beta PWA
- url: "beta.thebluealliance.com/*"
service: pwa-ssr
# Public API
- url: "*/api/v3/*"
service: api
# Send low-frequency long-running tasks to backend module
- url: "*/backend-tasks/*"
service: backend-tasks
# Send low-frequency long-running tasks to backend module
# Uses B2 instance for hi... | dispatch:
# Beta PWA
- url: "beta.thebluealliance.com/*"
service: pwa-ssr
# Public API
- url: "*/api/v3/*"
service: api
# Send low-frequency long-running tasks to backend module
- url: "*/backend-tasks/*"
service: backend-tasks
# Send low-frequency long-running tasks to backend module
# Uses B2 instance for hi... | Split ClientAPI into separate service | Split ClientAPI into separate service
It's competition season again | YAML | mit | phil-lopreiato/the-blue-alliance,fangeugene/the-blue-alliance,phil-lopreiato/the-blue-alliance,the-blue-alliance/the-blue-alliance,fangeugene/the-blue-alliance,phil-lopreiato/the-blue-alliance,fangeugene/the-blue-alliance,phil-lopreiato/the-blue-alliance,the-blue-alliance/the-blue-alliance,fangeugene/the-blue-alliance,... |
c1d33b2eaa7ca36e4d6de817ed1b83d433fe7bff | .gitlab-ci.yml | .gitlab-ci.yml | stages:
- build
.cache-paths: &cache-paths
paths:
- _ccache/
meson-fedora-x86_64:
image: registry.gitlab.gnome.org/gnome/gdk-pixbuf/master:v1
stage: build
variables:
BUILD_OPTS: "-Dpng=true -Djpeg=true -Dtiff=true -Djasper=true"
script:
- bash -x ./.gitlab/ci/test-docker.sh
artifacts:
wh... | stages:
- build
.cache-paths: &cache-paths
paths:
- _ccache/
meson-fedora-x86_64:
image: registry.gitlab.gnome.org/gnome/gdk-pixbuf/master:v1
stage: build
variables:
BUILD_OPTS: "-Dpng=true -Djpeg=true -Dtiff=true -Djasper=true"
script:
- bash -x ./.gitlab/ci/test-docker.sh
artifacts:
wh... | Fix the artifacts caching on failure | ci: Fix the artifacts caching on failure
We generate a random builddir, so we need to modify the `paths` key for
the artifacts we store on CI failure.
| YAML | lgpl-2.1 | GNOME/gdk-pixbuf,GNOME/gdk-pixbuf,GNOME/gdk-pixbuf,GNOME/gdk-pixbuf |
088ec69eb0fb1ce2d4440e7dcc9817dc2a0961ad | COMPLIANCE.yaml | COMPLIANCE.yaml | name: compliance
description: |
This document is used to track a projects PIA and STRA
compliance.
spec:
- name: PIA
status: exempt
last-updated: '2020-01-20T19:03:49.823Z'
- name: STRA
status: exempt
last-updated: '2020-01-20T19:03:49.824Z'
| name: compliance
description: |
This document is used to track a projects PIA and STRA
compliance.
spec:
- name: PIA
status: not-required
last-updated: '2020-04-15T00:13:51.653Z'
- name: STRA
status: not-required
last-updated: '2020-04-15T00:13:51.653Z'
| Rename PIA and STRA status | Rename PIA and STRA status | YAML | apache-2.0 | bcgov/bcgroundwater |
d06e90d101c067e3e26019e675d5fa519bab3efc | recipes/tophat-recondition/meta.yaml | recipes/tophat-recondition/meta.yaml | about:
home: https://github.com/cbrueffer/tophat-recondition
license: BSD_2_clause
summary: Post-processor for TopHat unmapped reads
package:
name: tophat-recondition
version: 1.1
requirements:
build:
- python
run:
- python
- pysam
test:
commands:
- (to... | about:
home: https://github.com/cbrueffer/tophat-recondition
license: BSD_2_clause
summary: Post-processor for TopHat unmapped reads
package:
name: tophat-recondition
version: 1.2
requirements:
build:
- python
run:
- python
- pysam
test:
commands:
- (to... | Update TopHat-Recondition to version 1.2. | Update TopHat-Recondition to version 1.2.
| YAML | mit | gregvonkuster/bioconda-recipes,zachcp/bioconda-recipes,keuv-grvl/bioconda-recipes,npavlovikj/bioconda-recipes,chapmanb/bioconda-recipes,zachcp/bioconda-recipes,bow/bioconda-recipes,JenCabral/bioconda-recipes,martin-mann/bioconda-recipes,keuv-grvl/bioconda-recipes,bebatut/bioconda-recipes,abims-sbr/bioconda-recipes,dale... |
7c718faf4d036644ced9e5f2432e32e91021e93b | app/config/parameters_dev.yml | app/config/parameters_dev.yml | # This file is auto-generated during the composer install
parameters:
database_driver: pdo_mysql
database_host: 192.168.59.103
database_port: null
database_name: quickstart
database_user: root
database_password: null
mailer_transport: smtp
mailer_host: 127.0.0.1
mailer_user: null
... | # This file is auto-generated during the composer install
parameters:
database_driver: pdo_mysql
database_host: 127.0.0.1
database_port: null
database_name: quickstart
database_user: root
database_password: null
mailer_transport: smtp
mailer_host: 127.0.0.1
mailer_user: null
mail... | Revert "Dev config, defaults to Docker not localhost" | Revert "Dev config, defaults to Docker not localhost"
This reverts commit 116d85203ad359362ed302c802fd2035763b8aca.
| YAML | mit | eddiejaoude/SymfonyQuickStart,eddiejaoude/SymfonyQuickStart |
3dce88eda2ae9756625a739bef505af830554fc3 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on:
workflow_dispatch:
pull_request:
# triggering CI default branch improves caching
# see https://docs.github.com/en/free-pro-team@latest/actions/guides/caching-dependencies-to-speed-up-workflows#restrictions-for-accessing-a-cache
push:
branches:
- main
jobs:
sbt-build:
runs-on: ub... | name: CI
on:
workflow_dispatch:
pull_request:
# triggering CI default branch improves caching
# see https://docs.github.com/en/free-pro-team@latest/actions/guides/caching-dependencies-to-speed-up-workflows#restrictions-for-accessing-a-cache
push:
branches:
- main
jobs:
sbt-build:
runs-on: ub... | Make sure GitHub Actions CI has the token secret it needs | Make sure GitHub Actions CI has the token secret it needs
| YAML | apache-2.0 | guardian/prout |
05f4a20011e89f48d0893bc07aa9cd2d1d0585ef | .gitlab-ci.yml | .gitlab-ci.yml | image: node:latest
stages:
- test
- publish
code quality:
stage: test
script:
- npm ci
- npm run lint
npm outdated:
stage: test
script:
- npm outdated
allow_failure: true
security scan:
stage: test
script:
- npm audit --only=prod
allow_failure: true
test on nodejs lts:
stage: ... | image: node:latest
stages:
- test
- publish
code quality:
stage: test
script:
- npm ci
- npm run lint
npm outdated:
stage: test
script:
- npm outdated
allow_failure: true
security scan:
stage: test
script:
- npm audit --production
test on nodejs lts:
stage: test
image: node:lt... | Allow failure on security scan job | Allow failure on security scan job | YAML | mit | vuedoc/md,vuedoc/md |
7739195da7805d4d4ef388b89bdfbe9c3f78a50c | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on:
push:
branches:
- main
- "renovate/**"
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- id: nvm
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
- uses: actions/setup-node@v2-beta
with:
node-ve... | name: CI
on:
push:
branches:
- main
- "renovate/**"
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- id: nvm
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
- uses: actions/setup-node@v2-beta
with:
node-ve... | Switch over to coveralls GitHub action | Switch over to coveralls GitHub action | YAML | mit | springload/draftail,springload/draftail,springload/draftail,springload/draftail |
a4044ed6734910e33f65b0c4f926c7fcfd30be0a | packages/ni/nix-paths.yaml | packages/ni/nix-paths.yaml | homepage: https://github.com/peti/nix-paths
changelog-type: ''
hash: 348e510f34ab00cfbdf336a862136e0f3f505eff05ccc963e574c6f655e9869e
test-bench-deps: {}
maintainer: simons@cryp.to
synopsis: Knowledge of Nix's installation directories.
changelog: ''
basic-deps:
base: <5
process: -any
all-versions:
- '1'
- '1.0.0.1'... | homepage: https://github.com/peti/nix-paths
changelog-type: ''
hash: 88aebeb99b314d463134300ecb052cdf9e3580dceb376793b011ac4aa4dfbfb8
test-bench-deps: {}
maintainer: simons@cryp.to
synopsis: Knowledge of Nix's installation directories.
changelog: ''
basic-deps:
base: <5
process: -any
all-versions:
- '1'
- '1.0.0.1'... | Update from Hackage at 2017-12-05T09:33:19Z | Update from Hackage at 2017-12-05T09:33:19Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.