doc_id
stringlengths
36
36
metadata
dict
input
stringlengths
28
4.3k
output
stringlengths
11
5.45k
f1a4a484-fb8f-44ac-95a0-efa82c39e3df
{ "language": "YAML" }
```yaml sudo: false language: python python: - "3.3" # ST3 uses this, but we're only running flake8 anyway install: - pip install flake8==3.3.0 script: - flake8 . ``` Add syntax testing to CI
```yaml sudo: false language: python python: - "3.3" # ST3 uses this internally, so we do as well for flake8 # branches: # except: # - /^v\d/ install: - pip install flake8==3.3.0 # fetch syntax testing binary - wget --content-disposition https://download.sublimetext.com/latest/dev/linux/x64/syntax_tes...
07036ae2-de08-490f-a553-b426d22c279c
{ "language": "YAML" }
```yaml language: python python: - "2.6" - "2.7" install: "pip install -r requirements.txt" script: nosetests ``` Switch to new build infrastructure
```yaml language: python python: - "2.6" - "2.7" install: "pip install -r requirements.txt" sudo: false script: nosetests ```
fda1b7a4-f66a-4883-a6cb-4cda0c793dc4
{ "language": "YAML" }
```yaml language: python python: - "3.2" - "3.3" - "3.4" - "3.5" - "3.6" # command to install dependencies install: - "pip install -r requirements.txt" - "pip install coveralls" # command to run tests script: - coverage run --source="classes/", "tests/" -m py.test after_success: - coveralls ``` Rewr...
```yaml language: python python: - "3.2" - "3.3" - "3.4" - "3.5" - "3.6" # command to install dependencies install: - "pip install -r requirements.txt" - "pip install coveralls" # command to run tests script: coverage run --source="classes" -m py.test after_success: coveralls ```
99f55050-7ae5-4965-81e9-b59b5b32fdc1
{ "language": "YAML" }
```yaml # 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 ...
```yaml # 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 ...
a8d06d0d-e91c-4695-b4f4-be6a3dccbe6d
{ "language": "YAML" }
```yaml language: go go: - 1.5.4 - 1.6.3 env: global: - GO15VENDOREXPERIMENT=1 matrix: - ES_VERSION=1.0.3 GROOVY_VER=2.0.0 - ES_VERSION=1.1.2 GROOVY_VER=2.0.0 - ES_VERSION=1.2.1 GROOVY_VER=2.2.0 - ES_VERSION=1.3.4 - ES_VERSION=1.4.4 - ES_VERSION=1.5.2 - ES_VERSION=1.6.0 - E...
```yaml language: go go: - 1.5.4 - 1.6.3 - 1.7.1 env: global: - GO15VENDOREXPERIMENT=1 matrix: - ES_VERSION=1.3.4 - ES_VERSION=1.4.4 - ES_VERSION=1.5.2 - ES_VERSION=1.6.0 - ES_VERSION=1.7.0 before_script: - mkdir ${HOME}/elasticsearch - wget https://download.elastic.co/elasticse...
fdd16442-6dd8-49a0-87e8-26c5d0a00aa1
{ "language": "YAML" }
```yaml --- language: node_js sudo: false cache: directories: - node_modules before_install: - "npm config set spin false" - "npm install -g npm@^2" install: - npm install -g bower - npm install - bower install script: - npm test ``` Use `ember try:testall` in Travis builds
```yaml --- language: node_js sudo: false cache: directories: - node_modules before_install: - "npm config set spin false" - "npm install -g npm@^2" install: - npm install -g bower - npm install - bower install script: - ember try:testall ```
cd5e7631-cb91-40fb-8c0b-f5945e7acebf
{ "language": "YAML" }
```yaml language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 env: global: - SYMFONY_PHPUNIT_DIR=$HOME/.phpunit-bridge matrix: fast_finish: true include: - php: 5.3 dist: precise - php: 7.1 env: COMPOSER_FLAGS="--prefer-lowest" SYMFONY_DEPRECATION_HELPER=weak - php: 5.6...
```yaml language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 env: global: - SYMFONY_PHPUNIT_DIR=$HOME/.phpunit-bridge matrix: fast_finish: true include: - php: 5.3 dist: precise - php: 7.1 env: COMPOSER_FLAGS="--prefer-lowest" SYMFONY_DEPRECATION_HELPER=weak - php: 5.6...
27c14c61-720d-44f1-894d-727206bf0c5e
{ "language": "YAML" }
```yaml sudo: false language: elixir elixir: - 1.6.0 - 1.5.0 - 1.4.0 - 1.3.0 jobs: include: - stage: deploy otp_release: 19.3 script: skip deploy: provider: script script: ./scripts/hexpub.sh skip_cleanup: true on: tags: true ``` Disable auto p...
```yaml sudo: false language: elixir elixir: - 1.6.0 - 1.5.0 - 1.4.0 - 1.3.0 #jobs: # include: # - stage: deploy # otp_release: 19.3 # script: skip # deploy: # provider: script # script: ./scripts/hexpub.sh # skip_cleanup: true # on: # tags: true ```
9adfab13-6234-4e48-835b-1e3b35be06e4
{ "language": "YAML" }
```yaml language: node_js node_js: - '0.10' - '4' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm install ``` B...
```yaml language: node_js node_js: - '0.10' - '4' - '7' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm instal...
69bc7b11-cc72-4802-a2f4-e91e233da6be
{ "language": "YAML" }
```yaml --- language: ruby rvm: - 1.8.7 - 1.9.3 - 2.0.0 env: - RAILS_VERSION="" - RAILS_VERSION="~>3.2.0" - RAILS_VERSION="~>3.1.0" - RAILS_VERSION="~>3.0.0" - RAILS_VERSION="~>4.0.0" - RAILS_VERSION="" MONETA_VERSION="~> 0.6.0" - RAILS_VERSION="" MONETA_VERSION="~> 0.7.0" matrix: exclude: - r...
```yaml --- language: ruby rvm: - 1.8.7 - 1.9.3 - 2.0.0 env: - RAILS_VERSION="" - RAILS_VERSION="~>3.2.0" - RAILS_VERSION="~>3.1.0" - RAILS_VERSION="~>3.0.0" - RAILS_VERSION="~>4.0.0" - RAILS_VERSION="~>4.1.0" - RAILS_VERSION="" MONETA_VERSION="~> 0.6.0" - RAILS_VERSION="" MONETA_VERSION="~> 0.7.0...
c2074028-7ff7-4d00-aef6-3ee7143f8cab
{ "language": "YAML" }
```yaml language: java sudo: false jdk: - oraclejdk7 install: "./installViaTravis.sh" script: "./buildViaTravis.sh" cache: directories: - "$HOME/.gradle/caches/" before_install: - test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_72c5bc9b2891_key -iv $encrypted_72c5bc9b2891_iv -in gradle.prop...
```yaml language: java sudo: false jdk: - oraclejdk7 install: "./installViaTravis.sh" script: "./buildViaTravis.sh" cache: directories: - "$HOME/.gradle/caches/" before_install: - test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_72c5bc9b2891_key -iv $encrypted_72c5bc9b2891_iv -in gradle.prop...
f8f52811-8e15-4b6e-a3e6-c72321837067
{ "language": "YAML" }
```yaml sudo: required dist: trusty language: rust rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly before_install: - sudo sh -c "echo 'deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.8 main' >> /etc/apt/sources.list" - wg...
```yaml sudo: required dist: trusty language: rust rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly before_install: - sudo sh -c "echo 'deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.8 main' >> /etc/apt/sources.list" - wg...
6083c670-9ef0-47d9-851f-6a9ad2de162d
{ "language": "YAML" }
```yaml language: python python: - "2.7" - "3.3" env: - DJANGO_VERSION=1.5.2 install: - pip install -q Django==$DJANGO_VERSION --use-mirrors - pip install coveralls --use-mirrors - pip install mock --use-mirrors - pip install south --use-mirrors - pip install nose script: - python se...
```yaml language: python python: - "2.7" - "3.3" - "pypy" env: - DJANGO_VERSION=1.5.2 install: - pip install -q Django==$DJANGO_VERSION --use-mirrors - pip install coveralls --use-mirrors - pip install mock --use-mirrors - pip install south --use-mirrors - pip install nose script: ...
d9b4a270-78ee-4898-828a-da662e905cbc
{ "language": "YAML" }
```yaml language: ruby script: "bundle exec rake ci" env: - TRAVIS=true rvm: - 1.9.3 - 2.0.0 - 2.1.2 - rbx-2 matrix: allow_failures: - rvm: rbx-2 notifications: irc: channels: - irc.freenode.org#mutant on_success: never on_failure: change ``` Remove RBX from allowed failures
```yaml language: ruby script: "bundle exec rake ci" env: - TRAVIS=true rvm: - 1.9.3 - 2.0.0 - 2.1.2 - rbx-2 notifications: irc: channels: - irc.freenode.org#mutant on_success: never on_failure: change ```
8073cef7-cb8d-4319-9c0e-8ef63a3d1d3e
{ "language": "YAML" }
```yaml language: ruby rvm: - jruby - 2.0.0 - 2.1 - 2.2 - 2.3.0 env: global: - JRUBY_OPTS="--2.0" gemfile: - Gemfile - gemfiles/active_record-rails40.gemfile - gemfiles/active_record-rails41.gemfile - gemfiles/active_record-rails42.gemfile before_script: - mysql -e 'create database sorcery_...
```yaml language: ruby rvm: - jruby - 2.0.0 - 2.1 - 2.2 - 2.3.0 env: global: - JRUBY_OPTS="--2.0" gemfile: - Gemfile - gemfiles/active_record-rails40.gemfile - gemfiles/active_record-rails41.gemfile - gemfiles/active_record-rails42.gemfile before_script: - mysql -e 'create database sorcery_...
f265edcc-901d-48bc-b717-db2c082eb3e9
{ "language": "YAML" }
```yaml language: java jdk: - oraclejdk8 sudo: required install: true script: mvn clean verify cache: directories: - $HOME/.m2``` Change jdk for tycho maven builds to jdk11
```yaml language: java jdk: - openjdk11 sudo: required install: true script: mvn clean verify cache: directories: - $HOME/.m2```
4a928e35-1d8c-4375-a337-bccc1e621cf0
{ "language": "YAML" }
```yaml language: go before_install: - go get -u github.com/golang/lint/golint - rvm install 2.0.0 - gem install danger - danger --verbose go: - tip ``` Use osx on travic ci since workflows always run on osx
```yaml os: - osx language: go before_install: - go get -u github.com/golang/lint/golint - rvm install 2.0.0 - gem install danger - danger --verbose go: - tip ```
c029a345-fc77-4d41-8786-bae4db6f2bf9
{ "language": "YAML" }
```yaml language: java matrix: include: - os: linux jdk: oraclejdk8 - os: linux services: - docker before_install: - docker pull ibmcom/ibmjava:8-sdk script: - docker run -v `pwd`:/work ibmcom/ibmjava:8-sdk /bin/sh -c "cd work; ./mvnw clean test" ``` Add java ...
```yaml language: java matrix: include: - os: linux jdk: oraclejdk8 - os: linux services: - docker before_install: - docker pull ibmcom/ibmjava:8-sdk script: - docker run -v `pwd`:/work ibmcom/ibmjava:8-sdk /bin/sh -c "cd work; java -version; ./mvnw clean test" ...
c1e12532-8b00-488d-b479-7a5ed69982a9
{ "language": "YAML" }
```yaml language: java before_install: cp -f .travis.settings.xml ~/.m2/settings.xml install: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -nsu jdk: - openjdk8 - openjdk9 - openjdk10 - openjdk11 - openjdk12 - openjdk13 ``` Update Travis config to add newer Java versions
```yaml language: java before_install: cp -f .travis.settings.xml ~/.m2/settings.xml install: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -nsu jdk: - openjdk8 - openjdk9 - openjdk10 - openjdk11 - openjdk12 - openjdk13 - openjdk14 - openjdk15 ```
9a341043-35ef-4154-88dc-bf6b086d26b7
{ "language": "YAML" }
```yaml language: cpp compiler: - gcc - clang branches: only: - master before_install: - git submodule update --init --recursive install: - sudo apt-get update -qq - sudo apt-get install -qq libqt4-dev libqt4-private-dev script: - ./build.sh ``` Migrate to container-based Travis infrastructure
```yaml language: cpp compiler: - gcc - clang branches: only: - master before_install: - git submodule update --init --recursive sudo: false addons: apt: packages: - libqt4-dev - libqt4-private-dev script: - ./build.sh ```
2b8c4517-1fe2-47e3-89f5-973cd40b319c
{ "language": "YAML" }
```yaml sudo: required dist: trusty language: java jdk: - openjdk7 - oraclejdk8 - oraclejdk10 env: - WLP_VERSION=18.0.0_01 WLP_LICENSE=L-CTUR-AVDTCN - WLP_VERSION=18.0.0_02 WLP_LICENSE=L-CTUR-AYBK6Z script: - travis_wait mvn verify -Ponline-its -Dinvoker.streamLogs=true -DwlpVersion=$WLP_VERSION -Dw...
```yaml sudo: required dist: trusty language: java jdk: - openjdk7 - oraclejdk8 - oraclejdk9 env: - WLP_VERSION=18.0.0_01 WLP_LICENSE=L-CTUR-AVDTCN - WLP_VERSION=18.0.0_02 WLP_LICENSE=L-CTUR-AYBK6Z script: - travis_wait mvn verify -Ponline-its -Dinvoker.streamLogs=true -DwlpVersion=$WLP_VERSION -Dwl...
59f97f2e-ddab-4e3b-b344-cb238fa39ec8
{ "language": "YAML" }
```yaml language: cpp compiler: - clang - gcc env: matrix: - CC=clang - CC=gcc notifications: irc: channels: - "irc.freenode.net#nupic-hackers" webhooks: http://issues.numenta.org:8081/travis before_install: - if [ "$CC" = "gcc" ]; then export CXX=g++; fi - if [ "$CC" = "clang" ]; th...
```yaml language: cpp compiler: - clang - gcc env: matrix: - CC=clang - CC=gcc notifications: irc: channels: - "irc.freenode.net#nupic-hackers" webhooks: http://issues.numenta.org:8081/travis before_install: - if [ "$CC" = "gcc" ]; then export CXX=g++; fi - if [ "$CC" = "clang" ]; th...
b1837328-78f3-42c9-9903-03caca79ff67
{ "language": "YAML" }
```yaml language: node_js node_js: - "0.11" - "0.10" ``` Test node v0.12 and io.js in Travis
```yaml language: node_js node_js: - "iojs" - "0.12" - "0.11" - "0.10" ```
22db24c8-c49f-4fa8-bbb9-c8d3a71b2acb
{ "language": "YAML" }
```yaml language: python python: - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.6" install: - pip install coverage - pip install codecov # Command to run tests script: - coverage run tests.py # Run coverage.io after_success: - bash <(curl -s https://codecov.io/bash) - codecov ``` Fix coverage...
```yaml language: python python: - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.6" install: - pip install 'coverage<4' - pip install codecov # Command to run tests script: - coverage run tests.py # Run coverage.io after_success: - bash <(curl -s https://codecov.io/bash) - codecov ```
b80f2ed7-fc11-45a4-9a21-e8241b116565
{ "language": "YAML" }
```yaml language: node_js node_js: - "0.10" script: make test REPORTER=spec # travis encrypt [subdomain]:[api token]@[room id] notifications: email: false campfire: rooms: secure: "ZFrIv0Gf8DkEOoq2IvmMAzr91Yc6une/FR2UlJ+rp2RBPbSglzpuM8Q6ktW6XsGaBe4QNsm1x5cxA1oSLtSzviIBSfsGnGwgOjAVEq9EPodv5XVn01BfKIzm1Z...
```yaml language: node_js node_js: - "0.10" script: make test REPORTER=spec # travis encrypt [subdomain]:[api token]@[room id] notifications: email: false slack: secure: U+RtmtVJEzEoZf+/VVuon9qNC4GXKzXoTqdYThP57ZTzqoDAJDnuZ/qUrMGrMYpYg38ikxtK3qJhBMfffzHXc3KS9hcA7Ay/yPz4QiCBMy3M9EBPWt8iGP6n2T3KUw4WG/hSBUtnJqm...
d4074d86-9304-4d83-bb09-36c9d53af7c5
{ "language": "YAML" }
```yaml language: android jdk: oraclejdk7 android: components: - build-tools-20.0.0 - android-20 - sysimg-20 - extra-android-support licenses: - android-sdk-license-bcbbd656 - android-sdk-license-5be876d5 - android-sdk-preview-license-52d11cd2 - '.*intel.+' after_success: - mvn cle...
```yaml language: android android: components: - tools - platform-tools - build-tools-25.0.2 - android-25 - extra-android-m2repository jdk: - oraclejdk8 ```
5b63e1e2-30fa-4b97-923b-cc38e690fe3d
{ "language": "YAML" }
```yaml language: python python: - '3.5' addons: postgresql: "9.4" install: - pip install -r requirements.txt - pip install coveralls services: - postgresql before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 # give xvfb some time to start - psql -c 'create database flask_test...
```yaml language: python python: - '3.5' addons: postgresql: "9.4" install: - pip install -r requirements.txt - pip install coveralls services: - postgresql before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 # give xvfb some time to start - psql -c 'create database flask_test...
45c1e32a-2dbd-4c97-9577-504ec21dfa6f
{ "language": "YAML" }
```yaml language: php php: - 5.3 - 5.4 - 5.5 before_install: - composer self-update - composer install --dev -n --prefer-source script: - ./vendor/bin/phpunit after_script: - CODECLIMATE_REPO_TOKEN=5eecaf38fad60eb4fd578e492b7cc4a877cb236802c1159dfa12ec15fb88e952 ./vendor/bin/test-reporter ``` Send cl...
```yaml language: php php: - 5.3 - 5.4 - 5.5 before_install: - composer self-update - composer install --dev -n --prefer-source script: - ./vendor/bin/phpunit after_script: - CODECLIMATE_REPO_TOKEN="5eecaf38fad60eb4fd578e492b7cc4a877cb236802c1159dfa12ec15fb88e952" ./vendor/bin/test-reporter --stdout >...
f5259ca0-c8cc-4a90-a5b0-a06653440567
{ "language": "YAML" }
```yaml language: python python: - "2.7" - "3.4" env: - DJANGO_VERSION=1.8.* - DJANGO_VERSION=1.9.* - DJANGO_VERSION=1.10.* - DJANGO_VERSION=1.11* install: - "pip install -r requirements.txt" - "pip install Django==$DJANGO_VERSION" script: "python src/runtests.py" sudo: false ``` Fix Django 1.11 Travis...
```yaml language: python python: - "2.7" - "3.4" env: - DJANGO_VERSION=1.8.* - DJANGO_VERSION=1.9.* - DJANGO_VERSION=1.10.* - DJANGO_VERSION=1.11a1 install: - "pip install -r requirements.txt" - "pip install Django==$DJANGO_VERSION" script: "python src/runtests.py" sudo: false ```
b5ae723a-877c-4075-abe6-6bcf249ec88d
{ "language": "YAML" }
```yaml language: java jdk: - oraclejdk7 cache: directories: - $HOME/.m2``` Enable javadoc to verify that doclint is happy
```yaml language: java jdk: - oraclejdk7 script: - mvn clean install -Dmaven.javadoc.skip=false cache: directories: - $HOME/.m2```
a0a2a6e1-7bfd-46e9-bb69-20103f4da9fb
{ "language": "YAML" }
```yaml language: elixir dist: bionic elixir: - "1.10.3" - "1.11.2" otp_release: 23.0 addons: apt: packages: - libzmq3-dev - libsqlite3-dev install: - pip install --user virtualenv - virtualenv ~/test_ielixir - source ~/test_ielixir/bin/activate - pip install pip --upgrade - pip instal...
```yaml language: elixir dist: bionic elixir: - "1.10.3" - "1.11.2" otp_release: 23.0 env: - PYTHON_VERSION=`which python2.7` - PYTHON_VERSION=`which python3.6` addons: apt: packages: - libzmq3-dev - libsqlite3-dev install: - pip install --user virtualenv - virtualenv -p $PYTHON_VERSION ...
4c169a1f-2085-4df4-83f2-f9c4f33338e2
{ "language": "YAML" }
```yaml dist: xenial language: python cache: pip python: - 3.6 - 3.7 - 3.8 - pypy3 env: - DJANGO=1.11 - DJANGO=2.2 - DJANGO=3.0 - DJANGO=master jobs: fast_finish: true allow_failures: - env: DJANGO=master include: - python: 3.6 env: TOXENV=qa - stage: deploy env: pyth...
```yaml dist: xenial language: python cache: pip python: - 3.6 - 3.7 - 3.8 - pypy3 env: - DJANGO=1.11 - DJANGO=2.2 - DJANGO=3.0 - DJANGO=master jobs: fast_finish: true allow_failures: - env: DJANGO=master include: - python: 3.6 env: TOXENV=qa - stage: deploy env: pyth...
f0447cdf-8976-46a9-be4b-5560d25ec10f
{ "language": "YAML" }
```yaml language: node_js node_js: - "0.11" - "0.10" ``` Test node v0.12 and io.js in Travis
```yaml language: node_js node_js: - "iojs" - "0.12" - "0.11" - "0.10" ```
58af321b-2aa7-45cb-9ab8-e18c87f4a12a
{ "language": "YAML" }
```yaml sudo: false language: node_js node_js: - "0.12" - "0.10" - "0.8" - "4" - "iojs" before_install: - "npm install -g npm@1.4.x" script: - "npm run test-travis" after_script: - "npm install coveralls@2.11.x && cat coverage/lcov.info | coveralls" matrix: fast_finish: true ``` Remove NPM hack and o...
```yaml sudo: false language: node_js node_js: - "0.12" - "0.10" - "4" - "iojs" script: - "npm run test-travis" after_script: - "npm install coveralls@2.11.x && cat coverage/lcov.info | coveralls" matrix: fast_finish: true ```
3d3510ce-2f61-43b5-8c20-9bd2ed118e57
{ "language": "YAML" }
```yaml # Make sure we run in the docker container sudo: false language: c dist: trusty addons: apt: sources: - ubuntu-toolchain-r-test packages: # Libraries needed to build cross compiler - libgmp-dev - libmpfr-dev # Needed to build the ISO ...
```yaml # Make sure we run in the docker container sudo: false language: c dist: trusty addons: apt: sources: - ubuntu-toolchain-r-test packages: # Libraries needed to build cross compiler - libgmp-dev - libmpfr-dev # Needed to build the ISO ...
83133d3f-0772-441d-a092-624421be5f06
{ "language": "YAML" }
```yaml sudo: false language: go go: - 1.9.x - 1.10.x - 1.11.x - 1.12.x - tip matrix: allow_failures: - go: tip install: - go get github.com/jonboulle/clockwork - go get github.com/onsi/ginkgo - go get github.com/onsi/gomega - go get github.com/pkg/errors - go get github.com/caio/go-tdigest...
```yaml sudo: false language: go go: - 1.11.x - 1.12.x - tip matrix: allow_failures: - go: tip env: - GO111MODULE=on go_import_path: github.com/airbrake/gobrake ```
9970b55b-d4ac-4065-a7de-86d35a059183
{ "language": "YAML" }
```yaml language: go go: - 1.4 env: global: - MYSQL_FLAVOR=MariaDB matrix: - MAKE_TARGET=unit_test - MAKE_TARGET=queryservice_test - MAKE_TARGET=small_integration_test - MAKE_TARGET=medium_integration_test - MAKE_TARGET=large_integration_test - MAKE_TARGET=java_vtgate_client_test -...
```yaml language: go env: global: - MYSQL_FLAVOR=MariaDB matrix: - MAKE_TARGET=unit_test - MAKE_TARGET=queryservice_test - MAKE_TARGET=small_integration_test - MAKE_TARGET=medium_integration_test - MAKE_TARGET=large_integration_test - MAKE_TARGET=java_vtgate_client_test - MAKE_TARGET...
7ccb8f7d-2dad-4bda-b275-c50546941e9a
{ "language": "YAML" }
```yaml language: node_js node_js: - "4" - "5" ``` Add nodejs-0.10, 0.12 to TravisCI targets
```yaml language: node_js node_js: - "0.10" - "0.12" - "4" - "5" ```
ad963358-f489-4c70-ba12-52d6bf20b1fd
{ "language": "YAML" }
```yaml language: python before_install: pip install tox script: tox ``` Split Travis tests per tox env.
```yaml language: python before_install: pip install tox env: - TOXENV=py27-A - TOXENV=py27-B script: tox -e $TOXENV ```
81d4ba60-c7df-47a2-8035-0bcb67d9efcd
{ "language": "YAML" }
```yaml language: java sudo: false matrix: include: - jdk: openjdk8 - jdk: oraclejdk8 - jdk: oraclejdk9 - jdk: oraclejdk10 - jdk: openjdk10 - jdk: openjdk11 - os: osx osx_image: xcode9.2 env: JAVA_HOME=$(/usr/libexec/java_home) script: ./build.sh -Dexist.autodeploy=off -Dtest.h...
```yaml language: java sudo: false matrix: include: - jdk: openjdk8 - jdk: oraclejdk8 - jdk: openjdk9 - jdk: oraclejdk9 - jdk: openjdk10 - jdk: oraclejdk10 - jdk: openjdk11 - os: osx osx_image: xcode9.2 env: JAVA_HOME=$(/usr/libexec/java_home) script: ./build.sh -Dexist.aut...
ca3f4b2a-917a-4b5e-b029-8ca7c6a186e5
{ "language": "YAML" }
```yaml language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 ``` Revert "JRuby env is failing on Travis, but works locally. Removing for now."
```yaml language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby ```
f96a72ff-4e83-4093-b665-eb29d42274f3
{ "language": "YAML" }
```yaml language: php php: - 5.5 - 5.5.9 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 - php: hhvm before_install: - cd .. - git clone https://github.com/neos/flow-development-collection.git - cd flow-development-collection - git checkout 2.0.0 - composer update --dev - composer ...
```yaml language: php php: - 5.5 - 5.5.9 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 - php: hhvm before_install: - cd .. - git clone https://github.com/neos/flow-development-collection.git - cd flow-development-collection - git checkout 2.0.0 - composer update - composer requir...
4f4e21c4-3928-48a5-8a2e-a36fd817a9da
{ "language": "YAML" }
```yaml language: python python: - "2.7" # command to install dependencies install: "pip install tox" # command to run tests script: make test ``` Create config.py before running make test
```yaml language: python python: - "2.7" # command to install dependencies install: "pip install tox" # command to run tests script: - cp config-example.py config.py - make test ```
ca11704e-07e9-45a8-addc-990ddd07c337
{ "language": "YAML" }
```yaml sudo: false language: node_js node_js: - '0.10' - '0.12' - '4' - '5.1' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls ``` Build with latest Node.js 5 on Travis CI.
```yaml sudo: false language: node_js node_js: - '0.10' - '0.12' - '4' - '5' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls ```
c261aded-d45b-466a-bf7b-53d043448b01
{ "language": "YAML" }
```yaml language: php branches: only: - master php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 before_script: - composer install script: - ./vendor/bin/codecept run --coverage-xml after_script: - ./vendor/bin/coveralls ``` Remove PHP 5.4 and 5.5 support from CI
```yaml language: php branches: only: - master php: - 5.6 - 7.0 - 7.1 before_script: - composer install script: - ./vendor/bin/codecept run --coverage-xml after_script: - ./vendor/bin/coveralls ```
bed23129-a60a-4d7f-8c31-a00dd0e22b4b
{ "language": "YAML" }
```yaml language: objective-c notifications: webhooks: urls: - https://webhooks.gitter.im/e/a7cbe520877895f3154a on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: true # default: false email:...
```yaml language: objective-c notifications: webhooks: urls: - https://webhooks.gitter.im/e/a7cbe520877895f3154a on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: true # default: false email:...
db7eeb62-7e2f-4124-a235-e8607ea2ecf6
{ "language": "YAML" }
```yaml language: python python: 3.6 # Ubuntu 18.04 dist: bionic # Command to install Python dependencies install: - pip install -r bin/requirements.txt # Command to run tests script: - cd bin/ && coverage run --include=./*.py --omit=tests/* -m unittest discover && rm -rf ../html_dev/coverage && coverage html --dir...
```yaml language: python python: 3.6 # Ubuntu 18.04 dist: bionic # Command to install Python dependencies install: - pip install -r bin/requirements.txt # Command to run tests script: - ./bin/test.sh # Deploy the development information website to Github Pages deploy: provider: pages skip_cleanup: true github...
520d0306-187e-428d-8891-e3a11c15262e
{ "language": "YAML" }
```yaml language: go go: - 1.7 - 1.8 - 1.9 - tip sudo: false install: - go get -t -d -v ./... - go get github.com/onsi/ginkgo/ginkgo - go get -u github.com/golang/lint/golint - go get -u github.com/modocache/gover - go get -u github.com/mattn/goveralls # optional dependencies - go get -u gith...
```yaml language: go go: - "1.8" - "1.9" - "1.10" - "tip" sudo: false install: - go get -t -d -v ./... - go get github.com/onsi/ginkgo/ginkgo - go get -u github.com/golang/lint/golint - go get -u github.com/modocache/gover - go get -u github.com/mattn/goveralls # optional dependencies - go ge...
eb8e10b4-aa93-4d6f-9964-bdc887f5e0a3
{ "language": "YAML" }
```yaml language: d d: - dmd-2.067.1 # - ldc-0.16.0 install: - sudo apt-get update -qq - sudo apt-get install -qq fglrx=2:8.960-0ubuntu1 opencl-headers script: # examples - dub run --build=coverage --compiler=${DC} :algebra -- 32 - dub run --build=coverage --compiler=${DC} :bp -- 32 # current compilers bo...
```yaml language: d d: - dmd # - ldc install: - sudo apt-get update -qq - sudo apt-get install -qq fglrx=2:8.960-0ubuntu1 opencl-headers script: # examples - dub run --build=coverage --compiler=${DC} :algebra -- 32 - dub run --build=coverage --compiler=${DC} :bp -- 32 # current compilers both dmd and ldc ...
27903194-e98b-49fd-9700-5b81c42a0b6b
{ "language": "YAML" }
```yaml language: ruby rvm: - ree - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode ``` Drop ree support for the moment.
```yaml language: ruby rvm: - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode ```
fc007dc3-ff44-46f1-983e-f9310cf84311
{ "language": "YAML" }
```yaml language: elixir services: - postgresql addons: postgresql: "9.4" elixir: - 1.4 - 1.3 otp_release: - 19.3 - 18.3 notifications: email: false sudo: false script: - mix test ``` Add OTP 20.0 to Travis matrix
```yaml language: elixir services: - postgresql addons: postgresql: "9.4" elixir: - 1.4 - 1.3 otp_release: - 20.0 - 19.3 - 18.3 notifications: email: false sudo: false script: - mix test ```
0cf54d04-2861-4bbd-8b19-a1136c0ff8b9
{ "language": "YAML" }
```yaml language: go go: - 1.0 - 1.1 - 1.2 - tip ``` Update Travis config, Go 1.0 not supported.
```yaml language: go go: - 1.1 - 1.2 - tip ```
937abb54-2a75-4598-ac7a-0d2fa1779035
{ "language": "YAML" }
```yaml version: '2.1' services: mongo: ports: - "27017:27017" restart: "no" redis: ports: - "6379:6379" restart: "no" solr: build: context: ./solr ports: - "8983:8983" volumes: - ./solr/config:/opt/solr/server/solr/ restart: "no" api: image: ope...
```yaml version: '2.1' services: mongo: ports: - "27017:27017" restart: "no" redis: ports: - "6379:6379" restart: "no" solr: build: context: ./solr ports: - "8983:8983" volumes: - ./solr/config:/opt/solr/server/solr/ restart: "no" api: image: ope...
89540a07-65de-4e36-a9e5-85ba86d28223
{ "language": "YAML" }
```yaml # Jenkins Security Scan # For more information, see: https://www.jenkins.io/doc/developer/security/scan/ name: Jenkins Security Scan on: push: branches: - master pull_request: types: [opened, synchronize, reopened] workflow_dispatch: jobs: security-scan: uses: jenkins-infra/jenkins-...
```yaml # Jenkins Security Scan # For more information, see: https://www.jenkins.io/doc/developer/security/scan/ name: Jenkins Security Scan on: push: branches: - master pull_request: types: [opened, synchronize, reopened] workflow_dispatch: jobs: security-scan: uses: jenkins-infra/jenkins-...
14127335-9018-41f4-88d3-eb0f8b4597fc
{ "language": "YAML" }
```yaml name: CI + Coverage Test on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - name: Checkout Krill uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Build and install Kri...
```yaml name: CI + Coverage Test on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - name: Checkout Krill uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Build and install Kri...
a9249de8-04b7-422d-aa2e-c8ba96a31a04
{ "language": "YAML" }
```yaml --- tmux_brew_packages: - name: tmux install_options: "with-utf8proc" - name: "reattach-to-user-namespace" tmux_tpm_repo: "https://github.com/tmux-plugins/tpm.git" tmux_tpm_dir: "{{ home_dir }}/.tmux/plugins/tpm" ``` Remove old tmux package flag
```yaml --- tmux_brew_packages: - name: tmux - name: "reattach-to-user-namespace" tmux_tpm_repo: "https://github.com/tmux-plugins/tpm.git" tmux_tpm_dir: "{{ home_dir }}/.tmux/plugins/tpm" ```
e6719b5e-076c-4236-b8fc-4f2bca328bef
{ "language": "YAML" }
```yaml image: golang:1.8 pipelines: default: - step: script: - go get -v github.com/spf13/cobra/cobra - go get -v - go build -o cli -v - go test ./... -v ``` Add get logrus from full path
```yaml image: golang:1.8 pipelines: default: - step: script: - go get -v github.com/spf13/cobra/cobra - go get -v github.com/Sirupsen/logrus - go test ./... -v ```
dbf51207-0dc1-42a9-8bd2-baf3042d9e45
{ "language": "YAML" }
```yaml name: "Build Gradle project" on: [push, workflow_dispatch] jobs: build: runs-on: ubuntu-latest env: GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }} strategy: matrix: java: [ 8, 9, 10, 11, 12, 13, 14, 15, 16, 17 ] name: Building on Java ${{ matrix.java...
```yaml name: "Build Gradle project" on: [push, workflow_dispatch] jobs: build: runs-on: ubuntu-latest env: GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }} strategy: matrix: java: [ 8, 9, 10, 11, 12, 13, 14, 15, 16, 17 ] name: Building on Java ${{ matrix.java...
c714fc42-b568-4bcf-a7f6-be9910f0430e
{ "language": "YAML" }
```yaml --- - name: Install packages become: yes apt: name={{item}} state=installed with_items: - fonts-powerline - git-core - zsh - name: Change user's shell to zsh shell: chsh {{ username_on_the_host.stdout }} --shell `which zsh` become: yes # Install oh-my-zsh, forcing it to think that the sh...
```yaml --- - name: Install packages become: yes apt: name={{item}} state=installed with_items: - fonts-powerline - git-core - zsh - name: Change user's shell to zsh shell: chsh {{ username_on_the_host.stdout }} --shell `which zsh` become: yes ```
0e798619-7f1b-475a-b55f-1e3d90a1b1ea
{ "language": "YAML" }
```yaml on: - push - pull_request jobs: ci: runs-on: ubuntu-latest strategy: matrix: toolchain: - stable - nightly steps: - run: sudo apt install libfuse-dev - uses: actions/checkout@v2 with: submodules: true - uses: actions-rs/too...
```yaml on: - push - pull_request jobs: ci: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: - ubuntu-latest - macos-latest - windows-latest toolchain: - stable - nightly steps: - if: ${{ runner.os == ...
21f72d02-e258-4fcb-a3c6-81625796043a
{ "language": "YAML" }
```yaml name: CI on: push: branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Setup java uses: actions/setup-java@v1 with: java-version: '1.8' - name: Run maven verify run: ./mvnw verify ``` Ch...
```yaml name: CI on: push: branches: [ main ] jobs: build: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Setup java uses: actions/setup-java@v1 with: java-version: '1.8' - name: Run maven verify run: ./mvnw verify ```
d29e8de3-9cff-47e5-87ca-dc8d7bcf8a05
{ "language": "YAML" }
```yaml name: "Continuous Integration" on: push: branches: [ master ] pull_request: branches: [ master ] jobs: macos: name: macOS runs-on: macos-latest steps: - name: Checkout repository uses: actions/checkout@v2 - name: Install dependencies run: brew install macfuse ...
```yaml name: "Continuous Integration" on: push: branches: [ master ] pull_request: branches: [ master ] jobs: macos: name: macOS runs-on: macos-latest steps: - name: Checkout repository uses: actions/checkout@v2 with: submodules: recursive - name: Install depen...
1cc36006-5059-486c-8f77-e970ca4fa9f3
{ "language": "YAML" }
```yaml name: "Unit tests" on: pull_request: branches: - "master" push: branches: - "master" jobs: unit-test: name: "Unit tests" runs-on: "ubuntu-20.04" strategy: matrix: php-version: - "7.4" ...
```yaml name: "Unit tests" on: pull_request: branches: - "master" push: branches: - "master" jobs: unit-test: name: "Unit tests" runs-on: "ubuntu-20.04" strategy: matrix: php-version: - "7.4" ...
26b3653e-6557-4e7c-ad5c-c0e9f45e3eb1
{ "language": "YAML" }
```yaml --- - shell: source ~/.nvm/nvm.sh && dirname $(which node) register: node_path args: executable: /bin/bash - npm: name={{ item }} global=yes state=present executable="{{node_path.stdout}}/npm" with_items: - node-check-updates - pm2 - commitizen - resin-cli environment: PATH: "{{ ansible...
```yaml --- - shell: source ~/.nvm/nvm.sh && dirname $(which node) register: node_path args: executable: /bin/bash - npm: name={{ item }} global=yes state=present executable="{{node_path.stdout}}/npm" with_items: - npm-check-updates - pm2 - commitizen - resin-cli environment: PATH: "{{ ansible_...
ab72b742-5e40-4c35-b570-5fad41b9746d
{ "language": "YAML" }
```yaml --- engines: csslint: enabled: true duplication: enabled: true config: languages: - ruby - javascript - python - php exclude_paths: - "tests/*" eslint: enabled: true fixme: enabled: true radon: enabled: true ratings: paths: - "**.css"...
```yaml --- engines: csslint: enabled: true duplication: enabled: true config: languages: - ruby - javascript - python - php exclude_paths: - "tests/*" eslint: enabled: true fixme: enabled: true radon: enabled: true ratings: paths: - "**.css"...
4be8142a-4b5e-4af5-a7b6-484559e5f909
{ "language": "YAML" }
```yaml imports: - php filter: excluded_paths: - 'bin/*' - 'vendor/*' - 'features/*' - 'spec/*' - 'tests/*' before_commands: - composer install --prefer-source --dev --optimize-autoloader --no-interaction tools: php_sim: true php_cpd: false # PHP Code Sniffer php_code_sniffer: ...
```yaml imports: - php filter: excluded_paths: - 'bin/*' - 'vendor/*' - 'features/*' - 'spec/*' - 'tests/*' before_commands: - composer install --prefer-source --dev --optimize-autoloader --no-interaction tools: php_sim: true php_cpd: false # PHP Code Sniffer php_code_sniffer: ...
0822e9b6-7e7a-444a-8440-5f193e6ee6fd
{ "language": "YAML" }
```yaml --- galaxy_info: author: Sébastien Han description: Installs Ceph Mirror Agent license: Apache min_ansible_version: 2.3 platforms: - name: Ubuntu versions: - xenial - name: EL versions: - 7 categories: - system dependencies: [] ``` Add support for openSUSE Le...
```yaml --- galaxy_info: author: Sébastien Han description: Installs Ceph Mirror Agent license: Apache min_ansible_version: 2.3 platforms: - name: Ubuntu versions: - xenial - name: EL versions: - 7 - name: opensuse versions: - 42.3 categories: - syst...
08fd48e3-9c54-417f-a5b4-c5c4d49168ac
{ "language": "YAML" }
```yaml title: Visitor pages: false options: preview: false status: false template: false update: true url: false icon: user files: false fields: title: label: Title type: text width: 1/2 lang: label: Lang type: text width: 1/4 window_size: label: Width×Height of browser ...
```yaml title: Visitor pages: false options: preview: false status: false template: false update: true url: false icon: user files: false fields: title: label: Title type: text width: 1/2 lang: label: Lang type: text width: 1/4 window_size: label: Width×Height of browser ...
2fdb9f7e-8251-4bae-8fa5-3d1a88b71837
{ "language": "YAML" }
```yaml --- # Copyright 2014, Rackspace US, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or ag...
```yaml --- # Copyright 2014, Rackspace US, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or ag...
20ed5a9d-d7f3-4151-86af-7c1dd2ea3d3f
{ "language": "YAML" }
```yaml {% set name = "pymix" %} {% set version = "0.8" %} {% set md5 = "4e2b7db99251d9ce6d0527528224a45b" %} source: fn: {{ name }}-{{ version }}a.tar.gz md5: {{ md5 }} url: http://www.pymix.org/{{ name }}-{{ version }}a.tar.gz patches: - setup.py.patch build: number: 0 skip: True # [not py27] packa...
```yaml {% set name = "pymix" %} {% set version = "0.8" %} {% set md5 = "4e2b7db99251d9ce6d0527528224a45b" %} source: fn: {{ name }}-{{ version }}a.tar.gz md5: {{ md5 }} url: http://www.pymix.org/{{ name }}-{{ version }}a.tar.gz patches: - setup.py.patch build: number: 0 skip: True # [not py27] packa...
2383560e-15c0-4d55-be08-fc55d80e86e1
{ "language": "YAML" }
```yaml variants: experimental: CONFIG: experimental GO_VERSION: 1.13.6 K8S_RELEASE: stable BAZEL_VERSION: 0.28.1 UPGRADE_DOCKER: 'true' master: CONFIG: master GO_VERSION: 1.13.6 K8S_RELEASE: stable BAZEL_VERSION: 0.23.2 '1.18': CONFIG: '1.18' GO_VERSION: 1.13.6 K8S...
```yaml variants: experimental: CONFIG: experimental GO_VERSION: 1.13.6 K8S_RELEASE: stable BAZEL_VERSION: 0.28.1 UPGRADE_DOCKER: 'true' master: CONFIG: master GO_VERSION: 1.13.6 K8S_RELEASE: stable BAZEL_VERSION: 0.23.2 '1.18': CONFIG: '1.18' GO_VERSION: 1.13.6 K8S...
3e78a3f7-3fea-4a00-8942-ec153771c54d
{ "language": "YAML" }
```yaml # Override these variables # to change the base directory # where edX is installed COMMON_BASE_DIR: /edx COMMON_DATA_DIR: "{{ COMMON_BASE_DIR}}/var" COMMON_APP_DIR: "{{ COMMON_BASE_DIR}}/app" COMMON_LOG_DIR: "{{ COMMON_DATA_DIR }}/log" # these directories contain # symlinks for convenience COMMON_BIN_DIR: "{...
```yaml # Override these variables # to change the base directory # where edX is installed COMMON_BASE_DIR: /edx COMMON_DATA_DIR: "{{ COMMON_BASE_DIR}}/var" COMMON_APP_DIR: "{{ COMMON_BASE_DIR}}/app" COMMON_LOG_DIR: "{{ COMMON_DATA_DIR }}/log" # these directories contain # symlinks for convenience COMMON_BIN_DIR: "{...
ae1d4917-c58d-46fd-8682-405e31c6a9e9
{ "language": "YAML" }
```yaml --- engines: brakeman: enabled: true bundler-audit: enabled: true duplication: enabled: true config: languages: - ruby - javascript - python - php eslint: enabled: true config: config: .eslintrc.js checks: import/extensions: e...
```yaml --- engines: brakeman: enabled: true bundler-audit: enabled: true duplication: enabled: true config: languages: ruby: javascript: mass_threshold: 60 eslint: enabled: true config: config: .eslintrc.js checks: import/extensions: ...
1f5be94e-11e5-444b-801c-d34b6c79aa1a
{ "language": "YAML" }
```yaml --- wall_channel: 1 marker_channel: 0 surface_percentile: 95 wall_percentile_filter_percentile: 95 wall_percentile_filter_size: 2 wall_zabove: -2 wall_zbelow: 6 wall_threshold_adaptive_block_size: 51 wall_remove_small_objects_in_cell_min_size: 5 wall_remove_small_objects_in_wall_min_size: 50 wall_erode_step: Tr...
```yaml --- wall_channel: 1 marker_channel: 0 surface_percentile: 95 wall_percentile_filter_percentile: 95 wall_percentile_filter_size: 2 wall_zabove: -2 wall_zbelow: 6 wall_threshold_adaptive_block_size: 151 wall_remove_small_objects_in_cell_min_size: 30 wall_remove_small_objects_in_wall_min_size: 50 wall_erode_step: ...
21a33b43-8c2b-436d-982d-935f3e0f1d4d
{ "language": "YAML" }
```yaml # Site settings email: extension.institucional@madrid.es description: > Software libre para participación ciudadana. Inteligencia colectiva y democracia directa digital para ciudades inteligentes. Abriendo gobiernos. baseurl: "" url: "http://www.consulproject.org/" twitter_username: abriendomadrid github_user...
```yaml # Site settings email: extension.institucional@madrid.es description: > Software libre para participación ciudadana. Inteligencia colectiva y democracia directa digital para ciudades inteligentes. Abriendo gobiernos. baseurl: "" url: "http://www.consulproject.org/" twitter_username: abriendomadrid github_user...
4b24b8d1-eb35-42db-91bf-76cbec9b8d9a
{ "language": "YAML" }
```yaml # Permalinks # # Use of `relative_permalinks` ensures post links from the index work properly. permalink: pretty relative_permalinks: true # Setup title: Nicholas Blair tagline: 'Software Engineer' url: http://nblair.github.io baseurl: '' paginate...
```yaml permalink: pretty # Setup title: Nicholas Blair tagline: 'Software Engineer' url: http://nblair.github.io baseurl: '' paginate: 5 # Assets # # We specify the directory for Jekyll so we can use @imports. sass: sass_dir: _sass...
90c9bf38-d652-48ff-8fde-739b4c42fc44
{ "language": "YAML" }
```yaml permalink: /articles/:title # Use the port config option to determine if we're in prod or dev # anything other than port 80 is assumed to be dev port: 80 url: http://philipwalton.github.io/solved-by-flexbox markdown: rdiscount pygments: true exclude: - config.rb - README.md - Rakefile - Gemfile - Gemfile.loc...
```yaml permalink: /articles/:title # Use the port config option to determine if we're in prod or dev # anything other than port 80 is assumed to be dev port: 80 url: http://philipwalton.github.io/solved-by-flexbox markdown: rdiscount pygments: true exclude: - config.rb - README.md - Rakefile - Gemfile - Gemfile.loc...
40ed9f71-a7ca-408b-beba-69b84577e52c
{ "language": "YAML" }
```yaml name: "hikari" description: "Fluid, responsive blog theme for Jekyll" author: "John Doge" url: "http://m3xm.github.io" baseurl: /hikari-for-Jekyll markdown: rdiscount permalink: :year/:month/:title.html pygments: true # Google Analytics ga_domain: m3xm.github.io ga_tracking_id: UA-47727049-1 ``` Set baseur...
```yaml name: "hikari" description: "Fluid, responsive blog theme for Jekyll" author: "John Doge" url: "http://m3xm.github.io" baseurl: "" markdown: rdiscount permalink: :year/:month/:title.html pygments: true # Google Analytics ga_domain: m3xm.github.io ga_tracking_id: UA-47727049-1 ```
7aec2b1f-b46c-4daf-aa39-486b6cf4b6bc
{ "language": "YAML" }
```yaml # Site settings title: Bastien Bourdon description: 'My personal website - I blog about tech, web development, data science, startup life, and thoughts on about anything from music to finance' url: 'https://bastien-brd.github.io' baseurl: '/' google_analytics: 'UA-84007943-1' # disqus_shortname: 'your-disqus-na...
```yaml # Site settings title: Bastien Bourdon description: 'Trying to give back to the community - I write about tech, web development, data science, and leassons learned from the startup life' url: 'https://bastien-brd.github.io' baseurl: '/' google_analytics: 'UA-84007943-1' # disqus_shortname: 'your-disqus-name' a...
109ba6a6-7f15-4297-b474-9c792f5ce0fa
{ "language": "YAML" }
```yaml name: Your New Jekyll Site description: Blogging about stuffs meta_description: "Your New Jekyll Site, Blogging about stuffs" markdown: kramdown highlighter: rouge logo: false paginate: 15 baseurl: / domain_name: 'http://yourblog-domain.com' google_analytics: 'UA-XXXXXXXX-X' gems: [jekyll-paginate] # Details ...
```yaml name: Your New Jekyll Site description: Blogging about stuffs meta_description: "Your New Jekyll Site, Blogging about stuffs" markdown: kramdown highlighter: rouge logo: false paginate: 15 baseurl: /kasper domain_name: 'http://yourblog-domain.com' google_analytics: 'UA-XXXXXXXX-X' gems: [jekyll-paginate] # De...
bc568c39-2c28-446a-9d30-d5629cfe15f1
{ "language": "YAML" }
```yaml name: "Brandon Amos: Blog" description: The personal blog of Brandon Amos url: http://bamos.github.io destination: ./_site lsi: false port: 4000 pygments: true markdown: maruku permalink: pretty paginate: 5 maruku: use_tex: false use_divs: false png_dir: images/latex/ png_...
```yaml name: "Brandon Amos: Blog" description: The personal blog of Brandon Amos url: http://bamos.io destination: ./_site lsi: false port: 4000 pygments: true markdown: kramdown permalink: pretty paginate: 5 ```
90151ece-4703-4bd7-b7d4-30560aaf10c9
{ "language": "YAML" }
```yaml # visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings paginate: 10 # pagination based on number of posts paginate_path: "page:num" exclude: ["README.md"] # files to exclude highlighter: true markdown: kramdown defaults: - scope: path: "" # empty string for all files v...
```yaml # visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings paginate: 10 # pagination based on number of posts paginate_path: "page:num" exclude: ["README.md"] # files to exclude highlighter: pygments markdown: kramdown defaults: - scope: path: "" # empty string for all files ...
ee1c5a1d-694c-444d-aced-e72eb11fa60c
{ "language": "YAML" }
```yaml --- title: Choose a License description: Non-judgmental guidance on choosing a license for your open source project relative_permalinks: false markdown: kramdown url: "https://choosealicense.com" collections: licenses: output: true permalink: /licenses/:path/ defaults: - scope: path: "" ...
```yaml --- title: Choose a License description: Non-judgmental guidance on choosing a license for your open source project relative_permalinks: false markdown: kramdown url: "https://choosealicense.com" collections: licenses: output: true permalink: /licenses/:path/ defaults: - scope: path: "" ...
62c6c0cf-3326-4cdf-bf74-43ff604a72c2
{ "language": "YAML" }
```yaml # Your presentation title title: Jekyll and Reveal.js # The Reveal theme reveal_theme: ncc.css # The Reveal transition reveal_transition: default # Path to the used theme (defaults to the Reveal.js standard theme path) reveal_theme_path: reveal.js/css/theme/ # Embed Server-side speaker notes? reveal_notes_...
```yaml # Your presentation title title: Docker - Security Myths, Security Legends # The Reveal theme reveal_theme: ncc.css # The Reveal transition reveal_transition: default # Path to the used theme (defaults to the Reveal.js standard theme path) reveal_theme_path: reveal.js/css/theme/ # Embed Server-side speaker...
f10b9dae-1e42-48c7-afae-0def296d3e2c
{ "language": "YAML" }
```yaml --- version: 2 sphinx: configuration: docs/conf.py python: version: 3.7 install: - method: pip path: . ``` Update RTD to newer Python
```yaml --- version: 2 sphinx: configuration: docs/conf.py python: version: 3.9 install: - method: pip path: . ```
4ac8cbe5-0287-4a91-b0e1-588bdc8a1065
{ "language": "YAML" }
```yaml name: paradrop version: 0.1.0 vendor: Paradrop Labs <snappy-devel@lists.ubuntu.com> icon: meta/hello.png type: framework frameworks: - docker # binaries: # - name: bin/pd # security-policy: # apparmor: meta/pd.apparmor # seccomp: meta/pd.seccomp binaries: - name: bin/dnsmasq descripti...
```yaml name: paradrop version: 0.1.0 vendor: Paradrop Labs <snappy-devel@lists.ubuntu.com> icon: meta/hello.png type: framework frameworks: - docker # binaries: # - name: bin/pd # security-policy: # apparmor: meta/pd.apparmor # seccomp: meta/pd.seccomp binaries: - name: bin/dnsmasq descripti...
fb54c694-ecad-4620-ac06-fa8dd0c23c8d
{ "language": "YAML" }
```yaml --- gw_network: 192.168.2.0 dhcp_self: 192.168.2.1 dhcp_lower: 192.168.2.2 dhcp_upper: 192.168.2.200 domain: texsaw domain_address: 10.176.169.100 hostname: cardboard dns_SOA: 2016110401 int_if: bge0 ext_if: re0 boot_fname: boot_next: ntp: - pool.ntp.org staticHosts: wap: mac: 44:94:fc:39:50:ea ...
```yaml --- gw_network: 192.168.2.0 dhcp_self: 192.168.2.1 dhcp_lower: 192.168.2.2 dhcp_upper: 192.168.2.200 domain: texsaw domain_address: 10.176.169.100 hostname: cardboard dns_SOA: 2016110401 int_if: bge0 ext_if: re0 boot_fname: boot_next: ntp: - pool.ntp.org staticHosts: wap: mac: 44:94:fc:39:50:ea ...
984363b5-ff5c-43f9-8a61-0551776b2010
{ "language": "YAML" }
```yaml Categories: - Development License: MIT AuthorName: Release Standard SourceCode: https://github.com/ReleaseStandard/ScriptManager IssueTracker: https://github.com/ReleaseStandard/ScriptManager/issues Changelog: https://github.com/ReleaseStandard/ScriptManager/releases Donate: https://www.paypal.com/paypalme/Re...
```yaml Categories: - Development License: MIT AuthorName: Release Standard SourceCode: https://github.com/ReleaseStandard/ScriptManager IssueTracker: https://github.com/ReleaseStandard/ScriptManager/issues Changelog: https://github.com/ReleaseStandard/ScriptManager/releases Donate: https://www.paypal.com/paypalme/Re...
3e07708e-a80d-4eeb-b340-e6e37cb0c0ca
{ "language": "YAML" }
```yaml --- # This play is called during upgrade_control_plane via post_control_plane.yml - name: Upgrade default router and default registry hosts: oo_first_master roles: - lib_utils - openshift_facts tasks: - import_role: name: openshift_hosted tasks_from: upgrade_routers.yml - import_role: ...
```yaml --- # This play is called during upgrade_control_plane via post_control_plane.yml - name: Upgrade default router and default registry hosts: oo_first_master roles: - lib_utils - openshift_facts tasks: - import_role: name: openshift_hosted tasks_from: upgrade_routers.yml when: openshi...
6265441c-6a1f-4c95-9db6-4c5b8651f9ff
{ "language": "YAML" }
```yaml name: CI on: # Trigger the workflow on push or pull request, # but only for the master branch push: branches: - master pull_request: branches: - master jobs: test: name: Test runs-on: ${{ matrix.os }} strategy: matrix: build: [linux, macos, windows] ...
```yaml name: CI on: # Trigger the workflow on push or pull request, # but only for the master branch push: branches: - master pull_request: branches: - master jobs: test: name: Test runs-on: ${{ matrix.os }} strategy: matrix: build: [linux, macos, windows] ...
f0e6c2bd-f667-4240-866e-a0c44faa2564
{ "language": "YAML" }
```yaml # Copyright 2019-2020 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
```yaml # Copyright 2019-2020 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to...
d6c242f9-6f8c-42b0-934e-e7721cc862a0
{ "language": "YAML" }
```yaml testing: build: image: testing dockerfile_path: ./Dockerfile.testing cached: true``` Use version 2 for testing service
```yaml version: '2' services: testing: image: testing dockerfile_path: ./Dockerfile.testing```
09f0c66c-a81d-49f7-9cc6-32d7163ad5da
{ "language": "YAML" }
```yaml package: name: openmpi version: 1.8.8 about: home: http://www.open-mpi.org/ summary: 'Open MPI: A high performance message passing library' license: 'BSD (https://www.open-mpi.org/community/license.php)' requirements: conflicts: - mpich - mpich2 source: fn: openmpi-1.8.7.tar.bz2 url: ...
```yaml package: name: openmpi version: 1.10.0 about: home: http://www.open-mpi.org/ summary: 'Open MPI: A high performance message passing library' license: 'BSD (https://www.open-mpi.org/community/license.php)' requirements: conflicts: - mpich - mpich2 source: fn: openmpi-1.10.0.tar.bz2 url...
24246232-dcf2-440d-8e5b-672712325800
{ "language": "YAML" }
```yaml sns: image: alicefuzier/fake-sns ports: - "9292:9292" sqs: image: s12v/elasticmq ports: - "9324:9324" elasticsearch: image: docker.elastic.co/elasticsearch/elasticsearch:5.4.0 ports: - "9200:9200" - "9300:9300" environment: - "http.host=0.0.0.0" - "transport.host=0.0.0.0" ...
```yaml dynamodb: image: peopleperhour/dynamodb ports: - "45678:8000" sns: image: alicefuzier/fake-sns ports: - "9292:9292" sqs: image: s12v/elasticmq ports: - "9324:9324" elasticsearch: image: docker.elastic.co/elasticsearch/elasticsearch:5.4.0 ports: - "9200:9200" - "9300:9300" e...
d0ed8269-d86f-459c-8dff-6b010f5dce1a
{ "language": "YAML" }
```yaml defaults: &defaults text_url: 'http://textinator-sandbox.internal.comparaonline.com/texts.json' request_timeout: 10 development: <<: *defaults local_development: <<: *defaults test: <<: *defaults qa: <<: *defaults staging: <<: *defaults qc: <<: *defaults production: <<: *defaults text...
```yaml defaults: &defaults text_url: 'http://textinator-sandbox.internal.comparaonline.com:8102/texts.json' request_timeout: 10 development: <<: *defaults local_development: <<: *defaults test: <<: *defaults qa: <<: *defaults staging: <<: *defaults qc: <<: *defaults production: <<: *defaults ...
8a98aa89-4408-4449-85ea-49661a0b7a67
{ "language": "YAML" }
```yaml all_classes: - profile::webserver::apache - profile::base::base - partial::rpm - partial::mirror - profile::openstack::identity - profile::openstack::image - mysql::server - keystone::db::mysql - glance::db::mysql - nova::db::mysql - neutron::db::mysql - openstack::auth_file - prof...
```yaml all_classes: - profile::webserver::apache - profile::base::base - partial::rpm - partial::mirror - profile::openstack::identity - profile::openstack::image - mysql::server - keystone::db::mysql - glance::db::mysql - nova::db::mysql - neutron::db::mysql - openstack::auth_file - prof...
79e97085-1c57-4ff9-b936-ba2a71f48575
{ "language": "YAML" }
```yaml --- hide_body: false is_partial: false fields: - type: blocks template_types: - test-partial-two - test-partial-one name: edit_blocks label: Edit Blocks ``` Update from Forestry.io - _drafts/_pages/testing.md
```yaml --- pages: - testing.md hide_body: false is_partial: false fields: - type: blocks template_types: - test-partial-two - test-partial-one name: edit_blocks label: Edit Blocks ```
199b0089-758b-4e39-9d76-a7e4501b1b1e
{ "language": "YAML" }
```yaml name: Nightly breakage against ponyc:latest on: schedule: - cron: "0 3 * * *" jobs: vs-ponyc-master: name: Verify master against ponyc:latest runs-on: ubuntu-latest container: image: ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-ssl:latest needs: update-ponyc-latest...
```yaml name: Nightly breakage against ponyc:latest on: schedule: - cron: "0 3 * * *" jobs: vs-ponyc-master: name: Verify master against ponyc:latest runs-on: ubuntu-latest container: image: ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-ssl:latest steps: - uses: actio...
3e7930ca-eb12-4642-84f4-e75c3ffc5d5c
{ "language": "YAML" }
```yaml name: Build and test on: [push] jobs: ubuntu-18_04: runs-on: ubuntu-18.04 strategy: matrix: compiler: [g++, clang] steps: - name: Install dependencies run: sudo apt install build-essential libasound2-dev libqt5sql5-sqlite libqt5svg5-dev pkg-config qt5-default ${...
```yaml name: Build and test on: [push] jobs: build: strategy: matrix: os: [ubuntu-18.04] compiler: [g++, clang] runs-on: ${{matrix.os}} steps: - name: Install dependencies run: sudo apt install build-essential libasound2-dev libqt5sql5-sqlite libqt5svg5-dev pkg-con...
2a641ae7-cc51-4578-82be-904591b9d8f8
{ "language": "YAML" }
```yaml # Sample localization file for English. Add more files in this directory for other locales. # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points. en: spree: active: Active alt_text: Alt Text autumn_winter_16_17: Autumn Winter 16/17 back_to_look_book_lis...
```yaml # Sample localization file for English. Add more files in this directory for other locales. # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points. en: activerecord: models: spree/look_book: one: "Look Book" other: "Look Books" spree:...