doc_id
stringlengths
36
36
metadata
dict
input
stringlengths
28
4.3k
output
stringlengths
11
5.45k
18f5057b-ef5b-4373-a605-ccce9e33121f
{ "language": "YAML" }
```yaml language: go go: - 1.7 - 1.6 install: - go get -u github.com/golang/lint/golint script: - make check - make build - make release - make clean - make test - make coverage ``` Update test command for Travis CI
```yaml language: go go: - 1.7 - 1.6 install: - go get -u github.com/golang/lint/golint script: - make check - make build - make release - make clean - make unit-test - make unit-coverage ```
0824c3d0-e0e8-4df0-9959-2d147bcc737c
{ "language": "YAML" }
```yaml sudo: false language: php php: - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - nightly cache: directories: - $HOME/.composer/cache install: - phpenv config-rm xdebug.ini - composer install script: - find -name "*.php" -not -path "./vendor/*" -print0 | xargs -n 1 -0 php -l - $(php -r 'if (PHP_MAJO...
```yaml sudo: false language: php php: - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - nightly cache: directories: - $HOME/.composer/cache install: - phpenv config-rm xdebug.ini || echo "No xdebug config found." - composer install script: - find -name "*.php" -not -path "./vendor/*" -print0 | xargs -n 1 -0...
25656259-2ace-4741-8ee8-93ab050be3f3
{ "language": "YAML" }
```yaml language: ruby only: - master rvm: - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 env: matrix: - "RAILS_VERSION=\"~> 3.0.0\"" - "RAILS_VERSION=\"~> 3.1.0\"" - "RAILS_VERSION=\"~> 3.2.0\"" - "RAILS_VERSION=\"~> 4.0.0\"" matrix: exclud...
```yaml language: ruby only: - master rvm: - jruby-19mode - rbx-19mode - 1.9.2 - 1.9.3 - 2.0.0 env: matrix: - "RAILS_VERSION=\"~> 3.0.0\"" - "RAILS_VERSION=\"~> 3.1.0\"" - "RAILS_VERSION=\"~> 3.2.0\"" - "RAILS_VERSION=\"~> 4.0.0\"" matrix: exclude: - rvm: 1.9.2 env: "RAILS_VERS...
cdd45768-79af-4a88-b6cf-ac44eb430198
{ "language": "YAML" }
```yaml language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 env: global: - setup=basic cache: directories: - vendor - $HOME/.composer/cache sudo: false install: - if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi - if [[ $setup = 's...
```yaml language: php php: - 5.6 - 7.0 - 7.1 env: global: - setup=basic cache: directories: - vendor - $HOME/.composer/cache sudo: false install: - if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi - if [[ $setup = 'stable' ]]; then travis_r...
d22378e7-6b09-4dea-8267-89d945961237
{ "language": "YAML" }
```yaml # Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-stable-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/op...
```yaml # Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-current-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/o...
353a4379-6446-4e55-b751-91a56dcfe222
{ "language": "YAML" }
```yaml language: python sudo: false python: - 3.4 before_install: - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda3/bin:$PATH - conda install --yes pip python==$TRAVIS_PYTHON_VERSION...
```yaml language: python sudo: false python: - 3.4 before_install: - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda3/bin:$PATH - conda install --yes pip python==$TRAVIS_PYTHON_VERSION...
57614d23-79aa-4e04-b1d8-cc612c0e40fb
{ "language": "YAML" }
```yaml dist: trusty sudo: required language: ruby cache: bundler: true rvm: - 2.4.1-clang addons: postgresql: '9.6' before_script: - cp config/database.yml.travis config/database.yml - psql -c "CREATE DATABASE open_lis_test ENCODING 'UTF-8';" -U postgres ``` Use yarn in Travis CI
```yaml dist: trusty sudo: required language: ruby before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.24.6 - export PATH=$HOME/.yarn/bin:$PATH cache: bundler: true yarn: true rvm: - 2.4.1-clang addons: postgresql: '9.6' before_script: - cp config/database.yml.travis conf...
c3dc5714-674d-4c51-a5a7-330f8eb3d1a6
{ "language": "YAML" }
```yaml language: node_js node_js: - "4" - "6" - "stable" script: - yarn run test:coverage before_deploy: - npm install -g auto-dist-tag - auto-dist-tag --write deploy: provider: npm email: stefan.penner+ember-cli@gmail.com api_key: secure: hdNfvaHaA0mSzapY1quVvk3WFwzPIsVirzsJlQ/yJA+9CNOCvOwc3I...
```yaml language: node_js node_js: - "6" - "stable" script: - yarn run test:coverage before_deploy: - npm install -g auto-dist-tag - auto-dist-tag --write deploy: provider: npm email: stefan.penner+ember-cli@gmail.com api_key: secure: hdNfvaHaA0mSzapY1quVvk3WFwzPIsVirzsJlQ/yJA+9CNOCvOwc3IoLe36z3P...
4d5d1b97-2a89-4ac0-8231-294962b56342
{ "language": "YAML" }
```yaml language: java jdk: - openjdk8 - openjdk11 env: NODE_VERSION=10.2.1 CXX=g++-4.8 before_install: nvm install $NODE_VERSION jobs: include: - stage: "Shared Module" name: "Build" script: ./gradlew :shared:build - name: "Tests" script: ./gradlew :shared:test -i - stage: "Languag...
```yaml language: java jdk: - openjdk8 - openjdk11 env: NODE_VERSION=10.2.1 CXX=g++-4.8 before_install: nvm install $NODE_VERSION addons: apt: packages: - libsecret-1-dev - g++-4.8 jobs: include: - stage: "Shared Module" name: "Build" script: ./gradlew :shared:build - name:...
2cbe3bf9-6aea-402c-81bc-0dd17339ade3
{ "language": "YAML" }
```yaml dist: trusty sudo: false language: c branches: only: - master cache: directories: - $HOME/env before_install: - pip install --user hererocks - hererocks $HOME/env --luajit 2.0.3 --luarocks latest - source $HOME/env/bin/activate install: - luarocks show lanes > /dev/null || luarocks insta...
```yaml dist: trusty sudo: false language: c branches: only: - master cache: directories: - $HOME/env before_install: - pip install --user hererocks - hererocks $HOME/env --luajit 2.0.3 --luarocks latest - source $HOME/env/bin/activate install: - luarocks show lanes > /dev/null || luarocks insta...
cbd88c54-29ee-4af4-ad8a-442a3be5624c
{ "language": "YAML" }
```yaml language: node_js node_js: - '6' - '8' - '9' script: 'npm run ci' after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js' ``` Drop node 9, add 10 and 12
```yaml language: node_js node_js: - '6' - '8' - '10' - '12' script: 'npm run ci' after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js' ```
207e7643-ec56-44c5-aa85-fad48425b555
{ "language": "YAML" }
```yaml language: ruby rvm: - 2.2.3 before_install: gem install bundler -v 1.10.6 ``` Use Ruby 2.1.5 when building on Travis CI.
```yaml language: ruby rvm: - 2.1.5 before_install: gem install bundler -v 1.10.6 ```
ebc9f467-df89-4df1-a8fc-2413d6a6b2e9
{ "language": "YAML" }
```yaml language: php php: - '7.0' - hhvm - nightly before_install: - travis_retry composer self-update install: - travis_retry composer install --no-interaction --prefer-dist script: phpunit ``` Remove HHVM from Travis CI
```yaml language: php php: - '7.0' - nightly before_install: - travis_retry composer self-update install: - travis_retry composer install --no-interaction --prefer-dist script: phpunit ```
bde0a726-4645-433f-bce6-04b209b584cd
{ "language": "YAML" }
```yaml language: python python: - 2.7 virtualenv: # apt packages ends up amongst system packages system_site_packages: true addons: apt: packages: - qt4-qmake - libqt4-dev - python-qt4 # - python-pyside # not whitelisted for some reason install: # Based on http://stackoverflow.com/a/...
```yaml language: python python: - 2.7 virtualenv: # apt packages ends up amongst system packages system_site_packages: true addons: apt: packages: - qt4-qmake - libqt4-dev - python-qt4 # - python-pyside # not whitelisted for some reason install: # Based on http://stackoverflow.com/a/...
b4ee311a-c3b8-41d7-9645-aa9bc7add39b
{ "language": "YAML" }
```yaml language: ruby rvm: - 1.9.3 - 2.0.0 - jruby-19mode ``` Add Ruby 2.1 to Travis
```yaml language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode ```
f9a3f214-3406-4d1d-8e81-15f27d153dfe
{ "language": "YAML" }
```yaml language: ruby rvm: - 1.9.3 - 1.9.2 - jruby-19mode - rbx-19mode - ruby-head ``` Revert "Do not check jruby-head"
```yaml language: ruby rvm: - 1.9.3 - 1.9.2 - jruby-19mode - rbx-19mode - ruby-head - jruby-head ```
1115af6e-1706-4ca8-b3c1-a254c6cc6926
{ "language": "YAML" }
```yaml language: java jdk: oraclejdk7 before_install: # Gradle - wget http://services.gradle.org/distributions/gradle-1.6-bin.zip - unzip gradle-1.6-bin.zip - export GRADLE_HOME=$PWD/gradle-1.6 - export PATH=$GRADLE_HOME/bin:$PATH script: gradle assemble``` Use JDK6 for Android compatibility.
```yaml language: java jdk: oraclejdk6 before_install: # Gradle - wget http://services.gradle.org/distributions/gradle-1.6-bin.zip - unzip gradle-1.6-bin.zip - export GRADLE_HOME=$PWD/gradle-1.6 - export PATH=$GRADLE_HOME/bin:$PATH script: gradle assemble```
6adb11fd-14a1-42e6-b9e5-d9399376b90d
{ "language": "YAML" }
```yaml language: node_js node_js: - "0.10" before_install: - "npm install --global bower grunt-cli" ``` Add NPM deploy step with encrypted API key
```yaml language: node_js node_js: - '0.10' before_install: - npm install --global bower grunt-cli deploy: provider: npm email: ukfrontend@wonga.com api_key: secure: d0TXTI1s5jyogMsFk53Z0U2vtDaI/haN1CGWifRoOS8M5WWAOA8t+1s7KgZQm5//TcRgkJXCZXeMugPJw/7syjVAKLggi5+0KMrNH09/bMWwC1CqNGForHa1Gvv/WhG9E9EWK1Sf03nKsNxl...
ebcfb80e-8d32-42c9-ae20-db35e8e140a4
{ "language": "YAML" }
```yaml # Use docker-based build environment (instead of openvz) sudo: false language: java jdk: - oraclejdk8 cache: directories: - '$HOME/.m2/repository' after_success: - mvn clean test jacoco:report coveralls:report``` Add deployment of SNAPSHOT artifacts after CI build to Sonatype OSS repository
```yaml # Use docker-based build environment (instead of openvz) sudo: false language: java jdk: - oraclejdk8 cache: directories: - '$HOME/.m2/repository' after_success: - mvn clean test jacoco:report coveralls:report - echo "<settings><servers><server><id>ossrh</id><username>\${env.OSSRH_USER}</username...
aa0f6dcb-be6b-4da0-ac47-4d26d96d53f8
{ "language": "YAML" }
```yaml language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm sudo: false addons: apt: packages: - libevent-dev # Used by 'event' and 'libevent' PHP extensions cache: directories: - $HOME/.composer/cache install: - ./travis-init.sh - composer install script: - ./vendor/bin/ph...
```yaml language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm sudo: false addons: apt: packages: - libevent-dev # Used by 'event' and 'libevent' PHP extensions cache: directories: - $HOME/.composer/cache/files install: - ./travis-init.sh - composer install script: - ./vendor/...
7a89d1a1-cc4a-4b85-a9ba-1aca3d0ca731
{ "language": "YAML" }
```yaml --- language: node_js node_js: - "0.12" sudo: false cache: directories: - node_modules env: - EMBER_TRY_SCENARIO=default - EMBER_TRY_SCENARIO=ember-release - EMBER_TRY_SCENARIO=ember-beta - EMBER_TRY_SCENARIO=ember-canary matrix: fast_finish: true allow_failures: - env: EMBER_TRY_SCE...
```yaml --- language: node_js node_js: - "0.12" sudo: false cache: directories: - node_modules env: - EMBER_TRY_SCENARIO=default - EMBER_TRY_SCENARIO=ember-2.3 - EMBER_TRY_SCENARIO=ember-release - EMBER_TRY_SCENARIO=ember-beta - EMBER_TRY_SCENARIO=ember-canary matrix: fast_finish: true allow_f...
f6d4572e-51e2-4366-9458-323544da6f2d
{ "language": "YAML" }
```yaml language: ruby rvm: - 1.9.2 - 1.9.3 - jruby-19mode # JRuby 1.7.0 - rbx-19mode # - ruby-head # seems unstable on travis at this time ``` Add Ruby 2.0.0 for Travis CI
```yaml language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - jruby-19mode # JRuby 1.7.0 - rbx-19mode # - ruby-head # seems unstable on travis at this time ```
89eea50d-ae86-4f0e-b92d-b6a4bc67e0ab
{ "language": "YAML" }
```yaml language: python python: - 2.6 - 2.7 - pypy env: - TWISTED_VERSION=12.2.0 - TWISTED_VERSION=12.1.0 install: - pip install Twisted==$TWISTED_VERSION - pip install -r requirements-dev.txt --use-mirrors script: - pep8 treq - pyflakes treq - trial treq ``` Comment out everything but py...
```yaml language: python python: #- 2.6 #- 2.7 - pypy env: - TWISTED_VERSION=12.2.0 #- TWISTED_VERSION=12.1.0 install: - pip install Twisted==$TWISTED_VERSION - pip install -r requirements-dev.txt --use-mirrors script: - pep8 treq - pyflakes treq - strace trial treq ```
9a8c17dc-47e5-4a78-820b-7af605ef7e72
{ "language": "YAML" }
```yaml sudo: false language: clojure lein: 2.8.1 jdk: - oraclejdk8 - oraclejdk10 script: lein do check, midje ``` Upgrade to JVM 11 (LTS)
```yaml sudo: false language: clojure lein: 2.8.1 jdk: - oraclejdk8 - openjdk11 # Don't fall for Oracle's trick: https://blog.joda.org/2018/09/do-not-fall-into-oracles-java-11-trap.html script: lein do check, midje ```
9768d0d1-226b-40fa-b0c3-a0a9342e8cc5
{ "language": "YAML" }
```yaml language: php php: - '7.0' - '5.6' - '5.5.9' - '5.5' - '5.4' - hhvm env: matrix: - PREFER_LOWEST="" - PREFER_LOWEST="--prefer-lowest" matrix: allow_failures: - php: '5.4' - php: hhvm install: - if [[ "$(phpenv version-name)" != "hhvm" ]]; then echo 'error_reporting = E_ALL & ~E...
```yaml language: php php: - '7.0' - '5.6' - '5.5.9' - '5.5' - '5.4' - hhvm env: matrix: - PREFER_LOWEST="" - PREFER_LOWEST="--prefer-lowest" matrix: allow_failures: - php: '5.4' - php: hhvm install: - if [[ "$(phpenv version-name)" != "hhvm" ]]; then echo 'error_reporting = E_ALL & ~E...
17682c57-7df3-410f-9837-2f08d90f930a
{ "language": "YAML" }
```yaml language: python python: - "2.6" - "2.7" - "3.2" - "3.3" install: python setup.py install script: python setup.py test ``` Remove 3.2 support as WTForms doesn't support it
```yaml language: python python: - "2.6" - "2.7" - "3.3" install: python setup.py install script: python setup.py test ```
39e28a22-d2a0-461b-8f7f-cdb00b90058a
{ "language": "YAML" }
```yaml language: php php: - 7.0 - 7.1 - 7.2 cache: directories: - $HOME/.composer/cache env: matrix: - COMPOSER_FLAGS="--prefer-lowest" - COMPOSER_FLAGS="" before_script: - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist script: - vendor/bin/phpunit --covera...
```yaml language: php php: - 7.0 - 7.1 - 7.2 cache: directories: - $HOME/.composer/cache before_script: - travis_retry composer update --no-interaction --prefer-dist script: - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover after_script: - wget https://scrutinizer-ci.com/ocul...
d7e9bbd2-e6b4-4ee0-9b4e-493fac49ec2b
{ "language": "YAML" }
```yaml language: bash services: docker env: - VERSION=17.09 - VERSION=17.07 - VERSION=17.06 install: - git clone https://github.com/docker-library/official-images.git ~/official-images before_script: - env | sort - cd "$VERSION" - image="docker:$VERSION" script: - travis_retry docker build -t "$ima...
```yaml language: bash services: docker env: - VERSION=17.09 - VERSION=17.07 install: - git clone https://github.com/docker-library/official-images.git ~/official-images before_script: - env | sort - cd "$VERSION" - image="docker:$VERSION" script: - travis_retry docker build -t "$image" . - ~/offici...
52780c57-a366-46e6-b21e-a8c4b2783830
{ "language": "YAML" }
```yaml version: '{branch}-{build}' init: - cmd: git config --global core.autocrlf true before_build: - cmd: >- nuget restore Agiil.sln git submodule update --init --recursive # As of 2017-05-15 it appears AppVeyor use a 32-bit MSBuild. # This means that we must compile for 32-bit, because otherw...
```yaml version: '{branch}-{build}' init: - cmd: git config --global core.autocrlf true project: Agiil.sln before_build: - cmd: >- nuget restore Agiil.sln git submodule update --init --recursive # As of 2017-05-15 it appears AppVeyor use a 32-bit MSBuild. # This means that we must compile for 32-...
04c5ecfb-7b13-4042-8934-921e5dc2f2e4
{ "language": "YAML" }
```yaml language: node_js node_js: - 0.1 before_install: - npm install -g grunt-cli install: - npm install script: # Reference the locally-installed version of Grunt - ./node_modules/grunt-cli/bin/grunt test after_success: # Check to see if the version file has been updated - ./create-release-tag.sh deplo...
```yaml language: node_js node_js: - 4.0 before_install: - npm install -g grunt-cli install: - npm install script: # Reference the locally-installed version of Grunt - ./node_modules/grunt-cli/bin/grunt test after_success: # Check to see if the version file has been updated - ./create-release-tag.sh deplo...
1c0f92aa-fb33-471e-a0f9-9b88bdf4eb1d
{ "language": "YAML" }
```yaml sudo: required language: node_js node_js: - "6" - "5" - "4" - "0.12" services: - docker env: DOCKER_VERSION: 1.11.0-0~trusty DOCKER_COMPOSE_VERSION: 1.7.1 DEBUG: "navy:*" NAVY_DEBUG: "navy:*" before_install: # list docker-engine versions - apt-cache madison docker-engine # upgrade ...
```yaml sudo: required language: node_js node_js: - "5" - "4" - "0.12" services: - docker env: DOCKER_VERSION: 1.11.0-0~trusty DOCKER_COMPOSE_VERSION: 1.7.1 DEBUG: "navy:*" NAVY_DEBUG: "navy:*" before_install: # list docker-engine versions - apt-cache madison docker-engine # upgrade docker-e...
620ad9e6-ff22-414f-b81e-220e041e28a9
{ "language": "YAML" }
```yaml clone_depth: 5 configuration: - Release - Debug image: Visual Studio 2015 platform: - x64 build_script: - 'git submodule update --init --recursive' - "C:\\Python36\\python.exe setup.py" - ps: Invoke-WebRequest "https://github.com/chigraph/chigraph/releases/download/dependencies/llvm-4.0.0-$env...
```yaml clone_depth: 5 configuration: - Release - Debug image: Visual Studio 2015 platform: - x64 build_script: - 'git submodule update --init --recursive' - ps: Invoke-WebRequest "https://github.com/chigraph/chigraph/releases/download/dependencies/llvm-4.0.0-$env{CONFIGURATION}-msvc14-win64.tar.xz" thi...
36729ac3-fdce-4a36-a917-2983b0fd2fa5
{ "language": "YAML" }
```yaml language: php php: - "5.4" - "5.5" - "5.6" - "nightly" - "hhvm" sudo: false before_script: - composer install --no-interaction - cp config/app_travis.php config/app.php - cp config/oauth_example.php config/oauth.php - mysql -e 'create database pmaerr;' - wget https://scrutinizer-ci.com/ocula...
```yaml language: php php: - "5.6" - "nightly" - "hhvm" sudo: false before_script: - composer install --no-interaction - cp config/app_travis.php config/app.php - cp config/oauth_example.php config/oauth.php - mysql -e 'create database pmaerr;' - wget https://scrutinizer-ci.com/ocular.phar script: - b...
8133963a-3316-4b14-af19-3ae11f2869df
{ "language": "YAML" }
```yaml language: php php: - "5.3" - "5.4" - "5.5" - "5.6" - "7.0" - "hhvm" matrix: allow_failures: - php: 7.0 sudo: false script: - if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/phpunit; fi - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then vendor/bin/phpunit --coverage-text --coverage-...
```yaml language: php php: - "5.3" - "5.4" - "5.5" - "5.6" - "7.0" - "hhvm" matrix: allow_failures: - php: 7.0 sudo: false install: travis_retry composer install --no-interaction --prefer-source script: - if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/phpunit; fi - if [ "$TRAVIS_PHP_...
355cad4b-ed81-4c5b-a752-bd0e575c8fd1
{ "language": "YAML" }
```yaml # Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby jdk: - oraclejdk8 rvm: - 2.6.6 install: - rvm use 2.6.6 - gem install bundler - bundle install script: buildr package git: depth: false ``` Update the version of ruby used to build project in Tra...
```yaml # Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby jdk: - oraclejdk8 rvm: - 2.6.6 install: - gem install bundler - bundle install script: buildr package git: depth: false ```
39480fda-fd2e-4f6e-a222-e3ad07cbf1af
{ "language": "YAML" }
```yaml language: objective-c osx_image: xcode8 env: global: - LC_CTYPE=en_US.UTF-8 - LANG=en_US.UTF-8 - WORKSPACE="Aho-Corasick-Swift.xcworkspace" - IOS_FRAMEWORK_SCHEME="Aho-Corasick-Swift" - IOS_SDK=iphonesimulator10.0 matrix: - DESTINATION="OS=10.0,name=iPhone 7 Plus" SCHEME="$IOS_FRAMEWORK_SC...
```yaml language: objective-c osx_image: xcode8 env: global: - LC_CTYPE=en_US.UTF-8 - LANG=en_US.UTF-8 - WORKSPACE="Aho-Corasick-Swift.xcworkspace" - IOS_FRAMEWORK_SCHEME="Aho-Corasick-Swift" - IOS_SDK=iphonesimulator10.0 matrix: - DESTINATION="OS=10.0,name=iPhone 7 Plus" SCHEME="$IOS_FRAMEWORK_SC...
5f1815e0-3584-4f63-9d21-466cdf94e5b6
{ "language": "YAML" }
```yaml language: android jdk: - oraclejdk8 android: components: - tools - tools - platform-tools - build-tools-26.0.2 - android-26 - extra-android-support - extra-google-google_play_services - extra-android-m2repository - extra-google-m2repository - addon-google_apis-google-...
```yaml language: android jdk: - oraclejdk8 android: components: - tools - tools - platform-tools - build-tools-26.0.2 - android-26 - extra-android-support - extra-google-google_play_services - extra-android-m2repository - extra-google-m2repository - addon-google_apis-google-...
35991b6c-5dae-4c84-9882-590e7485d45e
{ "language": "YAML" }
```yaml sudo: false language: go go: - 1.11.1 install: - go get github.com/gwenn/yacr - go get -tags all github.com/gwenn/gosqlite before_script: - go get github.com/bmizerany/assert script: # - GODEBUG=cgocheck=2 go test -v -tags all github.com/gwenn/gosqlite - GODEBUG=cgocheck=0 go test -v -tags all github.com/gw...
```yaml sudo: false language: go go: - 1.11.5 install: - go get github.com/gwenn/yacr - go get -tags all github.com/gwenn/gosqlite before_script: - go get github.com/bmizerany/assert script: # - GODEBUG=cgocheck=2 go test -v -tags all github.com/gwenn/gosqlite - GODEBUG=cgocheck=0 go test -v -tags all github.com/gw...
bcb1f110-9692-44b5-b0f4-933f3985d11e
{ "language": "YAML" }
```yaml language: node_js node_js: - "0.8" - "0.10" before_script: - npm install -g grunt-cli ``` Drop Node.js 0.8 from Travis run
```yaml language: node_js node_js: - "0.10" before_script: - npm install -g grunt-cli ```
6bf8c24f-f874-4418-b6eb-3ce5f98fbc20
{ "language": "YAML" }
```yaml sudo: false language: node_js node_js: - "0.10" env: - TEST_DIR=packages/dispatchr - TEST_DIR=packages/fluxible - TEST_DIR=packages/fluxible-plugin-fetchr - TEST_DIR=packages/fluxible-reducer-store - TEST_DIR=packages/fluxible-addons-react - TEST_DIR=packages/fluxible-router - TEST_DIR=packages/...
```yaml sudo: false language: node_js node_js: - "0.10" env: - TEST_DIR=/ - TEST_DIR=packages/dispatchr - TEST_DIR=packages/fluxible - TEST_DIR=packages/fluxible-plugin-fetchr - TEST_DIR=packages/fluxible-reducer-store - TEST_DIR=packages/fluxible-addons-react - TEST_DIR=packages/fluxible-router - TES...
e710d836-72ee-4734-bbde-6327525633ae
{ "language": "YAML" }
```yaml language: php php: - 7.0 - 7.1 env: matrix: - COMPOSER_FLAGS="--prefer-lowest" - COMPOSER_FLAGS="" before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source script: - vendor/bin/phpunit --coverage-clover ./tests/l...
```yaml language: php php: - 7.0 - 7.1 env: matrix: - COMPOSER_FLAGS="--prefer-lowest" - COMPOSER_FLAGS="" before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source script: - vendor/bin/phpunit --coverage-clover ./tests/logs/clover.xml aft...
491f613c-a367-422c-99cc-5b51868c8662
{ "language": "YAML" }
```yaml language: "node_js" node_js: - node - 6 services: - mongodb ``` Make Travis use MongoDB 3.2
```yaml sudo: false language: "node_js" node_js: - node - 6 services: - mongodb addons: apt: sources: - mongodb-upstart - mongodb-3.2-precise packages: - mongodb-org-server - mongodb-org-shell ```
1cff8363-39af-45e9-afb8-2801c570beeb
{ "language": "YAML" }
```yaml language: php env: - SYMFONY_DEPS_VERSION=2.1 - SYMFONY_DEPS_VERSION=2.2 before_script: # symfony/* - sh -c "if [ '$SYMFONY_DEPS_VERSION' = '2.2' ]; then sed -i 's/>=2.1,<2.3-dev/2.2.*@dev/g' composer.json; composer update --dev --prefer-source; fi" - composer install --dev --prefer-source...
```yaml language: php env: - SYMFONY_DEPS_VERSION=2.1 - SYMFONY_DEPS_VERSION=2.2 before_script: # symfony/* - sh -c "if [ '$SYMFONY_DEPS_VERSION' = '2.2' ]; then sed -i 's/>=2.1,<2.3-dev/2.2.*@dev/g' composer.json; composer require --no-update 'symfony/property-access:2.2.*@dev'; composer update --dev...
879bbed3-92bf-48c6-a0cb-a5831f049c89
{ "language": "YAML" }
```yaml language: python sudo: required before_install: - sudo apt-get -qq update - sudo apt-get install -y libxmlsec1 xmlsec1 libxmlsec1-openssl libxmlsec1-dev install: - pip install -r test/requirements.txt before_script: - wget https://github.com/GENI-NSF/geni-tools/archive/v2.10.tar.gz -O /tmp/geni-tools.ta...
```yaml language: python sudo: required before_install: - sudo apt-get -qq update - sudo apt-get install -y libxmlsec1 xmlsec1 libxmlsec1-openssl libxmlsec1-dev - sudo apt-get install -qq -y swig # For pip M2Crypto install: - pip install -r test/requirements.txt before_script: - wget https://github.com/GENI-N...
4cf146ac-2110-4394-88e5-6ba356276d49
{ "language": "YAML" }
```yaml language: python python: - "3.4" - "pypy3" nstall: - travis_retry pip install -r requirements.txt - travis_retry pip install coveralls script: - coverage run --branch --source=mygpoauth ./manage.py test after_script: - coveralls sudo: false ``` Set DATABASE_URL for Travis-CI tests
```yaml language: python python: - "3.4" - "pypy3" nstall: - travis_retry pip install -r requirements.txt - travis_retry pip install coveralls script: - coverage run --branch --source=mygpoauth ./manage.py test after_script: - coveralls sudo: false env: - DATABASE_URL="postgres://postgres@localhost/m...
917b6b75-a325-4740-b489-815ded0c96e8
{ "language": "YAML" }
```yaml language: python python: - '3.5' - '3.6' env: - HASS=0.95.4 before_install: - mv secrets_dummy.yaml secrets.yaml install: - pip3 install homeassistant==$HASS script: - hass -c . --script check_config ``` Update Home Assistant to 0.96.3 for config checks in Travis CI
```yaml language: python python: - '3.5' - '3.6' env: - HASS=0.96.3 before_install: - mv secrets_dummy.yaml secrets.yaml install: - pip3 install homeassistant==$HASS script: - hass -c . --script check_config ```
bbfb8e67-6466-4ba0-a49f-af6c15dcb5d2
{ "language": "YAML" }
```yaml language: python dist: "xenial" python: - "3.5" - "3.6" - "3.7" env: - DJANGO=1.11 - DJANGO=2.0 - DJANGO=2.1 - DJANGO=2.2 - DJANGO=3.0 - DJANGO=3.1 before_install: - pip install --upgrade pytest install: - pip install -q Django==$DJANGO - pip install -e . - pip install -e '.[test]...
```yaml language: python dist: "xenial" python: - "3.5" - "3.6" - "3.7" - "3.8" env: - DJANGO=1.11 - DJANGO=2.0 - DJANGO=2.1 - DJANGO=2.2 - DJANGO=3.0 - DJANGO=3.1 matrix: exclude: - python: "3.5" env: DJANGO=3.0 - python: "3.5" env: DJANGO=3.1 before_install: - pip inst...
94b6c698-1ae0-4cfe-ab40-256e9640dae1
{ "language": "YAML" }
```yaml language: php php: - 7.0 - 7.1 - 7.2 sudo: false install: travis_retry composer install --no-interaction --prefer-source script: vendor/bin/phpunit --verbose ``` Add PHP 7.3 to Travis
```yaml language: php php: - 7.0 - 7.1 - 7.2 - 7.3 sudo: false install: travis_retry composer install --no-interaction --prefer-source script: vendor/bin/phpunit --verbose ```
b8fe906e-09f9-41cb-8052-179830b162d9
{ "language": "YAML" }
```yaml language: python python: - 2.6 - 2.7 # command to run tests script: python setup.py develop && python setup.py ptr ``` Install TCL so we can run the test IRC server
```yaml language: python python: - 2.6 - 2.7 # command to run tests script: sudo aptitude install -y tcl && python setup.py develop && python setup.py ptr ```
195c2da0-9975-4a32-afc6-15324cbef6ca
{ "language": "YAML" }
```yaml language: csharp mono: none dotnet: 2.0.0 matrix: include: - os: linux dist: trusty - os: osx before_install: - if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get -qq update & sudo apt-get install -y tor; else brew install tor; fi - sudo killall tor - tor RunAsDaemon 1 SOCKSPort ...
```yaml language: csharp mono: none dotnet: 2.0.0 matrix: include: - os: linux dist: trusty - os: osx before_install: - if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get -qq update && sudo apt-get install -y tor; else brew install tor; fi - sudo killall tor - tor RunAsDaemon 1 SOCKSPort...
612ece0b-7a92-4340-bd4b-582e25831de4
{ "language": "YAML" }
```yaml language: php php: - 7.0 before_script: - composer install --prefer-dist - composer require "satooshi/php-coveralls:^1.0" script: - mkdir -p build/logs - bin/check-code-cov - vendor/bin/phpunit -c phpunit.xml.dist --coverage-text --coverage-clover ./build/logs/clover.xml after_script...
```yaml language: php php: - 7.0 - 7.1 before_script: - composer install --prefer-dist - composer require "satooshi/php-coveralls:^1.0" script: - mkdir -p build/logs - bin/check-code-cov - vendor/bin/phpunit -c phpunit.xml.dist --coverage-text --coverage-clover ./build/logs/clover.xml af...
442da8ad-e59c-422d-a9e9-0dbb773203a0
{ "language": "YAML" }
```yaml name: LuckyBlockWars main: Survingo\LuckyBlockWars\LuckyBlockWars version: Alpha author: Survingo api: [1.13.1,2.0.0] description: The MCPC mini-game Lucky Block Wars for your PocketMine server commands: lbw: permission: lbw.command aliases: ["luckyblockwars", "lucky-block-wars"] description: "All comma...
```yaml name: LuckyBlockWars main: Survingo\LuckyBlockWars\LuckyBlockWars version: Alpha author: Survingo api: [2.0.0] description: The MCPC mini-game Lucky Block Wars for your PocketMine server commands: lbw: permission: lbw.command aliases: ["luckyblockwars", "lucky-block-wars"] description: "All commands for...
b3ef86e6-ab71-41ae-8b33-5742bb1fbbea
{ "language": "YAML" }
```yaml # This configuration was generated by # `rubocop --auto-gen-config` # on 2017-06-06 16:33:49 -0400 using RuboCop version 0.35.1. # The point is for the user to remove these configuration records # one by one as the offenses are removed from the code base. # Note that changes in the inspected code, or installati...
```yaml # This configuration was generated by # `rubocop --auto-gen-config` # on 2017-07-11 13:25:18 -0400 using RuboCop version 0.49.1. # The point is for the user to remove these configuration records # one by one as the offenses are removed from the code base. # Note that changes in the inspected code, or installati...
472a23a8-339f-4e33-8982-96b4c8e10745
{ "language": "YAML" }
```yaml --- label: artwork hide_body: false is_partial: false fields: - name: date default: 2016-06-01 03:40:12 +0000 label: Date type: datetime hidden: false - name: featuredimage default: "/uploads/600-6.jpg" label: Featuredimage type: file hidden: false - name: title default: hola victor label: T...
```yaml --- label: artwork hide_body: false is_partial: false fields: - name: date default: 2016-06-01 03:40:12 +0000 label: Date type: datetime hidden: false - name: featuredimage default: "/uploads/600-6.jpg" label: Featuredimage type: file hidden: false - name: title default: hola victor label: T...
bcd39e09-64fa-43d0-b5f6-6f8b3ff93019
{ "language": "YAML" }
```yaml --- label: Gallery hide_body: true fields: - type: field_group_list name: Sp94 guide montage label: Sp94 guide montage fields: - type: file name: file label: file - type: text name: description label: description ``` Update from Forestry.io - Updated Forestry configuration
```yaml --- label: Gallery hide_body: true fields: - type: field_group_list name: Sp94 guide montage label: Sp94 guide montage fields: - type: file name: file label: File - type: text name: description label: Description config: required: true ```
209e01eb-e11a-4925-8c61-d3d2230cc378
{ "language": "YAML" }
```yaml Categories: - Theming License: GPL-3.0-only AuthorName: Joscha AuthorEmail: joscha.loos@rwth-aachen.de SourceCode: https://github.com/jooooscha/Olauncher IssueTracker: https://github.com/jooooscha/Olauncher/issues AutoName: Olauncher Clutter Free RepoType: git Repo: https://github.com/jooooscha/Olauncher B...
```yaml Categories: - Theming License: GPL-3.0-only AuthorName: Joscha AuthorEmail: joscha.loos@rwth-aachen.de SourceCode: https://github.com/jooooscha/Olauncher IssueTracker: https://github.com/jooooscha/Olauncher/issues AutoName: Olauncher Clutter Free RepoType: git Repo: https://github.com/jooooscha/Olauncher B...
ed13b321-e628-493c-abea-cc13854bd692
{ "language": "YAML" }
```yaml --- hide_body: false is_partial: false fields: - name: title label: Name type: text hidden: false default: '' - name: name_organization label: Organization Name type: text hidden: false default: - name: link label: Link type: text hidden: false default: - name: services label: Servic...
```yaml --- hide_body: true is_partial: false fields: - name: title label: Name type: text hidden: false default: '' - name: name_organization label: Organization Name type: text hidden: false default: - name: link label: Link type: text hidden: false default: - name: services label: Service...
ccc78b07-3c7b-4aeb-a265-dda31797ddcb
{ "language": "YAML" }
```yaml # See https://github.com/laminas/laminas-continuous-integration-action # Generates a job matrix based on current dependencies and supported version # ranges, then runs all those jobs name: "Continuous Integration" on: pull_request: push: jobs: matrix: name: Generate job matrix runs-on: ubuntu-la...
```yaml # See https://github.com/laminas/laminas-continuous-integration-action # Generates a job matrix based on current dependencies and supported version # ranges, then runs all those jobs name: "Continuous Integration" on: pull_request: push: jobs: matrix: name: Generate job matrix runs-on: ubuntu-la...
3e488055-2cc5-4d9d-b063-0053f92ac9f0
{ "language": "YAML" }
```yaml homepage: https://github.com/adinapoli/ekg-prometheus-adapter#readme changelog-type: '' hash: 0520a0f69668a1fcec80c7658e4489004b2f325ad86cf06f770d1e8670ef4d78 test-bench-deps: ekg-prometheus-adapter: -any base: -any maintainer: alfredo.dinapoli@gmail.com synopsis: Easily expose your EKG metrics to Prometheu...
```yaml homepage: https://github.com/adinapoli/ekg-prometheus-adapter#readme changelog-type: '' hash: cbf0120165198ee30c2d882b058e4ee2cc68f78ba0f85b1b8c546e0bb64096e9 test-bench-deps: ekg-prometheus-adapter: -any base: -any maintainer: alfredo.dinapoli@gmail.com synopsis: Easily expose your EKG metrics to Prometheu...
6fb0d791-3c20-4b7c-825f-d528797890ac
{ "language": "YAML" }
```yaml - hosts: localhost connection: local gather_facts: yes sudo: no roles: - hnakamur.osx-defaults - hnakamur.homebrew-packages - hnakamur.homebrew-cask-packages - hnakamur.osx-login-shell - hnakamur.oh-my-zsh - hnakamur.homebrew-path - hnakamur.osx-go - hnakamur.osx-vim ...
```yaml - hosts: localhost connection: local gather_facts: yes sudo: no roles: - hnakamur.osx-defaults - hnakamur.homebrew-packages - hnakamur.homebrew-cask-packages - hnakamur.osx-login-shell - hnakamur.oh-my-zsh - hnakamur.homebrew-path - hnakamur.osx-go - hnakamur.osx-vim ...
ff8c3b55-8ac2-469a-a733-f1668c9072b8
{ "language": "YAML" }
```yaml homepage: https://github.com/tonyday567/online#readme changelog-type: '' hash: f7dfa9796de226965a6ee137af4c6ffbd0181b919368f9869075361570825abc test-bench-deps: base: ! '>=4.7 && <5' doctest: -any protolude: -any tasty: -any maintainer: tonyday567@gmail.com synopsis: online statistics changelog: '' basi...
```yaml homepage: https://github.com/tonyday567/online#readme changelog-type: '' hash: bffa0f36cffb3b4cc360ffb9c07efdd6d8ce89557c14c2a55687b922f9c9806b test-bench-deps: base: ! '>=4.7 && <5' doctest: -any tasty: -any maintainer: tonyday567@gmail.com synopsis: online statistics changelog: '' basic-deps: tdigest:...
e7e56f33-646d-4e99-9937-a0a2dc5bd691
{ "language": "YAML" }
```yaml apiVersion: v2 name: traefik version: 7.1.0 appVersion: 2.2.0 description: A Traefik based Kubernetes ingress controller keywords: - traefik - ingress home: https://traefik.io/ sources: - https://github.com/containous/traefik maintainers: - name: emilevauge email: emile@vauge.com - name: dtomcej ...
```yaml apiVersion: v1 name: traefik version: 7.2.0 appVersion: 2.2.0 description: A Traefik based Kubernetes ingress controller keywords: - traefik - ingress home: https://traefik.io/ sources: - https://github.com/containous/traefik maintainers: - name: emilevauge email: emile@vauge.com - name: dtomcej ...
fd791e7e-b7f6-46ad-a0f0-c7cc17ad3020
{ "language": "YAML" }
```yaml --- engines: duplication: enabled: true config: languages: - php fixme: enabled: true phpmd: enabled: true phan: enabled: true config: file_extensions: "php" ignore-undeclared: true ratings: paths: - "**.php" exclude_paths: - tests/ - vendor/ ``` Disa...
```yaml --- engines: duplication: enabled: true config: languages: - php fixme: enabled: true phpmd: enabled: true checks: CleanCode/StaticAccess: enabled: false phan: enabled: true config: file_extensions: "php" ignore-undeclared: true ratings: ...
bdf41956-9c83-4b4f-a77d-7eae432ae39a
{ "language": "YAML" }
```yaml version: "2" plugins: rubocop: enabled: true checks: method-lines: enabled: true config: threshold: 40 exclude_patterns: - "test/" ``` Raise method complexity check threshold
```yaml version: "2" plugins: rubocop: enabled: true checks: method-lines: enabled: true config: threshold: 40 method-complexity: config: threshold: 40 exclude_patterns: - "test/" ```
cdf33678-7396-4095-83b2-8cc9b23899d8
{ "language": "YAML" }
```yaml engines: radon: enabled: true config: threshold: 'B' pep8: enabled: true ratings: paths: - "**.py" exclude_paths: - "tests/*" - "setup.py" ``` Add Comment of Code Climate dashboard URL
```yaml # https://www.codacy.com/app/gaujin/tornado-crontab/dashboard engines: radon: enabled: true config: threshold: 'B' pep8: enabled: true ratings: paths: - "**.py" exclude_paths: - "tests/*" - "setup.py" ```
b5e83f9d-2112-4893-b455-22dd24d43f4a
{ "language": "YAML" }
```yaml --- engines: scss-lint: enabled: true csslint: enabled: true duplication: enabled: true config: languages: - javascript eslint: enabled: true fixme: enabled: true nodesecurity: enabled: true ratings: paths: - "**.css" - "**.inc" - "**.js" - "**.jsx" ...
```yaml --- engines: scss-lint: enabled: true csslint: enabled: true duplication: enabled: true config: languages: - javascript eslint: enabled: true fixme: enabled: true nodesecurity: enabled: true ratings: paths: - "**.css" - "**.inc" - "**.js" - "**.jsx" ...
7ce4d1cc-3f66-4ac1-8c60-3ddfc50020cf
{ "language": "YAML" }
```yaml build: environment: python: 3.7.7 dependencies: override: - "pip install -r requirements.txt -r requirements-test.txt" nodes: analysis: tests: override: - js-scrutinizer-run - py-scrutinizer-run checks: python: duplicate_code: false ``` Enable cod...
```yaml build: environment: python: 3.7.7 dependencies: override: - "pip install -r requirements.txt -r requirements-test.txt" nodes: analysis: tests: override: - js-scrutinizer-run - py-scrutinizer-run coverage: tests: override: - co...
c0868da9-75ce-47d9-b0e4-8af280f70e00
{ "language": "YAML" }
```yaml driver: name: dokken privileged: true # because Docker and SystemD/Upstart chef_image: chef/chef chef_version: current transport: name: dokken provisioner: name: dokken verifier: name: inspec platforms: - name: centos-5 driver: image: centos:5 - name: centos-6 driver: image: cento...
```yaml driver: name: dokken privileged: true # because Docker and SystemD/Upstart chef_image: chef/chef chef_version: 12.12.15 transport: name: dokken provisioner: name: dokken verifier: name: inspec platforms: - name: centos-5 driver: image: centos:5 - name: centos-6 driver: image: cent...
6fcc0b9d-b7e5-4419-bb6b-a8b66730ea09
{ "language": "YAML" }
```yaml registration: main_module: modules.gen_sample_data.gen_sample_data tests: functional: - modules.gen_sample_data.gen_sample_data_tests.GenerateSampleQuizTestCase = 1 - modules.gen_sample_data.gen_sample_data_tests.GenerateSampleStudentsTestCase = 1 - modules.gen_sample_data.gen_sam...
```yaml registration: main_module: modules.gen_sample_data.gen_sample_data enabled: False enabled_for_tests: True tests: functional: - modules.gen_sample_data.gen_sample_data_tests.GenerateSampleQuizTestCase = 1 - modules.gen_sample_data.gen_sample_data_tests.GenerateSampleStudentsTestCase = ...
9e890831-5537-4f1a-9d1c-3a8b49b4470b
{ "language": "YAML" }
```yaml homepage: http://github.com/kowey/hakyll-convert changelog-type: '' hash: 332c47ce04f5ddfef0789c5c6266a68bcb48c87c936fbdf3016b972d18a5749f test-bench-deps: {} maintainer: Eric Kow <eric.kow@gmail.com> synopsis: Convert from other blog engines to Hakyll. changelog: '' basic-deps: bytestring: -any feed: -any ...
```yaml homepage: http://github.com/Minoru/hakyll-convert changelog-type: '' hash: a358d09fab9a239efe019adc0f14989cba7f0c13610fe5cd7d37d1d2d6edbee4 test-bench-deps: {} maintainer: Alexander Batischev <eual.jp@gmail.com> synopsis: Convert from other blog engines to Hakyll. changelog: '' basic-deps: bytestring: -any ...
11a9d674-5820-40ec-997e-29e9a11ad59c
{ "language": "YAML" }
```yaml releases: - {name: collectd, version: COLLECTD_VERSION} addons: - name: collectd jobs: - name: collectd release: collectd properties: collectd: config: | LoadPlugin df LoadPlugin disk LoadPlugin cpu LoadPlugin load LoadPlugin memory LoadPlugin...
```yaml releases: - {name: collectd, version: COLLECTD_VERSION} addons: - name: collectd jobs: - name: collectd release: collectd properties: collectd: space_id: SPACE_ID logging_token: LOGGING_TOKEN ```
16903276-8493-4fd5-a515-939ed3fa3769
{ "language": "YAML" }
```yaml homepage: '' changelog-type: '' hash: b1e5f260f8d13abb9d4c79a89830090b46940358fd3c4cf90bb8af55db4fd7e4 test-bench-deps: {} maintainer: Athan Clark <athan.clark@gmail.com> synopsis: Painfully simple URL deployment. changelog: '' basic-deps: exceptions: -any split: -any base: ! '>=4.8 && <5' text: -any ...
```yaml homepage: '' changelog-type: '' hash: ec5ff3c19c6f306f18d4344db1e3579f950dc2651c10e91a73ca4138d113385e test-bench-deps: {} maintainer: Athan Clark <athan.clark@gmail.com> synopsis: Painfully simple URL deployment. changelog: '' basic-deps: exceptions: -any split: -any base: ! '>=4.8 && <5' text: -any ...
97d879b1-8e49-45ea-8dd5-2c84236ed164
{ "language": "YAML" }
```yaml metricbeat.modules: - module: system metricsets: - cpu - diskio - memory - network - filesystem - fsstat #- process - process_summary - uptime filesystem.ignore_types: [nfs, smbfs, autofs, devtmpfs, devpts, hugetlbfs, tmpfs, sysfs, securityfs, cgro...
```yaml metricbeat.modules: - module: system metricsets: - cpu - diskio - memory - network - filesystem - fsstat #- process - process_summary - uptime filesystem.ignore_types: [nfs, smbfs, autofs, devtmpfs, devpts, hugetlbfs, tmpfs, sysfs, securityfs, cgro...
a9a78faf-cbbb-4fef-a538-daac14a72e6f
{ "language": "YAML" }
```yaml platform: linux params: # Params are set as environment variables when the run part is executed. # Here we use (()) notation to indicate that we're using a credhub secret. GOOGLE_JSON_ACCOUNT: ((terraform-ci-acc-tests-json)) GCLOUD_PROJECT: ((ci-test-project)) # Both resources are checked out as subdire...
```yaml platform: linux params: # Params are set as environment variables when the run part is executed. # Here we use (()) notation to indicate that we're using a credhub secret. GOOGLE_JSON_ACCOUNT: ((terraform-ci-acc-tests-json)) GCLOUD_PROJECT: ((ci-test-project)) GOOGLE_ORG: ((ci-test-org)) GOOGLE_BILL...
d73ce734-0ba0-41aa-803c-c018da2ecb51
{ "language": "YAML" }
```yaml - name: AUFS tools for Docker apt: pkg=aufs-tools state=installed - name: AppArmor tools for Docker apt: pkg=apparmor state=installed - name: Does the Docker apt file exist? command: test -f {{ docker_apt_file }} register: docker_apt_exists ignore_errors: true - name: Add Docker key shell: apt-ke...
```yaml - name: AUFS tools for Docker apt: pkg=aufs-tools state=installed - name: AppArmor tools for Docker apt: pkg=apparmor state=installed - name: Does the Docker apt file exist? command: test -f {{ docker_apt_file }} register: docker_apt_exists ignore_errors: true - name: Add Docker key shell: apt-ke...
bbc9bd39-99bd-4044-b005-e083ece40846
{ "language": "YAML" }
```yaml BlogBundle\Entity\Category: type: entity table: null repositoryClass: BlogBundle\Repository\CategoryRepository id: id: type: integer id: true generator: strategy: AUTO fields: title: type: string leng...
```yaml BlogBundle\Entity\Category: type: entity table: null repositoryClass: BlogBundle\Repository\CategoryRepository id: id: type: integer id: true generator: strategy: AUTO fields: title: type: string leng...
5b6454ff-9797-4e7e-a7b9-68931db75e8e
{ "language": "YAML" }
```yaml jobs: - name: acceptance_tests instances: 1 lifecycle: errand networks: - name: cf_private resource_pool: small_z1 templates: - name: acceptance-tests release: cf properties: acceptance_tests: admin_password: <%= ENV.fetch('CF_PASSWORD', 'admin') %> admin_user: <%=...
```yaml jobs: - name: acceptance_tests instances: 1 lifecycle: errand networks: - name: cf_private resource_pool: small_z1 templates: - name: acceptance-tests release: cf properties: acceptance_tests: admin_password: <%= ENV.fetch('CF_PASSWORD', 'admin') %> admin_user: <%=...
e1810a9d-795a-4537-a352-50a644549235
{ "language": "YAML" }
```yaml # Site settings title: Your awesome title email: your-email@domain.com description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in yo...
```yaml # Site settings title: Greg Jordan-Detamore email: greg@gregjd.com description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your f...
60a80ba0-1345-41a7-bb15-28df49c0ac98
{ "language": "YAML" }
```yaml # Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restar...
```yaml # Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restar...
0a6e8944-92a7-4219-84bd-f9038f7d6552
{ "language": "YAML" }
```yaml # Site settings title: Remembering Mandy Klyne email: mandy.klyne.memorial@gmail.com # baseurl: "" # Site hosted in top directory of specified host baseurl: "/Mandy_Klyne_memorial" # the subpath of your site, e.g. /blog #url: "http://yourdomain.com" # the base hostname & protocol for your site # Sidebar settin...
```yaml # Site settings title: Remembering Mandy Klyne email: mandy.klyne.memorial@gmail.com baseurl: "" # Site hosted in top directory of specified host # baseurl: "/Mandy_Klyne_memorial" # the subpath of your site, e.g. /blog #url: "http://yourdomain.com" # the base hostname & protocol for your site # Sidebar settin...
e66eba7f-c230-446f-ba40-2b260abac19b
{ "language": "YAML" }
```yaml package: name: byobu version: "5.92" source: fn: byobu_5.92.orig.tar.gz url: https://launchpad.net/byobu/trunk/5.92/+download/byobu_5.92.orig.tar.gz md5: 8fe94f12c1d2960523dba3b061bce051 build: number: 1 requirements: build: - ncurses - libevent - tmux run: - ncurses - lib...
```yaml package: name: byobu version: "5.98" source: fn: byobu_5.98.orig.tar.gz url: https://launchpad.net/byobu/trunk/5.98/+download/byobu_5.98.orig.tar.gz md5: 2e09c9d2f9e3b6e2953bd581b027239c build: number: 1 requirements: build: - newt - ncurses - libevent - tmux run: - newt...
a57ae937-354e-46df-aa1f-5661c4a2b964
{ "language": "YAML" }
```yaml {% set name = "pyfab" %} {% set version = "0.3.5" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyfab-{{ version }}.tar.gz sha256: fff612517cc3f24c23c0314bc115d7ba092c26b9a4823984b01d081926070960 build: number: 0 no...
```yaml {% set name = "pyfab" %} {% set version = "0.3.5" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyfab-{{ version }}.tar.gz sha256: fff612517cc3f24c23c0314bc115d7ba092c26b9a4823984b01d081926070960 build: number: 0 no...
188f91c2-5b26-433a-8118-8a598983c0e4
{ "language": "YAML" }
```yaml title: Dev.Opera markdown: kramdown kramdown: input: GFM auto_ids: true transliterated_header_ids: true use_coderay: true coderay: coderay_line_numbers: nil coderay_css: class permalink: /:categories/:title/ include: - '.htaccess' exclude: - 'node_modules' - 'Gruntfile.js' - 'package.json' - '...
```yaml title: Dev.Opera markdown: redcarpet permalink: /:categories/:title/ include: - '.htaccess' exclude: - 'node_modules' - 'Gruntfile.js' - 'package.json' - 'README.md' - '*.scss' # limit_posts: 150 ```
e45e5e78-a56e-471b-a317-1577f6cabe61
{ "language": "YAML" }
```yaml name: Your New Jekyll Site markdown: redcarpet pygments: true ``` Add permalink style and timezone
```yaml name: Your New Jekyll Site timezone: America/Chicago pygments: true permalink: /:title/ markdown: redcarpet```
be3daa0f-b219-4dc7-ac22-5d1e4c4419ca
{ "language": "YAML" }
```yaml # meta file for screen --- galaxy_info: author: Mischa ter Smitten company: Oefenweb.nl B.V. description: Set up (multiple) wordpress installations in Debian-like systems (using wp-cli) license: MIT min_ansible_version: 1.4 platforms: - name: Ubuntu versions: - lucid - prec...
```yaml # meta file for screen --- galaxy_info: author: Mischa ter Smitten company: Oefenweb.nl B.V. description: Set up (multiple) wordpress installations in Debian-like systems (using wp-cli) license: MIT min_ansible_version: 1.4 platforms: - name: Ubuntu versions: - lucid - prec...
c8cda41b-e428-40b0-9841-9ec5242cf599
{ "language": "YAML" }
```yaml galaxy_info: author: bartekrutkowski description: Xen Orchestra Appliance for FreeBSD/Linux company: "PixeWare LTD" license: license (BSD) min_ansible_version: 1.9 platforms: - name: FreeBSD versions: - 10.0 - 10.1 - 10.2 - 9.3 galaxy_tags: - freebsd - xenserver - xen ...
```yaml galaxy_info: author: bartekrutkowski description: Xen Orchestra Appliance for FreeBSD/Linux company: "PixeWare LTD" license: license (BSD) min_ansible_version: 1.9 platforms: - name: FreeBSD versions: - 10.0 - 10.1 - 10.2 - 9.3 - name: EL versions: - 7 galaxy_tags: ...
f774442d-3541-48cc-92f3-4e63acec95a5
{ "language": "YAML" }
```yaml env: # needed for cilium K3S_EXEC: '--flannel-backend=none --disable-network-policy' provision: # needs root to mount - mode: system script: | #!/bin/sh set -e # needed for cilium mount bpffs -t bpf /sys/fs/bpf mount --make-shared /sys/fs/bpf mkdir -p /run/ciliu...
```yaml env: # needed for cilium INSTALL_K3S_EXEC: '--flannel-backend=none --disable-network-policy' provision: # needs root to mount - mode: system script: | #!/bin/sh set -e # needed for cilium mount bpffs -t bpf /sys/fs/bpf mount --make-shared /sys/fs/bpf mkdir -p /r...
0324500d-5f00-4446-ae21-540ca83bf846
{ "language": "YAML" }
```yaml {% set name = "iolabs" %} {% set version = "3.2" %} {% set sha256 = "74c8dbc4cd4bfd5e01f8a2655455330cac81dd3de99a766630ecd0896b8be84b" %} package: name: iolabs version: {{version}} source: fn: ioLabs-3.2.tar.gz url: https://github.com/ioLab/python-ioLabs/archive/v{{ version }}.tar.gz sha256: {{ sha2...
```yaml {% set name = "iolabs" %} {% set version = "3.2" %} {% set sha256 = "74c8dbc4cd4bfd5e01f8a2655455330cac81dd3de99a766630ecd0896b8be84b" %} package: name: iolabs version: {{version}} source: fn: ioLabs-3.2.tar.gz url: https://github.com/ioLab/python-ioLabs/archive/v{{ version }}.tar.gz sha256: {{ sha2...
0758dfc5-d832-46d3-9831-72007c68ec5a
{ "language": "YAML" }
```yaml homepage: https://github.com/osa1/hsyslog-tcp#readme changelog-type: '' hash: d86314d6956fa6c9ca4321930930311c472aabc654600991b69d25adc7bea5f7 test-bench-deps: {} maintainer: omeragacan@gmail.com synopsis: syslog over TCP changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <5' time: -any hsyslo...
```yaml homepage: https://github.com/osa1/hsyslog-tcp#readme changelog-type: '' hash: 89cebd7de484df942645698022646d701facf9547d78ee284bfb87c9975e2d94 test-bench-deps: {} maintainer: omeragacan@gmail.com synopsis: syslog over TCP changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <5' time: -any hsyslo...
9633b857-0fef-4420-8251-ee7317331dcb
{ "language": "YAML" }
```yaml homepage: '' changelog-type: markdown hash: 34fcfda2c0e1784913bd51f4ce215f0b7ac33e37b02386132d9260982854fc22 test-bench-deps: {} maintainer: kazu@iij.ad.jp synopsis: Simple network runner library changelog: | # Revision history for network-run ## 0.0.0 * First version. basic-deps: bytestring: -any b...
```yaml homepage: '' changelog-type: markdown hash: e625dfb65dfefaae30309cc8e9761213cb246b38b2d8d17d20b44a5acdcc05df test-bench-deps: {} maintainer: kazu@iij.ad.jp synopsis: Simple network runner library changelog: | # Revision history for network-run ## 0.0.0 * First version. basic-deps: bytestring: -any b...
3810c8b5-5c91-4b85-9dae-685bd97280ff
{ "language": "YAML" }
```yaml test_duration: 240 stress_cmd: ["cassandra-harry -run-time 2 -run-time-unit HOURS"] n_db_nodes: 6 n_loaders: 1 n_monitor_nodes: 1 instance_type_db: 'i3.large' root_disk_size_loader: 80 # enlarge loader disk, cause of cassandra-harry operation.log that can't be disabled # nemesis_class_name: 'SisyphusMonkey'...
```yaml test_duration: 240 stress_cmd: ["cassandra-harry -run-time 2 -run-time-unit HOURS"] n_db_nodes: 6 n_loaders: 1 n_monitor_nodes: 1 instance_type_db: 'i3.large' root_disk_size_loader: 80 # enlarge loader disk, cause of cassandra-harry operation.log that can't be disabled nemesis_class_name: 'SisyphusMonkey' n...
405d8079-600b-4d73-8ddf-390cf19a2efa
{ "language": "YAML" }
```yaml homepage: http://darcs.redspline.com/safe-access changelog-type: '' hash: 6869708d3102ededf80055fee28ec5e03555aa89f3986f184da722a7ceeb1566 test-bench-deps: {} maintainer: tho.feron@gmail.com synopsis: A simple environment to control access to data changelog: '' basic-deps: base: ! '>=4.6 && <4.10' mtl: ! '>...
```yaml homepage: http://darcs.redspline.com/safe-access changelog-type: '' hash: 23cfe12c64aa2511b6030e63bbb165bcf3cdb5271454014438caf1aa2cd74c28 test-bench-deps: {} maintainer: tho.feron@gmail.com synopsis: A simple environment to control access to data changelog: '' basic-deps: base: ! '>=4.8 && <4.10' mtl: ! '>...
6459ac91-5eb9-432c-a4a5-fbbb3aedee78
{ "language": "YAML" }
```yaml --- machine: node: version: v6.2.2 test: post: - nyc report --reporter=text-lcov > coverage.lcov && bash <(curl -s https://codecov.io/bash) ``` Update node version for tests to reflect CLI version
```yaml --- machine: node: version: v7.10.0 test: post: - nyc report --reporter=text-lcov > coverage.lcov && bash <(curl -s https://codecov.io/bash) ```
1b0610ec-109c-44e2-aebb-6940846992c7
{ "language": "YAML" }
```yaml homepage: http://code.haskell.org/~bkomuves/ changelog-type: '' hash: 2afaf86ee35e188f7179ade4d796afeac1b11ba0af2df988689d74a7d57f4de2 test-bench-deps: {} maintainer: bkomuves (plus) hackage (at) gmail (dot) hu synopsis: Homogeneous tuples changelog: '' basic-deps: parsec2: -any base: ! '>=3 && <5' haskel...
```yaml homepage: http://code.haskell.org/~bkomuves/ changelog-type: '' hash: 2afaf86ee35e188f7179ade4d796afeac1b11ba0af2df988689d74a7d57f4de2 test-bench-deps: {} maintainer: bkomuves (plus) hackage (at) gmail (dot) hu synopsis: Homogeneous tuples changelog: '' basic-deps: parsec2: -any base: ! '>=3 && <5' haskel...
fd1e52bb-03c9-448e-86d6-891823758e32
{ "language": "YAML" }
```yaml homepage: https://github.com/atzedijkstra/logict-state changelog-type: '' hash: 4b5ae70cd6915d348fc41af3b6dddc58c7c52744e76e49cdfdc1efe61866558e test-bench-deps: {} maintainer: atzedijkstra@gmail.com synopsis: Library for logic programming based on haskell package logict changelog: '' basic-deps: logict: ! '>...
```yaml homepage: https://github.com/atzedijkstra/logict-state changelog-type: '' hash: 83d991ad011e7cbd646172c734f9e7bef8f2f31cad5eacda730a8837d10554a1 test-bench-deps: {} maintainer: atzedijkstra@gmail.com synopsis: Library for logic programming based on haskell package logict changelog: '' basic-deps: logict: '>=0...
0b1d35eb-9249-4a19-8e13-7af8e8f5759b
{ "language": "YAML" }
```yaml --- api_key: description: "The API key for OpsGenie." type: "string" secret: true required: true api_host: description: "The OpsGenie API host to use." type: "string" default: "https://api.opsgenie.com/" ``` Set required on api_host for ops_genie.
```yaml --- api_key: description: "The API key for OpsGenie." type: "string" secret: true required: true api_host: description: "The OpsGenie API host to use." type: "string" default: "https://api.opsgenie.com/" required: true ```
92cd8a23-a362-4626-b783-a241729ce119
{ "language": "YAML" }
```yaml Categories: - Internet License: GPL-3.0-only AuthorName: Thomas AuthorWebSite: https://fedilab.app/ SourceCode: https://framagit.org/tom79/fedilab-tube IssueTracker: https://framagit.org/tom79/fedilab-tube/issues Translation: https://crowdin.com/project/tubelab AutoName: TubeLab RepoType: git Repo: https://...
```yaml Categories: - Internet License: GPL-3.0-only AuthorName: Thomas AuthorWebSite: https://fedilab.app/ SourceCode: https://framagit.org/tom79/fedilab-tube IssueTracker: https://framagit.org/tom79/fedilab-tube/issues Translation: https://crowdin.com/project/tubelab AutoName: TubeLab RepoType: git Repo: https://...
ad69cfd2-1deb-46ee-8287-1fda467a69c6
{ "language": "YAML" }
```yaml version: '2' services: api: build: context: . dockerfile: ./Dockerfile.dev restart: always env_file: .env links: - postgres - redis ports: - $PORT:$PORT - '127.0.0.1:9229:9229' # V8 inspector volumes: - yarn:/root/.cache/yarn - ./:/usr/...
```yaml version: '2' services: api: build: context: . dockerfile: ./Dockerfile.dev env_file: .env links: - postgres - redis ports: - $PORT:$PORT - '127.0.0.1:9229:9229' # V8 inspector volumes: - yarn:/root/.cache/yarn - ./:/usr/src/app working_...
811f8f17-b796-4839-a091-675539740342
{ "language": "YAML" }
```yaml name: Ben Kantor avatar: bdk3079@rit.edu blog: http://benkantor.github.io/hfoss-blog feed: http://benkantor.github.io/hfoss-blog/feed email: bdk3079@rit.edu major: Software Engineering irc: benkantor rit_dce: bdk3079 forges: - https://github.com/benkantor - https://bitbucket.org/benkantor bio: Automate everyt...
```yaml name: Ben Kantor avatar: bdk3079@rit.edu blog: http://benkantor.github.io/hfoss-blog feed: http://benkantor.github.io/hfoss-blog/feed email: bdk3079@rit.edu major: Software Engineering irc: benkantor rit_dce: bdk3079 forges: - https://github.com/benkantor - https://bitbucket.org/benkantor bio: Automate everyt...
23f99f53-75e6-458d-9dad-f94b4faa2f4b
{ "language": "YAML" }
```yaml homepage: https://github.com/rcook/hgeos#readme changelog-type: '' hash: 93004326e239c264d2fc9b2ed7efef9d8329de1342688ae8680a0e5270429744 test-bench-deps: MissingH: -any base: ! '>=4.7 && <5' hgeos: -any maintainer: Richard Cook <rcook@rcook.org> synopsis: Simple Haskell bindings to GEOS C API changelog: ...
```yaml homepage: https://github.com/rcook/hgeos#readme changelog-type: '' hash: 77e899776670396075c165720d1c7217a0cb3278c8a75a9affe3858ba9bad42b test-bench-deps: MissingH: -any base: ! '>=4.7 && <5' hgeos: -any maintainer: Richard Cook <rcook@rcook.org> synopsis: Simple Haskell bindings to GEOS C API changelog: ...