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 |
|---|---|---|---|---|---|---|---|---|---|
0ac677ed33a7f6d79d1e2303163870c731ca56ab | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 5.5
- 5.4
- 5.3
before_script:
- composer install
script: bin/phpunit --coverage-clover=coverage.clover Tests
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
| language: php
php:
- 7.0
- 5.6
- 5.5
- 5.4
- 5.3
before_script:
- composer install
script: bin/phpunit --coverage-clover=coverage.clover Tests
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
| Add php 7.0 to build | Add php 7.0 to build
| YAML | mit | olaurendeau/RabbitMqAdminToolkitBundle |
9cbc8d2b5f5126ff59fa4d34d43a03adf703c5c0 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
- composer validate
- composer install --prefer-dist --no-interaction
script:
- vendor/bin/phpunit --coverage-clover=coverage.clover
- ... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
- composer validate
- composer update --no-interaction
script:
- vendor/bin/phpunit --coverage-clover=coverage.clover
- wget https://sc... | Change composer install to composer update | Change composer install to composer update
| YAML | mit | elevenone/PHPRouter,desertknight/PHPRouter |
fc9b30ca9315fd956b9790e9d8d9ee08a0fe59cd | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.5"
sudo: false
install:
- pip install pylint
- pip install pep8
script:
- python3 linters_test.py
- python3 lint.py validate --all
| language: python
python:
- "3.5"
sudo: false
install:
- pip install pylint
- pip install pep8
script:
- python3 linters_test.py
- python3 lint.py validate --all
| Drop support for Python 3.3 | Drop support for Python 3.3
Even Python 3.5 is old now.
| YAML | bsd-3-clause | omegaup/hook_tools,omegaup/hook_tools,omegaup/hook_tools |
affae661d64a5941e0c71d1214b4b46088890096 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.11"
matrix:
allow_failures:
- node_js: "0.11"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
| Test against latest stable iojs | Test against latest stable iojs
Also test against Node 0.12.
I anticipate that we'll drop Node 0.10 and 0.12[1] support eventually, but for
now it works so let's keep testing against it.
[1] If Joyent's Node continues to see significant usage and development, I'll
consider supporting both Node and iojs in parallel.
| YAML | mit | broccolijs/broccoli,gabesoft/broccoli,osxi/broccoli,broccolijs/broccoli,ember-cli/broccoli,gabesoft/broccoli,gabesoft/broccoli,osxi/broccoli,broccolijs/broccoli,ember-cli/broccoli,osxi/broccoli,broccolijs/broccoli,ember-cli/broccoli |
d9c57b80ef56600eb62c0e80d047633298830da5 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- "1.8"
- "1.9"
- "1.10"
- tip
before_install:
- go get -t -v ./...
script:
- ./.travis/tests.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: go
sudo: false
go:
- "1.10"
- "1.11"
before_install:
- go get -t -v ./...
script:
- ./.travis/tests.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
| Build on 1.10 and 1.11 as 1.8 and 1.9 are too old | Build on 1.10 and 1.11 as 1.8 and 1.9 are too old
| YAML | bsd-3-clause | GanShun/u-root,hugelgupf/u-root,u-root/u-root,hugelgupf/u-root,GanShun/u-root,hugelgupf/u-root,u-root/u-root,hugelgupf/u-root,GanShun/u-root,u-root/u-root |
3910856bf68faae8b7aae0cd98f1c42b85d788eb | .travis.yml | .travis.yml | language: php
notifications:
email:
on_success: never
on_failure: change
branches:
only:
- master
php:
- 5.3
- 5.6
env:
- WP_VERSION=latest WP_MULTISITE=0
- WP_VERSION=4.2 WP_MULTISITE=0
- WP_VERSION=4.7 WP_MULTISITE=0
matrix:
include:
- php: 5.3
env: WP_VERSION=latest WP_MULT... | language: php
dist: precise
notifications:
email:
on_success: never
on_failure: change
branches:
only:
- master
php:
- 5.3
- 5.6
env:
- WP_VERSION=latest WP_MULTISITE=0
- WP_VERSION=4.2 WP_MULTISITE=0
- WP_VERSION=4.7 WP_MULTISITE=0
matrix:
include:
- php: 5.3
env: WP_VERSION=... | Switch to Precise build env. for PHP 5.3 support | Switch to Precise build env. for PHP 5.3 support | YAML | mit | YahnisElsts/admin-notices,YahnisElsts/admin-notices,YahnisElsts/admin-notices |
f62776d53d607bd07b1082582b03475ff6edcfda | ansible/initialize.yaml | ansible/initialize.yaml | ---
- lineinfile: dest=/etc/yum/pluginconf.d/fastestmirror.conf regexp=^enabled= line=enabled=0
- yum: name=http://rdoproject.org/repos/openstack-kilo/rdo-release-kilo.rpm state=present
- get_url: url=https://repos.fedorapeople.org/repos/openstack/openstack-trunk/epel-7/rc2/delorean-kilo.repo dest=/etc/yum.repos.d/delo... | ---
- lineinfile: dest=/etc/yum/pluginconf.d/fastestmirror.conf regexp=^enabled= line=enabled=0
- yum: name=http://rdoproject.org/repos/openstack-kilo/rdo-testing-kilo.rpm state=present
- yum: name=* state=latest
- yum: name=openstack-selinux state=present
- copy: src=files/id_rsa dest=/home/vagrant/.ssh/id_packstack m... | Use rdo-testing-kilo until publication of rdo-release-kilo | Use rdo-testing-kilo until publication of rdo-release-kilo
Change-Id: I096d0005a935eb524cbb00ade92b1a5e8faa5196
| YAML | apache-2.0 | sasukeh/packstack-vagrant,sasukeh/packstack-vagrant |
d3a27bb0748ffd6d7c4e10f0552d9144575dd7af | .travis.yml | .travis.yml | # brian's standard Travis CI config for Perl 5 modules
# https://github.com/briandfoy/brians_perl_modules_travis_config
# This file is licensed under the Artistic License 2.0
sudo: false
language: perl
perl:
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
- ... | # brian's standard Travis CI config for Perl 5 modules
# This one doesn't do the extra work to use v5.8.
# https://github.com/briandfoy/brians_perl_modules_travis_config
# This file is licensed under the Artistic License 2.0
sudo: false
dist: trusty
cache:
directories:
- $HOME/.perlbrew-cache
language: perl... | Use trusty for everything, and cache perl builds | Use trusty for everything, and cache perl builds
| YAML | artistic-2.0 | briandfoy/Module-Extract-DeclaredMinimumPerl,briandfoy/Module-Extract-DeclaredMinimumPerl |
fe48495fc06f712439fed95c4544a4951e30ad0d | .travis.yml | .travis.yml | language: python
python:
- '3.5'
services:
- postgresql
addons:
postgresql: "9.4"
install: pip install -r api/requirements.txt
before_script:
- psql -c 'create user teamfinder;' -U postgres
- psql -c 'create database teamfinder owner teamfinder;' -U postgres
- echo "SECRET_KEY = 'foo'" > api/teamfinder/sett... | language: python
python:
- '3.5'
services:
- postgresql
addons:
postgresql: "9.4"
install: pip install -r api/requirements.txt
before_script:
- psql -c 'create user teamfinder with CREATEDB;' -U postgres
- psql -c 'create database teamfinder owner teamfinder;' -U postgres
- echo "SECRET_KEY = 'foo'" > api/t... | Create postgres user with createdb permission | Create postgres user with createdb permission
| YAML | apache-2.0 | prattl/teamfinder,prattl/teamfinder,prattl/teamfinder,prattl/teamfinder |
8d45ee4138a8e9f7272416d4fe414dafb7c54146 | .travis.yml | .travis.yml | language: python
install:
- pip install pipenv
python:
- "3.6"
- "3.7-dev"
matrix:
include:
- python: "3.7"
dist: xenial
sudo: true
script: make checklist
after_success:
- codecov
| language: python
install:
- pip install pipenv
python:
- "3.6"
- "3.7"
- "3.7-dev"
- "3.8-dev"
matrix:
include:
- python: "3.7"
dist: xenial
sudo: true
script: make checklist
after_success:
- codecov
| Build against Python 3.8-dev as well | Build against Python 3.8-dev as well
| YAML | mit | rmariano/compr,rmariano/compr |
07fedaed2ea60b2b7d815f642f174205a28d5809 | .travis.yml | .travis.yml | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode7.3
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-direc... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode8.3
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-direc... | Set Travis osx_image to xcode8.3 | Set Travis osx_image to xcode8.3
| YAML | mit | dadalar/DDSpiderChart,dadalar/DDSpiderChart |
a288d371a400f9c4fe814de2293ebfa042b92e80 | .github/workflows/issues.yml | .github/workflows/issues.yml | name: issue assignment
on:
issues:
types: [opened]
jobs:
auto-assign:
runs-on: ubuntu-latest
steps:
- name: 'auto-assign issue'
uses: pozil/auto-assign-issue@v1.10.0
with:
assignees: konstruktoid
| name: issue assignment
on:
issues:
types: [opened]
jobs:
auto-assign:
runs-on: ubuntu-latest
steps:
- name: 'auto-assign issue'
uses: pozil/auto-assign-issue@v1.10.1
with:
assignees: konstruktoid
| Update pozil/auto-assign-issue action to v1.10.1 | Update pozil/auto-assign-issue action to v1.10.1 | YAML | apache-2.0 | konstruktoid/ansible-role-hardening |
dc9cc4021609ba1f5d4654d3aafc587807941d81 | .travis.yml | .travis.yml | language: clojure
jdk: oraclejdk10
lein: 2.8.1
script:
- lein doo phantom test once
- lein cljsbuild once release
- lein less once
| language: clojure
jdk: openjdk10
lein: 2.8.1
before_install:
- rm "${JAVA_HOME}/lib/security/cacerts"
- ln -s /etc/ssl/certs/java/cacerts "${JAVA_HOME}/lib/security/cacerts"
script:
- lein doo phantom test once
- lein cljsbuild once release
- lein less once
| Switch to openjdk10 since oraclejdk10 is deprecated | Switch to openjdk10 since oraclejdk10 is deprecated
| YAML | apache-2.0 | asciinema/asciinema-player,asciinema/asciinema-player |
8e6a6dbd48d0a7fb9fe73bc54b493e24531ac087 | .travis.yml | .travis.yml | language: node_js
node_js:
- "lts/*"
cache:
npm: true
before_install:
- export CHROME_BIN=/usr/bin/google-chrome
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- npm run lint
- npm run build
- npm run test:ci
| language: node_js
node_js:
- "lts/*"
cache:
npm: true
before_install:
- export CHROME_BIN=/usr/bin/google-chrome
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- npm run lint
- npm run build:all
- npm run test:ci
| Use build:all in Travis CI to avoid dependency on credentials file. | Use build:all in Travis CI to avoid dependency on credentials file.
| YAML | apache-2.0 | conversationai/perspective-viewership-extension,conversationai/perspective-viewership-extension,conversationai/perspective-viewership-extension |
e92b691a0a462b3ba6ed017ba3de747b3476763b | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.1
- 2.2.0
gemfile:
- test/gemfiles/rails-3.1
- test/gemfiles/rails-3.2
- test/gemfiles/rails-4.0
- test/gemfiles/rails-4.1
- test/gemfiles/rails-4.2
matrix:
exclude:
- { rvm: 1.9.2, gemfile: test/gemfiles/rails-4.0 }
- { rvm: 1.9.2, gemfile... | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- 2.2.0
gemfile:
- test/gemfiles/rails-3.1
- test/gemfiles/rails-3.2
- test/gemfiles/rails-4.0
- test/gemfiles/rails-4.1
- test/gemfiles/rails-4.2
matrix:
exclude:
- { rvm: 2.0.0, gemfile: test/gemfiles/rails-3.1 }
- { rvm: 2.0.0, gemfile: test/gem... | Drop Ruby 1.9.2 since not even Rails 3.1 supports it. | Drop Ruby 1.9.2 since not even Rails 3.1 supports it.
| YAML | mit | cedric/custom_counter_cache |
be02d7d0513f2f2fc4832f4174926a62e2236de7 | .travis.yml | .travis.yml | rvm:
- 2.2.2
env:
global:
- DATABASE_URL=postgresql://postgres@localhost
script: bundle exec rake
| rvm:
- 2.2.2
gemfile:
- gemfiles/activerecord_5.1.gemfile
- gemfiles/activerecord_5.2.gemfile
env:
global:
- DATABASE_URL=postgresql://postgres@localhost
script: bundle exec rake
| Add gemfile to the matrix | Add gemfile to the matrix
| YAML | mit | dmexe/activerecord_pg_stuff,dima-exe/activerecord_pg_stuff |
eaff43be4bcaaceb4312508aa001b8ca89032cb8 | .travis.yml | .travis.yml | sudo: false
language: rust
rust:
- stable
- beta
- nightly
- 1.31.0
script:
- cargo build
- cargo test
matrix:
include:
- rust: 1.19.0
script:
- cargo build
| sudo: false
language: rust
rust:
- stable
- beta
- nightly
- 1.31.0
script:
- cargo build
- cargo test
| Drop support for rust 1.19 | Drop support for rust 1.19
| YAML | apache-2.0 | dtolnay/erased-serde |
25530efe25e9ab0bbb4cb6648ae512027dc7f049 | .travis.yml | .travis.yml | sudo: false
language: perl
perl:
- "blead"
- "dev"
- "5.22"
- "5.22-thr"
- "5.20"
- "5.20-thr"
- "5.18.3"
- "5.18.3-thr"
matrix:
allow_failures:
- perl: blead
before_install:
- eval $(curl https://travis-perl.github.io/init) --auto
| sudo: false
language: perl
perl:
- "blead"
- "dev"
- "5.24"
- "5.24-thr"
- "5.22"
- "5.22-thr"
- "5.20"
- "5.20-thr"
- "5.18.3"
- "5.18.3-thr"
- "5.16"
- "5.16-thr"
- "5.14"
- "5.14-thr"
- "5.12"
- "5.12-thr"
- "5.12"
- "5.12-thr"
- "5.10.0"
... | Add more Perl versions to Travis test runs | Add more Perl versions to Travis test runs
| YAML | mit | p5pclub/ref-util |
d711abf16391664215b63f10a84789c4dbc78f71 | .azure-pipelines.yml | .azure-pipelines.yml | # Python package
# Create and test a Python package on multiple Python versions.
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
# https://docs.microsoft.com/vsts/pipelines/languages/python
jobs:
- job: 'Testing'
displayName: 'Unit Testing'
pool:
... | # Python package
# Create and test a Python package on multiple Python versions.
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
# https://docs.microsoft.com/vsts/pipelines/languages/python
jobs:
- job: 'Testing'
displayName: 'Unit Testing'
pool:
... | Fix more Azure script syntax issues | Fix more Azure script syntax issues
| YAML | bsd-3-clause | psi4/DatenQM,psi4/DatenQM,psi4/mongo_qcdb,psi4/mongo_qcdb |
c4056de2adb06018ff01c11efab573a10383fa44 | .travis.yml | .travis.yml | language: generic
sudo: required
env:
globaL:
- DOCKER_VERSION=1.11.2-0~trusty
- DOCKER_COMPOSE_VERSION=1.7.1
- COMPOSE_HTTP_TIMEOUT=3600
#env:
# - test: Ubuntu 14.04 Apache
# distribution: ubuntu
# version: 14.04
# init: /sbin/init
# run_opts: ""
addons:
hosts:
- aegir.travis
-... | language: generic
sudo: required
env:
globaL:
- DOCKER_VERSION=1.11.2-0~trusty
- DOCKER_COMPOSE_VERSION=1.7.1
- COMPOSE_HTTP_TIMEOUT=3600
#env:
# - test: Ubuntu 14.04 Apache
# distribution: ubuntu
# version: 14.04
# init: /sbin/init
# run_opts: ""
addons:
hosts:
- aegir.travis
-... | Use -E to keep environment variables. | Use -E to keep environment variables.
| YAML | mit | aegir-project/tests,aegir-project/tests |
c58d192dad32e7894cd8450cd064fe6f0b46f81a | .travis.yml | .travis.yml | language: ruby
cache:
- bundler
install:
- bundle install
rvm:
- 1.9.3
- 2.0
- 2.1
notifications:
email:
recipients:
- mattjones@yieldbot.com
on_success: change
on_failure: always
script:
- 'bundle exec rake default'
| language: ruby
cache:
- bundler
install:
- bundle install
rvm:
- 1.9.3
- 2.0
- 2.1
notifications:
irc:
channels:
- "chat.freenode.net#sensu"
on_success: change
on_failure: always
email:
recipients:
- mattjones@yieldbot.com
- rich.m.chatterton@gmail.com
on_success: cha... | Add IRC notifications to Travis; add myself to email notifications | Add IRC notifications to Travis; add myself to email notifications
| YAML | mit | tomduckering/sensu-plugins-process-checks,tomduckering/sensu-plugins-process-checks,joshbeard/sensu-plugins-process-checks,sensu-plugins/sensu-plugins-process-checks,jaimegago/sensu-plugins-process-checks,sensu-plugins/sensu-plugins-process-checks,sensu-plugins/sensu-plugins-process-checks,joshbeard/sensu-plugins-proce... |
71cd4702d56c252d64db94cb7dd7216f88473808 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
sudo: false
addons:
apt:
sources:
- debian-sid
packages:
- libssl1.0.0
env:
matrix:
- VAULT_VER=0.5.2
- VAULT_VER=0.6.0
- VAULT_VER=0.6.1
- VAULT_VER=0.6.2
- VAULT_VER=0.6.3
- VAULT_VER=0.6.4
- VAULT_VER=0.6.5
- VAULT_VER=0.7... | language: java
jdk:
- oraclejdk8
sudo: false
addons:
apt:
sources:
- debian-sid
packages:
- libssl1.0.0
env:
matrix:
- VAULT_VER=0.5.2
- VAULT_VER=0.6.0
- VAULT_VER=0.6.1
- VAULT_VER=0.6.2
- VAULT_VER=0.6.3
- VAULT_VER=0.6.4
- VAULT_VER=0.6.5
- VAULT_VER=0.7... | Use Maven wrapper for build. | Use Maven wrapper for build.
Use a well-defined Maven version to control the build environment.
See gh-83.
| YAML | apache-2.0 | mp911de/spring-vault,mp911de/spring-vault |
f861acb4d6a604820f9070ef0ae826d81d8d4f06 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.0
- 2.2.0
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.0
- 1.9.3
- rbx-2
script: bundle exec rspec spec
env:
global:
secure: kBCnfwyeUmQhO9JyBBD4Su8S7Xc10MDyJKoUcExiPjHXsLOIuu9uj1glEbEHg26XEqPlitc3qULswiy0HrGVdr9CqE3Qs1Q5yX0F3/Us5UJFf5w7dqBFpub+NkQS7dyzm/U5qVMkPrdVCNm0fxPyZP0zVQ8YyKHlM6iSjI7Rf68=
| language: ruby
rvm:
- 2.4
- 2.3
- 2.2
- 2.1
- 2.0
- 1.9.3
- rbx-2
script: bundle exec rspec spec
env:
global:
secure: kBCnfwyeUmQhO9JyBBD4Su8S7Xc10MDyJKoUcExiPjHXsLOIuu9uj1glEbEHg26XEqPlitc3qULswiy0HrGVdr9CqE3Qs1Q5yX0F3/Us5UJFf5w7dqBFpub+NkQS7dyzm/U5qVMkPrdVCNm0fxPyZP0zVQ8YyKHlM6iSjI7Rf68=
| Change to use the latest Ruby patch versions in build | Chore: Change to use the latest Ruby patch versions in build
| YAML | mit | thekompanee/chamber,thekompanee/chamber |
793288fd240db64fcd35e7bc6520c0f13c65c6af | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
#- "3.5-dev" # 3.5 development branch
#- "nightly" # currently points to 3.6-dev
notifications:
email: false
cache: pip
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y -qq python-dev gfortran liblapack-... | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
#- "3.5-dev" # 3.5 development branch
#- "nightly" # currently points to 3.6-dev
notifications:
email: false
cache: pip
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y -qq python-dev gfortran liblapack-... | Add dependencies to TravisCI configuration | Add dependencies to TravisCI configuration
| YAML | mit | crcollins/molml |
57366445947a2c2706a5170182d86f3e1a19d5c7 | .travis.yml | .travis.yml | language: node_js
notifications:
email:
on_success: never
on_failure: change
node_js:
- 0.10
git:
depth: 10
| sudo: false
language: node_js
notifications:
email:
on_success: never
on_failure: change
node_js:
- 0.10
git:
depth: 10
| Use docker infrastructure on Travis-CI | Use docker infrastructure on Travis-CI
| YAML | mit | NeekSandhu/event-kit,atom/event-kit |
787293b082e21a157806ee76a661b9474d6ba09e | .travis.yml | .travis.yml | language: android
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- build-tools-27.0.3
- android-27
script:
- ./gradlew check
| language: android
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- build-tools-27.0.3
- android-27
before_install:
- yes | sdkmanager "platforms;android-27"
script:
- ./gradlew check
| Fix Travis-CI license issue for android 27 | Fix Travis-CI license issue for android 27
Travis somehow doesn't accept license for android 27 and gives the following error.
You have not accepted the license agreements of the following SDK components:
[Android SDK Platform 27].
It seems the issue is related some checksum changes, therefore the fix is to enforc... | YAML | apache-2.0 | orhanobut/logger,orhanobut/logger |
1c5685cc7aa3e40111fae7009c8577b03e03ce16 | .travis.yml | .travis.yml | language: php
php:
- hhvm
- 5.6
- 5.5
- 5.4
- 5.3
install:
- travis_retry composer install --prefer-dist
before_script:
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;
script:
- phpunit --coverage-clover=cover... | language: php
php:
- hhvm
- 5.6
- 5.5
- 5.4
- 5.3
install:
- travis_retry composer install --prefer-dist
before_script:
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;
script:
- phpunit --coverage-clover=cover... | Send only PHP 5.6 test coverage to Scrutinizer | Send only PHP 5.6 test coverage to Scrutinizer
| YAML | mit | kgilden/pager |
63ab1b1e2718f029d14b32087f07324b6d2f539b | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: ubuntu:14.04
steps:
# Ensure image has git
- run: apt-get -qq update; apt-get -y install git; apt-get install wget; apt-get -y install build-essential
- checkout
- run:
name: "Pull Submodules"
command: |
... | version: 2
jobs:
build:
docker:
- image: ubuntu:14.04
steps:
# Ensure image has git
- run: apt-get -qq update; apt-get -y install git; apt-get install wget; apt-get -y install build-essential
- checkout
- run:
name: "Pull Submodules"
command: |
... | Remove update-alternatives line for Cmake post-compile (hopefully still system wide?) | Remove update-alternatives line for Cmake post-compile (hopefully still system wide?)
| YAML | mit | AmrikSadhra/FCE-to-OBJ,AmrikSadhra/FCE-to-OBJ |
5987775cfd54c07ba8ba8e3794bb69fda1242f16 | .pre-commit-config.yaml | .pre-commit-config.yaml | ---
repos:
# - repo: https://github.com/PyCQA/doc8
# rev: 0.8.1
# hooks:
# - id: doc8
# name: doc8
# description: This hook runs doc8 for linting docs.
# entry: python -m doc8
# language: python
# files: \.rst$
# require_serial: true
- repo: https://gith... | ---
repos:
- repo: https://github.com/PyCQA/doc8
rev: 0.8.1
hooks:
- id: doc8
name: doc8
description: This hook runs doc8 for linting docs.
entry: python -m doc8
language: python
files: \.rst$
require_serial: true
# - repo: https://github.com/psf/black.g... | Test to see if Black is failing | Test to see if Black is failing
| YAML | bsd-3-clause | audreyr/cookiecutter,audreyr/cookiecutter |
0624bb10368a434bf9cda957e1659cf3b8559d97 | .pre-commit-config.yaml | .pre-commit-config.yaml | repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v1.2.3
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: autopep8-wrapper
- id: check-docstring-first
- id: check-yaml
- id: debug-statements
- id: flake8
- repo: https://github.com/asot... | repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-docstring-first
- id: check-yaml
- id: debug-statements
- id: flake8
- repo: https://github.com/pre-commit/mirrors-autopep8
r... | Migrate from autopep8-wrapper to mirrors-autopep8 | Migrate from autopep8-wrapper to mirrors-autopep8
Committed via https://github.com/asottile/all-repos
| YAML | mit | asottile/tox-pip-extensions,asottile/tox-pip-extensions |
7304cf37089ba07132b58815444fb4526d20bc26 | .pre-commit-config.yaml | .pre-commit-config.yaml | repos:
- repo: https://github.com/psf/black
rev: 21.5b0
hooks:
- id: black
language_version: python3.7
| repos:
- repo: https://github.com/psf/black
rev: stable
hooks:
- id: black
language_version: python3.7
| Change precommit hook to use stable black. | Change precommit hook to use stable black.
| YAML | bsd-3-clause | dbcli/pgcli,dbcli/pgcli |
48e4801873686ff6cda71d1d5b709859416a54b4 | .travis.yml | .travis.yml | language: node_js
node_js:
- 11
- 10
- 9
- 8
| language: node_js
node_js:
- 12
- 11
- 10
- 9
- 8
| Add Node.js 12.x to test | Add Node.js 12.x to test
| YAML | mit | burningtree/uson |
c7553af9b719c14677bf588854d2f5a3553b4c49 | .travis.yml | .travis.yml | language: go
go:
- 1.5
- 1.6
- 1.7
- 1.7.1
- 1.7.2
- 1.7.3
- 1.7.4
- 1.8
script:
- go test -coverprofile=xpath2_coverage.txt -covermode=atomic ./xpath2
- go test -coverprofile=xslt_coverage.txt -covermode=atomic ./xslt
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: go
go:
- 1.6
- 1.7
- 1.7.1
- 1.7.2
- 1.7.3
- 1.7.4
- 1.8
- 1.9
script:
- go test -coverprofile=xpath2_coverage.txt -covermode=atomic ./xpath2
- go test -coverprofile=xslt_coverage.txt -covermode=atomic ./xslt
after_success:
- bash <(curl -s https://codecov.io/bash)
| Update builds to include go 1.9 | Update builds to include go 1.9 | YAML | mit | jbuchbinder/ratago,jbowtie/ratago |
a7c0df4d5013e60933d3eaa752982d7dc6a3a901 | .pre-commit-config.yaml | .pre-commit-config.yaml | # Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | # Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | Add suite of golang precommits | Add suite of golang precommits
Source: [pre-commit-golang](https://github.com/dnephin/pre-commit-golang)
| YAML | apache-2.0 | GoogleCloudPlatform/hpc-toolkit,GoogleCloudPlatform/hpc-toolkit,GoogleCloudPlatform/hpc-toolkit,GoogleCloudPlatform/hpc-toolkit |
afc2476abc02fd2c103ee7fab4a79b10d61cfe47 | .pre-commit-config.yaml | .pre-commit-config.yaml | repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v1.2.3
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: autopep8-wrapper
- id: check-docstring-first
- id: check-yaml
- id: debug-statements
- id: name-tests-test
- id: requirements... | repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-docstring-first
- id: check-yaml
- id: debug-statements
- id: name-tests-test
- id: requirements-txt-fixer
- id: flake8... | Migrate from autopep8-wrapper to mirrors-autopep8 | Migrate from autopep8-wrapper to mirrors-autopep8
Committed via https://github.com/asottile/all-repos
| YAML | mit | asottile/aspy.yaml |
ce86a7606cd43aeb2a58f1df71732cf313e3cf01 | samples/bluemixZoneDemo/manifest.yml | samples/bluemixZoneDemo/manifest.yml | applications:
- command: python server.py
path: .
instances: 1
memory: 64M
buildpack: https://github.com/heroku/heroku-buildpack-python.git
| applications:
- command: python server.py
path: .
instances: 4
memory: 512M
buildpack: https://github.com/heroku/heroku-buildpack-python.git
| Set logging to error only and minor error handling tweaks | Set logging to error only and minor error handling tweaks
| YAML | epl-1.0 | biddyweb/iot-python,ibm-messaging/iot-python,ibm-watson-iot/iot-python,rohitg02/iot-python,ibm-watson-iot/iot-python,nenel83/fuzzy-avenger,Thirumalesh-HS/iot-python,Lokesh-K-Haralakatta/iot-python |
8b4b37668cb0d0286d85a92f1f399025df8df4d1 | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
python: circleci/python@1.1.0
jobs:
build:
docker:
- image: cimg/python:3.8
environment:
DJANGO_SETTINGS_MODULE: chowist.settings.test
- image: postgres:12
environment:
POSTGRES_USER: circleci
POSTGRES_PASSWORD: circleci
PO... | version: 2.1
orbs:
python: circleci/python@1.1.0
jobs:
build-and-test:
docker:
- image: cimg/python:3.8
environment:
DJANGO_SETTINGS_MODULE: chowist.settings.test
- image: postgres:12
environment:
POSTGRES_USER: circleci
POSTGRES_PASSWORD: circleci
... | Change name of circleci job | Change name of circleci job
| YAML | mit | huangsam/chowist,huangsam/chowist,huangsam/chowist |
e8b1a1c6c0e124cb9eb5f546d7401693621b0c94 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- '4.0'
- '9.0'
after_script: bash <(curl -s https://codecov.io/bash)
deploy:
- provider: npm
email: tituswormer@gmail.com
api_key:
secure: g/HZbD1R9+vEtEEdUtL7p/F8Nr5k+jbfcKTkrz4WdBW46vAW1j9G+bQadLtDbOJUuNHg4+GNQogu5NFztM0tcVZdx1JD7d6HmbdomREQlJG8QwWApCzwpS969G0g2... | language: node_js
sudo: false
node_js:
- '4.0'
- '9.0'
after_script: bash <(curl -s https://codecov.io/bash)
deploy:
provider: releases
skip_cleanup: true
api_key:
secure: IeXJwcXfeaywDcFJ6hNTHncgnRQopLsZKQ8BmZAx2aM8Pyj2tAG4ICMMmU+/hPeSB6TdueV0gS18rphRnqacuWP2PrjX7bSoww8MjzVTdt5XeOXWUgcRCYdq+te+ahj/yyGdNYZe70... | Remove npm deployment from Travis | Remove npm deployment from Travis
| YAML | mit | wooorm/coleman-liau |
ffc9428af55e02db15d039f2b158120284131fcd | .pre-commit-config.yaml | .pre-commit-config.yaml | repos:
- repo: https://github.com/pre-commit/pre-commit-hooks.git
sha: v0.9.1
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: autopep8-wrapper
- id: check-docstring-first
- id: check-yaml
- id: debug-statements
- id: requirements-txt-fixer
- id: f... | repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
sha: v0.9.1
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: autopep8-wrapper
- id: check-docstring-first
- id: check-yaml
- id: debug-statements
- id: requirements-txt-fixer
- id: flake... | Normalize git urls in pre-commit config | Normalize git urls in pre-commit config
Improves cache performance
Committed via https://github.com/asottile/all-repos
| YAML | mit | asottile/pyterminalsize,asottile/pyterminalsize |
58ebe587aaeedf21377932d9ac77c8d32813ef55 | .travis.yml | .travis.yml | dist: trusty
sudo: required
language: python
python:
- "3.5"
- "3.6"
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y gir1.2-gtk-3.0 gir1.2-appindicator3-0.1 gir1.2-notify-0.7 python3-gi
install: pip3 install -r requirements.txt
script: python3 -m unittest bitcoin_test | language: python
python:
- "3.5"
- "3.6"
script: python -m unittest exchange/bitstamp_test.py | Test the only testable package | Test the only testable package
| YAML | mit | rvelhote/bitcoin-indicator,rvelhote/bitcoin-indicator |
23e8ea6e32263b4a958d6a40353a4d3b930469a6 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- ruby-head
- jruby
env:
- RSPEC_VERSION=2.14
- RSPEC_VERSION=2.99
- RSPEC_VERSION=3.0
- RSPEC_VERSION=3.1
- RSPEC_VERSION=head
before_install: gem update --remote bundler
script: bundle exec rake ci
sudo: false
cache: bundler
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- ruby-head
- jruby
env:
- RSPEC_VERSION=2.14
- RSPEC_VERSION=2.99
- RSPEC_VERSION=3.0
- RSPEC_VERSION=3.1
- RSPEC_VERSION=head
before_install: gem update --remote bundler
script: bundle exec rake ci
sudo: false
cache: bundler
| Enable Ruby 2.2 on Travis CI | Enable Ruby 2.2 on Travis CI
| YAML | mit | yujinakayama/transpec,yujinakayama/transpec,irfanah/transpec,irfanah/transpec |
4e37925daa7025039a2d79ddf539aa4f60c17652 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "4.2"
addons:
code_climate:
repo_token: 3ea8622d957330fec45b641e8ed2650f7a83bc905a38d94f3d43738caf8b227a
before_install:
- wget http://www.us.apache.org/dist/kafka/0.9.0.0/kafka_2.11-0.9.0.0.tgz -O kafka.tgz
- mkdir -p kafka && tar xzf kafka.tgz -C kafka --strip-co... | language: node_js
node_js:
- "0.10"
- "4.3"
addons:
code_climate:
repo_token: 3ea8622d957330fec45b641e8ed2650f7a83bc905a38d94f3d43738caf8b227a
before_install:
- wget http://www.us.apache.org/dist/kafka/0.9.0.0/kafka_2.11-0.9.0.0.tgz -O kafka.tgz
- mkdir -p kafka && tar xzf kafka.tgz -C kafka --strip-co... | Update Node LTS to 4.3 branch | Update Node LTS to 4.3 branch
| YAML | mit | hunterloftis/kafka,oleksiyk/kafka |
a2a3c94577e4a502726854af4c8aba50286413bc | .travis.yml | .travis.yml | sudo: false
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/scala-$TRAVIS_SCALA_VERSION
language: scala
script:
- sbt -Dfile.encoding=UTF8 -J-XX:ReservedCodeCacheSize=256M scripted
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 ... | # Use container-based infrastructure
sudo: false
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/scala-$TRAVIS_SCALA_VERSION
language: scala
script:
- sbt -Dfile.encoding=UTF8 -J-XX:ReservedCodeCacheSize=256M scripted
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.l... | Add bogus commit to compare caching perf | Add bogus commit to compare caching perf
| YAML | mit | sbt/sbt-assembly,onilton/sbt-assembly,sbt/sbt-assembly,nkhuyu/sbt-assembly,fabiocognigni/sbt-assembly |
d1fdbf72b0c58dbc11cbe7696b37c8c113c7dbb3 | .travis.yml | .travis.yml | language: d
dist: trusty
sudo: false
install:
- gem install bundler
- bundle install
- git clone https://github.com/martine/ninja.git
- cd ninja
- ./configure.py --bootstrap
- export PATH=$PWD:$PATH
- cd ..
- dub fetch unit-threaded --version=0.7.21
- dub fetch unit-threaded --version=0.7.11
- dub f... | language: d
dist: trusty
sudo: false
addons:
apt:
sources:
- debian-sid
packages:
- ninja-build
- bundler
install:
- bundle install
- dub fetch unit-threaded --version=0.7.21
- dub fetch unit-threaded --version=0.7.11
- dub fetch unit-threaded --version=0.7.8
- dub fetch cerealed -... | Use apt to install dependencies instead of git clone / gem install | Use apt to install dependencies instead of git clone / gem install
| YAML | bsd-3-clause | atilaneves/reggae,atilaneves/reggae,atilaneves/reggae,John-Colvin/reggae,John-Colvin/reggae,atilaneves/reggae,atilaneves/reggae,John-Colvin/reggae,John-Colvin/reggae,John-Colvin/reggae |
2825c72067d4ca79ed0b1971c581a4faf3af1750 | .travis.yml | .travis.yml | sudo: false
cache: bundler
rvm:
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
gemfile:
- gemfiles/Gemfile-rails-5-0
- gemfiles/Gemfile-rails-5-1
- gemfiles/Gemfile-rails-5-2
- gemfiles/Gemfile-rails-master
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
exclude:
- rvm... | cache: bundler
rvm:
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
gemfile:
- gemfiles/Gemfile-rails-5-0
- gemfiles/Gemfile-rails-5-1
- gemfiles/Gemfile-rails-5-2
- gemfiles/Gemfile-rails-master
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
exclude:
- rvm: 2.2.10
... | Drop unused Travis sudo: false directive | CI: Drop unused Travis sudo: false directive | YAML | mit | rails/rails-controller-testing,rails/rails-controller-testing |
b96b1d8fab38b46de72f1feca055120a03a46e37 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: /go/src/github.com/SignifAi/snap-plugin-publisher-pubsub
docker:
- image: circleci/golang:1.8.1
steps:
- checkout
- run:
command: |
echo "---"
gcloud components install pubsub-emulator
echo "Fetching... | version: 2
jobs:
build:
working_directory: /go/src/github.com/SignifAi/snap-plugin-publisher-pubsub
docker:
- image: circleci/golang:1.8.1
steps:
- checkout
- run:
command: |
echo "---"
curl -O https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/g... | Install google-cloud-sdk to use pubsub-emulator | Install google-cloud-sdk to use pubsub-emulator
| YAML | apache-2.0 | SignifAi/snap-plugin-publisher-pubsub,SignifAi/snap-plugin-publisher-pubsub |
37a07ec24c93313c451a3c0fe15417d1376b33ca | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: dockerfile/java:oracle-java8
working_directory: ~/repo
environment:
JVM_OPTS: -Xmx3200m
TERM: dumb
steps:
- checkout
- restore_cache:
keys:
- v... | version: 2
jobs:
build:
docker:
- image: circleci/java:8-jdk
working_directory: ~/repo
environment:
JVM_OPTS: -Xmx3200m
TERM: dumb
steps:
- checkout
- restore_cache:
keys:
- v1-depende... | Use circleci official Oracle Java 8 | Use circleci official Oracle Java 8
| YAML | apache-2.0 | radarsh/gradle-test-logger-plugin,radarsh/gradle-test-logger-plugin |
df3f0b1d63ea6a8da7ce85c80f9b7f1622f5a1ce | .travis.yml | .travis.yml | language: python
python:
- "3.7"
- "3.6"
- "3.5"
- "3.4"
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- "pip install ."
- "pip install -r requirements-dev.txt"
# command to run tests, e.g. python setup.py test
script: py.test
services:
- redis... | dist: xenial
language: python
python:
- "3.7"
- "3.6"
- "3.5"
- "3.4"
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- "pip install ."
- "pip install -r requirements-dev.txt"
# command to run tests, e.g. python setup.py test
script: py.test
servic... | Use 'dist: xenial' in Travis to add Python 3.7 testing | Use 'dist: xenial' in Travis to add Python 3.7 testing
Travis officially added support for Xenial (with Python 3.7) on
2018-11-08.
https://blog.travis-ci.com/2018-11-08-xenial-release
| YAML | mit | glasslion/redlock |
afc9098b5c522648ab3310fabe9a3567b0563b2f | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build_and_test:
working_directory: ~/project
docker:
- image: node:12
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }}
- yarn-packages-{{ .Branch... | version: 2
jobs:
build_and_test:
working_directory: ~/project
docker:
- image: node:12
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-{{ checksum "yarn.lock" }}
- run:
name: Packager Version
... | Use same checksum for CI cache across branches | :new: Use same checksum for CI cache across branches
| YAML | mit | steelbrain/node-ssh |
4596b005b43f2d00e1fe73246d8b357d300f8d87 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
install:
- sudo apt-get update
- sudo apt-get install cmake libqt4-dev libuchardet-dev shntool ffmpeg
script:
- mkdir build
- cd build
- cmake -DBUILD_TESTS=Yes ..
- make
- tests/flacon_test
| language: cpp
compiler:
- gcc
- clang
install:
- sudo apt-get update
- sudo apt-get install cmake libqt4-dev libuchardet-dev shntool ffmpeg xvfb
script:
- mkdir build
- cd build
- cmake -DBUILD_TESTS=Yes ..
- make
- xvfb-run tests/flacon_test
| Use Xvfb for the flacon_test | Use Xvfb for the flacon_test
| YAML | lgpl-2.1 | flacon/flacon,flacon/flacon,flacon/flacon,flacon/flacon |
a1a7bbe8bc3afb4e45bed018e21ab73a4b55f79f | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build-arm:
machine:
image: ubuntu-2004:202101-01
resource_class: arm.medium
steps:
- checkout
- run: python run.py deps
- run: python run.py ci-driver
- run: python3 run.py ci-driver
workflows:
version: 2
Arm64 - Python 2.7/3.9:
jobs:
- build-ar... | version: 2
jobs:
python2.7:
machine:
image: ubuntu-2004:202101-01
resource_class: arm.medium
steps:
- checkout
- run: python run.py deps
- run: python run.py ci-driver
python3.9:
machine:
image: ubuntu-2004:202101-01
resource_class: arm.medium
steps:
- che... | Revise CircleCI workflow to split Python versions | Revise CircleCI workflow to split Python versions
| YAML | mit | wbond/asn1crypto |
baa44dd121a38203eda1122ba7395cefa3bdafe5 | scripts/ci/run_driver_unit_windows.build.yml | scripts/ci/run_driver_unit_windows.build.yml | ---
platform: windows
inputs:
- name: nfs-volume-release
run:
path: powershell
args:
- "-ExecutionPolicy"
- "ByPass"
- "-File"
- "nfs-volume-release/scripts/ci/run_driver_unit_windows.ps1"
| ---
platform: windows
inputs:
- name: nfs-volume-release-concourse-tasks
- name: nfs-volume-release
run:
path: powershell
args:
- "-ExecutionPolicy"
- "ByPass"
- "-File"
- "nfs-volume-release-concourse-tasks/scripts/ci/run_driver_unit_windows.ps1"
| Use nfs-volume-release-concourse-task as input into new run_driver_unit_windows scripts | Use nfs-volume-release-concourse-task as input into new
run_driver_unit_windows scripts
Co-authored-by: Paul Warren <381ebbe39e97b92332c450533d9eabb9a873db86@emc.com>
| YAML | apache-2.0 | cloudfoundry-incubator/nfs-volume-release,cloudfoundry-incubator/nfs-volume-release,cloudfoundry-incubator/nfs-volume-release |
41f1200dbd0bdd3986423e8b38751b2419387ebc | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install:
- wget -O ta-lib-0.4.0-src.tar.gz http://sourceforge.net/projects/ta-lib/files/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz/download
- tar xvzf ta-lib-0.4.0-src.tar.gz
- pushd ta-lib; ./configure; make; sudo make install; popd
- sudo apt-get install gfortran
install:
... | language: python
python:
- "2.7"
before_install:
- wget -O ta-lib-0.4.0-src.tar.gz http://sourceforge.net/projects/ta-lib/files/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz/download
- tar xvzf ta-lib-0.4.0-src.tar.gz
- pushd ta-lib; ./configure; make; sudo make install; popd
- sudo apt-get install gfortran
install:
... | Exclude test_examples from Travis-CI, also exclude scipy. | BLD: Exclude test_examples from Travis-CI, also exclude scipy.
scipy build was getting too heavyweight for the Travis-CI build.
Removes test_examples from Travis-CI run, since the examples
depend on scipy and other compiled libraries.
Please, still run test_examples before submitting patches.
| YAML | apache-2.0 | AlirezaShahabi/zipline,aajtodd/zipline,enigmampc/catalyst,davidastephens/zipline,Scapogo/zipline,enigmampc/catalyst,stkubr/zipline,chrjxj/zipline,erikness/AlephOne,semio/zipline,umuzungu/zipline,nborggren/zipline,wilsonkichoi/zipline,dkushner/zipline,keir-rex/zipline,MonoCloud/zipline,michaeljohnbennett/zipline,kmather... |
26c1779b5eb6f8e92f5bc0244e4fcfa5b4c18415 | .circleci/config.yml | .circleci/config.yml | version: 2.1
commands:
restore_npm_cache:
description: 'Restore npm cache'
steps:
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
save_npm_cache:
description: 'Save npm cache'
steps:
- save_cache:
path... | version: 2.1
commands:
restore_npm_cache:
description: 'Restore npm cache'
steps:
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
save_npm_cache:
description: 'Save npm cache'
steps:
- save_cache:
path... | Update circleci/node Docker tag to v12.18 | Update circleci/node Docker tag to v12.18
| YAML | mit | Tsuyoshi84/concentration,Tsuyoshi84/concentration,Tsuyoshi84/concentration |
3dbf68982332ff11e9c20ff2d782aa3d8abc7b6e | .travis.yml | .travis.yml | language: c
compiler:
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y texinfo
script:
- ./autogen.sh && ./configure && make && make check
- ./autogen.sh && ./configure --enable-ucs4 && make && make check
notifications:
irc: "irc.oftc.net#liblouis" | language: c
compiler:
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y texinfo
env:
- ENABLE_UCS4=
- ENABLE_UCS4=--enable-ucs4
script: "./autogen.sh && ./configure $ENABLE_UCS4 && make && make check"
notifications:
irc: "irc.oftc.net#liblouis"
| Make the ci server build two versions in parallel | Make the ci server build two versions in parallel
| YAML | lgpl-2.1 | BueVest/liblouis,vsmontalvao/liblouis,IndexBraille/liblouis,liblouis/liblouis,IndexBraille/liblouis,vsmontalvao/liblouis,hammera/liblouis,IndexBraille/liblouis,BueVest/liblouis,hammera/liblouis,BueVest/liblouis,liblouis/liblouis,IndexBraille/liblouis,vsmontalvao/liblouis,vsmontalvao/liblouis,liblouis/liblouis,BueVest/l... |
039cc8d6647edea93f9bf4940e8dbead438b4b70 | .circleci/config.yml | .circleci/config.yml | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers`
- image: circleci/python:3.5.4
# Sp... | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers`
- image: circleci/python:3.5.4
# Sp... | Remove out of date comments | Remove out of date comments
| YAML | mit | aurule/npc,aurule/npc |
d4b3d5dd2550b0e96f0c6bf622b3987efc7ba87a | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/circulate
docker:
- image: python:3.6.0
environment:
FLASK_CONFIG: testing
DATABASE_URL: postgresql://ubuntu@localhost/circle_test?sslmode=disable
- image: postgres:9.6.2
environment:
POSTGRES_USER: ubuntu
... | version: 2
jobs:
build:
working_directory: ~/circulate
docker:
- image: python:3.6.0
environment:
FLASK_CONFIG: testing
DATABASE_URL: postgresql://ubuntu@localhost/circle_test?sslmode=disable
- image: postgres:9.6.2
environment:
POSTGRES_USER: ubuntu
... | Add selenium and run tests | Add selenium and run tests
| YAML | mit | keybits/circulate,keybits/circulate,keybits/circulate |
0f6293cb8b584974a0db0e8515e763120bb6fcbb | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
hokusai: artsy/hokusai@0.7.2
not_staging_or_release: ¬_staging_or_release
filters:
branches:
ignore:
- staging
- release
only_master: &only_master
context: hokusai
filters:
branches:
only: master
only_release: &only_release
context: hokusai
filte... | version: 2.1
orbs:
hokusai: artsy/hokusai@0.7.3
not_staging_or_release: ¬_staging_or_release
filters:
branches:
ignore:
- staging
- release
only_master: &only_master
context: hokusai
filters:
branches:
only: master
only_release: &only_release
context: hokusai
filte... | Update hokusai orb from 0.7.2 to v0.7.3 | Update hokusai orb from 0.7.2 to v0.7.3
| YAML | mit | artsy/artsy-wwwify |
4075e6c07c71ea10e3114b65a64b8c2c81c7b21f | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
- "pypy"
- "3.5"
install:
- pip install .
- pip install -r requirements-dev.txt
- rm -rf build/
script: ./script/test -vv
# setting sudo to 'false' allows running on travis-ci new infra (docker)
sudo: false
| # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
- "pypy"
- "3.5"
- "3.6"
install:
- pip install .
- pip install -r requirements-dev.txt
- rm -rf build/
script: ./script/test -vv
# setting sudo to 'false' allows running on travis-ci new infra (docker)
sudo: false
| Add Python 3.6 to Travis tests | Add Python 3.6 to Travis tests
Signed-off-by: Yves Bastide <3b1fe340dba76bf37270abad774f327f50b5e1d8@botify.com>
| YAML | mit | botify-labs/simpleflow,botify-labs/simpleflow |
fcad271525c91e837dd6cd3d8270abd1c0ca7433 | .travis.yml | .travis.yml | language: ruby
before_install:
- gem i rubygems-update -v '3.0.4' && update_rubygems
- gem i bundler -v '2.0.2'
bundler_args: --without benchmark --jobs=3 --retry=3
matrix:
include:
- rvm: 2.4.6
- rvm: 2.5.5
- rvm: 2.6.3
- rvm: jruby-9.2.7.0
env: JRUBY_OPTS=--debug
- rvm: ruby-head
... | language: ruby
before_install:
- gem i rubygems-update -v '3.0.4' && update_rubygems
- gem i bundler -v '2.0.2'
bundler_args: --without benchmark --jobs=3 --retry=3
matrix:
include:
- rvm: 2.4.6
- rvm: 2.5.5
- rvm: 2.6.3
- rvm: jruby-9.2.7.0
env: JRUBY_OPTS=--debug
jdk: openjdk8
... | Use JDK8 to avoid JDK11 problems/failures | Use JDK8 to avoid JDK11 problems/failures
https://github.com/jruby/jruby/issues/5736
| YAML | mit | colszowka/simplecov,colszowka/simplecov |
8515082276c70931ef81ffc0a2ea9f9f0740212c | .travis.yml | .travis.yml | language: ruby
script: bundle exec rspec spec
cache: bundler
rvm:
- 2.1
| language: ruby
script: bundle exec rspec spec
cache: bundler
rvm:
- 2.2
- 2.3.4
- 2.4.1
| Test on MRI 2.2, 2.3, 2.4. No more testing against 2.1. | Test on MRI 2.2, 2.3, 2.4. No more testing against 2.1.
| YAML | mit | pat/sliver |
c2db45a3d8881179e1b98372533f72360a13ce92 | .github/mcnotify.yml | .github/mcnotify.yml | # Configuration for McNotify - https://github.com/dessant/mcnotify
subscriptions:
- events:
# Events which trigger notifications
labeled: api-break
# Issue used for posting notifications
issue: 5560
# Comment to post on the notification thread. Optional placeholders: {label},
# {issue-aut... | # Configuration for McNotify - https://github.com/kivy/mcnotify
subscriptions:
- events:
# Events which trigger notifications
labeled: api-break
# Issue used for posting notifications
issue: 5560
# Comment to post on the notification thread. Optional placeholders: {label},
# {issue-author... | Fix repo path in github app config comment | Fix repo path in github app config comment | YAML | mit | akshayaurora/kivy,LogicalDash/kivy,inclement/kivy,rnixx/kivy,akshayaurora/kivy,LogicalDash/kivy,matham/kivy,inclement/kivy,matham/kivy,kivy/kivy,matham/kivy,LogicalDash/kivy,inclement/kivy,rnixx/kivy,matham/kivy,kivy/kivy,rnixx/kivy,akshayaurora/kivy,kivy/kivy,LogicalDash/kivy |
31c1ae24f5ef99e794908b4c7fa965594a3e9433 | packages/op/opentype.yaml | packages/op/opentype.yaml | homepage: ''
changelog-type: ''
hash: d411e87ee176e63c11c13b44c7564608bcd77a0cf4ec5630e242043b569a4621
test-bench-deps: {}
maintainer: Kristof Bastiaensen
synopsis: Opentype loading and writing
changelog: ''
basic-deps:
ghc: ! '>=7.10.0'
bytestring: ! '>0.10.0'
base: ! '>=3 && <5'
time: ! '>1.4.0'
pretty-hex:... | homepage: ''
changelog-type: ''
hash: e7ddfdc5a0f6222ac3886fa2f9202a5aacc22cb77200480f82a56bb36d75de93
test-bench-deps: {}
maintainer: Kristof Bastiaensen
synopsis: Opentype loading and writing
changelog: ''
basic-deps:
ghc: ! '>=7.10.0'
microlens-th: ! '>0.4.0.0'
bytestring: ! '>0.10.0'
base: ! '>=3 && <5'
t... | Update from Hackage at 2016-11-30T13:59:08Z | Update from Hackage at 2016-11-30T13:59:08Z | YAML | mit | commercialhaskell/all-cabal-metadata |
e1e63e27ad963be85816e49b34e585af477c895e | packages/re/rerebase.yaml | packages/re/rerebase.yaml | homepage: https://github.com/nikita-volkov/rerebase
changelog-type: ''
hash: d9f62e3c79ea3ee69295d3475860ad1b306a1e716b56d77c5c129979b8a5a04e
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Reexports from "base" with a bunch of other standard libraries
changelog: ''
basic-deps:
rebas... | homepage: https://github.com/nikita-volkov/rerebase
changelog-type: ''
hash: b4f125b83515f11952eca764c53973d8e82707648e7ce42650ac75594a06ff95
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Reexports from "base" with a bunch of other standard libraries
changelog: ''
basic-deps:
rebas... | Update from Hackage at 2016-11-30T23:53:56Z | Update from Hackage at 2016-11-30T23:53:56Z | YAML | mit | commercialhaskell/all-cabal-metadata |
415101182cde9a4eff3d32390da88b078b82a568 | entry_types/scrolled/package/documentation.yml | entry_types/scrolled/package/documentation.yml | toc:
- name: Frontend API
description: |
Main entry point of frontend API to register new content element types.
children:
- frontend_contentElementTypes
- name: Editor API
description: |
Main entry point of editor API to register new content element types.
children:
- edito... | toc:
- name: Frontend API
description: |
Main entry point of frontend API to register new content element types.
children:
- frontend_contentElementTypes
- name: Editor API
description: |
Main entry point of editor API to register new content element types.
children:
- edito... | Document available test files in storybook support api doc | Document available test files in storybook support api doc
| YAML | mit | tf/pageflow,tf/pageflow,codevise/pageflow,tf/pageflow,codevise/pageflow,codevise/pageflow,tf/pageflow,codevise/pageflow |
91ef2b047d8e7cf0c851dfa82a336b55d07393db | packages/sh/shikensu.yaml | packages/sh/shikensu.yaml | homepage: https://github.com/icidasset/shikensu#README
changelog-type: ''
hash: 1a7f6b919e308819377373694f679d3b3df619d264522c1d8d1495d0b31f314c
test-bench-deps:
bytestring: -any
flow: -any
base: -any
unordered-containers: -any
text: ! '>=1.2 && <2'
filepath: -any
shikensu: -any
tasty-hunit: ==0.9.*
t... | homepage: https://github.com/icidasset/shikensu#README
changelog-type: ''
hash: 37f26a1c77420e05c3c4fa2a86aedb819474addde11f002b9ab9f53d42ef6ac8
test-bench-deps:
bytestring: -any
flow: -any
base: -any
unordered-containers: -any
text: ! '>=1.2 && <2'
filepath: -any
shikensu: -any
tasty-hunit: ==0.9.*
t... | Update from Hackage at 2016-11-16T13:16:10Z | Update from Hackage at 2016-11-16T13:16:10Z | YAML | mit | commercialhaskell/all-cabal-metadata |
782612fc98e9a2e4468603d2735ed725df0733ff | packages/to/tonatona.yaml | packages/to/tonatona.yaml | homepage: https://github.com/tonatona-project/tonatona#readme
changelog-type: ''
hash: 626dfedc50d4e0888823b2d7c105fd26d528c6c31f86e51c119eb3286b3fd8ff
test-bench-deps:
rio: ! '>=0.1'
base: ! '>=4.7 && <5'
tonatona: -any
tonaparser: ! '>=0.1'
doctest: -any
Glob: -any
maintainer: arow.okamoto+github@gmail.co... | homepage: https://github.com/tonatona-project/tonatona#readme
changelog-type: ''
hash: 63f10b4b4ff0dd61d10458eb9557bdc6ee2f13afeccc5091df9aa65a85094ffb
test-bench-deps:
rio: ! '>=0.1'
base: ! '>=4.7 && <5'
tonatona: -any
tonaparser: ! '>=0.1'
doctest: -any
Glob: -any
maintainer: arow.okamoto+github@gmail.co... | Update from Hackage at 2019-12-24T23:22:38Z | Update from Hackage at 2019-12-24T23:22:38Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
3b1c6c807b95e0082e4cd24bc22fc7b6277f1711 | data/continuously_deployed_apps.yml | data/continuously_deployed_apps.yml | - account-api
- authenticating-proxy
- bouncer
- cache-clearing-service
- collections
- collections-publisher
- content-data-admin
- content-data-api
- content-publisher
- email-alert-frontend
- email-alert-service
- feedback
- finder-frontend
- frontend
- government-frontend
- govuk-account-manager-prototype
- govuk-a... | - account-api
- authenticating-proxy
- bouncer
- cache-clearing-service
- collections
- collections-publisher
- content-data-admin
- content-data-api
- content-publisher
- email-alert-frontend
- email-alert-service
- feedback
- finder-frontend
- frontend
- government-frontend
- govuk-account-manager-prototype
- govuk-a... | Mark Locations API as continuously deployed | Mark Locations API as continuously deployed
Trello: https://trello.com/c/gPRVvLXh/2848-set-up-remaining-infrastructure-for-locations-api-5 | YAML | mit | alphagov/release,alphagov/release,alphagov/release |
c232d419e6ce5d3f016e4548bf3121d005bc0475 | manifests/bosh-manifest/spec/fixtures/bosh-ssl-certificates.yml | manifests/bosh-manifest/spec/fixtures/bosh-ssl-certificates.yml | ---
secrets:
bosh_ca: |
-----BEGIN RSA PRIVATE KEY-----
BOS_CA_000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000... | ---
secrets:
bosh_ca_cert: |
-----BEGIN RSA PRIVATE KEY-----
BOS_CA_000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000... | Fix the test fixtures for the bosh ca | Fix the test fixtures for the bosh ca
| YAML | mit | alphagov/paas-cf,jimconner/paas-cf,alphagov/paas-cf,jimconner/paas-cf,jimconner/paas-cf,jimconner/paas-cf,alphagov/paas-cf,alphagov/paas-cf,jimconner/paas-cf,jimconner/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,jimconner/paas-cf,alphagov/paas-cf |
6e8d14c2ef96205507bbae51bab1ca939ee8c94c | deploy/roles/content/tasks/main.yml | deploy/roles/content/tasks/main.yml | ---
- name: Deploy the static HTML.
synchronize: src={{ srcroot }}/_site/ dest={{ docroot }}
archive=yes checksum=yes delete=yes
- name: Deploy the drc-backend backend.
synchronize: src={{ srcroot }}/src/drc-backend/ dest={{ backendroot }}
archive=yes checksum=yes delete=yes
notify:... | ---
- name: Deploy the static HTML.
synchronize: src={{ srcroot }}/_site/ dest={{ docroot }}
archive=yes checksum=yes
- name: Deploy the drc-backend backend.
synchronize: src={{ srcroot }}/src/drc-backend/ dest={{ backendroot }}
archive=yes checksum=yes
notify:
- restart the drc-b... | Revert "Delete remote content that doesn't exist locally after build." | Revert "Delete remote content that doesn't exist locally after build."
| YAML | apache-2.0 | sigmavirus24/developer.rackspace.com,annegentle/developer.rackspace.com,wbentley15/developer.rackspace.com,sigmavirus24/developer.rackspace.com,rackerlabs/developer.rackspace.com,sigmavirus24/developer.rackspace.com,wbentley15/developer.rackspace.com,annegentle/developer.rackspace.com,smashwilson/developer.rackspace.co... |
81023541f8a8b8be008dd127c678bc3630fab292 | playbook-db.yml | playbook-db.yml | ---
- hosts: all
user: vagrant
sudo: true
sudo_user: root
vars:
mongodb_version: 3.0.0
cache_timeout: 259200
tasks:
- name: MongoDB | Fetch 10Gen signing key
shell: apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
- name: MongoDB | Add 10Gen repository
shell: echo 'deb http:/... | ---
- hosts: all
user: vagrant
sudo: true
sudo_user: root
vars:
mongodb_version: 3.0.0
cache_timeout: 259200
tasks:
- name: MongoDB | Fetch 10Gen signing key
shell: apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
- name: MongoDB | Add 10Gen repository
shell: echo "deb http:/... | Create a list file for MongoDB 3.0 | Create a list file for MongoDB 3.0
| YAML | agpl-3.0 | SoftInstigate/restheart-ansible,SoftInstigate/restheart-vagrant |
4f4903979098a9f3f95e0a3087428fff71c2130a | _data/language.yml | _data/language.yml | info_website: "About Library Carpentry"
archive: "Archive"
blog_archive: "Blog Archive"
blog: "Blog"
comments_headline: "Dialogue & Discussion"
more: "More Information ›"
more_articles: "More Posts"
navigation_title: "Navigation"
new_blog_entries: "New Blog Posts"
next: "Next"
next_posts: "Next Posts"
previous: "Pr... | info_website: "About Library Carpentry"
archive: "Archive"
blog_archive: "Blog Archive"
blog: "Blog"
comments_headline: "Dialogue & Discussion"
more: "More <span class='sr-only'>about {{ title }}</span> ›"
more_articles: "More Posts"
navigation_title: "Navigation"
new_blog_entries: "New Blog Posts"
next: "Next"
nex... | Add span to read and read more to fix WAVE accessibility issue | Add span to read and read more to fix WAVE accessibility issue | YAML | mit | LibraryCarpentry/librarycarpentry.github.io,LibraryCarpentry/librarycarpentry.github.io,LibraryCarpentry/librarycarpentry.github.io |
c81280a327bdf072cbed7c4b378ef9b21c1e615f | packages/ac/acme-year.yaml | packages/ac/acme-year.yaml | homepage: http://github.com/joeyadams/hs-acme-year
changelog-type: ''
hash: dc3be1bad10f1ac89eeb461ee1b686e74b125515c4c3381234c3bc73ab534e67
test-bench-deps:
base: -any
time: -any
criterion: -any
acme-year: -any
maintainer: joeyadams3.14159@gmail.com
synopsis: Get the current year
changelog: ''
basic-deps:
ba... | homepage: http://github.com/joeyadams/hs-acme-year
changelog-type: ''
hash: 201cbc6f0e326bc64ce283acbb52d70af29407c1e60101e9783dc76b3a40dc59
test-bench-deps:
base: -any
time: -any
criterion: -any
acme-year: -any
maintainer: joeyadams3.14159@gmail.com
synopsis: Get the current year
changelog: ''
basic-deps:
ba... | Update from Hackage at 2016-11-28T03:34:31Z | Update from Hackage at 2016-11-28T03:34:31Z | YAML | mit | commercialhaskell/all-cabal-metadata |
d48b90ca94fa932141f7973f7af1e3a6565f0d1d | packages/hs/hsinspect.yaml | packages/hs/hsinspect.yaml | homepage: ''
changelog-type: ''
hash: db92f1adf9a9316393ec442c2c09e72bfdf5e5d76420ef0b36bd09a949406a86
test-bench-deps: {}
maintainer: Tseen She
synopsis: Inspect Haskell source files.
changelog: ''
basic-deps:
ghc: -any
base: '>=4.11 && <5'
time: -any
hsinspect: -any
text: -any
filepath: -any
containers:... | homepage: ''
changelog-type: ''
hash: ed266cf9b93cfc0ac8c20d9d2b2f07fde8b1b686d1be2389aff524258bcef3a7
test-bench-deps: {}
maintainer: Tseen She
synopsis: Inspect Haskell source files.
changelog: ''
basic-deps:
ghc: -any
base: '>=4.11 && <5'
time: -any
hsinspect: -any
text: -any
filepath: -any
containers:... | Update from Hackage at 2020-10-07T10:18:48Z | Update from Hackage at 2020-10-07T10:18:48Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
fc52471eae58d84dd09e8711bda7623504dc862c | packages/in/indextype.yaml | packages/in/indextype.yaml | homepage: ''
changelog-type: ''
hash: 92e78f10a68bdaf26bf2c511b796a0591784fa91f6dcb0ecdb39e4f857c8192b
test-bench-deps:
base: ==4.9.*
hspec: ==2.4.*
maintainer: clintonmead@gmail.com
synopsis: A series of type families and constraints for "indexable" types.
changelog: ''
basic-deps:
base: ==4.9.*
all-versions:
- ... | homepage: ''
changelog-type: ''
hash: 3c6552545f53d0f7eb2f70a3e3df37b1625ae798f3927b25260506b73fe4c71b
test-bench-deps:
base: ==4.9.*
hspec: ==2.4.*
maintainer: clintonmead@gmail.com
synopsis: A series of type families and constraints for "indexable" types.
changelog: ''
basic-deps:
base: ==4.9.*
all-versions:
- ... | Update from Hackage at 2017-10-14T04:54:40Z | Update from Hackage at 2017-10-14T04:54:40Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
ad8d2de6aef02f619d831cae79eabb7e0d1d7fa1 | hieradata/class/staging/api_elasticsearch.yaml | hieradata/class/staging/api_elasticsearch.yaml | ---
govuk_safe_to_reboot::can_reboot: 'overnight'
| ---
govuk_safe_to_reboot::can_reboot: 'overnight'
govuk_elasticsearch::version: '1.7.5'
| Prepare for api-elasticsearch upgrade to 1.7 | Prepare for api-elasticsearch upgrade to 1.7
| YAML | mit | alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet |
9b5704034284ea8f3f6fcd457b7f7973f4d8ce83 | packages/le/lenses.yaml | packages/le/lenses.yaml | homepage: http://github.com/jvranish/Lenses/tree/master
changelog-type: ''
hash: 460b859c20dc38ad0a8d3bd7ade69a6223bdd4f27e78eabc5b587a0dab9ef08d
test-bench-deps: {}
maintainer: jvranish@gmail.com
synopsis: Simple Functional Lenses
changelog: ''
basic-deps:
base: ! '>=4 && <6'
mtl: ! '>=1.1'
template-haskell: ! '... | homepage: http://github.com/jvranish/Lenses/tree/master
changelog-type: ''
hash: 3ea7136f506826b8a623cdee58cc19512f9a56f50a4a842a29968e592cf4b54c
test-bench-deps: {}
maintainer: jvranish@gmail.com
synopsis: Simple Functional Lenses
changelog: ''
basic-deps:
base: ! '>=4 && <6'
mtl: ! '>=1.1'
template-haskell: ! '... | Update from Hackage at 2018-07-12T01:23:47Z | Update from Hackage at 2018-07-12T01:23:47Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a0b786c37e0c9fbde896a0a7f19be35ae80a1897 | roles/openshift_hosted_templates/meta/main.yml | roles/openshift_hosted_templates/meta/main.yml | ---
galaxy_info:
author: Andrew Butcher
description: OpenShift Hosted Templates
company: Red Hat, Inc.
license: Apache License, Version 2.0
min_ansible_version: 2.1
platforms:
- name: EL
versions:
- 7
categories:
- cloud
dependencies:
- role: lib_utils
| ---
galaxy_info:
author: Andrew Butcher
description: OpenShift Hosted Templates
company: Red Hat, Inc.
license: Apache License, Version 2.0
min_ansible_version: 2.1
platforms:
- name: EL
versions:
- 7
categories:
- cloud
dependencies:
- role: lib_utils
- role: openshift_facts
| Add missing dependency on openshift_facts | Add missing dependency on openshift_facts
| YAML | apache-2.0 | anpingli/openshift-ansible,aveshagarwal/openshift-ansible,kwoodson/openshift-ansible,maxamillion/openshift-ansible,anpingli/openshift-ansible,sdodson/openshift-ansible,markllama/openshift-ansible,sdodson/openshift-ansible,tagliateller/openshift-ansible,sosiouxme/openshift-ansible,liggitt/openshift-ansible,miminar/opens... |
6e60344f869c55bc811e742eea2a9b2aabb9b87e | packages/no/NoHoed.yaml | packages/no/NoHoed.yaml | homepage: https://github.com/pepeiborra/NoHoed
changelog-type: ''
hash: 402d80e3fff116152d1ca1cc41597820a8e62753905e4eb1ad475e7550d44a6d
test-bench-deps: {}
maintainer: pepeiborra@gmail.com
synopsis: Placeholder package to preserve debug ability via conditional builds
changelog: ''
basic-deps:
base: <5
all-versions:
... | homepage: https://github.com/pepeiborra/NoHoed
changelog-type: ''
hash: 368f88e5d9f76ae6a9fd265e6b675f370214e37c9e9ce4aa0ff7872ae1999905
test-bench-deps: {}
maintainer: pepeiborra@gmail.com
synopsis: Placeholder package to preserve debug ability via conditional builds
changelog: ''
basic-deps:
base: <5
template-has... | Update from Hackage at 2017-08-31T22:01:00Z | Update from Hackage at 2017-08-31T22:01:00Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
475f4611780824a93beb42fd2c178401bba0e624 | packages/sp/spir-v.yaml | packages/sp/spir-v.yaml | homepage: https://github.com/expipiplus1/spir-v
changelog-type: ''
hash: 71fa7971fad8f2ce6d0eab96c2e817235822e5e0e048a844ac1288d35dee278f
test-bench-deps: {}
maintainer: spir.of.the.moment@monoid.al
synopsis: Some utilities for reading and writing SPIR-V files
changelog: ''
basic-deps:
base: ! '>=4.0 && <4.9'
all-ver... | homepage: https://github.com/expipiplus1/spir-v
changelog-type: ''
hash: abdc223cd4a183e48cd0a47c22c9334f53056fdf69f25419a51df7060583fa69
test-bench-deps: {}
maintainer: spir.of.the.moment@monoid.al
synopsis: Some utilities for reading and writing SPIR-V files
changelog: ''
basic-deps:
base: ! '>=4.0 && <4.9'
all-ver... | Update from Hackage at 2016-02-16T21:21:02+0000 | Update from Hackage at 2016-02-16T21:21:02+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
faed4349eea3d7e191b8d4fc76571c0117a13413 | packages/ye/yeshql.yaml | packages/ye/yeshql.yaml | homepage: ''
changelog-type: ''
hash: 3f7e0f8c79b39a7b1da5702b7f84fcfbac49112df3b56932d7da978f1d74d163
test-bench-deps:
stm: -any
base: ! '>=4.6 && <5.0'
HDBC: -any
yeshql: -any
tasty-quickcheck: -any
tasty-hunit: -any
tasty: -any
maintainer: tdammers@gmail.com
synopsis: YesQL-style SQL database abstracti... | homepage: ''
changelog-type: ''
hash: 31031c14208320fd916b9e87c759131362633464891853e109d945a1656077b8
test-bench-deps:
stm: -any
base: ! '>=4.6 && <5.0'
HDBC: -any
yeshql: -any
tasty-quickcheck: -any
tasty-hunit: -any
tasty: -any
maintainer: tdammers@gmail.com
synopsis: YesQL-style SQL database abstracti... | Update from Hackage at 2016-03-17T08:20:36+0000 | Update from Hackage at 2016-03-17T08:20:36+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
f0bd2d5ae11592a991065cc574da8bef34587934 | .gitlab-ci.yml | .gitlab-ci.yml | stages:
- build
- test
- deploy
build:
image: docker
services:
- docker:dind
before_script:
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.gitlab.com
script:
- docker pull $CI_REGISTRY_IMAGE:CI_COMMIT_REF_NAME || true
- docker build --cache-from $CI_REGISTRY_IMAGE:CI_COMMIT... | stages:
- build
- test
- deploy
include:
- template: SAST.gitlab-ci.yml
build:
image: docker
services:
- docker:dind
before_script:
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.gitlab.com
script:
- docker pull $CI_REGISTRY_IMAGE:CI_COMMIT_REF_NAME || true
- docker bu... | Add SAST to Gitlab pipeline | Add SAST to Gitlab pipeline | YAML | agpl-3.0 | kobotoolbox/kpi,kobotoolbox/kpi,kobotoolbox/kpi,kobotoolbox/kpi,kobotoolbox/kpi |
4f182d1b298df3071542c01172f2b8c5896fde7a | .gitlab-ci.yml | .gitlab-ci.yml | image: adaskit/libsgm:0.1
variables:
GIT_SUBMODULE_STRATEGY: recursive
stages:
- build
- test
.build_template: &build_definition
stage: build
tags:
- docker
script:
- cmake . -DENABLE_SAMPLES=${build_samples} -DLIBSGM_SHARED=${build_shared} -DENABLE_TESTS=${build_tests}
- make
build:samples_... | image: adaskit/libsgm:0.1
variables:
GIT_SUBMODULE_STRATEGY: recursive
stages:
- build
- test
.build_template: &build_definition
stage: build
tags:
- docker
script:
- cmake . -DWITH_OPENCV="ON" -DENABLE_SAMPLES=${build_samples} -DLIBSGM_SHARED=${build_shared} -DENABLE_TESTS=${build_tests}
- m... | Update GitLab CI for WITH_OPENCV option | Update GitLab CI for WITH_OPENCV option
| YAML | apache-2.0 | fixstars/libSGM,fixstars-jp/libSGM |
f21afc3182f04eb12b7122d152c0847721ab48b8 | metadata/at.h4x.awhip.yml | metadata/at.h4x.awhip.yml | Categories:
- Games
License: GPL-3.0-or-later
AuthorName: Michael Pöhn
AuthorEmail: michael.poehn@fsfe.org
WebSite: https://codeberg.org/uniqx/AWhip
SourceCode: https://codeberg.org/uniqx/AWhip
IssueTracker: https://codeberg.org/uniqx/AWhip/issues
AutoName: A Whip
RepoType: git
Repo: https://codeberg.org/uniqx/AWhi... | Categories:
- Games
License: GPL-3.0-or-later
AuthorName: Michael Pöhn
AuthorEmail: michael.poehn@fsfe.org
WebSite: https://codeberg.org/uniqx/AWhip
SourceCode: https://codeberg.org/uniqx/AWhip
IssueTracker: https://codeberg.org/uniqx/AWhip/issues
AutoName: A Whip
RepoType: git
Repo: https://codeberg.org/uniqx/AWhi... | Update A Whip to 1.1.0 (10100) | Update A Whip to 1.1.0 (10100)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
5a674aff74defe02503ecaa54a7d7ae226322237 | src/stackdriver-spinner/manifest.yml | src/stackdriver-spinner/manifest.yml | ---
applications:
- name: spinner
buildpack: go_buildpack
memory: 1G
env:
GOPACKAGENAME: github.com/cloudfoundry-community/stackdriver-tools/src/stackdriver-spinner
GOVERSION: go1.8
GOOGLE_APPLICATION_CREDENTIALS: ./credentials.json
SPINNER_COUNT: 999
SPINNER_WAIT: 300
GCP_PROJECT: <projec... | ---
applications:
- name: spinner
buildpack: go_buildpack
memory: 1G
env:
GOPACKAGENAME: github.com/cloudfoundry-community/stackdriver-tools/src/stackdriver-spinner
GOVERSION: go1.11
GOOGLE_APPLICATION_CREDENTIALS: ./credentials.json
SPINNER_COUNT: 999
SPINNER_WAIT: 300
GCP_PROJECT: <proje... | Update stackdriver-spinner's to go 1.11 | Update stackdriver-spinner's to go 1.11
| YAML | apache-2.0 | cloudfoundry-community/stackdriver-tools,cloudfoundry-community/stackdriver-tools,cloudfoundry-community/stackdriver-tools,cloudfoundry-community/stackdriver-tools |
990bfcf4580ef707a8f4d56b8e79cf2e25927498 | roles/set_hostname/tasks/main.yml | roles/set_hostname/tasks/main.yml | ---
- name: set hostname
hostname: name={{ inventory_hostname }}{{ domain_to_set }}
| ---
- name: set hostname
hostname: name={{ inventory_hostname }}{{ domain_to_set }}
register: result
- name: update ansible_fqdn and ansible_hostname
set_fact:
ansible_fqdn: "{{ inventory_hostname }}{{ domain_to_set }}"
ansible_hostname: "{{ inventory_hostname }}"
when: result.changed
| Update facts when hostname is changed in set_hostname role. | Update facts when hostname is changed in set_hostname role.
| YAML | mit | hnakamur/ansible-playbooks,hnakamur/ansible-playbooks |
447caeea58c1b0224402b1e8bfe38d1239b8ddfe | .github/workflows/set-automatic-deploys-enabled.yaml | .github/workflows/set-automatic-deploys-enabled.yaml | name: Set automatic deploys
on:
workflow_dispatch:
inputs:
resetImageTag:
description: 'Reset image tag to main'
required: false
default: false
type: boolean
automaticDeploysEnabled:
description: 'Activate automatic deploys'
required: false
defa... | name: Set automatic deploys
run-name: Set automatic deploys to ${{ inputs.setAutomaticDeploys }} in ${{ inputs.environment }}
on:
workflow_dispatch:
inputs:
setAutomaticDeploys:
description: 'Set automatic deploys'
required: false
type: choice
options:
- enabled
... | Update set automatic deploy workflow | Update set automatic deploy workflow
This updates the workflow to use the changes in the resuable workflow.
| YAML | mit | alphagov/publisher,alphagov/publisher,alphagov/publisher |
f689c66337c8a2037329b04aac73bb46ef724fe4 | docs/docker-compose.yml | docs/docker-compose.yml | version: '3'
services:
site:
image: jekyll/jekyll:3.8.6
command: jekyll serve --livereload --verbose
ports:
- 4000:4000
volumes:
- .:/srv/jekyll
- ./vendor/bundle:/usr/local/bundle
| version: '3'
services:
site:
image: jekyll/jekyll:4.2.0
command: jekyll serve --incremental
ports:
- 4000:4000
volumes:
- .:/srv/jekyll
- ./vendor/bundle:/usr/local/bundle
| Update `jekyll/jekyll:3.8.6` to `4.2.0`. Also remove `--livereload --verbose` and add `--incremental` | Update `jekyll/jekyll:3.8.6` to `4.2.0`. Also remove `--livereload --verbose` and add `--incremental`
| YAML | apache-2.0 | google/evergreen-checker,google/evergreen-checker |
4ae3bbcf1336fbac92c1191bf00311a592bf0c47 | pkg/oauth2/pubspec.yaml | pkg/oauth2/pubspec.yaml | name: oauth2
version: 0.9.0
author: "Dart Team <misc@dartlang.org>"
homepage: http://www.dartlang.org
description: >
A client library for authenticating with a remote service via OAuth2 on
behalf of a user, and making authorized HTTP requests with the user's
OAuth2 credentials. Currently only works with dart:io.
... | name: oauth2
version: 0.9.1
author: "Dart Team <misc@dartlang.org>"
homepage: http://www.dartlang.org
description: >
A client library for authenticating with a remote service via OAuth2 on
behalf of a user, and making authorized HTTP requests with the user's
OAuth2 credentials. Currently only works with dart:io.
... | Update oauth2's dependency on http. | Update oauth2's dependency on http.
OAuth2 was upgraded to support the new HTTP API prior to the new
conventions for package versioning, and the upgraded version hasn't
been released yet.
R=rnystrom@google.com
BUG=15809
Review URL: https://codereview.chromium.org//98163005
git-svn-id: c93d8a2297af3b929165606efe1457... | YAML | bsd-3-clause | dartino/dart-sdk,dart-lang/sdk,dart-lang/sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dart-lang/sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dart-archive/dart-s... |
b9ede0b302c434fcd1fa0f79fb380a36ee268c83 | cluster/manifests/audittrail-adapter/daemonset.yaml | cluster/manifests/audittrail-adapter/daemonset.yaml | apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: audittrail-adapter
namespace: kube-system
labels:
application: audittrail-adapter
version: v0.1.0
spec:
selector:
matchLabels:
application: audittrail-adapter
updateStrategy:
type: RollingUpdate
template:
metadata:
... | apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: audittrail-adapter
namespace: kube-system
labels:
application: audittrail-adapter
version: v0.1.0
spec:
selector:
matchLabels:
application: audittrail-adapter
updateStrategy:
type: RollingUpdate
template:
metadata:
... | Use kubernetes.io/role label for nodeAffinity | Use kubernetes.io/role label for nodeAffinity
Uses the more "official" kubernetes.io/role label rather than our custom
master=true label.
| YAML | mit | zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws |
82c5f5db98a080cf199b5306cc390ccf423593bc | test/k8sT/manifests/netperf-deployment.yaml | test/k8sT/manifests/netperf-deployment.yaml | ---
apiVersion: v1
kind: Pod
metadata:
name: netperf-server
labels:
id: netperf-server
zgroup: testapp
spec:
terminationGracePeriodSeconds: 0
containers:
- name: netperf
image: docker.io/tgraf/netperf:v1.0
---
apiVersion: v1
kind: Pod
metadata:
name: netperf-client
labels:
id: netperf-clie... | ---
apiVersion: v1
kind: Pod
metadata:
name: netperf-server
labels:
id: netperf-server
zgroup: testapp
spec:
terminationGracePeriodSeconds: 0
containers:
- name: netperf
image: docker.io/tgraf/netperf:v1.0
readinessProbe:
exec:
command: ["netperf", "-H", "127.0.0.1", "-l", "1"]
-... | Add readiness probe to netperf server | test: Add readiness probe to netperf server
Signed-off-by: Thomas Graf <5f50a84c1fa3bcff146405017f36aec1a10a9e38@cilium.io>
| YAML | apache-2.0 | michi-covalent/cilium,michi-covalent/cilium,tklauser/cilium,tklauser/cilium,tklauser/cilium,michi-covalent/cilium,tklauser/cilium,tgraf/cilium,cilium-team/cilium,cilium/cilium,tgraf/cilium,tgraf/cilium,cilium/cilium,tgraf/cilium,michi-covalent/cilium,cilium/cilium,tgraf/cilium,cilium/cilium,michi-covalent/cilium,cilium... |
24ffa5f230f99b0f3325659ff4b22554178884c4 | samples/test_blocks_of_blocks.yml | samples/test_blocks_of_blocks.yml | - hosts: localhost
gather_facts: no
tasks:
- block:
- block:
- block:
- block:
- debug: msg="are we there yet?"
always:
- debug: msg="a random always block"
- fail:
rescue:
- debug: msg="rescuing from the fail"
when: not skip_me|default(False)
| - hosts: localhost
gather_facts: no
tasks:
- block:
- block:
- block:
- block:
- debug: msg="are we there yet {{foo}}?"
always:
- debug: msg="a random always block"
- fail:
rescue:
- debug: msg="rescuing from the fail"
when: not skip_me|default(F... | Tweak sample blocks of blocks a bit more | Tweak sample blocks of blocks a bit more
| YAML | mit | thaim/ansible,thaim/ansible |
87695af05808279cc3b2787e590f36c890c90fb8 | recipes/oslo.serialization/meta.yaml | recipes/oslo.serialization/meta.yaml | {% set name = "oslo.serialization" %}
{% set version = "2.20.0" %}
{% set sha256 = "fca6fbb350d560aab8a4fdc9a1128dac3b1d38b2fc9bf5ad22136ae090854802" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name... | {% set name = "oslo.serialization" %}
{% set version = "2.20.0" %}
{% set sha256 = "fca6fbb350d560aab8a4fdc9a1128dac3b1d38b2fc9bf5ad22136ae090854802" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name... | Fix summary, thanks @jakirkham | Fix summary, thanks @jakirkham [ci skip]
| YAML | bsd-3-clause | birdsarah/staged-recipes,patricksnape/staged-recipes,jjhelmus/staged-recipes,ReimarBauer/staged-recipes,cpaulik/staged-recipes,rmcgibbo/staged-recipes,ceholden/staged-recipes,shadowwalkersb/staged-recipes,scopatz/staged-recipes,petrushy/staged-recipes,chohner/staged-recipes,dschreij/staged-recipes,pmlandwehr/staged-rec... |
85359b303842b291e5cf053516df7a65b0a6a97e | test/fixtures/blogs.yml | test/fixtures/blogs.yml | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
default:
base_url: http://myblog.net
settings:
show_extended_on_rss: true
blog_name: test blog
title_prefix: 1
limit_article_display: 2
sp_url_limit: 3
use_gravatar: false
blog_subtitle: test subtitle
limit_rss_... | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
default:
base_url: http://myblog.net
settings: <%= {
"show_extended_on_rss" => true,
"blog_name" => "test blog",
"title_prefix" => 1,
"limit_article_display" => 2,
"sp_url_limit" => 3,
"use_gravatar" => false,
"blog... | Fix blog fixture's settings field. | Fix blog fixture's settings field.
In Rails 3, you can no longer use nested YAML to set a serialized Hash
field inside fixtures: You need to provide the actual serialized form.
Hat tip to
<http://code.alexreisner.com/articles/serialized-fixtures-in-rails-3.html>
| YAML | mit | K-and-R/publify,moneyadviceservice/publify,solanolabs/publify,tedfrazier/saas_typo,zsstor/Typo,P5hil/typo,LOSDev/CS169-Homework-5,felixitous/typoo,ACPK/typo,publify/publify,leminhtuan2015/test_temona,hmallett/publify,mrfosip/typo,ashrob/typo,alexhuang91/typo,Juuro/publify,LOSDev/CS169-Homework-5,leminhtuan2015/nginx_ca... |
37bcfe1c33e03fe65900bdf38f4bc57afca49aea | docker-compose.yml | docker-compose.yml | version: '2'
services:
web:
image: microcosm
build:
context: .
dockerfile: ./containers/Dockerfile.microcosm
ports:
- "80:80"
- "443:443"
volumes:
- .:/go/src/github.com/buro9/microcosm
depends_on:
- db
- cache
links:
- db
db:
image: "postgres... | version: '2'
services:
web:
image: microcosm
build:
context: .
dockerfile: ./containers/Dockerfile.microcosm
ports:
- "80:80"
- "443:443"
volumes:
- .:/go/src/github.com/buro9/microcosm
depends_on:
- db
- cache
links:
- db
db:
image: "postgres... | Update postgres Docker tag to v13 | Update postgres Docker tag to v13
| YAML | agpl-3.0 | microcosm-cc/microcosm-ui,buro9/microcosm,buro9/microcosm,microcosm-cc/microcosm-ui |
3b756ee8d3017685a7466862e5084d87f3c5d57a | docker-compose.yml | docker-compose.yml | authenticate:
build: .
ports:
# HOST:CONTAINER
# Flask defaults to listening on port 5000 but this is configurable.
# See http://flask.pocoo.org/docs/0.10/api/#flask.Flask.run
- "5000:5000"
volumes:
- /tmp/authentication:/data
environment:
- SQLALCHEMY_DATABASE_URI=sqlite:////data/authenticat... | authenticate:
build: .
ports:
# HOST:CONTAINER
# Flask defaults to listening on port 5000 but this is configurable.
# See http://flask.pocoo.org/docs/0.10/api/#flask.Flask.run
- "5000:5000"
volumes:
- /tmp/authentication:/data
environment:
- SQLALCHEMY_DATABASE_URI=sqlite:////data/authenticat... | Add TODO for how we're going to know the storage port | Add TODO for how we're going to know the storage port
| YAML | mit | jenca-cloud/jenca-authentication |
4c31c3460b8be02fe1f79e50694f669e66ebb320 | docker-compose.yml | docker-compose.yml | version: '2'
services:
test:
build:
context: .
volumes:
- "coverage:/usr/src/app/coverage"
volumes:
coverage:
| version: '2'
services:
test:
build:
context: .
environment:
- NODE_ENV=test
- BABEL_ENV=test
volumes:
- "coverage:/usr/src/app/coverage"
volumes:
coverage:
| Make sure the test container has the proper env variables | Make sure the test container has the proper env variables
Test Plan:
- Automated tests pass
Change-Id: I980e9d7c1f7bf342195fed2c0bcf70429f112028
Reviewed-on: https://gerrit.instructure.com/111337
Tested-by: Jenkins
Reviewed-by: Steven Burnett <a0b450117c5d20a22d5c4d52bb8ae13adee003d8@instructure.com>
Reviewed-by: D... | YAML | agpl-3.0 | instructure/canvas-planner,instructure/canvas-planner,instructure/canvas-planner |
a5e390c67a7d08b3c914671ecb2b81fc9e146b29 | docker-compose.yml | docker-compose.yml | version: '2'
services:
# Nginx Web Server
nginx:
build: './_docker/nginx'
volumes:
- ./logs/nginx/:/var/log/nginx
volumes_from:
- volumes_fe_source
ports:
- "80:80"
- "443:443"
links:
- "hhvm"
# HHVM
hhvm:
build: './_docker/hhvm'
expose:
- "9000... | version: '3'
services:
# Nginx Web Server
nginx:
build: './_docker/nginx'
volumes:
- ./logs/nginx/:/var/log/nginx
- ./frontend:/var/www/frontend
ports:
- "80:80"
- "443:443"
links:
- "hhvm"
# HHVM
hhvm:
build: './_docker/hhvm'
expose:
- "9000"
v... | Upgrade docker compose file to v3 | Upgrade docker compose file to v3
| YAML | mit | bt/docker-starter,bt/docker-starter |
8c16afaa2136384ad59d52bbbdcffcd78e6e5910 | docker-compose.yml | docker-compose.yml | version: '3.0'
services:
lib: &default
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/usr/src/app
env_file: .secrets
| version: '3.0'
services:
lib: &default
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/usr/src/app
- registry:/root/.cargo/registry
env_file: .secrets
volumes:
registry:
driver: local
| Add registry volume to compose | Add registry volume to compose
Because the `Cargo.toml` changes frequently in development and
invalidates the image cache, this adds a volume to persist the
installed crates between builds.
| YAML | mit | blankenshipz/oanda-rs |
c07eae8fa72b540874988bf66ffe901ddf2c4ff6 | docker-compose.yml | docker-compose.yml | version: '2'
services:
db:
image: mongo
ports:
- "27017:27017"
nginx-php7.0:
build:
context: ./docker
dockerfile: ./Dockerfile-php7.0
ports:
- "8100:8100"
links:
- db
volumes:
- ./:/usr/share/nginx/html
command: ["bash", "/usr/share/nginx/html/docker/... | version: '2'
services:
db:
image: mvertes/alpine-mongo
ports:
- "27017:27017"
nginx-php7.0:
build:
context: ./docker
dockerfile: ./Dockerfile-php7.0
ports:
- "8100:8100"
links:
- db
volumes:
- ./:/usr/share/nginx/html
command: ["bash", "/usr/share/ngi... | Use alpine version of Mongo | Use alpine version of Mongo
mongo: 342.5 MB
mvertes/alpine-mongo: 75.33 MB
| YAML | mit | j0k3r/f43.me,j0k3r/f43.me,j0k3r/f43.me |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.