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 |
|---|---|---|---|---|---|---|---|---|---|
ec00c1288c25ba5f2331215119f46a38920774e2 | .travis.yml | .travis.yml | language: go
go:
- 1.4.2
addons:
postgresql: "9.3"
before_script:
- psql -c 'create database testdb;' -U postgres
env:
- DBUSER=postgres DBHOST=localhost TEMPLATE_DIR=./templates STATIC_DIR=./static
install: make deps
script: make ci
| language: go
go:
- 1.4.2
addons:
postgresql: "9.3"
before_script:
- psql -c 'create database testdb;' -U postgres
env:
- DBUSER=postgres DBPASS=test TEMPLATE_DIR=./templates STATIC_DIR=./static
install: make deps
script: make ci
| Fix db ssl mode invalid connect string | Fix db ssl mode invalid connect string
| YAML | mit | nkhumphreys/gobananas,nkhumphreys/gobananas,nkhumphreys/gobananas |
08a67a47534db961c87530ceb88317c382ed7aec | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
env: DATABASE_URL=postgres://postgres@localhost/timeoverflow_test
before_script:
- psql -c 'create database timeoverflow_test;' -U postgres
- RAILS_ENV=test bundle exec rake db:migrate
| language: ruby
rvm:
- 2.2
env: DATABASE_URL=postgres://postgres@localhost/timeoverflow_test
before_script:
- psql -c 'create database timeoverflow_test;' -U postgres
- RAILS_ENV=test bundle exec rake db:migrate
sudo: false
cache: bundler | Use new container based Travis infrastructure and use built-in caching for dependencies | [TEST] Use new container based Travis infrastructure and use built-in caching for dependencies
| YAML | agpl-3.0 | coopdevs/timeoverflow,coopdevs/timeoverflow,d2bit/timeoverflow,d2bit/timeoverflow,d2bit/timeoverflow,coopdevs/timeoverflow,coopdevs/timeoverflow,d2bit/timeoverflow |
fb327487dac67ac0fe69499c656bac1be4a6f44f | .travis.yml | .travis.yml | language: java
cache:
directories:
- $HOME/.m2
- $HOME/.zinc
install:
- java -XX:+PrintFlagsFinal -version
- mvn --version
script:
- mvn verify --update-snapshots --settings .travis.settings.xml -e
jdk: oraclejdk8
| language: java
cache:
directories:
- $HOME/.m2
- $HOME/.zinc
install:
- java -XX:+PrintFlagsFinal -version
- mvn --version
script:
- mvn verify site --update-snapshots --settings .travis.settings.xml -e
jdk: oraclejdk8
| Add 'site' goal to Travis build to execure 'scoverage:report' mojos. | Add 'site' goal to Travis build to execure 'scoverage:report' mojos.
| YAML | apache-2.0 | scoverage/scoverage-maven-samples,scoverage/scoverage-maven-samples |
6c9ddc92102eaf0abef76669cada6daf8381a56d | .travis.yml | .travis.yml | language: python
python:
- "2.5"
- "2.6"
- "2.7"
- "3.3"
- "pypy"
script:
- py.test ndd/unit/*_spec.py | language: python
python:
- "2.7"
- "3.3"
- "pypy"
script:
- py.test ndd/unit/*_spec.py
| Remove support for Python 2.5 and 2.6 | Remove support for Python 2.5 and 2.6 | YAML | mit | parkr/near-dup-detection |
a0e6136bdb9131472352001b3eb05d4242458958 | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.2.2"
- "2.3.0"
script: bundle exec rspec spec
os:
- "linux"
- "osx"
| language: ruby
rvm:
- "2.1.10"
- "2.2.8"
- "2.3.5"
- "2.4.2"
script: bundle exec rspec spec
os:
- "linux"
- "osx"
| Build across most recently EOLed ruby to Current | Build across most recently EOLed ruby to Current
| YAML | mit | nylas/nylas-ruby,nylas/nylas-ruby |
ae94780d40585edbe28e2d58e15170ee09f164b4 | .travis.yml | .travis.yml | language: java
dist: trusty
services:
- mysql
jdk: oraclejdk8
sudo: required
install: .travis.install.sh
| language: java
dist: trusty
services:
- mysql
jdk: oraclejdk8
sudo: required
install: ./.travis.install.sh
| Fix script reference for CI | Fix script reference for CI
| YAML | apache-2.0 | gchq/stroom,gchq/stroom,gchq/stroom,gchq/stroom,gchq/stroom,gchq/stroom |
1e2a87cdd4f197522065c46486b348df44237027 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- pip install .
- pip install -r requirements.txt
script: nosetests
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install .
- pip install -r requirements.txt
script: nosetests
| Add Python 3.6 to Travis CI | Add Python 3.6 to Travis CI
| YAML | mit | Railslide/subvenv,Railslide/subvenv |
278be388507392b6d223ad5ce22351d3daa80b7f | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
branches:
only:
- master
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer selfupdate
install:
- composer install
before_script:
- mkdir -p build/logs
script:
- phpunit --coverage-clover build/logs/clo... | language: php
sudo: false
php:
- 5.5
- 5.6
- 7.0
- 7.1
branches:
only:
- master
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer selfupdate
install:
- composer install
before_script:
- mkdir -p build/logs
script:
- phpunit --coverage-clover build/logs/clover.xml
... | Drop HHVM from CI build | Drop HHVM from CI build
| YAML | bsd-3-clause | clippings/date-utils |
ea08f603f5cd7c9e10701c22792356fdbfe46def | .travis.yml | .travis.yml | language: node_js
node_js:
- "stable"
install:
- npm install
script:
- npm run lint
- npm test
- npm run style
- node ./demo/demo1.js
- node ./demo/demo2.js
- node ./demo/demo3.js
- node ./demo/demo4.js
- node ./demo/demo5.js
after_failure:
- "cat /home/travis/builds/dolanmiu/docx/npm-debug.log"
a... | language: node_js
node_js:
- "stable"
install:
- npm install
script:
- npm run lint
- npm test
- npm run style
- npm run build
- node ./demo/demo1.js
- node ./demo/demo2.js
- node ./demo/demo3.js
- node ./demo/demo4.js
- node ./demo/demo5.js
after_failure:
- "cat /home/travis/builds/dolanmiu/doc... | Add build command before demos | Add build command before demos | YAML | mit | dolanmiu/docx,dolanmiu/docx,dolanmiu/docx |
9c625c0ac36f11c25f9d14c21f5ef761b26b0749 | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.9.3"
services:
- mongodb
bundler_args: --without development
before_install: ./script/ci/replace_local_paths.sh
branches:
except:
- master
| language: ruby
rvm:
- "1.9.3"
services:
- mongodb
- redis-server
bundler_args: --without development
before_install: ./script/ci/replace_local_paths.sh
branches:
except:
- master
| Set TravisCI to start redis-server before running tests | Set TravisCI to start redis-server before running tests
| YAML | mit | analiceme/chaos |
ee3067daecb9f181440d41b8d445e917b292f6a6 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
env:
# - SUBLIME_TEXT_VERSION="2.0"
- SUBLIME_TEXT_VERSION="3.0"
install:
- export SUBLIME_TESTS_AUTO_KILL=TRUE
# Install Sublime Text
- ./test/install.sh
# List Sublime Text info for debugging
- sublime_text --version
# Install `sublime_plugin_tests`
- ... | language: python
python:
- "2.7"
- "3.3"
env:
- SUBLIME_TEXT_VERSION="2.0"
- SUBLIME_TEXT_VERSION="3.0"
install:
- export SUBLIME_TESTS_AUTO_KILL=TRUE
# Install Sublime Text
- ./test/install.sh
# List Sublime Text info for debugging
- sublime_text --version
# Install `sublime_plugin_tests`
- py... | Enable all versions Sublime Text | Enable all versions Sublime Text
| YAML | unlicense | twolfson/sublime-plugin-tests,twolfson/sublime-plugin-tests |
78e840c991a7089c5f6323883e2ee535cb46786d | .travis.yml | .travis.yml | language: java
dist: precise
before_script: cd api/
script: if [[ "$TRAVIS_JDK_VERSION" == "openjdk6" ]]; then mvn test -Ptest -Dhttps.protocols=TLSv1 -DmessageBirdAccessKey=test_iQpAp0KCs5GCsMpDhIx2leuNB -DmessageBirdMSISDN=31612345678; else mvn test -Ptest -Dhttps.protocols=TLSv1.2 -DmessageBirdAccessKey=test_iQpAp0K... | language: java
dist: precise
before_script: cd api/
script: if [[ "$TRAVIS_JDK_VERSION" == "openjdk6" ]]; then mvn test -Ptest -Dhttps.protocols=TLSv1 -DmessageBirdAccessKey=test_iQpAp0KCs5GCsMpDhIx2leuNB -DmessageBirdMSISDN=31612345678; else mvn test -Ptest -Dhttps.protocols=TLSv1.2 -DmessageBirdAccessKey=test_iQpAp0K... | Allow openjdk6 job to fail | Allow openjdk6 job to fail
| YAML | bsd-3-clause | messagebird/java-rest-api |
e4d2461f6a25595d7ff3c81b9504c2b3522d2397 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5.0b3"
- "3.5-dev"
# command to install dependencies
install:
- "pip install ."
- "pip install -r requirements.txt"
# command to run tests
script: py.test
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5.0b3"
- "3.5-dev"
# command to install dependencies
install:
- "pip install -r requirements.txt"
# command to run tests
script: py.test
| Remove installing self from test build | Remove installing self from test build
| YAML | bsd-3-clause | philipbl/talk_feed,philipbl/SpeakerCast |
7d3104a12421139d7d9db14a39f86c22074ef852 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: python
python:
- '2.6'
- '2.7'
- '3.2'
- '3.3'
- '3.4'
- '3.5'
- '3.5-dev'
- 'nightly'
- 'pypy'
- 'pypy3'
matrix:
allow_failures:
- python: '2.6'
- python: '3.2'
- python: '3.5-dev'
- python: 'nightly'
- python: 'pypy'
... | sudo: required
dist: trusty
language: python
python:
- '2.6'
- '2.7'
- '3.2'
- '3.3'
- '3.4'
- '3.5'
- '3.5-dev'
- 'nightly'
- 'pypy'
- 'pypy3'
matrix:
allow_failures:
- python: '2.6'
- python: '2.7'
- python: '3.2'
- python: '3.5-dev'
- python: 'nightly'
... | Allow 2.7 failures for now again during early development | Travis: Allow 2.7 failures for now again during early development
| YAML | mit | JelteF/easyfuse,JelteF/easyfuse |
51254ad0658707d54a9e55041054b877fbef4ae6 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
before_install:
- gem update --system
- gem --version
rvm:
- 1.8.7
- ree
- 1.9.3
- rbx-19mode
- jruby-19mode
- ruby-head
| language: ruby
bundler_args: --without development
before_install:
- gem update --system
- gem --version
rvm:
- 1.9.3
- rbx-19mode
- jruby-19mode
- ruby-head
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: ruby-head
| Allow failures on jruby and ruby-head. | Allow failures on jruby and ruby-head. | YAML | mit | jeroenvandijk/capybara-mechanize,arnlen/capybara-mechanize,joemcmahon/capybara-mechanize |
ac8bf0ad5fa4f6fa8fdc22100e89f5c75aeadf46 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- "1.9.3"
- "2.0"
- "2.1.10"
- "2.2.7"
- "2.4.1"
- "jruby-9.1.8.0"
cache: bundler
| language: ruby
sudo: false
rvm:
- "1.9.3"
- "2.0"
- "2.1.10"
- "2.2.7"
- "2.3.4"
- "2.4.1"
- "jruby-9.1.8.0"
cache: bundler
| Test MRI 2.3 on Travis | Test MRI 2.3 on Travis
| YAML | mit | janko-m/down |
4cb74e742b0811b3e9031a18d0d3dd2c620cfde0 | .travis.yml | .travis.yml | dist: bionic
language: rust
rust:
- stable
- beta
- nightly
jobs:
allow_failures:
- rust: nightly
fast_finish: true
cache: cargo
# Custom directory, for the correct year
before_script:
- cd 2020
| dist: bionic
language: rust
rust:
- stable
- beta
- nightly
jobs:
allow_failures:
- rust: nightly
fast_finish: true
cache:
- cargo
- 2020/target
# Custom directory, for the correct year
before_script:
- cd 2020
| Fix Travis caching build artifacts | Fix Travis caching build artifacts
| YAML | mit | bertptrs/adventofcode,bertptrs/adventofcode,bertptrs/adventofcode,bertptrs/adventofcode,bertptrs/adventofcode,bertptrs/adventofcode,bertptrs/adventofcode,bertptrs/adventofcode,bertptrs/adventofcode,bertptrs/adventofcode,bertptrs/adventofcode,bertptrs/adventofcode,bertptrs/adventofcode,bertptrs/adventofcode,bertptrs/adv... |
2085423e03d7b322a14c79fef3d6a6869108e849 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
| language: node_js
node_js:
- '4'
- '5'
| Drop 0.10 and 0.12, over it | Drop 0.10 and 0.12, over it
| YAML | mit | caseywebdev/cogs-transformer-babel |
bfb27efe38d5aa913c31e262f830bb57221f21b1 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --dev --prefer-source
script: bin/phpspec run -fpretty --verbose
| language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --no-interaction --prefer-source
script: bin/phpspec run -fpretty --verbose
| Fix invalid deps and move AttributeFactory to component | Fix invalid deps and move AttributeFactory to component
| YAML | mit | Sylius/Rbac |
08c40e3b4714638f2331dd92efb169162dfbbd8a | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- rbx-19mode
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- rbx-2.1.1
| Change Travis CI Rubinius version | Change Travis CI Rubinius version
| YAML | mit | aergonaut/pronto,prontolabs/pronto,jhass/pronto,mvz/pronto,mmozuras/pronto,treble37/pronto,gussan/pronto,HaiTo/pronto,Zauberstuhl/pronto |
6487adfd4a5d38fe0b2c3fa07ba9aa8e20fccba0 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.5
- 1.6
- 1.7
- tip
go_import_path: go.uber.org/zap
env:
global:
- GO15VENDOREXPERIMENT=1
- TEST_TIMEOUT_SCALE=10
cache:
directories:
- vendor
install:
- make dependencies
script:
- make lint
- make test
after_success:
- make coveralls
| language: go
sudo: false
go:
- 1.6
- 1.7
- tip
go_import_path: go.uber.org/zap
env:
global:
- GO15VENDOREXPERIMENT=1
- TEST_TIMEOUT_SCALE=10
cache:
directories:
- vendor
install:
- make dependencies
script:
- make lint
- make test
after_success:
- make coveralls
| Stop testing on Go 1.5 | Stop testing on Go 1.5
| YAML | mit | uber-common/zap,uber-go/zap,uber-go/zap |
240b297d45f7d45ec8805590185b0843e434e17c | .travis.yml | .travis.yml | ---
after_script:
- ruby -Ilib bin/rake travis:after -t
before_script:
- gem install hoe-travis --no-rdoc --no-ri
- gem install minitest -v '~> 5.0' --no-rdoc --no-ri
- ruby -Ilib bin/rake travis:before -t
language: ruby
sudo: false
notifications:
email:
- drbrain@segment7.net
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
-... | ---
after_script:
- ruby -Ilib bin/rake travis:after -t
before_script:
- gem install hoe-travis --no-document
- gem install minitest -v '~> 5.0' --no-document
- ruby -Ilib bin/rake travis:before -t
language: ruby
sudo: false
notifications:
email:
- drbrain@segment7.net
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.5
... | Use --no-document option instead of --no-rdoc and --no-ri option | Use --no-document option instead of --no-rdoc and --no-ri option | YAML | mit | codedogfish/rake,utilum/rake,ruby/rake,tmornini/rake,envato/rake,envato/rake,88rabbit/rake,askl56/rake,jaustinhughey/rake,ipmobiletech/rake,Vanzct/rake,ruby/rake,bentley/rake,esasse/rake,taiganakagawa/rake |
91443d71776a294a6d9441e3ae62b45a639adb1f | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| sudo: false
language: node_js
node_js:
- '4'
- '5'
- '6'
- '7'
| Update supported node versions in theoretical Travis integration. | Update supported node versions in theoretical Travis integration.
| YAML | mit | phase2/generator-outrigger-drupal,phase2/generator-outrigger-drupal,phase2/generator-outrigger-drupal |
70815349764d2e7739e4ebcdd993d3a531c268cd | .travis.yml | .travis.yml | language: scala
sudo: false
cache:
directories:
- $HOME/.ivy2
- $HOME/spark
scala:
- 2.10.4
before_install:
- pip install --user codecov unittest2
script:
- "export SPARK_CONF_DIR=./log4j/"
- sbt compile test
- "[ -f spark] || mkdir spark && wget http://d3kbcqa49mib13.cloudfront.net/spark-1.6.1-bin... | language: scala
sudo: false
cache:
directories:
- $HOME/.ivy2
- $HOME/spark
- $HOME/.cache/pip
scala:
- 2.10.4
before_install:
- pip install --user codecov unittest2 nose pep8 pylint scipy pandas
script:
- "export SPARK_CONF_DIR=./log4j/"
- sbt compile test
- "[ -f spark] || mkdir spark && wget... | Add more packages and cache them | Add more packages and cache them
| YAML | apache-2.0 | mahmoudhanafy/high-performance-spark-examples |
710bada085d7143a2e1104effed0044cc62664e8 | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: 7.2
- php: 7.3
- php: 7.4
- php: 7.2
env: COMPOSER_FLAGS="--prefer-lowest"
allow_failures:
- php: nightly
before_script:
- travis_retry composer self-update --no-progress
- travis_retry composer update --no-interaction --no-progress $COMPOSER_FLA... | language: php
matrix:
include:
- php: 7.2
- php: 7.3
- php: 7.4
- php: 8.0
- php: 7.2
env: COMPOSER_FLAGS="--prefer-lowest"
allow_failures:
- php: nightly
before_script:
- travis_retry composer self-update --no-progress
- travis_retry composer update --no-interaction --no-progres... | Add PHP 8.0 to Travis | Add PHP 8.0 to Travis | YAML | mit | omines/oauth2-gitlab,omines/oauth2-gitlab |
fb510d5432b84ce80df9aca635bf059a2ff587c7 | .travis.yml | .travis.yml | language: php
sudo: false
matrix:
fast_finish: true
include:
- php: 5.5
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.2.*
- php: 7.0
env: SYMFONY_VERSION=3.3.* DEPENDENCIES=dev
- php: 7.1
- php: hhvm-stable
sudo: required
dist: trusty
group: e... | language: php
sudo: false
matrix:
fast_finish: true
include:
- php: 5.5
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.2.*
- php: 7.0
env: SYMFONY_VERSION=3.3.* DEPENDENCIES=dev
- php: 7.1
- php: hhvm-stable
sudo: required
dist: trusty
group: e... | Revert "Allow failures on low deps until next symfony release" | Revert "Allow failures on low deps until next symfony release"
This reverts commit 49763f8b27b88c5da436db0a3ae46b9ac79a1682.
| YAML | mit | chalasr/LexikJWTAuthenticationBundle,lexik/LexikJWTAuthenticationBundle |
8c047e20ac4993e31e355a8c969caa06a4a04503 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
git:
depth: 10
| # Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not u... | Use TravisCI to run Wicket's Java & JS tests on ARM64 architecture | Use TravisCI to run Wicket's Java & JS tests on ARM64 architecture
| YAML | apache-2.0 | apache/wicket,apache/wicket,mosoft521/wicket,mosoft521/wicket,mosoft521/wicket,apache/wicket,mosoft521/wicket,apache/wicket,mosoft521/wicket,apache/wicket |
f45dc79aa478205ea00e684124cf02b7f047dc9e | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.3
- hhvm
before_script:
- composer install --dev --dev --prefer-source --no-interaction
script:
- phpunit=`which phpunit`
- sudo $phpunit --coverage-text || ([[ $? = 139 ]] && echo && echo "Ignoring SEGFAULT.." >&2)
| language: php
php:
- 5.4
- 5.3
- hhvm
sudo: false
install:
- composer install --prefer-source --no-interaction
script:
- phpunit --coverage-text
| Use Travis' container infrastructure in order to restore IPv6 support | Use Travis' container infrastructure in order to restore IPv6 support
The container infrastructure does not support root access, so we now
have to skip raw/ICMP tests.
See also the following links:
https://blog.travis-ci.com/2015-11-27-moving-to-a-more-elastic-future
https://docs.travis-ci.com/user/migrating-from-leg... | YAML | mit | clue/php-socket-raw |
9bcd9709d14a74bf47628623eec9355468efac43 | .travis.yml | .travis.yml | language: go
sudo: false
addons:
postgresql: "9.4"
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
env:
- DBNAME=travis_ci_test DBUSER=postgres
go:
- 1.4.3
- 1.5.1
script:
- go get golang.org/x/tools/cmd/vet
- go vet ./...
- go test -v ./...
| language: go
sudo: false
addons:
postgresql: "9.4"
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
env:
- DBNAME=travis_ci_test DBUSER=postgres
go:
- 1.5.1
script:
- go get golang.org/x/tools/cmd/vet
- go vet ./...
- go test -v ./...
| Drop support for go 1.4. | Drop support for go 1.4.
go vet does not work anymore on 1.4.3 and it seems the general advice is
to upgrade to 1.5
| YAML | apache-2.0 | databus23/keystone |
9d9523207dd73e032f4a49188017d28af7719aaf | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.4"
install:
- "sudo apt-get -yV install libxml2-dev libxslt1-dev" # lxml dependencies
- "pip install -r requirements.txt"
- "pip install coveralls"
- "sudo apt-get -yV install optipng jpegoptim"
script:
- "coverage run --source=sacad setup.py test"
after_success:
-... | language: python
python:
- "3.3"
- "3.4"
install:
- "sudo apt-get -yV install libxml2-dev libxslt1-dev" # lxml dependencies
- "pip install -r requirements.txt"
- "pip install coveralls"
- "sudo apt-get -yV install optipng jpegoptim"
- "sudo apt-get -yV install wine"
script:
- "coverage run --source=sac... | Build Windows executable with TravisCI | Build Windows executable with TravisCI
| YAML | mpl-2.0 | desbma/sacad,desbma/sacad |
d2e502b0e3c13b72b5046ed10ad0a8a7721f99fd | .travis.yml | .travis.yml | language: elixir
elixir: '1.4.2'
otp_release: '19.3'
env:
- REDIS_URL=redis://localhost:6379
| language: elixir
elixir: '1.4.2'
otp_release: '19.3'
env:
- REDIS_URL=redis://localhost:6379
cache:
directories:
- assets/node_modules
- deps
- _build
| Speed up build by caching deps/build dirs | Speed up build by caching deps/build dirs
| YAML | apache-2.0 | asciinema/asciinema-server,asciinema/asciinema-server,asciinema/asciinema.org,asciinema/asciinema.org,asciinema/asciinema.org,asciinema/asciinema.org,asciinema/asciinema-server,asciinema/asciinema-server |
7e1a6ffbbd6391462ac1ceba83f552849671686f | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
before_script:
- npm install -g gulp
script: gulp test | language: node_js
node_js:
- 0.10
before_script:
- npm install -g grunt
script: grunt jest | Fix CI -- we switched gulp -> grunt. | Fix CI -- we switched gulp -> grunt.
| YAML | mit | warelab/gramoogle,mycrobe/gramoogle,warelab/gramoogle,mycrobe/gramoogle |
7ed36eec4a4e430e2f0b440546aec7b59f159242 | .travis.yml | .travis.yml | language: java
install: mvn install -DskipTests=true
script: mvn test -DjenkinsOperatingSystem=linux -DjenkinsBrowser=html -DjenkinsRunLocation=sauce -DsuiteXmlFile=src/test/resources/travisTestNG.xml
jdk:
- openjdk7
after_script:
- cat target/surefire-reports/TestSuite.txt | language: java
install: mvn install -DskipTests=true
script: mvn test -DjenkinsOperatingSystem=linux -DjenkinsBrowser=html -DjenkinsRunLocation=local -DsuiteXmlFile=src/test/resources/travisTestNG.xml
jdk:
- openjdk7
after_script:
- cat target/surefire-reports/TestSuite.txt | Update to run on local Travis Server | Update to run on local Travis Server | YAML | bsd-3-clause | Orasi/Selenium-Java-Core,Orasi/Xeeva |
70fd80e0061c1c04a2e4380504eec786ccedb9a4 | .travis.yml | .travis.yml | language: scala
scala:
- 2.10.3
before_script:
- npm install bower
- npm install grunt-cli
- gem install sass
- cd public
- npm install
- bower install
- cd ..
script:
- sbt test
- cd public
- grunt test
- play dist
deploy:
provider: heroku
api_key:
secure: RwSpEp49ALY8s4x6/HonZXrm0URSl8rgyLsZ8PhRQHN/P/pgPnUwsE... | language: scala
scala:
- 2.10.3
before_script:
- npm install bower
- npm install grunt-cli
- gem install sass
- cd public
- npm install
- bower install
- cd ..
script:
- sbt test
- cd public
- grunt test
- cd ..
- play dist
deploy:
provider: heroku
api_key:
secure: RwSpEp49ALY8s4x6/HonZXrm0URSl8rgyLsZ8PhRQHN/P/... | Add "play dist" to the build script. | Add "play dist" to the build script.
| YAML | apache-2.0 | Sage-Bionetworks/BridgePF,alxdarksage/BridgePF,Sage-Bionetworks/BridgePF,alxdarksage/BridgePF,DwayneJengSage/BridgePF,DwayneJengSage/BridgePF,Sage-Bionetworks/BridgePF,DwayneJengSage/BridgePF,alxdarksage/BridgePF |
1ce1c47f9865216d59f47b5f21d91f38759931a7 | .travis.yml | .travis.yml | script: "gem install foodcritic -v 1.1.0 && foodcritic -f any ."
rvm:
- 1.9.3
| script: "gem install foodcritic -v 1.1.0 && foodcritic -f any -t ~FC007 ."
rvm:
- 1.9.3
| Exclude a test that is known to fail | Exclude a test that is known to fail
| YAML | apache-2.0 | realityforge/chef-glassfish,hopshadoop/chef-glassfish,realityforge/chef-glassfish,hopshadoop/chef-glassfish,predictivelogic/chef-glassfish,predictivelogic/chef-glassfish,predictivelogic/chef-glassfish,realityforge/chef-glassfish,hopshadoop/chef-glassfish |
335f27bbe7bedf695d90ab00309ee13af39d8945 | .travis.yml | .travis.yml | language: node_js
node_js:
- "8"
install: npm install
before_install:
- npm i -g npm@6.1.0
- npm i -g greenkeeper-lockfile@1
script: npm run ci
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
| language: node_js
node_js:
- 10
install: npm install
before_install:
- npm i -g greenkeeper-lockfile@1
script: npm run ci
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
| Update TravisCI to use Node 10 | Update TravisCI to use Node 10
| YAML | mit | lentz/buddyduel,lentz/buddyduel,lentz/buddyduel |
1e5207341944df054064007d7682c5b9dda82f8a | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.3.1
- jruby-9.2.0.0
matrix:
allow_failures:
- rvm: jruby-9.2.0.0
notifications:
email: false
deploy:
provider: rubygems
api_key:
secure: jL1lH/wfeRa5MoZRHvkXcZP/Ch7huFxqzbvhEV7UZhiDUBnApcJWkb346jeLEDYnFObUhqhaCZ1/l4fDeSFg2GgatSfEnoWATFVkIf1e4TTGAePlS+4qqs... | language: ruby
sudo: false
cache: bundler
rvm:
- 2.3.7
- 2.4.4
- 2.5.1
- jruby-9.2.0.0
matrix:
allow_failures:
- rvm: jruby-9.2.0.0
notifications:
email: false
deploy:
provider: rubygems
api_key:
secure: jL1lH/wfeRa5MoZRHvkXcZP/Ch7huFxqzbvhEV7UZhiDUBnApcJWkb346jeLEDYnFObUhqhaCZ1/l4fDeSFg2GgatSfEnoWATFVkIf... | Add new ruby versions to Travis config | Add new ruby versions to Travis config
| YAML | mit | roidrage/redis-session-store |
14ee8fdfb7784e7f86342c1d9d2a29c1f169f5e2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
before_install:
- travis_retry npm install -g npm
- travis_retry npm install
script:
- npm test
notifications:
email:
- travis@nodejitsu.com
irc: "irc.freenode.org#nodejitsu"
| language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
before_install:
- travis_retry npm install -g npm
- travis_retry npm install
script:
- npm test
matrix:
allow_failures:
- node_js: "0.12"
notifications:
email:
- travis@nodejitsu.com
irc: "irc.freenode.org#nodejitsu"
| Allow failures in 0.12 for now. | Allow failures in 0.12 for now.
To allow 0.12 to be included in test suite, even though it doesn't fully work yet.
| YAML | mit | DenisGorbachev/winston,beni55/winston,thaliproject/winston,nikolas/winston,megastef/winston,s-panferov/winston,SmartNode-es/winston,whismat/winston,rakesh-mohanta/winston,tobli/winston,z-10/winston,winstonjs/winston,aquavitae/winston,get-trucked/winston,harriha/winston,psquickitjayant/winston,alinex/winston,jjmleiro/wi... |
7f117a04f2bdecc05a4d98f411fdced038dbf77c | .travis.yml | .travis.yml | language: python
python:
- "2.7"
env:
- DJANGO_PACKAGE="django>=1.6,<1.7"
- DJANGO_PACKAGE="https://www.djangoproject.com/download/1.7c1/tarball/"
matrix:
# Release candiate status
allow_failures:
- env: DJANGO_PACKAGE="https://www.djangoproject.com/download/1.7c1/tarball/"
# Include specific versions... | language: python
python:
- "2.7"
env:
- DJANGO_PACKAGE="django>=1.6,<1.7"
- DJANGO_PACKAGE="https://www.djangoproject.com/download/1.7c2/tarball/"
matrix:
# Release candiate status
allow_failures:
- env: DJANGO_PACKAGE="https://www.djangoproject.com/download/1.7c2/tarball/"
# Include specific versions... | Update tests to use django 1.7c2 | Update tests to use django 1.7c2
| YAML | bsd-3-clause | timsavage/baldr,timsavage/baldr |
b4fdec92e53ad10cc58d282c13a64421d3168281 | .travis.yml | .travis.yml | sudo: false
dist: trusty
cache:
directories:
- "$HOME/.m2"
language: java
before_install:
- sed -i.bak -e 's|https://nexus.codehaus.org/snapshots/|https://oss.sonatype.org/content/repositories/codehaus-snapshots/|g' ~/.m2/settings.xml
- unset _JAVA_OPTIONS
install: true
env:
global:
- MAVEN_OPTS=-Xmx512... | sudo: false
dist: trusty
cache:
directories:
- "$HOME/.m2"
language: java
before_install:
- sed -i.bak -e 's|https://nexus.codehaus.org/snapshots/|https://oss.sonatype.org/content/repositories/codehaus-snapshots/|g' ~/.m2/settings.xml
- unset _JAVA_OPTIONS
install: true
env:
global:
- MAVEN_OPTS=-Xmx512... | Disable tests on the QA build, they are already run in the jdk8 and jdk11 ones | Disable tests on the QA build, they are already run in the jdk8 and jdk11 ones
| YAML | lgpl-2.1 | geotools/geotools,geotools/geotools,geotools/geotools,geotools/geotools |
19d7b07d1d973bf6e7c0c1f00762c3c2381dca90 | .travis.yml | .travis.yml | after_success:
- npm run-script publish-build
cache:
directories:
- bower_components
- node_modules
env:
global:
- secure: BW3XJWrqFehVIGxhhiAIb3ktCiU69LDt60Y5lIDDk5sxZfOxed8SseZzy5vsmopklz22+aK7T4gGXX6E1j/pkOThW0vXeFS+syRIbpGZHH5D07mvhuLbAH5pHiCxPPKEmEj5afQCMAohghx7jBEZ2PmHY2y6va9Dkt5p1h4Seyw=
language: node... | after_success:
- npm run-script publish-build
cache:
directories:
- bower_components
- node_modules
env:
global:
- secure: BW3XJWrqFehVIGxhhiAIb3ktCiU69LDt60Y5lIDDk5sxZfOxed8SseZzy5vsmopklz22+aK7T4gGXX6E1j/pkOThW0vXeFS+syRIbpGZHH5D07mvhuLbAH5pHiCxPPKEmEj5afQCMAohghx7jBEZ2PmHY2y6va9Dkt5p1h4Seyw=
language: node... | Stop sending Travis CI emails. | Stop sending Travis CI emails.
| YAML | mit | IvyApp/ivy-tabs,IvyApp/ivy-tabs |
68d35a58613f68886a8433dab38e40878747cbd7 | .travis.yml | .travis.yml | language: node_js
matrix:
include:
- os: linux
dist: trusty
sudo: false
node_js: "6"
env: DEPLOY=true
- os: osx
node_js: "6"
env:
global:
- DEBUG=zyre*
script:
- travis_retry npm run coverage
after_success:
- if [[ $DEPLOY == true ]]; then npm run build:docs; bash <... | language: node_js
matrix:
include:
- os: linux
dist: trusty
sudo: false
node_js: "6"
- os: osx
node_js: "6"
env:
global:
- DEBUG=zyre*
script:
- travis_retry npm run coverage
after_success:
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then bash <(curl -s https://codecov.io/bash... | Fix deployment conditions of the Travis-CI job | Fix deployment conditions of the Travis-CI job
| YAML | mpl-2.0 | interpretor/zyre.js |
8a39af9d83b2c90c5805e1ed1161e3d600195c8c | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install: "python setup.py install"
script: "py.test tests/unit"
| language: python
python:
- "2.7"
install: "python setup.py install"
script: "py.test tests/unit"
branches:
only:
- master
- dogfood
| Add "dogfood" branch to Travis CI | Add "dogfood" branch to Travis CI
| YAML | apache-2.0 | henn/hil_sahil,henn/hil_sahil,SahilTikale/haas,kylehogan/haas,henn/hil,kylehogan/hil,meng-sun/hil,kylehogan/hil,meng-sun/hil,henn/haas,henn/hil,CCI-MOC/haas |
fdb02831e2b3a362d0e60c8db7782bb6ac1967c7 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
notifications:
email:
- raphael.pinson@camptocamp.com
install:
# Use latest Augeas
- sudo add-apt-repository -y ppa:raphink/augeas-dev
- sudo apt-get update
- sudo apt-get install libaugeas-dev libxml2-dev
matrix:
allow_failures:
- python: 3.2
script: ... | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
notifications:
email:
- raphael.pinson@camptocamp.com
install:
# Use latest Augeas
- sudo add-apt-repository -y ppa:raphink/augeas-dev
- sudo apt-get update
- sudo apt-get install libaugeas-dev libxml2-dev
script: make && make check
| Add Python 3.3 to CI, and disallow failures. | Add Python 3.3 to CI, and disallow failures.
| YAML | lgpl-2.1 | krichter722/python-augeas,gasmith-nutanix/python-augeas,hercules-team/python-augeas,krichter722/python-augeas,hercules-team/python-augeas,gasmith-nutanix/python-augeas |
856f919970cbd74387c32bbd9f3945a68721b0f5 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.2"
- "stable"
sudo: false
cache:
directories:
- node_modules
after_script:
- |
# RELEASE_BRANCHES and NPM_TOKEN defined in Travis settings panel
declare exitCode
$(npm bin)/travis-after-all
exitCode=$?
if [[
$exitCode = 0 &&
$RELEASE_BRANCHES =~ $TRAVIS_BRANCH &&
... | language: node_js
node_js:
- "4.2"
- "stable"
sudo: false
cache:
directories:
- node_modules
after_script:
- |
# RELEASE_BRANCHES and NPM_TOKEN defined in Travis settings panel
declare exitCode
$(npm bin)/travis-after-all
exitCode=$?
if [[
# Execute after all jobs finish successfully
$exitCode = 0... | Add explanatory comments, update gh-pages message | Add explanatory comments, update gh-pages message
| YAML | bsd-3-clause | LLK/scratch-render,LLK/scratch-render |
f9d1e0805f18ae1afcdc8e2d6bc008c97f58bfe1 | .travis.yml | .travis.yml | language: go
go:
- 1.0
- 1.1
- 1.2
- 1.3
- 1.4
- tip
| language: go
go:
- 1.0
- 1.1
- 1.2
- 1.3
- 1.4
- tip
sudo: false
| Use Docker builds for Travis. | Use Docker builds for Travis.
| YAML | mit | renstrom/go-jump-consistent-hash |
c2fddc56a191977a374207f2d80c593f917377d6 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
notifications:
email: false
slack:
secure: jihdAhibtEKmK6HNzM5QAkLNYZZ6MAk/c2PTauUjht3FWTvj/9hqSrfeJ4WX2ECfhNfgYEtMVd34EULFqlyWOOury2+FVkxSfN9SLt92EhvCwIMS5ITONOASSm13DtRJUTA+ctj/ndeQq1Iwox+LcT4o6Z8ncSekqD6RQOPgAA8=
before_install:
- composer self... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache
notifications:
email: false
slack:
secure: jihdAhibtEKmK6HNzM5QAkLNYZZ6MAk/c2PTauUjht3FWTvj/9hqSrfeJ4WX2ECfhNfgYEtMVd34EULFqlyWOOury2+FVkxSfN9SLt92EhvCwIMS5ITONOASSm13DtRJUTA+ctj/ndeQq1I... | Use Travis CI container-based infrastructure | Use Travis CI container-based infrastructure
It doesn't have sudo, but it starts faster and allows caching.
| YAML | bsd-3-clause | OpenBuildings/postmark |
9a78b830b2be5c1f855bd542157c96f07294d4ae | .travis.yml | .travis.yml | language: java
after_success:
- ./gradlew jacocoTestReport coveralls
| language: java
jdk:
- oraclejdk8
after_success:
- ./gradlew jacocoTestReport coveralls
| Make Travis use Java 8 | Make Travis use Java 8
| YAML | apache-2.0 | craigthomas/NLMT |
0b0833899a847e885afcb3e1cef45230c608f00e | config/fedora.yml | config/fedora.yml | development:
user: <%= ENV['FEDORA_USER'] || "fedoraAdmin" %>
password: <%= ENV['FEDORA_PASSWD'] || "fedoraAdmin" %>
url: <%= ENV['FEDORA_URL'] || "http://127.0.0.1:#{ENV['FCREPO_DEVELOPMENT_PORT'] || 8984}/rest" %>
base_path: /libra2/dev
request: { timeout: 99999, open_timeout: 30}
test:
user: <%= ENV['FED... | development:
user: <%= ENV['FEDORA_USER'] %>
password: <%= ENV['FEDORA_PASSWD'] %>
url: <%= ENV['FEDORA_URL'] %>
base_path: /libra2/dev
request: { timeout: 99999, open_timeout: 30}
test:
user: <%= ENV['FEDORA_USER'] %>
password: <%= ENV['FEDORA_PASSWD'] %>
url: <%= ENV['FEDORA_URL'] %>
base_path: /lib... | Allow empty Fedora username and password | Allow empty Fedora username and password
| YAML | apache-2.0 | uvalib/Libra2,uvalib/Libra2,uvalib/Libra2,uvalib/Libra2,uvalib/Libra2 |
559000acc01e216b87b021a9b86d6dfc896bb8dc | py3/hkl-v5.0.0.2080/meta.yaml | py3/hkl-v5.0.0.2080/meta.yaml | package:
name: hkl
version: 5.0.0.2080
source:
git_url: https://github.com/picca/hkl
git_rev: v5.0.0.2080
build:
number: 3
requirements:
build:
- python
- gobject-introspection
- pygobject # [py2k]
- pygobject3 # [py3k]
- gsl
- libtool
- automake
- autoconf
- pkg... | package:
name: hkl
version: 5.0.0.2080
source:
git_url: https://github.com/picca/hkl
git_rev: v5.0.0.2080
build:
number: 0
requirements:
build:
- python
- gobject-introspection
- pygobject # [py2k]
- pygobject3 # [py3k]
- gsl
- libtool
- automake
- autoconf
- pkg... | Switch back to build number 0 | Switch back to build number 0
| YAML | bsd-3-clause | NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/auto-build-tagged-recipes,NSLS-II/auto-build-tagged-recipes |
52aaadef666ad6a0ebd38c9768c17f02e2f73657 | packages/di/digitalocean-kzs.yaml | packages/di/digitalocean-kzs.yaml | homepage: https://github.com/KazumaSATO/digitalocean-kzs
changelog-type: ''
hash: 58d172f2170493c606c2e006dd777d809d20cd80ec2ee067752c7991d4da1891
test-bench-deps:
base: -any
hspec: ! '>=1.3'
doctest: ! '>=0.9.3'
digitalocean-kzs: -any
maintainer: r.nakamura1989@gmail.com
synopsis: digitalocean api for haskell
... | homepage: https://github.com/KazumaSATO/digitalocean-kzs
changelog-type: ''
hash: 374f16df5da105f8ca6ad22b3133be4b0166538b45092e59cd78c7ada2a9ff31
test-bench-deps:
base: -any
hspec: ! '>=1.3'
doctest: ! '>=0.9.3'
digitalocean-kzs: -any
maintainer: r.nakamura1989@gmail.com
synopsis: digitalocean api for haskell
... | Update from Hackage at 2015-06-28T04:19:30+0000 | Update from Hackage at 2015-06-28T04:19:30+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
ea9f90ff207508481bbe0317396964a5bc6ad27a | recipes/marshmallow-enum/meta.yaml | recipes/marshmallow-enum/meta.yaml | {% set name = "marshmallow-enum" %}
{% set version = "1.4.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 022400a2196ba55d5e6de67e6e4991e232190d25cbe26efa302c2e889e55ebf1
build:
number... | {% set name = "marshmallow-enum" %}
{% set version = "1.4.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/justanr/{{ name }}/archive/v{{ version }}.tar.gz
sha256: 7028c8106bd069c440ab58de807a6f6efadd1e108bdef329df2afb7217775276
build:
number: 0
script: "{{ PYT... | Update source to github (tests not on pypi) | Update source to github (tests not on pypi)
| YAML | bsd-3-clause | conda-forge/staged-recipes,jochym/staged-recipes,hadim/staged-recipes,synapticarbors/staged-recipes,johanneskoester/staged-recipes,jochym/staged-recipes,dschreij/staged-recipes,ceholden/staged-recipes,SylvainCorlay/staged-recipes,dschreij/staged-recipes,isuruf/staged-recipes,goanpeca/staged-recipes,patricksnape/staged-... |
23e3188cd10c7d4fec9dbbca2ae5979778426ff5 | ci/tasks/gats.yml | ci/tasks/gats.yml | ---
image_resource:
type: docker-image
source:
repository: cfgarden/grootfs-ci
tag: latest
platform: linux
inputs:
- name: garden-runc-release-1.5.0
- name: grootfs-release-develop
params:
LOG_LEVEL: debug
EXTERNAL_IMAGE_PLUGIN_PROVIDED: "true"
GARDEN_ADDRESS:
run:
path: grootfs-release-deve... | ---
image_resource:
type: docker-image
source:
repository: cfgarden/grootfs-ci
tag: latest
platform: linux
inputs:
- name: garden-runc-release-1.5.0
path: garden-runc-release
- name: grootfs-release-develop
params:
LOG_LEVEL: debug
EXTERNAL_IMAGE_PLUGIN_PROVIDED: "true"
GARDEN_ADDRESS:
run... | Put pinned garden-runc-release in the expected place | Put pinned garden-runc-release in the expected place
| YAML | apache-2.0 | masters-of-cats/grootfs-release,masters-of-cats/grootfs-release |
1f67f2d95438e39135438abf21270dd80c3a095a | mobicents-restcomm-charm/trusty/mobicents-restcomm/metadata.yaml | mobicents-restcomm-charm/trusty/mobicents-restcomm/metadata.yaml | name: mobicents-restcomm
maintainer: Jean Deruelle <jean.deruelle@telestax.com>
summary: Mobicents RestComm
description: Mobicents Restcomm
categories:
- app-servers
provides:
website:
interface: http
cscf:
interface: 3GPP-ISC
requires:
database:
interface: mysql
clearwater-ellis:
interface: ... | name: mobicents-restcomm
maintainer: Jean Deruelle <jean.deruelle@telestax.com>
summary: Mobicents RestComm
description: Mobicents Restcomm
tags:
- app-servers
provides:
website:
interface: http
cscf:
interface: 3GPP-ISC
requires:
database:
interface: mysql
clearwater-ellis:
interface: as-reg... | Fix after running charm proof | Fix after running charm proof
| YAML | lgpl-2.1 | RestComm/juju-charms,Mobicents/juju-charms,Mobicents/juju-charms,RestComm/juju-charms |
dcad2ad9d2badd0faaf5126d07ccaa041a4059e2 | src/Resources/config/services.yml | src/Resources/config/services.yml | services:
### QPush Registry
uecode_qpush.registry:
class: %uecode_qpush.registry.class%
uecode_qpush:
alias: uecode_qpush.registry
### QPush Default File Cache
uecode_qpush.file_cache:
class: Doctrine\Common\Cache\PhpFileCache
arguments: [%kernel.cache_dir%/qpush, q... | services:
### QPush Registry
uecode_qpush.registry:
class: '%uecode_qpush.registry.class%'
uecode_qpush:
alias: uecode_qpush.registry
### QPush Default File Cache
uecode_qpush.file_cache:
class: Doctrine\Common\Cache\PhpFileCache
arguments: ['%kernel.cache_dir%/qpush... | Fix deprecated scalar starting with the "%" indicator character | Fix deprecated scalar starting with the "%" indicator character
| YAML | apache-2.0 | uecode/qpush-bundle |
8f28337280aa3574634a707a357a9d8b8e00ca04 | roles/ceph-osd/tasks/check_gpt.yml | roles/ceph-osd/tasks/check_gpt.yml | ---
- name: check the partition status of the osd disks
command: "parted --script {{ item }} print"
with_items:
- "{{ devices }}"
changed_when: false
failed_when: false
check_mode: no
register: osd_partition_status_results
- name: create gpt disk label
command: parted --script {{ item.1 }} mklabel gp... | ---
- name: check the partition status of the osd disks
command: "parted --script {{ item }} print"
with_items:
- "{{ devices }}"
changed_when: false
failed_when: false
check_mode: no
register: osd_partition_status_results
- name: create gpt disk label
parted:
device: "{{ item.1 }}"
label: gp... | Use parted module instead of command | Use parted module instead of command
(cherry picked from commit 4f1e854c79d0aa3635f35441f84e126a185f21fa)
Signed-off-by: Sébastien Han <62d754cc350e84d3b1c32ae79f976f5348e74a40@redhat.com>
| YAML | apache-2.0 | fgal/ceph-ansible,fgal/ceph-ansible |
ec6046db4cd0c0a1cf214c49e736608d53223480 | jake.yml | jake.yml | ---
source_directory: source
build_directory: build
layout: together
builds:
src:
packer: false
suffix: false
min:
shrink_vars: true
private: false
packages:
flickr:
files:
- flickr
- photo
- jsonp
meta:
req... | ---
source_directory: source
build_directory: build
layout: together
builds:
src:
packer: false
suffix: false
min:
shrink_vars: true
private: false
packages:
flickr:
files:
- flickr
- photo
- jsonp
meta:
req... | Update list of provided objects. | Update list of provided objects.
| YAML | bsd-3-clause | othermedia/flickr |
258397f38ccc626cf509ec9957cf0260fc2d590e | _config.yml | _config.yml | defaults:
-
scope:
path: ""
type: "posts"
values:
author: "jeaye"
layout: "default"
-
scope:
path: ""
type: "drafts"
values:
author: "jeaye"
layout: "default"
gems:
- jekyll-feed
- jekyll-seo-tag
title: "Jeaye's Blog"
permalink: pretty
home_url:... | defaults:
-
scope:
path: ""
type: "posts"
values:
author: "jeaye"
layout: "default"
-
scope:
path: ""
type: "drafts"
values:
author: "jeaye"
layout: "default"
gems:
- jekyll-feed
- jekyll-seo-tag
port: 4001
title: "Jeaye's Blog"
permalink: prett... | Add helpful dev settings to config | Add helpful dev settings to config
| YAML | mit | jeaye/jeaye.github.io,jeaye/jeaye.github.io |
18da399f2dbd09e823c0ca718288a4a6d9b541b6 | _config.yml | _config.yml | # Harmony Jekyll theme general configuration
markdown: redcarpet
pygments: true
# Base URL
baseurl: /harmony
# Site URL
url: http://webcreate.lk/harmony
exclude:
- CNAME
- Gemfile
- Rakefile
- README.md
- .gitignore
# Harmony theme configuration. Please change accordingly.
harmony:
name: Harmony #Name of... | # Harmony Jekyll theme general configuration
markdown: redcarpet
pygments: true
# Base URL
baseurl: /harmony
# Site URL
url: http://webcreate.lk/harmony
exclude:
- CNAME
- Gemfile
- Rakefile
- README.md
- .gitignore
# Harmony theme configuration. Please change accordingly.
harmony:
name: Harmony #Name of... | Check build failures after uncomment github property | Check build failures after uncomment github property
| YAML | mit | cpury/cpury.github.io,zhanghaowx/Escape,haixuanc/harmony,warmspringwinds/warmspringwinds.github.io,aayek/aayek.github.io,Cawhee/harmony,eek/eek.github.io,brossetti1/brossetti1.github.io,gayanvirajith/harmony,swubb/swubb.github.io,jnak/jnak.github.io,marytal/harmony,kamiljsokolowski/kamiljsokolowski.github.io,sokolowski... |
63bd11fc1b4425ba0ceb75064b9ec8c293d3b49f | _config.yml | _config.yml | menu:
Home: /
Archives: /archives
widgets:
- search
- category
- tag
excerpt_link: Read More
twitter:
username:
show_replies: false
tweet_count: 5
addthis:
enable: true
pubid:
facebook: true
twitter: true
google: true
pinterest: true
fancybox: true
google_analytics:
rss:
comment_provider: f... | menu:
Home:
Archives: archives
widgets:
- search
- category
- tag
excerpt_link: Read More
twitter:
username:
show_replies: false
tweet_count: 5
addthis:
enable: true
pubid:
facebook: true
twitter: true
google: true
pinterest: true
fancybox: true
google_analytics:
rss:
comment_provider: face... | Update menu entries to work with config.root | Update menu entries to work with config.root | YAML | mit | hustcer/hexo-theme-air,hustcer/hexo-theme-air,hexojs/hexo-theme-light,hexojs/hexo-theme-light |
ed3b4e34b06e6f3462327becd559817d1ae42ac3 | _config.yml | _config.yml | # Site settings
email: "sagelt@gmail.com"
baseurl: "http://svirfnebl.in"
paginate: 5
paginate_path: "/blog/page-:num"
google_analytics: "UA-90873505-1"
# SEO settings
title: "svirfneblin"
description: "speaking to rocks about games"
url: "svirfnebl.in"
twitter_username: "olde_fortran"
default_img: "/images/sage.jpg"
... | # Site settings
email: "sagelt@gmail.com"
baseurl: "https://svirfnebl.in"
paginate: 5
paginate_path: "/blog/page-:num"
google_analytics: "UA-90873505-1"
# SEO settings
title: "svirfneblin"
description: "speaking to rocks about games"
url: "svirfnebl.in"
twitter_username: "olde_fortran"
default_img: "/images/sage.jpg"
... | Change base url to https | Change base url to https
This will break GitHub pages on a custom domain. | YAML | mit | Sagelt/svirfneblin,Sagelt/svirfneblin,Sagelt/svirfneblin |
e9e163197994da1e74bcbf63b37901b74853db45 | _config.yml | _config.yml | name: Hangload
markdown: redcarpet
permalink: pretty
| name: Hangload
description: "Hangload -- The new way to load your bike"
exclude: [README.md, package.json, index.js, Rakefile, node_modules, src]
permalink: pretty
repository: hangload/static
| Update jekyll config with common settings | Update jekyll config with common settings
| YAML | mit | hangload/static,hangload/static,hangload/static |
b7de6114da680bda241e9fd3ece854c02f767b6b | _config.yml | _config.yml | # Github Pages' Jekyll Site settings
title: Vega-Lite
description: Vega-Lite - a high-level grammar for statistical graphics.
Vega-Lite provides a higher-level grammar for visual analysis,
comparable to ggplot or Tableau, that generates complete Vega specifications.
Vega-Lite specifications consist of simple map... | # Github Pages' Jekyll Site settings
title: Vega-Lite
description: Vega-Lite - a high-level grammar for statistical graphics.
Vega-Lite provides a higher-level grammar for visual analysis,
comparable to ggplot or Tableau, that generates complete Vega specifications.
Vega-Lite specifications consist of simple map... | Make array more explicit it jekyll config | Make array more explicit it jekyll config | YAML | bsd-3-clause | uwdata/vega-lite,uwdata/vega-lite,vega/vega-lite,uwdata/vega-lite,vega/vega-lite,uwdata/vega-lite,vega/vega-lite,vega/vega-lite,vega/vega-lite,uwdata/vega-lite |
3ec9991605c5bb01866c6076cf0dc166e2c4edc2 | _config.yml | _config.yml | name: Ohio InfoSec Forum
subtitle: Networking, sharing, collaborating, learning... helping secure our digital world.
author: OISF
email: info@ohioinfosec.org
description: Networking, sharing, collaborating, learning... helping secure our digital world.
url: http://www.ohioinfosec.org
date_format: "ordinal"
timezone: Am... | name: Ohio InfoSec Forum
subtitle: Networking, sharing, collaborating, learning... helping secure our digital world.
author: OISF
email: info@ohioinfosec.org
description: Networking, sharing, collaborating, learning... helping secure our digital world.
url: https://www.ohioinfosec.org
date_format: "ordinal"
timezone: A... | Change base url to https | Change base url to https
| YAML | mit | ohioinfosec/www.ohioinfosec.org,ohioinfosec/www.ohioinfosec.org |
4f3a1622b91f7233d38727570a7645cfc4d28318 | data/transition-sites/dclg_lf.yml | data/transition-sites/dclg_lf.yml | ---
site: dclg_lf
whitehall_slug: department-for-communities-and-local-government
title: Department for Communities and Local Government
redirection_date: 1st July 2014
homepage: https://www.gov.uk/government/organisations/department-for-communities-and-local-government
tna_timestamp: 20140505104649
host: www.local.com... | ---
site: dclg_lf
whitehall_slug: department-for-communities-and-local-government
title: Department for Communities and Local Government
redirection_date: 1st July 2014
homepage: https://www.gov.uk/government/collections/final-local-government-finance-settlement-england-2014-to-2015
tna_timestamp: 20140505104649
host: ... | Change DCLG LF homepage to point to the LF collection | Change DCLG LF homepage to point to the LF collection
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
ccc8354d3fab87bea0b43a1d46710d4040d5c6d0 | roles/postgresql/tasks/install-Debian.yml | roles/postgresql/tasks/install-Debian.yml | ---
- name: Update package cache (Debian)
apt: update_cache=yes cache_valid_time=86400
become: yes
- name: Ensure PostgreSQL is installed (Debian)
apt: name=postgresql-{{ postgresql_version }} state=present install_recommends=no
become: yes
# The postgresql_user module requires psycopg2, a Python PostgreSQL ... | # file: postgresql/tasks/install-Debian.yml
#
---
- name: Ensure PostgreSQL is installed (Debian)
apt:
name: "postgresql-{{ postgresql_version }}"
state: present
install_recommends: no
update_cache: yes
cache_valid_time: 86400
become: yes
# The postgresql_user module requires psycopg2, a Pytho... | Update install task for Debian | Update install task for Debian
| YAML | apache-2.0 | rciam/rciam-deploy,rciam/rciam-deploy |
bf27e59cdb018361a0eb27e51246982c7abbf280 | config/i18n-tasks.yml | config/i18n-tasks.yml | base_locale: es
locales: [en, es, ca]
data:
read:
- config/locales/**/%{locale}.yml
- config/locales/**/*/%{locale}.yml
ignore_missing:
- 'gobierto_budgets.visualizations.*'
- 'layouts.sandbox.*'
- 'sandbox.*'
ignore_unused:
- 'number.*'
- 'time.*'
- 'errors.*'
- 'datetime.*'
- 'date.*'
- '... | base_locale: es
locales: [en, es, ca]
data:
read:
- config/locales/**/%{locale}.yml
- config/locales/**/*/%{locale}.yml
ignore_missing:
- 'gobierto_budgets.visualizations.*'
- 'layouts.sandbox.*'
- 'sandbox.*'
ignore_unused:
- 'number.*'
- 'time.*'
- 'errors.*'
- 'datetime.*'
- 'date.*'
- '... | Add new rule for invisible captcha | Add new rule for invisible captcha | YAML | agpl-3.0 | PopulateTools/gobierto-dev,PopulateTools/gobierto,PopulateTools/gobierto-dev,PopulateTools/gobierto,PopulateTools/gobierto,PopulateTools/gobierto-dev,PopulateTools/gobierto,PopulateTools/gobierto-dev |
f8876fb3b98744e378f3a7dce8fdf2c08ff11e71 | playbooks/keystone/tasks/main.yml | playbooks/keystone/tasks/main.yml | ---
- name: keystone user
user: name=keystone shell=/bin/false
- name: get keystone source repo
git: |
repo={{ openstack.git_mirror }}/keystone.git dest=/opt/stack/keystone version={{ keystone.rev }}
notify:
- pip install keystone
- name: /etc/keystone
file: dest=/etc/keystone state=directory
- name:... | ---
- name: keystone user
user: name=keystone shell=/bin/false
- name: WORKAROUND - keystone doesn't include babel in dependencies
pip: name=babel
- name: get keystone source repo
git: |
repo={{ openstack.git_mirror }}/keystone.git dest=/opt/stack/keystone version={{ keystone.rev }}
notify:
- pip inst... | Install babel python package as workaround for keystone. | Install babel python package as workaround for keystone.
| YAML | mit | lihkin213/ursula,persistent-ursula/ursula,allomov/ursula,MaheshIBM/ursula,MaheshIBM/ursula,panxia6679/ursula,wupeiran/ursula,j2sol/ursula,ryshah/ursula,pbannister/ursula,ddaskal/ursula,rongzhus/ursula,greghaynes/ursula,msambol/ursula,paulczar/ursula,jwaibel/ursula,lihkin213/ursula,retr0h/ursula,blueboxgroup/ursula,wupe... |
e301b365724693fa4f0e3d18059623607092e4c0 | packages/cr/credential-store.yaml | packages/cr/credential-store.yaml | homepage: https://github.com/rblaze/credential-store#readme
changelog-type: ''
hash: a242d7c7ad6d92090614d4912a033c743c2174f0508a6d1c5e6f72d9ff44ecca
test-bench-deps:
bytestring: -any
base: -any
credential-store: -any
tasty-hunit: -any
tasty: -any
maintainer: blaze@ruddy.ru
synopsis: Library to access secure ... | homepage: https://github.com/rblaze/credential-store#readme
changelog-type: ''
hash: 281e7396b3f360f4307e3491e2ec84f8d400ff9afc1fa92e5a9d776cad082f47
test-bench-deps:
bytestring: -any
base: -any
credential-store: -any
tasty-hunit: -any
tasty: -any
maintainer: blaze@ruddy.ru
synopsis: Library to access secure ... | Update from Hackage at 2018-01-01T18:58:51Z | Update from Hackage at 2018-01-01T18:58:51Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
bd9fe6c3422269e48d81134d9de6199079b9b254 | packages/da/data-list-zigzag.yaml | packages/da/data-list-zigzag.yaml | homepage: https://github.com/erisco/data-list-zigzag
changelog-type: markdown
hash: 3bb0a0377b90bf7abf1dbb3603f0a22b5818a45e76e774b7840ed31a8b5b552e
test-bench-deps: {}
maintainer: eric.brisco@gmail.com
synopsis: A list but with a balanced enumeration of Cartesian product.
changelog: ! "# Revision history for data-list... | homepage: https://github.com/erisco/data-list-zigzag
changelog-type: markdown
hash: cf3e7cb8ad15e68c76dcceb64a67c76d988a94a8636809b0fe8a28a021627f27
test-bench-deps: {}
maintainer: eric.brisco@gmail.com
synopsis: A list but with a balanced enumeration of Cartesian product.
changelog: ! "# Revision history for data-list... | Update from Hackage at 2018-02-27T23:08:30Z | Update from Hackage at 2018-02-27T23:08:30Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
c48c34a957d47dc99a48edd9d55b72f9652033bc | packages/ea/easytensor-vulkan.yaml | packages/ea/easytensor-vulkan.yaml | homepage: https://github.com/achirkin/easytensor#readme
changelog-type: ''
hash: 4d4ccb767e9e497f2934346d543127c0c82886d13ae2e93831847fac90bb7de5
test-bench-deps: {}
maintainer: achirkin@users.noreply.github.com
synopsis: Use easytensor with vulkan-api.
changelog: ''
basic-deps:
easytensor: ! '>=2.0.1.0 && <3'
base... | homepage: https://github.com/achirkin/easytensor#readme
changelog-type: ''
hash: 76cd12a3f979068bf545ace46cbf882e1db0c3fc2e30780de29ff7d17079bc19
test-bench-deps: {}
maintainer: achirkin@users.noreply.github.com
synopsis: Use easytensor with vulkan-api.
changelog: ''
basic-deps:
easytensor: ! '>=2.0.1.0 && <2.1'
ba... | Update from Hackage at 2019-09-30T14:13:29Z | Update from Hackage at 2019-09-30T14:13:29Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
3aa86255b37c98419a07be0b5eb58b9c10a49502 | packages/ha/haskell-tools-ast.yaml | packages/ha/haskell-tools-ast.yaml | homepage: https://github.com/nboldi/haskell-tools
changelog-type: ''
hash: 342809b3c3ca3ab99373e3c4293cd1653e247d2197516b4f89fade979e03fa97
test-bench-deps: {}
maintainer: nboldi@elte.hu
synopsis: Haskell AST for efficient tooling
changelog: ''
basic-deps:
ghc: ! '>=8.0 && <8.1'
base: ! '>=4.9 && <5.0'
references... | homepage: https://github.com/nboldi/haskell-tools
changelog-type: ''
hash: 6664c01ba1f873109b096d93321f1c16b2fcd35da4cc9f97ed622fad053867c7
test-bench-deps: {}
maintainer: nboldi@elte.hu
synopsis: Haskell AST for efficient tooling
changelog: ''
basic-deps:
ghc: ! '>=8.0 && <8.1'
base: ! '>=4.9 && <5.0'
references... | Update from Hackage at 2016-07-01T12:53:52+0000 | Update from Hackage at 2016-07-01T12:53:52+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
e19df842fb4ecfd064bad3f3cffd9f915d813fd4 | _data/events.yml | _data/events.yml | churchwide:
-
date: 2016-04-17
name: Party with the Pastor
-
date: 2016-04-24
name: Baptism
-
date: 2016-07-11
name: Kid's Life Camp
grades-6-12:
-
date: 2016-04-15
end-date: 2016-04-16
name: Spring Fling
-
date: 2016-06-19
end-date: 2016-06-23
name: High School... | churchwide:
-
date: 2016-04-17
name: Party with the Pastor
-
date: 2016-04-24
name: Baptism
-
date: 2016-07-11
name: Kid's Life Camp
grades-6-12:
-
date: 2016-06-19
end-date: 2016-06-23
name: High School Camp
-
date: 2016-06-23
end-date: 2016-06-26
name: Junior ... | Remove spring fling from calendar | Remove spring fling from calendar
| YAML | mit | Mountainview-WebDesign/lifestonechurch,Mountainview-WebDesign/lifestonechurch,Mountainview-WebDesign/lifestonechurch |
b2c0851d536a67af6239d491cc562792ed252826 | _data/events.yml | _data/events.yml | churchwide:
-
date: 2017-03-19
name: Men's Bake Auction
link: events/mens-bake-auction
grades-6-12:
-
date: 2017-03-15
name: Easter Egg Stuffing Party
-
date: 2017-03-24
endDate: 2017-03-25
name: Spring Fling
-
month: April
name: Serve @ Pregnancy Resource Center
-
... | churchwide:
-
date: 2017-03-19
name: Men's Bake Auction
link: events/mens-bake-auction
grades-6-12:
-
date: 2017-03-24
endDate: 2017-03-25
name: Spring Fling
-
month: April
name: Serve @ Pregnancy Resource Center
-
month: May
name: Serve @ Holding out Help
-
date: 2... | Remove easter egg stuffing party | Remove easter egg stuffing party
| YAML | mit | Mountainview-WebDesign/lifestonechurch,Mountainview-WebDesign/lifestonechurch,Mountainview-WebDesign/lifestonechurch |
2a497869fed0c92f9108eca5b23e265f625186db | data/hostname/orsay.softwareheritage.org.yaml | data/hostname/orsay.softwareheritage.org.yaml | icinga2::host::vars:
load: high
swh::apt_config::enable_non_free: true
packages:
- amd64-microcode
dns::forwarders:
- 128.93.11.1
internal_network: 192.168.101.0/24
dns::forwarders:
- 128.93.11.1
| icinga2::host::vars:
load: high
swh::apt_config::enable_non_free: true
packages:
- amd64-microcode
dns::forwarders:
- 128.93.11.1
internal_network: 192.168.101.0/24
| Revert duplication of dns::forwarders entry | Revert duplication of dns::forwarders entry
| YAML | apache-2.0 | SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site |
c468a9ba26aaee855ae652372b36ef661f8cfdc5 | packages/su/substring-parser.yaml | packages/su/substring-parser.yaml | homepage: https://gitlab.com/igrep/substring-parser
changelog-type: markdown
hash: af74ace94cf0e24a7da98d88b568981a7b7ef61b23b8c160bd4b15e34087e9c2
test-bench-deps:
base: ! '>=4.7 && <5'
hspec: -any
text: -any
NoTrace: -any
substring-parser: -any
attoparsec: -any
maintainer: whosekiteneverfly@gmail.com
syno... | homepage: https://gitlab.com/igrep/substring-parser
changelog-type: markdown
hash: 040564dd7b363ff6ec608362e62d730832941176af4ae13faa2a5a2ef923f2df
test-bench-deps:
base: ! '>=4.7 && <5'
hspec: -any
text: -any
NoTrace: -any
substring-parser: -any
containers: -any
attoparsec: -any
maintainer: whosekiteneve... | Update from Hackage at 2017-11-29T06:52:57Z | Update from Hackage at 2017-11-29T06:52:57Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
082a88c6dfbc197e4f783b317e1707f6e5ae9a6d | packages/cp/cplex-hs.yaml | packages/cp/cplex-hs.yaml | homepage: https://github.com/stefan-j/cplex-haskell
changelog-type: ''
hash: 0f2b9f62a8ee1d871f91bf0d174a84c5fb5df1ede87e617eff65edd332ce296e
test-bench-deps: {}
maintainer: Stefan Jacholke <stefanj@encrunch.com>
synopsis: high-level CPLEX interface
changelog: ''
basic-deps:
base: ! '>=4 && <5'
containers: -any
m... | homepage: https://github.com/stefan-j/cplex-haskell
changelog-type: ''
hash: fa2872f858795abbc54bab50ff264ddfa042a320e5d64e84a8fdf06668c55b4e
test-bench-deps: {}
maintainer: Stefan Jacholke <stefanj@encrunch.com>
synopsis: high-level CPLEX interface
changelog: ''
basic-deps:
base: ! '>=4 && <5'
containers: -any
m... | Update from Hackage at 2016-03-26T09:20:22+0000 | Update from Hackage at 2016-03-26T09:20:22+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
1305dddf20aed02d8b1869b14f10e88ddeb9293b | csunplugged/topics/content/en/binary-numbers/curriculum-integrations/curriculum-integrations.yaml | csunplugged/topics/content/en/binary-numbers/curriculum-integrations/curriculum-integrations.yaml | binary-number-bracelets:
number: 1
md-file: bracelets.md
curriculum-areas:
- art
- design
binary-number-bracelets-2:
number: 2
md-file: bracelets-2.md
curriculum-areas:
- art
| binary-number-bracelets:
number: 1
md-file: bracelets.md
curriculum-areas:
- art
- design
prerequisite-lessons:
- unit-plan/introduction-to-bits
binary-number-bracelets-2:
number: 2
md-file: bracelets-2.md
curriculum-areas:
- art
prerequisite-lessons:
- unit-plan/introduction-to-bit... | Add new fields to content | Add new fields to content
| YAML | mit | uccser/cs-unplugged,uccser/cs-unplugged,uccser/cs-unplugged,uccser/cs-unplugged |
dae75cc0dbcf46be78d4f4074caff15efe53cec3 | appspec.yml | appspec.yml | version: 0.0
os: linux
files:
- source: ./
destination: /var/www/richmondsunlight.com/
permissions:
- object: /var/www/richmondsunlight.com/
owner: ubuntu
group: ubuntu
mode: 755
acls:
- "d:u::rwx"
- "d:g::rwx"
- "d:o::rwx"
type:
- directory
hooks:
... | version: 0.0
os: linux
files:
- source: ./
destination: /var/www/richmondsunlight.com/
file_exists_behavior: OVERWRITE
permissions:
- object: /var/www/richmondsunlight.com/
owner: ubuntu
group: ubuntu
mode: 755
acls:
- "d:u::rwx"
- "d:g::rwx"
- "d:o::rwx"
... | Allow overwriting of files on EC2 | Allow overwriting of files on EC2
| YAML | mit | openva/richmondsunlight.com,openva/richmondsunlight.com,openva/richmondsunlight.com,openva/richmondsunlight.com,openva/richmondsunlight.com |
98b354fba61282275d5d50e1e92a64d6b3c2b0f7 | metadata/com.fediphoto.yml | metadata/com.fediphoto.yml | Categories:
- Internet
License: GPL-3.0-only
AuthorName: Patrick L Archibald
AuthorEmail: patrick.archibald@gmail.com
WebSite: https://fediphoto.com/
SourceCode: https://github.com/pla1/FediPhoto
IssueTracker: https://github.com/pla1/FediPhoto/issues
Changelog: https://github.com/pla1/FediPhoto/releases
AutoName: Fe... | Categories:
- Internet
License: GPL-3.0-only
AuthorName: Patrick L Archibald
AuthorEmail: patrick.archibald@gmail.com
WebSite: https://fediphoto.com/
SourceCode: https://github.com/pla1/FediPhoto
IssueTracker: https://github.com/pla1/FediPhoto/issues
Changelog: https://github.com/pla1/FediPhoto/releases
AutoName: Fe... | Update Fedi Photo to 2.6 (17) | Update Fedi Photo to 2.6 (17)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
e5db3bd5433ac67d1e1d3885dfe2857b81d3c6d9 | metadata/d.d.meshenger.yml | metadata/d.d.meshenger.yml | Categories:
- Connectivity
- Internet
- Multimedia
- Phone & SMS
License: GPL-3.0-only
WebSite: https://github.com/dakhnod/Meshenger
SourceCode: https://github.com/dakhnod/Meshenger
IssueTracker: https://github.com/dakhnod/Meshenger/issues
AutoName: Meshenger
Description: |
This app allows voice- and video... | Categories:
- Phone & SMS
- Connectivity
- Internet
License: GPL-3.0-only
WebSite: https://github.com/meshenger-app/meshenger-android
SourceCode: https://github.com/meshenger-app/meshenger-android
IssueTracker: https://github.com/meshenger-app/meshenger-android/issues
AutoName: Meshenger
RepoType: git
Repo: htt... | Update Meshenger to 2.0.0 (200) | Update Meshenger to 2.0.0 (200)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
c9d6af343311136debee82fcac7bd21ad4e8ce7d | packages/si/simpoole.yaml | packages/si/simpoole.yaml | homepage: https://github.com/vapourismo/simpoole
changelog-type: markdown
hash: 261e03b330cf4d0cbea7a1699a457daca2ab7d038ff8ac949b11b8a1c7d7d44d
test-bench-deps:
base: -any
hspec: '>=2.7.1'
simpoole: -any
maintainer: Ole Krüger <haskell-simpoole@vprsm.de>
synopsis: Simple pool
changelog: |
# simpoole
### 0.0... | homepage: https://github.com/vapourismo/simpoole
changelog-type: markdown
hash: 1eff3fc2948716ee2799d0f8e01fdc2bac97481e71e899d4908cfe6aa5772d59
test-bench-deps:
base: -any
hspec: '>=2.7.1'
concurrency: -any
simpoole: -any
maintainer: Ole Krüger <haskell-simpoole@vprsm.de>
synopsis: Simple pool
changelog: |
#... | Update from Hackage at 2021-12-20T19:47:01Z | Update from Hackage at 2021-12-20T19:47:01Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
c106d5a8498921e565ab18c60e7f6303e6c8b101 | src/YouFood/ApiBundle/Resources/config/serializer/MainBundle/Entity.Week.yml | src/YouFood/ApiBundle/Resources/config/serializer/MainBundle/Entity.Week.yml | YouFood\MainBundle\Entity\Week:
xml_root_name: week
properties:
id:
groups: [id]
year:
groups: [week_list, week_detail]
weekNumber:
groups: [week_list, week_detail]
themes:
groups: [week_list, week_detail]
| YouFood\MainBundle\Entity\Week:
xml_root_name: week
properties:
id:
groups: [id]
year:
groups: [week_list, week_detail]
weekNumber:
groups: [week_list, week_detail]
theme:
groups: [week_list, week_detail]
| Fix serializer definition that was incorrect | Fix serializer definition that was incorrect
| YAML | mit | adrienbrault/SUPINFO-B3-YouFood-Server,adrienbrault/SUPINFO-B3-YouFood-Server |
ce5c1eaf220918cd84c503a043f6070f92e1f184 | config/locales/en.yml | config/locales/en.yml | # English strings go here for Rails i18n
en:
label_project_overview: "Project Overview"
label_show_stale_projects: "View stale projects"
label_po_settings_project: "Project Settings"
label_po_settings_stale_enable: "Stale projects:"
label_po_settings_stale_enable_desc: "Enables the ability to classify projec... | # English strings go here for Rails i18n
en:
label_project_overview: "Project Overview"
label_show_stale_projects: "View stale projects"
label_po_settings_project: "Project Settings"
label_po_settings_stale_enable: "Stale projects:"
label_po_settings_stale_enable_desc: "Enables the ability to classify projec... | Correct the naming of the version due date. | Correct the naming of the version due date.
| YAML | mit | mbasset/project_overview,mbasset/project_overview,mbasset/project_overview |
3875bef621882866b3dec5b9acc88d94a91c1ab0 | data/static/codefixes/localXssChallenge.info.yml | data/static/codefixes/localXssChallenge.info.yml | fixes:
- id: 1
correct: false
info: 'Using bypassSecurityTrustResourceUrl() instead of bypassSecurityTrustHtml() changes the context for which input sanitization is bypassed. This switch might only accidentally keep XSS prevention intact, but the new URL context does not make any sense here.'
- id: 2
co... | fixes:
- id: 1
info: 'Using bypassSecurityTrustResourceUrl() instead of bypassSecurityTrustHtml() changes the context for which input sanitization is bypassed. This switch might only accidentally keep XSS prevention intact, but the new URL context does not make any sense here.'
- id: 2
info: "Removing the b... | Remove redundant property for correctness of fix | Remove redundant property for correctness of fix
(information is already available through the fix file name convention)
| YAML | mit | bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop |
945e7cb2a476258229ba94754c159ff966726459 | releasenotes/notes/add_initial_allocation_ratio-2d2666d62426a4bf.yaml | releasenotes/notes/add_initial_allocation_ratio-2d2666d62426a4bf.yaml | ---
upgrade:
- |
The default value for the "cpu_allocation_ratio", "ram_allocation_ratio"
and "disk_allocation_ratio" configurations have been changed to ``None``.
The ``initial_cpu_allocation_ratio``, ``initial_ram_allocation_ratio`` and
``initial_disk_allocation_ratio`` configuration options have b... | ---
upgrade:
- |
The default value for the "cpu_allocation_ratio", "ram_allocation_ratio"
and "disk_allocation_ratio" configurations have been changed to ``None``.
The ``initial_cpu_allocation_ratio``, ``initial_ram_allocation_ratio`` and
``initial_disk_allocation_ratio`` configuration options have b... | Fix typo in initial_disk_allocation_ratio release note | Fix typo in initial_disk_allocation_ratio release note
Change-Id: Ib8becc39ce76847652d3538c3334cc3514ba7a33
Closes-Bug: #1816831
| YAML | apache-2.0 | rahulunair/nova,rahulunair/nova,openstack/nova,mahak/nova,openstack/nova,openstack/nova,klmitch/nova,rahulunair/nova,klmitch/nova,klmitch/nova,klmitch/nova,mahak/nova,mahak/nova |
c093fd27c2c22d4bdf051a9724a3d4077e957dc2 | playbooks/roles/libvirt/teardown/networks/tasks/main.yml | playbooks/roles/libvirt/teardown/networks/tasks/main.yml | ---
- name: Delete external network
virt_net:
name: "{{ networks.external.name }}"
state: absent
become: true
- name: Delete the OVS bridges
openvswitch_bridge:
bridge: "{{ item.name }}"
state: absent
with_items: "{{ networks.bridges }}"
become: true
- name: Delete the bridge networks
virt... | ---
- name: check if bridge exists
command: ip link show {{item.name}}
with_items: "{{ networks.bridges }}"
register: _bridges
ignore_errors: true
- name: Delete external network
virt_net:
name: "{{ networks.external.name }}"
state: absent
become: true
- name: Delete the OVS bridges
openvswitch_... | Check for bridges to exist before attempting to tear them down | Check for bridges to exist before attempting to tear them down
Change-Id: I3c01aade41309996cded1ced0c82e4341bfa5ed7
| YAML | apache-2.0 | redhat-openstack/tripleo-quickstart,redhat-openstack/tripleo-quickstart |
933bdff42656a97894cf5a70ccc961935ebd491a | config/locales/ru.yml | config/locales/ru.yml | ru:
label_support_checkbox: "Отправить e-mail клиенту поддержки"
email_was_send_to_supportclient: "Этот ответ был отправлен клиенту поддержки"
| ru:
label_support_checkbox: "Отправить e-mail клиенту поддержки"
email_was_send_to_supportclient: "Этот ответ был отправлен клиенту поддержки"
permission_treat_user_as_supportclient: "Определять пользователя как клиента техподдержки"
| Add missed Russian translation into roles and access manager | Add missed Russian translation into roles and access manager
| YAML | mit | ekulos/redmine_helpdesk,ekulos/redmine_helpdesk,VoronyukM/redmine_helpdesk,orchitech/redmine_helpdesk,jfqd/redmine_helpdesk,orchitech/redmine_helpdesk,jfqd/redmine_helpdesk,VoronyukM/redmine_helpdesk,eea/redmine_helpdesk,eea/redmine_helpdesk,eea/redmine_helpdesk,ekulos/redmine_helpdesk |
59f2a630151b5d41782e2a6c417dd79058799397 | roles/huawei_e3372h/defaults/main.yml | roles/huawei_e3372h/defaults/main.yml | ---
huawei_local_ip: 192.168.8.100 | ---
huawei_local_ip: 192.168.8.100
upnpc_port_redirects: [] | Add default value for upnpc_port_redirects | Add default value for upnpc_port_redirects | YAML | apache-2.0 | tkurki/marinepi-provisioning |
cf45f0089a3f81d8458948ddb09373fbfc047cab | bcbio-nextgen-vm/meta.yaml | bcbio-nextgen-vm/meta.yaml | package:
name: bcbio-nextgen-vm
version: '0.1.0a'
build:
number: 100
source:
git_url: https://github.com/chapmanb/bcbio-nextgen-vm.git
git_tag: develop
requirements:
build:
- python
- setuptools
run:
- python
- setuptools
- bcbio-nextgen
- elasticluster
- nose
- six
... | package:
name: bcbio-nextgen-vm
version: '0.1.0a'
build:
number: 100
source:
git_url: https://github.com/chapmanb/bcbio-nextgen-vm.git
git_tag: develop
requirements:
build:
- python
- setuptools
run:
- python
- setuptools
- bcbio-nextgen
- elasticluster
- nose
- six
... | Use bcbio requirements for bcbiovm | Use bcbio requirements for bcbiovm
| YAML | mit | alexandrucoman/bcbio-dev-conda,alexandrucoman/bcbio-dev-conda |
85fe83e28f7a6eb8691990402445f557f7943312 | packages/by/byteunits.yaml | packages/by/byteunits.yaml | homepage: ''
changelog-type: markdown
hash: 7b34f95e630a6d2a7178a3c7b5af691e167945c028e89fe43f880e9ed336f235
test-bench-deps:
Cabal: -any
base: -any
byteunits: -any
QuickCheck: -any
maintainer: nobody
synopsis: Human friendly conversion between byte units (KB, MB, GB...)
changelog: ! '# Revision history for app... | homepage: ''
changelog-type: markdown
hash: 9bf1ab1b458150c892ef28e92288e99d94c2d9b821a2fab88a204f017d4d1602
test-bench-deps:
Cabal: -any
base: -any
byteunits: -any
QuickCheck: -any
maintainer: nobody
synopsis: Human friendly conversion between byte units (KB, MB, GB...)
changelog: ! '# Revision history for app... | Update from Hackage at 2017-09-11T07:26:14Z | Update from Hackage at 2017-09-11T07:26:14Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
dad68d205a13ef4b8f15dd72f4c8c687c6dc0333 | .github/ISSUE_TEMPLATE/config.yml | .github/ISSUE_TEMPLATE/config.yml | blank_issues_enabled: false
contact_links:
- name: Question via Jaeger Community Support (online chat)
url: https://gitter.im/jaegertracing/Lobby
about: Please ask and answer questions here for faster response.
- name: Question via GitHub Discussions (similar to Stack Overflow)
url: https://github.com/j... | blank_issues_enabled: false
contact_links:
- name: Question via Jaeger Community Support (online chat)
url: https://gitter.im/jaegertracing/Lobby
about: Please ask and answer questions here for faster response.
- name: Question via GitHub Discussions (similar to Stack Overflow)
url: https://github.com/j... | Remove 'Report Security Issue' link since GitHub already adds it prominently | Remove 'Report Security Issue' link since GitHub already adds it prominently | YAML | apache-2.0 | jpkrohling/jaeger,jaegertracing/jaeger,pavolloffay/jaeger,pavolloffay/jaeger,pavolloffay/jaeger,jpkrohling/jaeger,jpkrohling/jaeger,jaegertracing/jaeger,jaegertracing/jaeger,jaegertracing/jaeger,uber/jaeger,jaegertracing/jaeger,jpkrohling/jaeger,uber/jaeger,pavolloffay/jaeger,uber/jaeger,pavolloffay/jaeger,jpkrohling/j... |
890e779b5ff4dc5a30f874dabf6ea0027164635c | kitchen-tests/.kitchen.travis.yml | kitchen-tests/.kitchen.travis.yml | ---
driver:
name: ec2
aws_access_key_id: <%= ENV['AWS_ACCESS_KEY_ID'] %>
aws_secret_access_key: <%= ENV['AWS_SECRET_ACCESS_KEY'] %>
aws_ssh_key_id: <%= ENV['AWS_KEYPAIR_NAME'] %>
region: "us-west-2"
availability_zone: "us-west-2a"
security_group_ids: ["travis-ci"]
instance_type: "m3.medium"
provisioner... | ---
driver:
name: ec2
aws_ssh_key_id: <%= ENV['AWS_KEYPAIR_NAME'] %>
region: "us-west-2"
availability_zone: "us-west-2a"
security_group_ids: ["travis-ci"]
instance_type: "m3.medium"
provisioner:
name: chef_github
github_owner: "chef"
github_repo: "chef"
refname: <%= ENV['TRAVIS_COMMIT'] %>
github... | Use only the AWS environment variables to pass credentials, since thats what kitchen-ec2 master wants | Use only the AWS environment variables to pass credentials, since thats what kitchen-ec2 master wants
| YAML | apache-2.0 | josb/chef,webframp/chef,robmul/chef,brettcave/chef,MsysTechnologiesllc/chef,nathwill/chef,tomdoherty/chef,brettcave/chef,gene1wood/chef,higanworks/chef,natewalck/chef,3dinfluence/chef,strangelittlemonkey/chef,webframp/chef,criteo-forks/chef,tbunnyman/chef,evan2645/chef,Ppjet6/chef,Kast0rTr0y/chef,tbunnyman/chef,higanwo... |
cb20b63b905c89fa212a51f797d861de4949debf | defaults/main.yml | defaults/main.yml | ---
minecraft_version: 1.9
minecraft_url: https://s3.amazonaws.com/Minecraft.Download/versions
minecraft_user: minecraft
minecraft_group: minecraft
minecraft_home: /srv/minecraft
minecraft_max_memory: 1024M
minecraft_initial_memory: 1024M
minecraft_supervisor_name: minecraft
minecraft_whitelist: []
minecraft_ops: []
mi... | ---
minecraft_version: latest
minecraft_url: https://s3.amazonaws.com/Minecraft.Download/versions
minecraft_user: minecraft
minecraft_group: minecraft
minecraft_home: /srv/minecraft
minecraft_max_memory: 1024M
minecraft_initial_memory: 1024M
minecraft_supervisor_name: minecraft
minecraft_whitelist: []
minecraft_ops: []... | Install latest version by default | Install latest version by default
| YAML | apache-2.0 | devops-coop/ansible-minecraft,devops-coop/ansible-minecraft,devops-coop/ansible-minecraft |
a89e2618eb724cdee81556422c35124db553f764 | defaults/main.yml | defaults/main.yml | ---
relp_version: "7.4.4-1ubuntu2.3"
relp_host: localhost
relp_port: 20514
| ---
relp_version: "7.4.*"
relp_host: localhost
relp_port: 20514
| Use wildcards for package minor versions | Use wildcards for package minor versions
| YAML | apache-2.0 | azavea/ansible-relp |
afc8183419e843b637a6cfd8ec6800618b58ce1c | .github/workflows/issue-planned.yml | .github/workflows/issue-planned.yml | on:
issues: {types: milestoned}
jobs:
apply-label:
name: Add label 'status planned' to issue when milestoned
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@0.2.0
with:
github-token: ${{github.token}}
script: |
github.issues.addLabels({...contex... | on:
issues: {types: milestoned}
jobs:
apply-label:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@0.2.0
name: Add label 'status planned' to issue when milestoned
with:
github-token: ${{github.token}}
script: |
github.issues.addLabels({...co... | Add name to apply label for milestoned issues | Add name to apply label for milestoned issues
| YAML | apache-2.0 | synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung |
c6e4a246cdd90572578b82fb3c3470ff04a9c798 | .github/workflows/deploy_pypi.yml | .github/workflows/deploy_pypi.yml | name: Deploy to PyPI
on:
release:
types: [published] # Only deploy when publishing github releases
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-ver... | name: Deploy to PyPI
on:
release:
types: [published,edited] # Only deploy when publishing github releases
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@v1
with:
pyt... | Add deploy when editing releases | Add deploy when editing releases
| YAML | mit | lpfann/fri |
15f8344d8fee2d7e37d144a61921fd7fb76047c6 | .github/workflows/panama-vector.yml | .github/workflows/panama-vector.yml | name: Panama Vector API
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 18-ea
run: |
wget https://download.java.net/java/early_access/jdk18/15/GPL/openjdk-18-ea+15_linux-x64_bin.tar.gz
tar xf o... | name: Panama Vector API
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 18-ea
run: |
wget https://download.java.net/java/early_access/jdk18/23/GPL/openjdk-18-ea+23_linux-x64_bin.tar.gz
tar xf o... | Update JDK 18 ea download link for GitHub Action | Update JDK 18 ea download link for GitHub Action | YAML | mit | JOML-CI/JOML,JOML-CI/JOML,JOML-CI/JOML |
098f48dbb154c9b45c040eb2182c93460d3667f4 | .github/ISSUE_TEMPLATE/config.yml | .github/ISSUE_TEMPLATE/config.yml | blank_issues_enabled: false
contact_links:
- name: Question
url: https://stackoverflow.com/questions/tagged/locust
about: Check the FAQ in the wiki, and if there is no answer there, ask on StackOverflow
| blank_issues_enabled: false
contact_links:
- name: FAQ
url: https://github.com/locustio/locust/wiki/FAQ
about: Check the FAQ in the wiki
contact_links:
- name: Question
url: https://stackoverflow.com/questions/tagged/locust
about: Ask questions and look for answers on StackOverflow
| Add link to FAQ from issue template | Add link to FAQ from issue template
| YAML | mit | locustio/locust,mbeacom/locust,locustio/locust,locustio/locust,mbeacom/locust,mbeacom/locust,locustio/locust,mbeacom/locust |
1dd72cf5fbdc61f443a49137d54e57dde6df77a6 | .github/workflows/pythonpackage.yml | .github/workflows/pythonpackage.yml | # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: ddt test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]... | # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: ddt test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]... | Fix timeout issue with jobs | Fix timeout issue with jobs | YAML | mit | datadriventests/ddt,datadriventests/ddt |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.