commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
0a2b3181e33906a48761ab2e6dad9f6568097591
.travis.yml
.travis.yml
language: php sudo: false php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm before_script: - wget http://get.sensiolabs.org/php-cs-fixer.phar -O php-cs-fixer.phar - composer self-update - composer install --prefer-source --no-interaction --dev script: - php php-cs-fixer.phar fix --level=psr2 --dry-run -v - phpunit --coverage-clover=coverage.clover after_script: - if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
language: php sudo: false php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm before_script: - wget http://get.sensiolabs.org/php-cs-fixer.phar -O php-cs-fixer.phar - composer self-update - composer install --prefer-source --no-interaction --dev script: - php php-cs-fixer.phar fix --level=psr2 --dry-run -v src/ - phpunit --coverage-clover=coverage.clover after_script: - if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
Check codestyle only src/ directory for PSR2
Check codestyle only src/ directory for PSR2
YAML
mit
BernardoSilva/git-hooks-installer-plugin
2d0b9624bf5b6988c7db800c445c82b4d97b7fd1
.travis.yml
.travis.yml
dist: trusty sudo: required language: ruby rvm: 2.6.5 bundler_args: --without development production env: - ELASTICSEARCH_URL=http://localhost:9250 ES_VERSION=2.4.5 ES_DOWNLOAD_URL=https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/${ES_VERSION}/elasticsearch-${ES_VERSION}.tar.gz TEST_CLUSTER_COMMAND=/tmp/elasticsearch-${ES_VERSION}/bin/elasticsearch RAILS_ENV=test before_install: - gem update --system - gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true - gem install bundler -v 2.0.2 - curl -sS https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/${ES_VERSION}/elasticsearch-${ES_VERSION}.tar.gz | tar xz -C /tmp services: - postgresql before_script: - cp config/database.yml.travis config/database.yml - psql -c 'create database travis_test;' -U postgres - bundle exec rake db:migrate - export RECAPTCHA_SECRET_KEY=6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe - export RECAPTCHA_SITE_KEY=6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI - sleep 10 script: - bundle exec rspec spec/
dist: trusty sudo: required language: ruby rvm: 2.6.5 bundler_args: --without development production env: - ELASTICSEARCH_URL=http://localhost:9250 ES_VERSION=2.4.5 ES_DOWNLOAD_URL=https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/${ES_VERSION}/elasticsearch-${ES_VERSION}.tar.gz TEST_CLUSTER_COMMAND=/tmp/elasticsearch-${ES_VERSION}/bin/elasticsearch RAILS_ENV=test before_install: - gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true - gem install bundler -v 2.0.2 - curl -sS https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/${ES_VERSION}/elasticsearch-${ES_VERSION}.tar.gz | tar xz -C /tmp services: - postgresql before_script: - cp config/database.yml.travis config/database.yml - psql -c 'create database travis_test;' -U postgres - bundle exec rake db:migrate - export RECAPTCHA_SECRET_KEY=6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe - export RECAPTCHA_SITE_KEY=6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI - sleep 10 script: - bundle exec rspec spec/
Remove gem update system which runs into errors
Remove gem update system which runs into errors concerning bundler version
YAML
mit
rubymonsters/speakerinnen_liste,rubymonsters/speakerinnen_liste,rubymonsters/speakerinnen_liste
6e45b540df7e8058ce86a175d20c03168abee202
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm branches: only: - master - develop before_script: - composer install --no-interaction --prefer-source - php app/console doctrine:database:create - php app/console doctrine:schema:create after_script: - bin/coveralls -v script: bin/phpunit -c app --coverage-clover build/logs/clover.xml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm branches: only: - master - develop before_script: - composer install --no-interaction --prefer-source - php app/console doctrine:database:create - php app/console doctrine:schema:create after_script: - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then bin/coveralls -v; fi;' script: bin/phpunit -c app --coverage-clover build/logs/clover.xml
Fix phpunit coverage for hhvm
Fix phpunit coverage for hhvm
YAML
mit
soyel/api.soyel.fr
1be14289ddda5e397c584d64ca320a71031e904a
.travis.yml
.travis.yml
sudo: false language: php php: - 5.6 - 7 env: global: - DB=sqlite matrix: - CORE_BRANCH=stable9 REPO=owncloud/core - CORE_BRANCH=master REPO=owncloud/core - CORE_BRANCH=stable9 REPO=nextcloud/server - CORE_BRANCH=master REPO=nextcloud/server matrix: fast_finish: true before_install: # install core - cd ../ - git clone https://github.com/$REPO.git --recursive --depth 1 -b $CORE_BRANCH mainrepo - mv apporder mainrepo/apps/ before_script: # fill owncloud with default configs and enable apporder - cd mainrepo - mkdir data - ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass='' - ./occ app:enable apporder - ./occ app:check-code apporder - php -S localhost:8080 & - cd apps/apporder script: - make test after_failure: - cat ../../data/owncloud.log after_success: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover build/php-unit.clover
sudo: false language: php php: - 5.6 - 7 env: global: - DB=sqlite matrix: - CORE_BRANCH=stable9.1 REPO=owncloud/core - CORE_BRANCH=master REPO=owncloud/core - CORE_BRANCH=stable10 REPO=nextcloud/server - CORE_BRANCH=master REPO=nextcloud/server matrix: fast_finish: true before_install: # install core - cd ../ - git clone https://github.com/$REPO.git --recursive --depth 1 -b $CORE_BRANCH mainrepo - mv apporder mainrepo/apps/ before_script: # fill owncloud with default configs and enable apporder - cd mainrepo - mkdir data - ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass='' - ./occ app:enable apporder - ./occ app:check-code apporder - php -S localhost:8080 & - cd apps/apporder script: - make test after_failure: - cat ../../data/owncloud.log after_success: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover build/php-unit.clover
Drop testing for oc9.0 and nc 9
Drop testing for oc9.0 and nc 9
YAML
agpl-3.0
juliushaertl/apporder,juliushaertl/apporder
369b39659dac2c9da9dda30b373294be89361754
.travis.yml
.travis.yml
language: objective-c before_install: - sudo easy_install cpp-coveralls script: - xctool test -project Source/OCHamcrest.xcodeproj -scheme OCHamcrest -sdk macosx10.9 after_success: - ./coveralls.rb --exclude-headers --exclude-folder Source/Tests
language: objective-c before_install: - sudo easy_install cpp-coveralls script: - xcodebuild test -project Source/OCHamcrest.xcodeproj -scheme libochamcrest -sdk iphonesimulator7.0 - xctool test -project Source/OCHamcrest.xcodeproj -scheme OCHamcrest -sdk macosx10.9 after_success: - ./coveralls.rb --exclude-folder Source/Tests
Build iOS, then Mac (measuring coverage for Mac). Never mind about excluding headers.
Build iOS, then Mac (measuring coverage for Mac). Never mind about excluding headers.
YAML
bsd-2-clause
hamcrest/OCHamcrest,hamcrest/OCHamcrest,klundberg/OCHamcrest,hamcrest/OCHamcrest,klundberg/OCHamcrest
bce5cf3cc3a8fca438bc2c6d496356804e64090e
.travis.yml
.travis.yml
notifications: email: false env: global: - OPENAS2_FILE_SYSTEM_RUN=False matrix: include: - os: linux dist: xenial language: java before_install: - sudo apt-get update - sudo apt list | grep jdk - sudo apt-get -y install openjdk-8-jdk-headless - sudo update-alternatives --display java script: ./mvnw test - os: windows language: shell before_install: - choco install openjdk - choco install maven - export JAVA_HOME="C:\Program Files\OpenJDK\jdk-13" - ls -l "$JAVA_HOME" - ls -l "$JAVA_HOME/bin" script: export JAVA_HOME="C:\Program Files\OpenJDK\jdk-13" && ./mvnw test
notifications: email: false env: global: - OPENAS2_FILE_SYSTEM_RUN=False matrix: include: - os: linux dist: xenial language: java before_install: - sudo apt-get update - sudo apt list | grep jdk - sudo apt-get -y install openjdk-8-jdk-headless - sudo update-alternatives --display java script: ./mvnw test - os: windows language: shell before_install: - choco install openjdk - choco install maven - proj_dir=$(pwd) - cd "C:\Program Files\OpenJDK" - cd $(ls) - export JAVA_HOME=$(pwd) - cd $proj_dir script: ./mvnw test
Fix finding the JDK version from Choco
Fix finding the JDK version from Choco
YAML
bsd-2-clause
OpenAS2/OpenAs2App,igwtech/OpenAs2App,igwtech/OpenAs2App,OpenAS2/OpenAs2App,igwtech/OpenAs2App,OpenAS2/OpenAs2App,OpenAS2/OpenAs2App,igwtech/OpenAs2App
e2672df8da5b0cceb59d445967e3980529b61e2e
.travis.yml
.travis.yml
language: csharp sudo: required dist: trusty env: - CLI_VERSION=latest addons: apt: packages: - gettext - libcurl4-openssl-dev - libicu-dev - libssl-dev - libunwind8 - zlib1g os: - osx osx_image: xcode7.3.1 before_install: - if test "$TRAVIS_OS_NAME" == "osx"; then brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi after_success: - e2e-tests.sh install: - export DOTNET_INSTALL_DIR="$PWD/.dotnetcli" - curl -sSL https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.sh | bash /dev/stdin --version "$CLI_VERSION" --install-dir "$DOTNET_INSTALL_DIR" - export PATH="$DOTNET_INSTALL_DIR:$PATH" script: - dotnet --version - dotnet restore - dotnet build Contentful.Core/Contentful.Core.csproj - dotnet build Contentful.Core.Tests/Contentful.Core.Tests.csproj - dotnet build Contentful.AspNetCore/Contentful.AspNetCore.csproj - dotnet test Contentful.Core.Tests/Contentful.Core.Tests.csproj
language: csharp sudo: required dist: trusty env: - CLI_VERSION=latest addons: apt: packages: - gettext - libcurl4-openssl-dev - libicu-dev - libssl-dev - libunwind8 - zlib1g os: - osx osx_image: xcode7.3.1 before_install: - if test "$TRAVIS_OS_NAME" == "osx"; then brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi after_success: - ./e2e-tests.sh install: - export DOTNET_INSTALL_DIR="$PWD/.dotnetcli" - curl -sSL https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.sh | bash /dev/stdin --version "$CLI_VERSION" --install-dir "$DOTNET_INSTALL_DIR" - export PATH="$DOTNET_INSTALL_DIR:$PATH" script: - dotnet --version - dotnet restore - dotnet build Contentful.Core/Contentful.Core.csproj - dotnet build Contentful.Core.Tests/Contentful.Core.Tests.csproj - dotnet build Contentful.AspNetCore/Contentful.AspNetCore.csproj - dotnet test Contentful.Core.Tests/Contentful.Core.Tests.csproj
Update path to e2e file
Update path to e2e file
YAML
mit
contentful/contentful.net
6a385791b55adcbc1438b0466e46da7b780b70a9
.travis.yml
.travis.yml
rvm: - 1.9.3 - 2.0.0 - 2.1.0 - 2.1.1 - 2.1.2 - 2.1.3 - 2.1.4 - 2.1.5 - 2.1.6 - 2.1.7 - 2.2.0 - 2.2.1 - 2.2.2 - 2.2.3 - jruby-19mode env: - ACTIVE_MODEL_VERSION='~> 3.2.0' - ACTIVE_MODEL_VERSION='~> 4.0' gemfile: Gemfile notifications: recipients: - [email protected]
rvm: - 2.0.0 - 2.1.0 - 2.1.1 - 2.1.2 - 2.1.3 - 2.1.4 - 2.1.5 - 2.1.6 - 2.1.7 - 2.2.0 - 2.2.1 - 2.2.2 - 2.2.3 - jruby-19mode env: - ACTIVE_MODEL_VERSION='~> 3.2.0' - ACTIVE_MODEL_VERSION='~> 4.0' gemfile: Gemfile notifications: recipients: - [email protected]
Drop support for Ruby 1.9.3
Drop support for Ruby 1.9.3
YAML
mit
rossta/ruby-trello,playtestcloud/ruby-trello,ksamc/ruby-trello,jeremytregunna/ruby-trello,brycemcd/ruby-trello,danmcp/ruby-trello
3a9ded0fe0d39d9d50b50f7f6812f5e6b17e7bb3
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0 - 2.1 - jruby - rbx matrix: allow_failures: - rvm: rbx fast_finish: true
language: ruby rvm: - 1.9.3 - 2.0 - 2.1 - jruby - rbx env: global: - JRUBY_OPTS='-J-XX:+TieredCompilation -J-XX:TieredStopAtLevel=1 -J-Djruby.compile.mode=OFF -J-Djruby.compile.invokedynamic=false' matrix: allow_failures: - rvm: rbx fast_finish: true
Use --dev for JRuby to speed up tests
Travis: Use --dev for JRuby to speed up tests
YAML
mit
splattael/minitest-around
0dfdf8269ce55eea714b77ceee8fee779d80c42f
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm matrix: allow_failures: - php: - 5.3 - 7.1
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm matrix: allow_failures: - php: 5.3
Test PHP 7.1, allow failures while not stable released.
Test PHP 7.1, allow failures while not stable released.
YAML
mit
vanderlee/PHPSwaggerGen,vanderlee/PHPSwaggerGen,vanderlee/PHPSwaggerGen
9aeeea3730f6961e583550a85c4aa5fe18a79dd7
.travis.yml
.travis.yml
language: objective-c osx_image: xcode8.3 xcode_project: Babies.xcodeproj xcode_scheme: Babies script: - xcodebuild clean test -sdk iphonesimulator -project Babies.xcodeproj -scheme Babies CODE_SIGNING_REQUIRED=NO
language: objective-c osx_image: xcode8.3 xcode_project: Babies.xcodeproj xcode_scheme: Babies script: - xcodebuild clean test -project Babies.xcodeproj -scheme Babies -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.3'
Update script to force xcodebuild use the simulator
Update script to force xcodebuild use the simulator
YAML
mit
phi161/Babies,phi161/Babies
645d5be76201186bc9201c3848d7f157da818bd1
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.5 - 7.0 - hhvm before_script: - composer install script: vendor/bin/phpspec run
language: php php: - 5.5 - 5.6 - 7.0 - hhvm before_script: - composer install script: vendor/bin/phpspec run
Include PHP 5.6 in Travis CI
Include PHP 5.6 in Travis CI
YAML
mit
sherault/Sitemap,ThePixelDeveloper/Sitemap,ThePixelDeveloper/Sitemap-v2
a27cdc7f4ef82b9d9eb7a5a0fc5a9a1e2c31aab8
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '4' - '6' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
sudo: false language: node_js node_js: - '4' - '6' - '8' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
Build with Node.js 8 on Travis CI.
Build with Node.js 8 on Travis CI.
YAML
mit
bigeasy/wildmap
d74545f59a7db770ddc04c21c4c69a8a86570845
.travis.yml
.travis.yml
language: ruby env: - CODECLIMATE_REPO_TOKEN=f7c652b65a700fcf1032174afc5ea243b991e48bf73077cc34c148e1c800a2f7 bundler_args: --without sql benchmarks console tools script: "bundle exec rake ci" rvm: - 2.0 - 2.1 - 2.2 - rbx-2 - jruby - ruby-head env: global: - JRUBY_OPTS='--dev -J-Xmx1024M' matrix: allow_failures: - rvm: ruby-head notifications: webhooks: urls: - https://webhooks.gitter.im/e/39e1225f489f38b0bd09 on_success: change on_failure: always on_start: false
language: ruby env: - CODECLIMATE_REPO_TOKEN=f7c652b65a700fcf1032174afc5ea243b991e48bf73077cc34c148e1c800a2f7 bundler_args: --without sql benchmarks console tools script: "bundle exec rake ci" rvm: - 2.0 - 2.1 - 2.2 - rbx-2 - jruby - ruby-head - jruby-head env: global: - JRUBY_OPTS='--dev -J-Xmx1024M' matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head notifications: webhooks: urls: - https://webhooks.gitter.im/e/39e1225f489f38b0bd09 on_success: change on_failure: always on_start: false
Revert "Revert "Run tests on upcoming JRuby 9000""
Revert "Revert "Run tests on upcoming JRuby 9000"" See http://docs.travis-ci.com/user/build-environment-updates/2015-01-07/ This reverts commit c47c09ba7c536f68f13a6f1bdfcf91f4c31e68f0. Conflicts: .travis.yml
YAML
mit
dcarral/rom,jeremyf/rom,kwando/rom,rom-rb/rom,pxlpnk/rom,rom-rb/rom,rom-rb/rom,endash/rom,pdswan/rom,denyago/rom,pvcarrera/rom,vrish88/rom,Snuff/rom,cored/rom,dekz/rom
cb858f1214b612474cc904977ff0d4144609e602
.travis.yml
.travis.yml
language: node_js os: - linux - osx node_js: - '6' - '5' - '4' - '0.12'
language: node_js os: - linux - osx node_js: - '7' - '6' - '5' - '4' - '0.12'
Add Node.js v7 to Travis CI matrix
Add Node.js v7 to Travis CI matrix
YAML
mit
watson/reverse-http
e2cc397b450b2283382547c4f92a01455447a8ca
.travis.yml
.travis.yml
language: scala jdk: - oraclejdk8 sbt_args: -Xmx2048M before_script: ./make_credentials.sh script: - sbt test - find $HOME/.sbt -name "*.lock" | xargs rm - find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm - "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && sbt publish || true" # If building master, Publish to Sonatype and trigger builds after_success: - "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && ./trigger_build.py gatling/gatling-highcharts" - "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && ./trigger_build.py gatling/gatling-maven" - "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && ./trigger_build.py gatling/gatling-sbt" sudo: false # Cache settings cache: directories: - $HOME/.ivy2/cache - $HOME/.sbt/launchers # whitelist branches: only: - master - 2.2
language: scala jdk: - oraclejdk8 sbt_args: -Xmx2048M before_script: ./make_credentials.sh script: - sbt test - find $HOME/.sbt -name "*.lock" | xargs rm - find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm - "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && sbt publish || true" # If building master, Publish to Sonatype and trigger builds after_success: - "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && ./trigger_build.py gatling/gatling-highcharts-maven-archetype" - "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && ./trigger_build.py gatling/gatling-maven-plugin" - "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && ./trigger_build.py gatling/gatling-sbt" sudo: false # Cache settings cache: directories: - $HOME/.ivy2/cache - $HOME/.sbt/launchers # whitelist branches: only: - master - 2.2
Fix Travis config after gatling-maven repo refactoring
Fix Travis config after gatling-maven repo refactoring
YAML
apache-2.0
wiacekm/gatling,gatling/gatling,MykolaB/gatling,pwielgolaski/gatling,wiacekm/gatling,pwielgolaski/gatling,wiacekm/gatling,gatling/gatling,wiacekm/gatling,wiacekm/gatling,MykolaB/gatling,gatling/gatling,MykolaB/gatling,gatling/gatling,gatling/gatling,pwielgolaski/gatling,MykolaB/gatling,pwielgolaski/gatling
1c560ac08f618e110253c12e426f7853e9988158
.travis.yml
.travis.yml
language: java before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/
language: java jdk: - openjdk8 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/
Use OpenJDK8 for Travis CI
Use OpenJDK8 for Travis CI
YAML
apache-2.0
hbogaards/liquibase-ext-createdomain
30de734dfad7fe454c8d96de51f71afa67c12bdc
.travis.yml
.travis.yml
dist: xenial language: python python: - 3.6 - 3.7 addons: apt-packages: -sqlite3 before_install: - sudo apt-get update - sudo apt-get install gettext - make install - make migrate - cd InvenTree && python3 manage.py createsuperuser --username InvenTreeAdmin --email [email protected] --noinput && cd .. script: - cd InvenTree && python3 manage.py makemigrations && cd .. - python3 ci/check_migration_files.py - make coverage - make translate - python3 ci/check_locale_files.py - make style after_success: - coveralls
dist: xenial language: python python: - 3.6 - 3.7 addons: apt-packages: -sqlite3 before_install: - sudo apt-get update - sudo apt-get install gettext - make install - make migrate - cd InvenTree && python3 manage.py createsuperuser --username InvenTreeAdmin --email [email protected] --noinput && cd .. script: - cd InvenTree && python3 manage.py makemigrations && cd .. - python3 ci/check_migration_files.py - make coverage - make translate - make style after_success: - coveralls
Remove test as it is not currently working
Remove test as it is not currently working
YAML
mit
inventree/InvenTree,SchrodingersGat/InvenTree,inventree/InvenTree,SchrodingersGat/InvenTree,inventree/InvenTree,SchrodingersGat/InvenTree,inventree/InvenTree,SchrodingersGat/InvenTree
2175bda24fe3e99bb6ce7ab1a4a9f51cfd495cc1
config/blobs.yml
config/blobs.yml
--- cf-cli/cf-linux-amd64.tgz: object_id: a258fe93-5046-424f-bac1-6fa28e307509 sha: f2e135bf6f30a95b8b6aafe36513a72f7aaf37c3 size: 4775798 golang/go1.4.linux-amd64.tar.gz: object_id: 9cac4e5d-a0c1-4b44-9373-fd7428c0d986 sha: cd82abcb0734f82f7cf2d576c9528cebdafac4c6 size: 63289725 tmux/tmux: object_id: 68680215-7c66-43cc-9a52-2c89c7419b96 sha: 000afb1c43feec5924b09cbad0419f30411e8cff size: 467144
--- cf-cli/cf-linux-amd64.tgz: object_id: 2a28bdcc-f8a6-406b-a865-0eae4fca4b60 sha: a5296502c3258d6e1701adfcce5f33b091f6d018 size: 4939902 golang/go1.4.linux-amd64.tar.gz: object_id: 9cac4e5d-a0c1-4b44-9373-fd7428c0d986 sha: cd82abcb0734f82f7cf2d576c9528cebdafac4c6 size: 63289725 tmux/tmux: object_id: 68680215-7c66-43cc-9a52-2c89c7419b96 sha: 000afb1c43feec5924b09cbad0419f30411e8cff size: 467144
Update cf cli blob to one that works with the newer CC
Update cf cli blob to one that works with the newer CC
YAML
apache-2.0
cloudfoundry-incubator/diego-perf-release,cloudfoundry-incubator/diego-perf-release
d249bc55abc3557eda2eea7f9ee5a3c1d3e903bd
.travis.yml
.travis.yml
language: "node_js" node_js: - "0.10" - "0.8" - "0.6" - "0.4" before_install: - "npm install istanbul -g" - "npm install coveralls -g" script: "make ci-travis" after_success: - "make submit-cov-to-coveralls"
language: "node_js" node_js: - "0.10" - "0.8" - "0.6" - "0.4" before_install: - '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true' - "npm install istanbul -g" - "npm install coveralls -g" script: "make ci-travis" after_success: - "make submit-cov-to-coveralls"
Fix Travis CI for Node 0.6.
Fix Travis CI for Node 0.6.
YAML
mit
jaredhanson/connect-lrdd
4fce345fdbfbfc0125684447f4f2fd2706ca7ee4
.travis.yml
.travis.yml
language: node_js node_js: node script: gulp test deploy: - provider: script script: scripts/deploy.sh on: repo: kranich/ComplexCurves branch: master skip_cleanup: true before_install: - openssl aes-256-cbc -K $encrypted_8bf83f689259_key -iv $encrypted_8bf83f689259_iv -in .travis/github_deploy_key.enc -out .travis/github_deploy_key -d - npm install -g npm@^5.1.0
language: node_js node_js: node script: gulp test deploy: - provider: script script: scripts/deploy.sh on: repo: kranich/ComplexCurves branch: master skip_cleanup: true before_install: - openssl aes-256-cbc -K $encrypted_8bf83f689259_key -iv $encrypted_8bf83f689259_iv -in .travis/github_deploy_key.enc -out .travis/github_deploy_key -d - npm install -g npm@^5.6.0
Use npm 5.6.0 for Travis CI build
Use npm 5.6.0 for Travis CI build
YAML
apache-2.0
kranich/ComplexCurves,kranich/ComplexCurves,kranich/ComplexCurves
46e51643fc2f4090d63697a8774e8a2787bf8d4b
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.2 - 1.9.3 notifications: recipients: - [email protected] - [email protected] irc: "irc.freenode.org#reek"
rvm: - 1.8.7 - 1.9.2 - 1.9.3 notifications: recipients: - [email protected] - [email protected] - [email protected] irc: "irc.freenode.org#reek"
Make Travis CI notify Matijs of results.
Make Travis CI notify Matijs of results.
YAML
mit
weby/reek,andyw8/reek,skywinder/reek,troessner/reek,apuratepp/reek,skywinder/reek,skywinder/reek,tansaku/reek,troessner/reek,andyw8/reek,andyw8/reek,HParker/reek,nTraum/reek,weby/reek,chastell/reek,weby/reek,HParker/reek,tansaku/reek,apuratepp/reek,tansaku/reek,apuratepp/reek,nTraum/reek,HParker/reek
411f32a828f4d582728db6bd0165a3a8ea0b674d
Resources/config/doctrine/Article.orm.yml
Resources/config/doctrine/Article.orm.yml
Vince\Bundle\CmsBundle\Entity\Article: type: mappedSuperclass repositoryClass: Vince\Bundle\CmsBundle\Entity\Repository\ArticleRepository fields: title: type: string length: 255 slug: type: string length: 255 unique: true gedmo: slug: fields: [title] createdAt: type: datetime column: created_at gedmo: timestampable: on: create updatedAt: type: datetime column: updated_at gedmo: timestampable: on: update summary: type: text tags: type: array url: type: string length: 255 nullable: true unique: true startedAt: type: date nullable: true column: started_at endedAt: type: date nullable: true column: ended_at manyToOne: template: targetEntity: Vince\Bundle\CmsBundle\Entity\Template cascade: [all] joinColumn: name: template_id referencedColumnName: id nullable: false onDelete: CASCADE indexes: search_idx: columns: slug lifecycleCallbacks: prePersist: [initHomepage]
Vince\Bundle\CmsBundle\Entity\Article: type: mappedSuperclass repositoryClass: Vince\Bundle\CmsBundle\Entity\Repository\ArticleRepository fields: title: type: string length: 255 slug: type: string length: 255 unique: true gedmo: slug: fields: [title] createdAt: type: datetime column: created_at gedmo: timestampable: on: create updatedAt: type: datetime column: updated_at gedmo: timestampable: on: update summary: type: text tags: type: array url: type: string length: 255 nullable: true unique: true startedAt: type: date nullable: true column: started_at endedAt: type: date nullable: true column: ended_at manyToOne: template: targetEntity: Vince\Bundle\CmsBundle\Entity\Template cascade: [persist] joinColumn: name: template_id referencedColumnName: id nullable: false onDelete: CASCADE indexes: search_idx: columns: slug lifecycleCallbacks: prePersist: [initHomepage]
Update doctrine schema for Article
Update doctrine schema for Article
YAML
mit
vincentchalamon/VinceCmsBundle,vincentchalamon/VinceCmsBundle
0c36ce7ab5d98b0a2b4b5b2df0bc56086e1c1555
.scrutinizer.yml
.scrutinizer.yml
build: environment: php: '5.5.25' dependencies: # Runs before inferred commands before: [] # Overwrites inferred commands override: [] # Runs after inferred commands after: [] # Run after dependencies project_setup: before: - mysql -e 'CREATE DATABASE IF NOT EXISTS test' after: - rm -rf * - git clone https://github.com/nafigator/Veles.git - cd Veles tests: before: - git submodule add --name tests https://github.com/nafigator/Veles-unit-tests.git Tests override: - command: phpunit -c Tests/scrutinizer-phpunit.xml --stderr --coverage-clover=coverage-report coverage: file: coverage-report format: php-clover checks: php: true filter: excluded_paths: - Tests/*
build: environment: php: '5.5.25' dependencies: # Runs before inferred commands before: - sudo apt-get install -y memcached # Overwrites inferred commands override: [] # Runs after inferred commands after: [] # Run after dependencies project_setup: before: - mysql -e 'CREATE DATABASE IF NOT EXISTS test' after: - rm -rf * - git clone https://github.com/nafigator/Veles.git - cd Veles tests: before: - git submodule add --name tests https://github.com/nafigator/Veles-unit-tests.git Tests override: - command: phpunit -c Tests/scrutinizer-phpunit.xml --stderr --coverage-clover=coverage-report coverage: file: coverage-report format: php-clover checks: php: true filter: excluded_paths: - Tests/*
Install memcached in ci environment
Install memcached in ci environment
YAML
bsd-3-clause
nafigator/Veles
5c3eeb8bf95c6e824ee2351d45f52afb66ced3e6
.travis.yml
.travis.yml
language: ruby rvm: - 2.1 - 2.2
language: ruby rvm: - 2.1 - 2.2 - 2.3 - 2.4 - 2.5
Add ruby 2.3 2.4 2.5
Add ruby 2.3 2.4 2.5
YAML
mit
SpringMT/rack-server_status
8fed0efeee26e02b2e96dd0040e740484feaa27b
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.1.5 - 2.2.0 - ruby-head matrix: allow_failures: - rvm: ruby-head addons: postgresql: "9.3" bundler_args: "--without development:production --deployment" cache: bundler before_install: - gem update bundler before_script: - psql -c 'create database coursemology_test;' -U postgres - bundle exec rake db:setup script: - bundle exec consistency_fail - bundle exec rake spec
sudo: false language: ruby rvm: - 2.1.5 - 2.2.0 - ruby-head matrix: allow_failures: - rvm: ruby-head addons: postgresql: "9.3" bundler_args: "--jobs=3 --retry=3 --without development:production --deployment" cache: bundler before_install: - gem update bundler before_script: - psql -c 'create database coursemology_test;' -U postgres - bundle exec rake db:setup script: - bundle exec consistency_fail - bundle exec rake spec
Use recommended settings for TravisCI.
Use recommended settings for TravisCI. http://docs.travis-ci.com/user/languages/ruby/#Dependency-Management.
YAML
mit
harryggg/coursemology2,Coursemology/coursemology2,Coursemology/coursemology2,harryggg/coursemology2,cysjonathan/coursemology2,xzhflying/coursemology2,BenMQ/coursemology2,cysjonathan/coursemology2,Coursemology/coursemology2,xzhflying/coursemology2,Coursemology/coursemology2,Coursemology/coursemology2,BenMQ/coursemology2,harryggg/coursemology2,BenMQ/coursemology2,cysjonathan/coursemology2,Coursemology/coursemology2,Coursemology/coursemology2,xzhflying/coursemology2
181af40c83d90fe7db74e189bffc9ecca5d67252
.travis.yml
.travis.yml
sudo: required services: - docker language: python python: - 3.6 env: DOCKER_COMPOSE_VERSION: 1.14.0 before_install: - sudo apt-get update - sudo rm /usr/local/bin/docker-compose - curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose - chmod +x docker-compose - sudo mv docker-compose /usr/local/bin - pip install coveralls install: - docker-compose up --build -d script: >- docker-compose run web dockerize -wait tcp://db:3306 -timeout 120s bash -c " py.test --cov=.; echo $? " after_success: - mv app/.coverage .coverage.docker - coverage combine - coveralls after_script: - echo $? - docker-compose down
sudo: required services: - docker language: python python: - 3.6 env: DOCKER_COMPOSE_VERSION: 1.14.0 before_install: - sudo apt-get update - sudo rm /usr/local/bin/docker-compose - curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose - chmod +x docker-compose - sudo mv docker-compose /usr/local/bin - pip install coveralls install: - docker-compose up --build -d script: >- docker-compose run web dockerize -wait tcp://db:3306 -timeout 120s bash -c " py.test --cov-report= --cov=. " after_success: - mv app/.coverage .coverage.docker - coverage combine - coveralls after_script: - echo $? - docker-compose down
Disable coverage reporting to Travis log
Disable coverage reporting to Travis log
YAML
apache-2.0
comic/comic-django,comic/comic-django,comic/comic-django,comic/comic-django,comic/comic-django
4f518e8423f7f86b7041ddd82715da5fe64d1eac
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.2 before_install: # Make sure everything's up to date. - sudo apt-get update -qq - sudo apt-get install python - gem install bundler -v 1.10.5 install: # Install Ansible. - pip install ansible
language: ruby rvm: - 2.2.2 before_install: # make sure everything's up to date - sudo apt-get update -qq # install Python - sudo apt-get install python # install Bundler - gem install bundler -v 1.10.5 install: # install Ansible - pip install ansible
Add comments to Travis CI config
Add comments to Travis CI config
YAML
mit
pgeraghty/ansible-wrapper-ruby,pgeraghty/ansible-wrapper-ruby
94c7a83634d41ba5f74f844043b70f56030bc9a1
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.5 - 2.3.3 - 2.4.0 - 2.4.1 gemfile: - test/gemfiles/rails-4.0 - test/gemfiles/rails-4.1 - test/gemfiles/rails-4.2 - test/gemfiles/rails-5.0 - test/gemfiles/rails-5.1 matrix: exclude: - rvm: 2.4.0 gemfile: test/gemfiles/rails-4.0 - rvm: 2.4.0 gemfile: test/gemfiles/rails-4.1 - rvm: 2.4.1 gemfile: test/gemfiles/rails-4.0 - rvm: 2.4.1 gemfile: test/gemfiles/rails-4.1 notifications: recipients: email: - [email protected] on_success: change on_failure: always
language: ruby rvm: - 2.2.5 - 2.3.3 - 2.4.0 - 2.4.1 gemfile: - test/gemfiles/rails-4.0 - test/gemfiles/rails-4.1 - test/gemfiles/rails-4.2 - test/gemfiles/rails-5.0 - test/gemfiles/rails-5.1 - test/gemfiles/rails-5.2 matrix: exclude: - rvm: 2.4.0 gemfile: test/gemfiles/rails-4.0 - rvm: 2.4.0 gemfile: test/gemfiles/rails-4.1 - rvm: 2.4.1 gemfile: test/gemfiles/rails-4.0 - rvm: 2.4.1 gemfile: test/gemfiles/rails-4.1 notifications: recipients: email: - [email protected] on_success: change on_failure: always
Add Rails 5.2 to tests.
Add Rails 5.2 to tests.
YAML
mit
cedric/custom_counter_cache
e6efce82c9da5f5ab48b871e2a51575fbc81518c
.travis.yml
.travis.yml
language: php php: - '7.2' - '7.3' - '8.0' env: global: - SYMFONY_VERSION="~5.0" ES_FILENAME_SUFFIX="-linux-x86_64" matrix: - ES_VERSION="7.2.1" - ES_VERSION="7.2.1" SYMFONY_VERSION="~4.4" - ES_VERSION="7.11.1" - ES_VERSION="7.11.1" SYMFONY_VERSION="~4.4" install: - composer require --no-update symfony/framework-bundle:${SYMFONY_VERSION} - wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${ES_VERSION}${ES_FILENAME_SUFFIX}.tar.gz - tar -xzf elasticsearch-${ES_VERSION}${ES_FILENAME_SUFFIX}.tar.gz - ./elasticsearch-${ES_VERSION}/bin/elasticsearch > /dev/null 2>&1 & - composer install --dev --no-interaction script: - vendor/bin/simple-phpunit --coverage-clover=Tests/App/build/clover.xml 2>/dev/null - vendor/bin/phpcs -np --standard=PSR2 --ignore=vendor/,Tests/App/,var/ ./ after_script: - travis_retry php vendor/bin/php-coveralls -v
language: php php: - '7.2' - '7.3' - '8.0' env: global: - SYMFONY_VERSION="~5.0" ES_FILENAME_SUFFIX="-linux-x86_64" matrix: - ES_VERSION="7.2.1" - ES_VERSION="7.2.1" SYMFONY_VERSION="~4.4" - ES_VERSION="7.11.1" - ES_VERSION="7.11.1" SYMFONY_VERSION="~4.4" install: - composer require --no-update symfony/framework-bundle:${SYMFONY_VERSION} - wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${ES_VERSION}${ES_FILENAME_SUFFIX}.tar.gz - tar -xzf elasticsearch-${ES_VERSION}${ES_FILENAME_SUFFIX}.tar.gz - ./elasticsearch-${ES_VERSION}/bin/elasticsearch > /dev/null 2>&1 & - composer install --dev --no-interaction before_script: - export XDEBUG_MODE=coverage script: - vendor/bin/simple-phpunit --coverage-clover=Tests/App/build/clover.xml 2>/dev/null - vendor/bin/phpcs -np --standard=PSR2 --ignore=vendor/,Tests/App/,var/ ./ after_script: - travis_retry php vendor/bin/php-coveralls -v
Fix for running tests with php8
Fix for running tests with php8
YAML
mit
sineflow/ElasticsearchBundle
6d7a71fdfd0fd6b329224bbdf381d063aee4ad88
.travis.yml
.travis.yml
language: go go: - 1.9.1 - 1.8.4 sudo: false script: - go vet ./... - go test ./...
language: go go: - 1.9.2 - 1.8.5 sudo: false script: - go vet ./... - go test ./...
Build against 1.9.2 and 1.8.5
Build against 1.9.2 and 1.8.5
YAML
mit
TV4/diva
41845cafa40ea8049e47ba561b8768f1033a577d
.travis.yml
.travis.yml
language: csharp mono: none dotnet: 2.0.0 script: - dotnet build ./test/ # - dotnet test ./Cascara.Tests/Cascara.Tests.csproj install: - dotnet restore # TODO: Add mono support
language: csharp mono: none dotnet: - latest # .NET Core 2.1 SDK - 2.1.300 # .NET Core 2.0 SDK - 2.1.201 - 2.0.0 # What a stupid versioning convention... branches: only: - master - dev install: - dotnet restore script: - dotnet test ./test/
Test other dotnet core versions
Test other dotnet core versions
YAML
mit
whampson/bft-spec,whampson/cascara
1d9d2ee38601ab2bdb1d817bc24ceda6321e673f
repository.yaml
repository.yaml
leakDetectionExemptions: - ruleId: 'application_secret' filePaths: - '/test/testapps/openplayapp/conf/application.conf' - '/test/testapps/basicplayapp/conf/application.conf' - ruleId: 'credential_1' filePaths: - '/test/.sbt/.credentials'
leakDetectionExemptions: - ruleId: 'application_secret' filePaths: - '/test/testapps/openplayapp/conf/application.conf' - '/test/testapps/basicplayapp/conf/application.conf' - ruleId: 'credential_1' filePaths: - '/test/.sbt/.credentials' repoVisibility: public_0C3F0CE3E6E6448FAD341E7BFA50FCD333E06A20CFF05FCACE61154DDBBADF71
Enforce repo yaml privacy key.
PLATOPS-BAU: Enforce repo yaml privacy key.
YAML
apache-2.0
hmrc/service-manager,hmrc/service-manager,hmrc/service-manager,hmrc/service-manager
9dfeeaec486aa5cb717f606a5074573a0bc83040
.travis.yml
.travis.yml
language: node_js matrix: fast_finish: true include: - node_js: node env: WEBPACK_VERSION=3 EXTRACT_TEXT_VERSION=2 BABEL_LOADER=7 FILE_LOADER=0.11 - node_js: 8 env: WEBPACK_VERSION=1 EXTRACT_TEXT_VERSION=1 BABEL_LOADER=6 FILE_LOADER=0.10 - node_js: 8 env: WEBPACK_VERSION=2 EXTRACT_TEXT_VERSION=2 BABEL_LOADER=7 FILE_LOADER=0.11 - node_js: 8 env: WEBPACK_VERSION=3 EXTRACT_TEXT_VERSION=2 BABEL_LOADER=7 FILE_LOADER=0.11 - node_js: 4 env: WEBPACK_VERSION=1 EXTRACT_TEXT_VERSION=1 BABEL_LOADER=6 FILE_LOADER=0.10 before_script: - npm install webpack@$WEBPACK_VERSION extract-text-webpack-plugin@$EXTRACT_TEXT_VERSION babel-loader@$BABEL_LOADER file-loader@$FILE_LOADER cache: directories: - node_modules
language: node_js matrix: fast_finish: true allow_failures: - node_js: 4 include: - node_js: node env: WEBPACK_VERSION=3 EXTRACT_TEXT_VERSION=2 BABEL_LOADER=7 FILE_LOADER=0.11 - node_js: 8 env: WEBPACK_VERSION=1 EXTRACT_TEXT_VERSION=1 BABEL_LOADER=6 FILE_LOADER=0.10 - node_js: 8 env: WEBPACK_VERSION=2 EXTRACT_TEXT_VERSION=2 BABEL_LOADER=7 FILE_LOADER=0.11 - node_js: 8 env: WEBPACK_VERSION=3 EXTRACT_TEXT_VERSION=2 BABEL_LOADER=7 FILE_LOADER=0.11 - node_js: 4 env: WEBPACK_VERSION=1 EXTRACT_TEXT_VERSION=1 BABEL_LOADER=6 FILE_LOADER=0.10 before_script: - npm install webpack@$WEBPACK_VERSION extract-text-webpack-plugin@$EXTRACT_TEXT_VERSION babel-loader@$BABEL_LOADER file-loader@$FILE_LOADER cache: directories: - node_modules
Allow node 4 to fail
Allow node 4 to fail
YAML
isc
mzgoddard/hard-source-webpack-plugin
f9dac85dfc86720a55739f61a9c18657977ce22a
.travis.yml
.travis.yml
language: python matrix: fast_finish: true include: - sudo: false script: - ./mach test-tidy --no-progress --all - ./mach test-tidy --no-progress --self-test cache: false - sudo: 9000 dist: trusty script: - ./mach build -d --verbose - ./mach test-compiletest - ./mach test-unit - ./mach clean - ./mach build-geckolib - ./mach test-stylo - bash etc/ci/check_no_panic.sh - bash etc/ci/lockfile_changed.sh - bash etc/ci/manifest_changed.sh cache: directories: - .cargo - .servo - $HOME/.ccache before_cache: - ./mach clean-nightlies --keep 2 --force - ./mach clean-cargo-cache --keep 2 --force env: CCACHE=/usr/bin/ccache addons: apt: packages: - cmake - freeglut3-dev - gperf - libosmesa6-dev - libgles2-mesa-dev - python-virtualenv - xorg-dev - ccache - libdbus-glib-1-dev - libedit-dev branches: only: - master
language: python matrix: fast_finish: true include: - sudo: false script: - ./mach test-tidy --no-progress --all - ./mach test-tidy --no-progress --self-test - bash etc/ci/check_no_panic.sh - bash etc/ci/lockfile_changed.sh - bash etc/ci/manifest_changed.sh cache: false - sudo: 9000 dist: trusty script: - ./mach build -d --verbose - ./mach test-compiletest - ./mach test-unit - ./mach clean - ./mach build-geckolib - ./mach test-stylo cache: directories: - .cargo - .servo - $HOME/.ccache before_cache: - ./mach clean-nightlies --keep 2 --force - ./mach clean-cargo-cache --keep 2 --force env: CCACHE=/usr/bin/ccache addons: apt: packages: - cmake - freeglut3-dev - gperf - libosmesa6-dev - libgles2-mesa-dev - python-virtualenv - xorg-dev - ccache - libdbus-glib-1-dev - libedit-dev branches: only: - master
Move fast checks into earlier Travis task.
Move fast checks into earlier Travis task.
YAML
mpl-2.0
KiChjang/servo,cbrewster/servo,jimberlage/servo,ConnorGBrewster/servo,ConnorGBrewster/servo,mattnenterprise/servo,saneyuki/servo,mattnenterprise/servo,canaltinova/servo,ConnorGBrewster/servo,paulrouget/servo,upsuper/servo,notriddle/servo,mbrubeck/servo,nnethercote/servo,notriddle/servo,SimonSapin/servo,saneyuki/servo,dsandeephegde/servo,paulrouget/servo,CJ8664/servo,pyfisch/servo,szeged/servo,cbrewster/servo,avadacatavra/servo,CJ8664/servo,DominoTree/servo,szeged/servo,nnethercote/servo,jimberlage/servo,sadmansk/servo,larsbergstrom/servo,peterjoel/servo,eddyb/servo,sadmansk/servo,KiChjang/servo,splav/servo,SimonSapin/servo,KiChjang/servo,peterjoel/servo,upsuper/servo,fiji-flo/servo,rnestler/servo,mbrubeck/servo,canaltinova/servo,avadacatavra/servo,dsandeephegde/servo,emilio/servo,mattnenterprise/servo,pyfisch/servo,saneyuki/servo,notriddle/servo,sadmansk/servo,ConnorGBrewster/servo,anthgur/servo,notriddle/servo,dati91/servo,eddyb/servo,upsuper/servo,peterjoel/servo,peterjoel/servo,pyfisch/servo,szeged/servo,notriddle/servo,larsbergstrom/servo,dsandeephegde/servo,eddyb/servo,emilio/servo,SimonSapin/servo,thiagopnts/servo,DominoTree/servo,splav/servo,larsbergstrom/servo,dati91/servo,splav/servo,splav/servo,eddyb/servo,fiji-flo/servo,CJ8664/servo,canaltinova/servo,saneyuki/servo,eddyb/servo,larsbergstrom/servo,paulrouget/servo,jimberlage/servo,jimberlage/servo,fiji-flo/servo,anthgur/servo,SimonSapin/servo,nnethercote/servo,mbrubeck/servo,cbrewster/servo,paulrouget/servo,jimberlage/servo,thiagopnts/servo,mbrubeck/servo,rnestler/servo,saneyuki/servo,jimberlage/servo,dati91/servo,fiji-flo/servo,cbrewster/servo,rnestler/servo,canaltinova/servo,emilio/servo,sadmansk/servo,mattnenterprise/servo,nnethercote/servo,jimberlage/servo,upsuper/servo,KiChjang/servo,upsuper/servo,upsuper/servo,peterjoel/servo,upsuper/servo,mattnenterprise/servo,sadmansk/servo,dati91/servo,emilio/servo,sadmansk/servo,thiagopnts/servo,peterjoel/servo,dsandeephegde/servo,mattnenterprise/servo,rnestler/servo,paulrouget/servo,ConnorGBrewster/servo,ConnorGBrewster/servo,SimonSapin/servo,notriddle/servo,DominoTree/servo,DominoTree/servo,notriddle/servo,DominoTree/servo,thiagopnts/servo,saneyuki/servo,KiChjang/servo,avadacatavra/servo,anthgur/servo,canaltinova/servo,szeged/servo,splav/servo,DominoTree/servo,CJ8664/servo,pyfisch/servo,fiji-flo/servo,KiChjang/servo,splav/servo,SimonSapin/servo,eddyb/servo,mattnenterprise/servo,paulrouget/servo,peterjoel/servo,larsbergstrom/servo,emilio/servo,canaltinova/servo,avadacatavra/servo,mbrubeck/servo,splav/servo,nnethercote/servo,thiagopnts/servo,larsbergstrom/servo,KiChjang/servo,peterjoel/servo,thiagopnts/servo,szeged/servo,CJ8664/servo,anthgur/servo,pyfisch/servo,sadmansk/servo,dati91/servo,ConnorGBrewster/servo,cbrewster/servo,anthgur/servo,SimonSapin/servo,nnethercote/servo,canaltinova/servo,fiji-flo/servo,rnestler/servo,dati91/servo,dati91/servo,DominoTree/servo,DominoTree/servo,emilio/servo,DominoTree/servo,CJ8664/servo,szeged/servo,cbrewster/servo,pyfisch/servo,cbrewster/servo,dsandeephegde/servo,avadacatavra/servo,KiChjang/servo,mbrubeck/servo,szeged/servo,splav/servo,ConnorGBrewster/servo,saneyuki/servo,splav/servo,peterjoel/servo,pyfisch/servo,saneyuki/servo,avadacatavra/servo,mbrubeck/servo,jimberlage/servo,upsuper/servo,DominoTree/servo,pyfisch/servo,paulrouget/servo,paulrouget/servo,mattnenterprise/servo,rnestler/servo,dsandeephegde/servo,paulrouget/servo,eddyb/servo,nnethercote/servo,cbrewster/servo,thiagopnts/servo,thiagopnts/servo,larsbergstrom/servo,jimberlage/servo,nnethercote/servo,paulrouget/servo,CJ8664/servo,anthgur/servo,pyfisch/servo,notriddle/servo,nnethercote/servo,szeged/servo,anthgur/servo,rnestler/servo,larsbergstrom/servo,SimonSapin/servo,rnestler/servo,saneyuki/servo,fiji-flo/servo,KiChjang/servo,anthgur/servo,notriddle/servo,szeged/servo,KiChjang/servo,notriddle/servo,avadacatavra/servo,larsbergstrom/servo,canaltinova/servo,eddyb/servo,dsandeephegde/servo,emilio/servo,dsandeephegde/servo,nnethercote/servo,emilio/servo,emilio/servo,dati91/servo,saneyuki/servo,emilio/servo,szeged/servo,avadacatavra/servo,pyfisch/servo,fiji-flo/servo,peterjoel/servo,CJ8664/servo,mbrubeck/servo,larsbergstrom/servo,splav/servo,sadmansk/servo
dd12f0d88ea447b903e2c5b1b7d3cb7d903f4728
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.5 - 2.2.1 script: bundle exec rake test before_install: - sudo apt-get update -qq - sudo apt-get install webp
language: ruby rvm: - 2.0.0 - 2.1.8 - 2.2.4 - 2.3.0 script: bundle exec rake test before_install: - sudo apt-get update -qq - sudo apt-get install webp
Update Ruby versions used for Travis CI
Update Ruby versions used for Travis CI
YAML
mit
iiska/middleman-webp
674a40f765a7898c6911eec22e77fef6ac4d9cda
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 - 7.3 - 7.4 before_script: # Install composer - wget http://getcomposer.org/composer.phar - php composer.phar update --prefer-stable script: - ./bin/phpmetrics src - ./bin/phpcs --standard=vendor/escapestudios/symfony2-coding-standard/Symfony/ src/ tests/ # Test on stable versions - ./bin/phpunit # Test on lowest versions - php composer.phar update --prefer-lowest - ./bin/phpunit
language: php php: - 7.1 - 7.2 - 7.3 #- 7.4 before_script: # Install composer - wget http://getcomposer.org/composer.phar - php composer.phar update --prefer-stable script: - ./bin/phpmetrics src - ./bin/phpcs --standard=vendor/escapestudios/symfony2-coding-standard/Symfony/ src/ tests/ # Test on stable versions - ./bin/phpunit # Test on lowest versions - php composer.phar update --prefer-lowest - ./bin/phpunit
Remove PHP 7.4 from testing
Remove PHP 7.4 from testing
YAML
mit
FiveLab/Resource
61d21e0d419bb42e9ff2875bf3351af8fe5e0138
.travis.yml
.travis.yml
language: python python: 3.3 env: - TOXENV=py26 - TOXENV=py27 - TOXENV=py32 - TOXENV=py33 - TOXENV=py34 - TOXENV=pypy - TOXENV=pep8 - TOXENV=py2pep8 - TOXENV=docs install: - pip install tox script: - tox
language: python python: 3.3 env: - TOXENV=py26 - TOXENV=py27 - TOXENV=py32 - TOXENV=py33 # - TOXENV=py34 - TOXENV=pypy - TOXENV=pep8 - TOXENV=py2pep8 - TOXENV=docs install: - pip install tox script: - tox
Comment out testing Python 3.4 on Travis until they have it
Comment out testing Python 3.4 on Travis until they have it
YAML
apache-2.0
glyph/symantecssl,chelseawinfree/symantecssl,jmvrbanac/symantecssl,cloudkeep/symantecssl,grigouze/symantecssl
e82d775810e0967eff3b4591076ff487dde90d69
.travis.yml
.travis.yml
dist: xenial language: java install: - java --version script: - jshell ./build.jsh after_success: #- cd $TRAVIS_BUILD_DIR/demo/00-bootstrap #- ./bootstrap.sh - cd ${TRAVIS_BUILD_DIR}/demo/jigsaw-quick-start/greetings-world-with-main-and-test - java ${TRAVIS_BUILD_DIR}/src/bach/Bach.java build #- cd $TRAVIS_BUILD_DIR/demo/02-testing #- java ../../src/bach/Bach.java
dist: xenial language: java install: - java --version script: - jshell ./build.jsh after_success: #- cd $TRAVIS_BUILD_DIR/demo/00-bootstrap #- ./bootstrap.sh - cd ${TRAVIS_BUILD_DIR}/demo/jigsaw-quick-start/greetings-world-with-main-and-test - java ../../../src/bach/Bach.java build #- cd $TRAVIS_BUILD_DIR/demo/02-testing #- java ../../src/bach/Bach.java
Fix local path to Bach.java
Fix local path to Bach.java
YAML
mit
sormuras/bach,sormuras/bach
2e1493d8833720ab7036e4a2f36a4733922a431e
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 - 7.3 env: matrix: - COMPOSER_FLAGS="--prefer-lowest" - COMPOSER_FLAGS="" sudo: false cache: directories: - $HOME/.composer/cache before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist -vvv script: - composer test - composer lint
language: php php: - 7.1 - 7.2 - 7.3 - 7.4 env: matrix: - COMPOSER_FLAGS="--prefer-lowest" - COMPOSER_FLAGS="" sudo: false cache: directories: - $HOME/.composer/cache before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist -vvv script: - composer test - composer lint
Add PHP 7.4 to tested configurations in Travis
Add PHP 7.4 to tested configurations in Travis
YAML
mit
eXolnet/laravel-envoy
360932208aa18ea65d8cfbae578842b0eba7f2ef
.travis.yml
.travis.yml
language: python python: - "3.7" dist: xenial addons: apt: update: true packages: - r-base - r-base-dev - r-cran-yaml env: global: - _R_CHECK_FORCE_SUGGESTS_: false install: - pip install --ignore-installed -r requirements.txt script: - python -m pip install . --no-deps -vv - dsc --help - dsc-query --version - sudo R --slave -e 'options(repos = "https://cran.mtu.edu"); install.packages(c("dplyr","rlang","ggplot2","shiny","reticulate","testthat"),type = "source")' - R CMD build --no-manual dscrutils - sudo R CMD INSTALL dscrutils_*.tar.gz - R CMD check --as-cran --no-manual dscrutils_*.tar.gz - cd test && python test_parser.py && python test_query.py branches: only: - master
language: python python: - "3.7" dist: xenial env: global: - _R_CHECK_FORCE_SUGGESTS_: false install: - wget https://repo.continuum.io/miniconda/Miniconda3-4.3.27.1-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes - conda config --set quiet yes - conda config --set changeps1 no - conda config --set auto_update_conda no - conda config --add channels defaults - conda config --add channels conda-forge - travis_retry conda install --file requirements.txt - conda install r-dplyr \ r-rlang \ r-ggplot2 \ r-shiny \ r-reticulate \ r-testthat \ script: - python -m pip install . --no-deps -vv - dsc --help - dsc-query --version - R CMD build --no-manual dscrutils - R CMD INSTALL dscrutils_*.tar.gz - R CMD check --as-cran --no-manual dscrutils_*.tar.gz - cd test && python test_parser.py && python test_query.py branches: only: - master
Use conda to install R and Python on Travis.
Use conda to install R and Python on Travis. Errors from mixing R from APT with Python from virtualenv.
YAML
mit
stephenslab/dsc2,stephenslab/dsc2
7c8496d0dfd0aa5b0757e3cbc5f5d4f2f8831463
.travis.yml
.travis.yml
language: java jdk: - oraclejdk7 before_script: - sleep 15 - mongo gfk --eval 'db.addUser("gfk", "password");' install: - gradle clean build -Pdb.uri=mongodb://localhost/gfk -Pdb.username=gfk -Pdb.password=password
language: java jdk: - oraclejdk7 before_script: - mongo gfk --eval 'db.addUser("gfk", "password");' install: - gradle clean build -Pdb.uri=mongodb://localhost/gfk -Pdb.username=gfk -Pdb.password=password
Fix broken Travis build related to time out
Fix broken Travis build related to time out gh-4
YAML
unlicense
rashidi/announcement-board,StarTrackDevKL/announcement-board,StarTrackDevKL/announcement-board,rashidi/announcement-board,StarTrackDevKL/announcement-board,rashidi/announcement-board
4de2c2fe44e3e7c6890750c591acf49381a96753
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm install: - travis_retry composer install --no-interaction --prefer-source script: - vendor/bin/phpspec run - vendor/bin/phpunit
language: php dist: precise php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm install: - travis_retry composer install --no-interaction --prefer-source script: - vendor/bin/phpspec run - vendor/bin/phpunit
Use ubuntu precise for tests
Use ubuntu precise for tests
YAML
isc
mauserrifle/simresults
747b7a8575f86ae4968ae9814783e32f8b5fda42
.travis.yml
.travis.yml
language: ruby cache: bundler: true directories: - vendor/bundle rvm: - 2.3.1 before_install: - gem update --system '2.6.1' - gem update bundler - gem --version script: "bundle exec rake test"
language: ruby cache: bundler: true directories: - vendor/bundle rvm: - 2.3.2 - 2.2.6 - 2.1.9 - ruby-2.0.0-p648 before_install: - gem update --system - gem update bundler - gem --version script: "bundle exec rake test"
Add in more Ruby versions to test against.
Add in more Ruby versions to test against.
YAML
mit
nguyenquangminh0711/ruby-sensor,nguyenquangminh0711/ruby-sensor,nguyenquangminh0711/ruby-sensor
f2084d26a49a28537298dc736965aada1b54a638
.travis.yml
.travis.yml
language: d d: - dmd-2.073.1 - ldc-1.1.0 script: - dub build
language: d d: - dmd-2.073.1 - ldc-1.1.0 script: - dub build
Fix yaml for sure this time
Fix yaml for sure this time
YAML
mpl-2.0
dsboger/tilix,gnunn1/tilix,gnunn1/tilix,gnunn1/terminix,gnunn1/terminix,gnunn1/tilix,dsboger/tilix
6f7757d658e9358148c010cb91782d137f135c11
.travis.yml
.travis.yml
language: cpp before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update -qq - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi - sudo apt-get -qq install libconfig++-dev libgtest-dev - "cd /usr/src/gtest && sudo cmake . && sudo cmake --build . && sudo mv libg* /usr/local/lib/ ; cd -" before_script: - cmake . -Dbuild_tests=BOOL:ON script: make after_success: - ./test-all
language: cpp before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update -qq - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi - sudo apt-get -qq install libconfig++-dev libgtest-dev-1.4.9 - "cd /usr/src/gtest && sudo cmake . && sudo cmake --build . && sudo mv libg* /usr/local/lib/ ; cd -" before_script: - cmake . -Dbuild_tests=BOOL:ON script: make after_success: - ./test-all
Change version of the libcongi++ library in Travis build configuration
Change version of the libcongi++ library in Travis build configuration
YAML
apache-2.0
kmichalak/jippi
f8b4e10e013aabb983c9aa6769593e5277c7ed1d
.travis.yml
.travis.yml
language: node_js node_js: - "0.12" - "iojs" script: "npm run test"
language: node_js node_js: - "0.12" - "iojs" before_install: # Setup for installing LLVM - sudo apt-get update - sudo apt-get install python-software-properties - sudo sh -c "echo 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.5 main' >> /etc/apt/sources.list" - wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add - install: - sudo apt-get update # Install LLVM - sudo apt-get install -y llvm-3.5 llvm-3.5-dev script: "npm run test"
Add LLVM 3.5 to Travis configuration
Add LLVM 3.5 to Travis configuration
YAML
mit
dirk/llvm2
2ae191fe6fc147e625f5201bb4999e513f8409d2
.travis.yml
.travis.yml
sudo: false language: cpp compiler: - clang - gcc env: - DEFINES=standard - DEFINES=PUGIXML_WCHAR_MODE - DEFINES=PUGIXML_COMPACT script: make test defines=$DEFINES config=coverage -j2 after_success: bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov
sudo: false language: cpp os: - linux - osx compiler: - clang - gcc env: - DEFINES=standard - DEFINES=PUGIXML_WCHAR_MODE - DEFINES=PUGIXML_COMPACT script: make test defines=$DEFINES config=coverage -j2 after_success: bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov
Add OSX to Travis config
build: Add OSX to Travis config
YAML
mit
zeux/pugixml,zeux/pugixml,zeux/pugixml,zeux/pugixml
8209142ecf6b8c916ccd06798f9fa5681db8696e
.travis.yml
.travis.yml
language: ruby cache: bundler sudo: false rvm: - 2.2 - 2.3
language: ruby cache: bundler sudo: false rvm: - 2.2.4 - 2.3.0
Set correct version of rubies.
Set correct version of rubies.
YAML
mit
frodsan/rack-secure_headers,harmoni/rack-secure_headers
afc51138b36b8a799083c011ddf5560be13d2ec8
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 - hhvm env: global: - TARGET=test matrix: fast_finish: true include: - php: 7.0 env: TARGET=cs_dry_run - php: 5.5 env: COMPOSER_FLAGS="--prefer-lowest" - php: 5.6 env: SYMFONY_VERSION=2.7.* - php: 5.6 env: SYMFONY_VERSION=2.8.* - php: 5.6 env: SYMFONY_VERSION=3.0.* allow_failures: - php: hhvm sudo: false cache: directories: - $HOME/.composer/cache before_install: - if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi; - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then echo "memory_limit=2G" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi; install: composer update --prefer-dist --no-interaction $COMPOSER_FLAGS script: - make $TARGET
language: php php: - 5.5 - 5.6 - 7.0 - hhvm env: global: - TARGET=test matrix: fast_finish: true include: - php: 7.0 env: TARGET=cs_dry_run - php: 5.5 env: COMPOSER_FLAGS="--prefer-lowest" - php: 5.6 env: SYMFONY_VERSION=2.7.* - php: 5.6 env: SYMFONY_VERSION=2.8.* allow_failures: - php: hhvm sudo: false cache: directories: - $HOME/.composer/cache before_install: - if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi; - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then echo "memory_limit=2G" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi; install: composer update --prefer-dist --no-interaction $COMPOSER_FLAGS script: - make $TARGET
Stop running tests for symfony 3.0 which is EOL
Stop running tests for symfony 3.0 which is EOL
YAML
mit
FriendsOfSymfony/FOSUserBundle,XWB/FOSUserBundle,XWB/FOSUserBundle
18b4c4c9121b22834fadabcd7aa90c66fd6f5ea8
.travis.yml
.travis.yml
language: node_js node_js: - "0.12" - "0.10" - "iojs"
language: node_js node_js: - "0.12" - "0.10" - "iojs" script: - npm test - npm rm webpack - npm i webpack@2 - npm test
Test webpack 1 and 2
Test webpack 1 and 2
YAML
mit
ampedandwired/html-webpack-plugin,SimenB/html-webpack-plugin,jantimon/html-webpack-plugin,SpaceK33z/html-webpack-plugin,ampedandwired/html-webpack-plugin,SimenB/html-webpack-plugin,jantimon/html-webpack-plugin,SpaceK33z/html-webpack-plugin,dotch/html-webpack-plugin
9f9c282fc03f503c3df233d04e39d83d0f1b06e4
_config.yml
_config.yml
name: Felipe Dornelas email: [email protected] author: Felipe Dornelas url: https://felipedornelas.com contact_page: contact defaults: - scope: path: "contact" values: permalink: "/contact/" source_url: http://github.com/felipead/felipead.github.io github_url: http://github.com/felipead twitter_url: http://twitter.com/felipead soundcloud_url: http://soundcloud.com/felipead mixcloud_url: http://mixcloud.com/felipead instagram_url: http://instagram.com/felipedornelas linkedin_url: http://linkedin.com/in/felipead resume_url: http://linkedin.com/in/felipead exclude: ['Gemfile','Gemfile.lock','.git','.gitignore','README.md','LICENSE.txt']
name: Felipe Dornelas email: [email protected] author: Felipe Dornelas url: https://felipedornelas.com contact_page: contact defaults: - scope: path: "contact" values: permalink: "/contact/" source_url: https://github.com/felipead/felipead.github.io github_url: https://github.com/felipead twitter_url: https://twitter.com/felipead soundcloud_url: https://soundcloud.com/felipead mixcloud_url: https://mixcloud.com/felipead instagram_url: https://instagram.com/felipedornelas linkedin_url: https://linkedin.com/in/felipead resume_url: https://linkedin.com/in/felipead exclude: ['Gemfile','Gemfile.lock','.git','.gitignore','README.md','LICENSE.txt']
Update all social links to use HTTPS
Update all social links to use HTTPS
YAML
mit
felipead/felipead.github.com,felipead/felipead.github.com,felipead/felipead.github.io,felipead/felipead.github.io
a2ba2f208a55d00046bb059eb0c0fb50779da7cb
_config.yml
_config.yml
# Site settings title: Re9ulus Blog header-img: img/home-bg.jpg email: [email protected] description: "IT, programming, data science" baseurl: "" # url: "http://yourdomain.com" twitter_username: re9ulusV github_username: re9ulus # facebook_username: none # Build settings markdown: kramdown highlighter: rouge #pygments permalink: pretty paginate: 8 exclude: ["less","node_modules","Gruntfile.js","package.json","README.md"] input: GFM gems: [jekyll-paginate]
# Site settings title: Re9ulus Blog header-img: img/home-bg.jpg email: [email protected] description: "IT, programming, data science" baseurl: "" # url: "http://yourdomain.com" twitter_username: re9ulusV github_username: re9ulus # facebook_username: none # Build settings markdown: kramdown highlighter: rouge #pygments permalink: pretty paginate: 8 exclude: ["less","node_modules","Gruntfile.js","package.json","README.md"] gems: [jekyll-paginate] kramdown: input: GFM syntax_highlighter: rouge
Update config, update markdown render settings
Update config, update markdown render settings
YAML
apache-2.0
angeldar/angeldar.github.io,re9ulus/re9ulus.github.io,angeldar/angeldar.github.io,angeldar/angeldar.github.io,re9ulus/re9ulus.github.io
a90ce326ce733721a01dd087ec0cc4e69c8fdb84
_config.yml
_config.yml
# Dependencies markdown: rdiscount pygments: true # Permalinks permalink: pretty # Setup title: Poole tagline: 'The Jekyll Butler.' description: 'A diligent and noble steward for building Jekyll sites.' url: http://getpoole.com author: name: 'Mark Otto' url: https://twitter.com/mdo paginate: 5 # Custom vars github: repo: https://github.com/poole/www
# Dependencies markdown: redcarpet pygments: true # Permalinks permalink: pretty # Setup title: Poole tagline: 'The Jekyll Butler.' description: 'A diligent and noble steward for building Jekyll sites.' url: http://getpoole.com author: name: 'Mark Otto' url: https://twitter.com/mdo paginate: 5 # Custom vars github: repo: https://github.com/poole/www
Change markdown engine from rdiscount to redcarpet
Change markdown engine from rdiscount to redcarpet
YAML
mit
poole/www
f0c7f2fd768d7ad7eb34ef3588cad901af47e827
_config.yml
_config.yml
markdown: redcarpet prose: metadata: _posts: - name: "title" field: element: "text" label: "Title" value: "" placeholder: "Title Goes Here" - name: "layout" field: element: "text" label: "Layout" value: "post" placeholder: "Enter a layout" - name: "external_url" field: element: "text" label: "URL Reference" value: "" placeholder: "http://"
markdown: redcarpet prose: metadata: _posts: - name: "title" field: element: "text" label: "Title" value: "" placeholder: "Title Goes Here" - name: "layout" field: element: "text" label: "Layout" value: "post" placeholder: "Enter a layout" - name: "external-url" field: element: "text" label: "URL Reference" value: "" placeholder: "http://"
Call it external-url instead of external_url
Call it external-url instead of external_url
YAML
mit
parkr/stuff,parkr/stuff,parkr/stuff,parkr/stuff,parkr/stuff,parkr/stuff
f360d0e2e7f51162bbbda395fdc138f7264f896c
_config.yml
_config.yml
url: http://clubcedille.github.io/ # Site settings title: Club Cedille email: [email protected] description: "Club Cedille Description" image: "//avatars3.githubusercontent.com/u/6483038" # Resource types collections: # - posts - projects # Color settings (hex-codes without the leading hash-tag) color: primary: fec503 secondary: ee9911 secondary-dark: '000' # Social networks usernames (many more available: google-plus, flickr, dribbble, pinterest, instagram, tumblr, linkedin, etc.) social: - title: facebook url: http://facebook.com/clubcedille - title: github url: http://github.com/ClubCedille # Postal address (add as many lines as necessary) address: - line: Cedille - line: 1100, rue Notre-Dame Ouest - line: Montréal (Québec) H3C 1K3 - line: Local A-1726 defaults: - scope: path: "" # All files values: lang: fr # Build settings markdown: kramdown permalink: pretty
url: http://clubcedille.github.io # Site settings title: Club Cedille email: [email protected] description: "Club Cedille Description" image: "//avatars3.githubusercontent.com/u/6483038" # Resource types collections: # - posts - projects # Color settings (hex-codes without the leading hash-tag) color: primary: fec503 secondary: ee9911 secondary-dark: '000' # Social networks usernames (many more available: google-plus, flickr, dribbble, pinterest, instagram, tumblr, linkedin, etc.) social: - title: facebook url: http://facebook.com/clubcedille - title: github url: http://github.com/ClubCedille # Postal address (add as many lines as necessary) address: - line: Cedille - line: 1100, rue Notre-Dame Ouest - line: Montréal (Québec) H3C 1K3 - line: Local A-1726 defaults: - scope: path: "" # All files values: lang: fr # Build settings markdown: kramdown permalink: pretty
Remove trailing slash from url
Remove trailing slash from url
YAML
apache-2.0
ClubCedille/clubcedille.github.io,ClubCedille/clubcedille.github.io,ClubCedille/clubcedille.github.io,ClubCedille/clubcedille.github.io
2565d252ecb9aeee3fde9850f0a671c7bf8b78d3
_config.yml
_config.yml
destination: ./_site lsi: false port: 4000 highligher: true markdown: rdiscount permalink: pretty paginate: 3 paginate_path: "archive/page:num/" rdiscount: extensions: [smart]
destination: ./_site lsi: false port: 4000 highligher: true markdown: rdiscount permalink: pretty baseurl: http://www.bradwestness.com/ paginate: 3 paginate_path: "archive/page:num/" rdiscount: extensions: [smart]
Add baseurl site configuration value
Add baseurl site configuration value
YAML
mit
bradwestness/bradwestness.github.io,bradwestness/bradwestness.github.io,bradwestness/bradwestness.github.io
f679cca3fd373bdd52290f028f94cfbae89b2d3a
config/syringe.yml
config/syringe.yml
parameters: sqsRegion: "" services: sqsClient: class: Aws\Sqs\SqsClient arguments: - version: "2012-11-05" region: "%sqsRegion%" messageFactory: class: Silktide\QueueBall\Sqs\MessageFactory sqsQueue: class: Silktide\QueueBall\Sqs\Queue arguments: - "@sqsClient" - "@messageFactory" # set the sqs queue to be default silktide_queueball.defaultQueue: aliasOf: "@sqsQueue"
parameters: sqsRegion: "" services: sqsClient: class: Aws\Sqs\SqsClient arguments: - version: "2012-11-05" region: "%sqsRegion%" messageFactory: class: Silktide\QueueBall\Sqs\MessageFactory abstractSqsQueue: abstract: true class: Silktide\QueueBall\Sqs\Queue arguments: client: "@sqsClient" messageFactory: "@messageFactory" queueId: null sqsQueue: extends: "abstractSqsQueue" # set the sqs queue to be default silktide_queueball.defaultQueue: aliasOf: "@sqsQueue"
Create an abstract sqs-queue service so that we can create multiple queues easily
Create an abstract sqs-queue service so that we can create multiple queues easily e.g. queue1: extends: "@silktide_queueball-sqs.abstractSqsQueue" queue2: extends: "@silktide_queueball-sqs.abstractSqsQueue"
YAML
mit
silktide/queueball-sqs
e5efdd2ceec47826712092936f11227693d1a76b
packages/ma/Map.yaml
packages/ma/Map.yaml
homepage: '' changelog-type: '' hash: a5cb8cd394cb3fe37dda0f20d662875b3a316080543c02f936fe70a6a4a5f7bc test-bench-deps: tasty-smallcheck: ! '>=0.8' base: ! '>=4.11 && <5' smallcheck: ! '>=1.1.4' map: -any tasty: ! '>=1.0' maintainer: [email protected] synopsis: Class of key-value maps changelog: '' basic-deps: base: ! '>=4.7 && <5' containers: ! '>=0.5.9 && <0.6' util: ! '>=0.1.10 && <0.2' filtrable: ! '>=0.1.2 && <0.2' either-both: ! '>=0.1.1 && <0.2' all-versions: - 0.0.0.0 - 0.0.1.0 author: M Farkas-Dyck latest: 0.0.1.0 description-type: markdown description: | # map license-name: BSD-3-Clause
homepage: '' changelog-type: '' hash: 61f293732104ccbde8f7480a61068a523a0d2b078e45bf0d0f4a44af60378d42 test-bench-deps: tasty-smallcheck: ! '>=0.8' base: ! '>=4.11 && <5' smallcheck: ! '>=1.1.4' Map: -any tasty: ! '>=1.0' maintainer: [email protected] synopsis: Class of key-value maps changelog: '' basic-deps: base: ! '>=4.7 && <5' containers: ! '>=0.5.9 && <0.6' util: ! '>=0.1.10 && <0.2' filtrable: ! '>=0.1.2 && <0.2' either-both: ! '>=0.1.1 && <0.2' all-versions: - 0.0.0.0 - 0.0.1.0 - 0.0.1.1 author: M Farkas-Dyck latest: 0.0.1.1 description-type: markdown description: | # map license-name: BSD-3-Clause
Update from Hackage at 2019-08-16T01:02:49Z
Update from Hackage at 2019-08-16T01:02:49Z
YAML
mit
commercialhaskell/all-cabal-metadata
42036f2f913046b2570ea5d4b5d939cdd9fe928f
packages/pihole.yaml
packages/pihole.yaml
## Pi-Hole homeassistant: customize: sensor.pihole_ads_blocked_today: friendly_name: Geblokkeerde advertenties sensor.pihole_ads_percentage_blocked_today: friendly_name: Percentage geblokkeerde advertenties pi_hole: host: 'localhost:4865' # default: 'pi.hole' ssl: false # default: false verify_ssl: false # default: false
## Pi-Hole homeassistant: customize: sensor.pi_hole_ads_blocked_today: friendly_name: Geblokkeerde advertenties sensor.pi_hole_ads_percentage_blocked_today: friendly_name: Percentage geblokkeerde advertenties pi_hole: host: 'localhost:4865' # default: 'pi.hole' ssl: false # default: false verify_ssl: false # default: false
Fix pi hole customization sensor names
Fix pi hole customization sensor names
YAML
mit
rtvb/home-assistant-config
112d2e13190ecc9dc7184e62eeff5045260677a8
_config.yml
_config.yml
# Site settings title: samyakchoudhary.com email: [email protected] description: Computer Science, IIT Roorkee, graduate. Aspiring Entrepreneur. ENTP. baseurl: "" # the subpath of your site, e.g. /blog url: "samyakchoudhary.com" # the base hostname & protocol for your site enable_retina: false permalink: :title nav_list: Home : ['Home', '/', 'fa-home'] About : ['About', '/about', 'fa-anchor'] single_footer: '<a href="/">latest posts</a></p>' footer_links: About: ['About', '/about'] Home : ['Home', '/'] # Build settings markdown: kramdown
# Site settings title: samyakchoudhary.com email: [email protected] description: Computer Science, IIT Roorkee, graduate. Aspiring Entrepreneur. ENTP. baseurl: "" # the subpath of your site, e.g. /blog url: "samyakchoudhary.com" # the base hostname & protocol for your site enable_retina: false permalink: :title nav_list: Home : ['Home', '/', 'fa-home'] About : ['About', '/about', 'fa-anchor'] Facebook : ['Facebook','http://facebook.com/samyak.choudhary.355', 'fa-anchor'] single_footer: '<a href="/">latest posts</a></p>' footer_links: About: ['About', '/about'] Home : ['Home', '/'] # Build settings markdown: kramdown
Add Facebook link to navbar
Add Facebook link to navbar
YAML
mit
samyak45/samyak45.github.io,samyak45/samyak45.github.io
57aabe3fb386d3067dad69c23a43572b4552e24b
_config.yml
_config.yml
url: http://jsonapi.org lsi: false source: . destination: ./public exclude: - Rakefile - README.md - Gemfile - Gemfile.lock - CNAME - .gitignore - ./public - ./stylesheets/*.scss markdown: redcarpet redcarpet: extensions: ["tables"] highlighter: pygments port: 9876 collections: format: output: true defaults: - scope: path: "" type: format values: layout: page show_sidebar: true is_spec_page: true latest_version: 1.0 # `safe `must be set false for jekyll-redirect-from # to run in development. (Github Pages will override # `safe` to be true on deploy, but it makes an # exception for jekyll-redirect from.) safe: false gems: - jekyll-redirect-from navigation: - title: JSON API url: / - title: Specification url: /format/ - title: Extensions url: /extensions/ - title: Recommendations url: /recommendations/ - title: Examples url: /examples/ - title: Implementations url: /implementations/ - title: FAQ url: /faq/ - title: About url: /about/ quicklinks: - title: View the specification url: /format/ - title: Contribute on GitHub url: https://github.com/json-api/json-api
url: http://jsonapi.org lsi: false source: . destination: ./public exclude: - Rakefile - README.md - Gemfile - Gemfile.lock - CNAME - .gitignore - ./public - ./stylesheets/*.scss markdown: redcarpet redcarpet: extensions: ["tables"] highlighter: pygments port: 9876 collections: format: output: true defaults: - scope: path: "" type: format values: layout: page show_sidebar: true is_spec_page: true latest_version: 1.0 excerpt_separator: "" # `safe `must be set false for jekyll-redirect-from # to run in development. (Github Pages will override # `safe` to be true on deploy, but it makes an # exception for jekyll-redirect from.) safe: false gems: - jekyll-redirect-from navigation: - title: JSON API url: / - title: Specification url: /format/ - title: Extensions url: /extensions/ - title: Recommendations url: /recommendations/ - title: Examples url: /examples/ - title: Implementations url: /implementations/ - title: FAQ url: /faq/ - title: About url: /about/ quicklinks: - title: View the specification url: /format/ - title: Contribute on GitHub url: https://github.com/json-api/json-api
Work around jekyll 2 -> 3 issue
Work around jekyll 2 -> 3 issue
YAML
cc0-1.0
RavelLaw/json-api,jamesdixon/json-api,beauby/json-api,RavelLaw/json-api,json-api/json-api,RavelLaw/json-api,beauby/json-api,jamesdixon/json-api,jamesdixon/json-api,json-api/json-api,json-api/json-api,RavelLaw/json-api,RavelLaw/json-api,json-api/json-api,beauby/json-api,json-api/json-api
7a1204e5f77b780368f6382d6af92c9899b27c22
_config.yml
_config.yml
# Site settings title: Ruby on Rails ガイド email: [email protected] description: > # this means to ignore newlines until "baseurl:" Rails を学び,使うための公式リファレンスマニュアル baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://railsguides.jp" # the base hostname & protocol for your site twitter_username: yasulab github_username: yasulab source: ./guides/output/ja destination: ./_site # Build settings markdown: kramdown gems: ['kramdown'] exclude: - README.md - Procfile - Gemfile - Gemfile.lock - config.ru - vendor - app.json
# Site settings title: Ruby on Rails ガイド email: [email protected] description: > # this means to ignore newlines until "baseurl:" Rails を学び,使うための公式リファレンスマニュアル baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://railsguides.jp" # the base hostname & protocol for your site twitter_username: yasulab github_username: yasulab source: ./guides/output/ja destination: ./_site # Build settings markdown: kramdown plugins: ['kramdown'] exclude: - README.md - Procfile - Gemfile - Gemfile.lock - config.ru - vendor - app.json
Fix deprecated Jekyll config: s/gems/plugins/
Fix deprecated Jekyll config: s/gems/plugins/
YAML
mit
yasslab/railsguides.jp,yasslab/railsguides.jp,yasslab/railsguides.jp,yasslab/railsguides.jp
9d091db4e545ee27374d0666a464e6b536d540cb
_config.yml
_config.yml
# Site wide configuration title: Vignesh Krish locale: en_US url: http://vigne.sh # Jekyll configuration permalink: /:categories/:title/ markdown: kramdown highlighter: pygments sass: sass_dir: _sass style: compressed gems: - jekyll-sitemap kramdown: auto_ids: true footnote_nr: 1 entity_output: as_char toc_levels: 1..6 enable_coderay: false # Site owner owner: name: Vignesh Krishnamoorthy # avatar: bio-photo.jpg email: [email protected] twitter: vignkr github: vigneshkrishnamoorthy google: plus: #username analytics: verify: ad-client: ad-slot: linkedin: vigneshkrishnamoorthy include: [".htaccess"] exclude: ["lib", "config.rb", "Capfile", "config", "log", "Rakefile", "Rakefile.rb", "tmp", "less", "*.sublime-project", "*.sublime-workspace", "test", "spec", "Gruntfile.js", "package.json", "node_modules", "Gemfile", "Gemfile.lock", "LICENSE", "README.md"]
# Site wide configuration title: Vignesh Krish locale: en_US url: http://vigne.sh # Jekyll configuration permalink: /:categories/:title/ markdown: kramdown highlighter: rouge sass: sass_dir: _sass style: compressed gems: - jekyll-sitemap kramdown: auto_ids: true footnote_nr: 1 entity_output: as_char toc_levels: 1..6 enable_coderay: false # Site owner owner: name: Vignesh Krishnamoorthy # avatar: bio-photo.jpg email: [email protected] twitter: vignkr github: vigneshkrishnamoorthy google: plus: #username analytics: verify: ad-client: ad-slot: linkedin: vigneshkrishnamoorthy include: [".htaccess"] exclude: ["lib", "config.rb", "Capfile", "config", "log", "Rakefile", "Rakefile.rb", "tmp", "less", "*.sublime-project", "*.sublime-workspace", "test", "spec", "Gruntfile.js", "package.json", "node_modules", "Gemfile", "Gemfile.lock", "LICENSE", "README.md"]
Set highlighter to rouge for Github Support.
Set highlighter to rouge for Github Support.
YAML
mit
vignkri/vignkri.github.io,vignkri/vignkri.github.io
f0945d30ba8a2581467397abae00db1e55847ef7
_config.yml
_config.yml
# Site settings title: Martin Seeler email: [email protected] description: "About programming and trading" baseurl: "" url: "http://martinseeler.github.io" twitter_username: Chasmo90 github_username: MartinSeeler timezone: "Europe/Berlin" lsi: false # Build settings markdown: kramdown kramdown: input: GFM #redcarpet: # extensions: ["smart", "tables", "no_intra_emphasis", "fenced_code_blocks", "autolink", "strikethrough", "superscript", "with_toc_data"] permalink: "/:title.html" safe: true exclude: ["bower_components/", "node_modules/", "package.json", "bower.json", "Gulpfile.*", "LICENSE", "README.md"]
# Site settings title: Martin Seeler email: [email protected] description: "About programming and trading" baseurl: "" url: "http://www.martinseeler.com" twitter_username: Chasmo90 github_username: MartinSeeler timezone: "Europe/Berlin" lsi: false # Build settings markdown: kramdown kramdown: input: GFM permalink: "/:title.html" safe: true exclude: ["bower_components/", "node_modules/", "package.json", "bower.json", "Gulpfile.*", "LICENSE", "README.md"]
Change url of jekyll page to martinseeler.com
Change url of jekyll page to martinseeler.com
YAML
mit
MartinSeeler/MartinSeeler.github.io,MartinSeeler/MartinSeeler.github.io
a8ba117f27dcbdac52d42a580c1c8bd0dd25a3d7
_config.yml
_config.yml
markdown: kramdown permalink: /blog/:year/:title/ relative_permalinks: true exclude: - CNAME - Gemfile - LICENSE - Rakefile - README.md - vendor/ layouts: ./_noita noita: name: Noita description: Jekyll theme built with Foundation author: name: Anatol Broder url: http://penibelst.de/ lang: en favicons: - /assets/2014/04/21/favicon-152.png topbar: toggle: Menu right: - name: About url: /about/ - name: Guide url: /guide/ - name: Blog url: /blog/ - name: Repository url: https://github.com/penibelst/jekyll-noita class: small button compress_html: clippings: [html, head, title, base, link, meta, style, body, article, section, nav, aside, h1, h2, h3, h4, h5, h6, hgroup, header, footer, address, p, hr, blockquote, ol, ul, li, dl, dt, dd, figure, figcaption, main, div, table, caption, colgroup, col, tbody, thead, tfoot, tr, td, th] endings: [html, head, body, li, dt, dd, p, rt, rp, optgroup, option, colgroup, caption, thead, tbody, tfoot, tr, td, th]
markdown: kramdown permalink: /blog/:year/:title/ relative_permalinks: true exclude: - CNAME - Gemfile - LICENSE - Rakefile - README.md - vendor/ - vnu/ - vnu.zip layouts: ./_noita noita: name: Noita description: Jekyll theme built with Foundation author: name: Anatol Broder url: http://penibelst.de/ lang: en favicons: - /assets/2014/04/21/favicon-152.png topbar: toggle: Menu right: - name: About url: /about/ - name: Guide url: /guide/ - name: Blog url: /blog/ - name: Repository url: https://github.com/penibelst/jekyll-noita class: small button compress_html: clippings: all endings: all comments: ["<!--", "-->"] ignore: envs: [travis]
Exclude vnu from the build
Exclude vnu from the build
YAML
mit
mariagwyn/jekyll-noita,penibelst/jekyll-noita,mariagwyn/jekyll-noita
d7327a2888e25ad6f032a5b2fab23d35f1803ed5
_config.yml
_config.yml
# Exclude Travis CI vendor directory exclude: [vendor] # Permalinks permalink: pretty # Setup title: Infomation Safety tagline: Improving information security through lessons from safety. url: http://www.information-safety.org paginate: 4 baseurl: "" # Assets # # We specify the directory for Jekyll so we can use @imports. sass: sass_dir: _sass style: :compressed # Links to include in the masthead. masthead_links: About: '/about/' Blog: '/' Resources: '/resources/' Contribute: '/contribute/' # Disqus settings disqus_url: information-safety # Google Analytics web tracking code google_analytics: UA-70082859-1 # poole custom vars prevent travis from working properly (invokes github-metadata) # Poole Custom vars #version: 2.0.0 #github: # repo: https://github.com/poole/poole # Gems gems: - jekyll-paginate - jekyll-gist
# Exclude Travis CI vendor directory exclude: [vendor] # Permalinks permalink: pretty # Setup title: Infomation Safety tagline: Improving information security through lessons from safety. url: http://www.information-safety.org paginate: 4 baseurl: "" # Assets # # We specify the directory for Jekyll so we can use @imports. sass: sass_dir: _sass style: :compressed # Links to include in the masthead. masthead_links: About: '/about/' Blog: '/' Resources: '/resources/' Contribute: '/contribute/' # Disqus settings disqus_url: information-safety # Google Analytics web tracking code google_analytics: UA-70082859-1 # poole custom vars prevent travis from working properly (invokes github-metadata) # Poole Custom vars #version: 2.0.0 #github: # repo: https://github.com/poole/poole # Plugins plugins: - jekyll-paginate - jekyll-gist
Rename deprecated gems configuration option
Rename deprecated gems configuration option
YAML
mit
information-safety/information-safety.github.io,information-safety/information-safety.github.io,information-safety/information-safety.github.io
2b56202dd2cd5b376a184416a1786cd65a5897d2
_config.yml
_config.yml
exclude: [_ignore, CNAME, README.md] # Dependencies markdown: redcarpet highlighter: false # Permalinks permalink: pretty # Setup title: Tessera tagline: Analyze Large Complex Data with R url: http://tessera.io baseurl: / excerpt_separator: <!--more--> authors: ryan: display_name: Ryan Hafen email: [email protected] # web: twitter: hafenstats github: hafen # Custom vars version: 1.0.0 github: repo: https://github.com/tesseradata/tesseradata.github.io
exclude: [_ignore, CNAME, README.md] # Dependencies markdown: redcarpet highlighter: false # Permalinks permalink: pretty # Setup title: Tessera tagline: Analyze Large Complex Data with R url: http://tessera.io baseurl: / excerpt_separator: <!--more--> author : name : Ryan Hafen email : [email protected] github : hafen twitter : hafenstats authors: ryan: display_name: Ryan Hafen email: [email protected] # web: twitter: hafenstats github: hafen # Custom vars version: 1.0.0 github: repo: https://github.com/tesseradata/tesseradata.github.io
Fix config to contain data needed in atom.xml
Fix config to contain data needed in atom.xml
YAML
mit
tesseradata/tesseradata.github.io,tesseradata/tesseradata.github.io
7f7216f425c26d6bec834ca5667cc1f5fa151921
_config.yml
_config.yml
excerpt_separator: "" pygments: true markdown: kramdown url: http://maurodoglio.github.io title: maurodoglio.com tagline: A blog about snakes, dinosaurs and unicorns description: This is the personal blog post of Mauro Doglio. paginate: 10 comments : provider : disqus disqus : short_name : maurodogliocom livefyre : site_id : 123 intensedebate : account : 123abc facebook : appid : 123 num_posts: 5 width: 580 colorscheme: light
excerpt_separator: "" pygments: true markdown: kramdown url: http://maurodoglio.github.io title: maurodoglio.com tagline: A blog about snakes, dinosaurs and unicorns description: This is the personal blog post of Mauro Doglio. paginate: 10 comments : provider : disqus disqus : short_name : maurodogliocom livefyre : site_id : 123 intensedebate : account : 123abc facebook : appid : 123 num_posts: 5 width: 580 colorscheme: light # Settings for analytics helper # Set 'provider' to the analytics provider you want to use. # Set 'provider' to false to turn analytics off globally. # analytics : provider : google google : tracking_id : 'UA-30883241-1' getclicky : site_id : mixpanel : token : '_MIXPANEL_TOKEN_'
Add configuration for google analytics
Add configuration for google analytics
YAML
mit
maurodoglio/maurodoglio.github.io,maurodoglio/maurodoglio.github.io
158dacc94152ed48e26ee3fd2f86d2589b190699
_config.yml
_config.yml
name: Github Pages Blog markdown: redcarpet redcarpet: extensions: ["strikethrough"] permalink: pretty pygments: true comments: true gems: - jekyll-redirect-from
name: Github Pages Blog markdown: redcarpet redcarpet: extensions: ["strikethrough"] permalink: pretty rouge: true comments: true gems: - jekyll-redirect-from
Use rouge instead of pygments for syntax highlighter.
Use rouge instead of pygments for syntax highlighter.
YAML
mit
indradhanush/indradhanush.github.io,indradhanush/indradhanush.github.io,indradhanush/indradhanush.github.io
c5c354d41a58ac9018c15d6b69aaacf688335ff6
.github/workflows/regression_tests.yml
.github/workflows/regression_tests.yml
name: Origen Core Regression Tests on: [push, pull_request] jobs: build: strategy: matrix: # os: [ubuntu-latest, windows-latest] os: [ubuntu-latest] ruby-version: [2.5, 2.6, 2.7, 3.0, 3.1] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} - name: Update Env run: echo "ACTIONS_ALLOW_UNSECURE_COMMANDS=true" >> $GITHUB_ENV # - name: Install Bundler # run: gem install bundler -v '> 2' - name: Install dependencies run: bundle install - name: Gem Install Origen run: gem install origen - name: Setup Dependencies run: origen -v - name: Run Origen Lint run: origen lint --no-correct - name: Set Origen to debug mode run: origen m debug - name: Run Spec tests run: origen test -c - name: Verify Building website run: origen web compile --no-serve
name: Origen Core Regression Tests on: [push, pull_request] jobs: build: strategy: matrix: # os: [ubuntu-latest, windows-latest] os: [ubuntu-latest] ruby-version: [2.5, 2.6, 2.7, 3.0, 3.1] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} - name: Update Env run: echo "ACTIONS_ALLOW_UNSECURE_COMMANDS=true" >> $GITHUB_ENV - name: Install Bundler run: gem install bundler -v '> 2' - name: Install dependencies run: bundle install - name: Gem Install Origen run: gem install origen - name: Setup Dependencies run: origen -v - name: Run Origen Lint run: origen lint --no-correct - name: Set Origen to debug mode run: origen m debug - name: Run Spec tests run: origen test -c - name: Verify Building website run: origen web compile --no-serve
Revert "try with whatever bundler version"
Revert "try with whatever bundler version" This reverts commit ca8985dbd249aeef0af1326bd2468a982c5d19ba.
YAML
mit
Origen-SDK/origen,Origen-SDK/origen,Origen-SDK/origen,Origen-SDK/origen
d981127c2ea04e5d573988426290978d97c94056
_config/maps.yml
_config/maps.yml
--- Name: mappable After: 'framework/*','cms/*' --- Mappable: allow_full_screen: true use_compressed_assets: false mapping_service: 'Google' MapExtension: map_info_window_suffix: 'MapInfoWindow'
--- Name: mappable After: 'framework/*','cms/*' --- Mappable: allow_full_screen: true use_compressed_assets: false mapping_service: 'Google' #service_key: 'YOUR SERVICE KEY' #Language to load the Map Service in language: 'en' MapExtension: map_info_window_suffix: '_MapInfoWindow'
Move map key and language into the config file. Also make map info window consistent
FIX: Move map key and language into the config file. Also make map info window consistent
YAML
bsd-3-clause
gordonbanderson/Mappable,gordonbanderson/Mappable
53f3c4c22ae68f26be0c2c1c9c0be381179ccc70
haskell.yml
haskell.yml
- nam: p6 src: > 1 == 1 exp: > Prelude> True - nam: p6 src: > 2 /= 3 exp: > Prelude> True
- nam: p6 src: | 1 == 1 exp: | Prelude> True - nam: p6 src: | 2 /= 3 exp: | Prelude> True - nam: wojte src: | hello "w" exp: | Prelude> <interactive>:2:1: Not in scope: ‘hello’
Change > to |. Add 1 more sample.
Change > to |. Add 1 more sample.
YAML
bsd-2-clause
wkoszek/haskell_edu
316942494447667cdd56753599e56668cea03672
appengine/config_service/module-backend.yaml
appengine/config_service/module-backend.yaml
# Copyright 2015 The LUCI Authors. All rights reserved. # Use of this source code is governed under the Apache License, Version 2.0 # that can be found in the LICENSE file. application: luci-config module: backend version: 1 runtime: python27 api_version: 1 threadsafe: true handlers: - url: /internal.* script: apps.backend secure: always login: admin includes: - components/auth - components/ereporter2 libraries: - name: endpoints version: "1.0" - name: pycrypto version: "2.6" - name: six version: "1.9.0" - name: webapp2 version: "2.5.2" - name: webob version: "1.2.3" - name: yaml version: "3.10" skip_files: # Test and tools. - support/ - ^tests/ - ^tools/ - test_.+ - .+_test\.py$ # Junk files. - ^(.*/)?\..* - .+\.orig$ - .+\.rej$ - ^(.*/)?#.*# - .+~ - .+\.py[co] - ^[A-Z]+$ - ^[A-Z]+\.[a-z]+$
# Copyright 2015 The LUCI Authors. All rights reserved. # Use of this source code is governed under the Apache License, Version 2.0 # that can be found in the LICENSE file. application: luci-config module: backend version: 1 runtime: python27 api_version: 1 threadsafe: true instance_class: F2 handlers: - url: /internal.* script: apps.backend secure: always login: admin includes: - components/auth - components/ereporter2 libraries: - name: endpoints version: "1.0" - name: pycrypto version: "2.6" - name: six version: "1.9.0" - name: webapp2 version: "2.5.2" - name: webob version: "1.2.3" - name: yaml version: "3.10" skip_files: # Test and tools. - support/ - ^tests/ - ^tools/ - test_.+ - .+_test\.py$ # Junk files. - ^(.*/)?\..* - .+\.orig$ - .+\.rej$ - ^(.*/)?#.*# - .+~ - .+\.py[co] - ^[A-Z]+$ - ^[A-Z]+\.[a-z]+$
Use F2 instance class on backend
[luci-config] Use F2 instance class on backend Bump luci-config instance class to F2 to resolve OOMs. [email protected] Change-Id: I920e8dea1a549405f14f1b3888d50093b8e90c84 Reviewed-on: https://chromium-review.googlesource.com/1142138 Reviewed-by: Vadim Shtayura <[email protected]> Commit-Queue: Nodir Turakulov <[email protected]>
YAML
apache-2.0
luci/luci-py,luci/luci-py,luci/luci-py,luci/luci-py
b04f062d9075ce464f74b5b647b3c74c1ad98f7e
packages/ma/mappy.yaml
packages/ma/mappy.yaml
homepage: https://github.com/PolyglotSymposium/mappy changelog-type: '' hash: 770c1d91784a599475869d78d73186ea490078c86f5a66d085b796103c30ede5 test-bench-deps: base: -any mappy: -any hspec: -any parsec: -any containers: -any QuickCheck: -any maintainer: [email protected] synopsis: A functional programming language focused around maps. changelog: '' basic-deps: haskeline: -any base: ! '>=4.7 && <5' mappy: -any parsec: -any containers: -any ansi-terminal: -any directory: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.1.0' - '0.1.2.0' - '0.1.2.1' author: Michael Gilliland latest: '0.1.2.1' description-type: haddock description: Please see README.md license-name: BSD3
homepage: https://github.com/PolyglotSymposium/mappy changelog-type: '' hash: 10c89b07b10fc20bacfeba80f57a0f96b4e0ffe2c29188baa57c0999f872e43e test-bench-deps: base: -any mappy: -any hspec: -any parsec: -any containers: -any QuickCheck: -any maintainer: [email protected] synopsis: A functional programming language focused around maps. changelog: '' basic-deps: haskeline: -any base: ! '>=4.7 && <5' mappy: -any parsec: -any containers: -any ansi-terminal: -any directory: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.1.0' - '0.1.2.0' - '0.1.2.1' - '0.1.3.0' author: Michael Gilliland latest: '0.1.3.0' description-type: haddock description: Please see README.md license-name: BSD3
Update from Hackage at 2016-02-13T03:41:00+0000
Update from Hackage at 2016-02-13T03:41:00+0000
YAML
mit
commercialhaskell/all-cabal-metadata
00a046d6e99a1f668f53c4d520455e70c5b84527
prow/prowjobs/GoogleCloudPlatform/secrets-store-csi-driver-provider-gcp/secrets-store-csi-driver-provider-gcp-config.yaml
prow/prowjobs/GoogleCloudPlatform/secrets-store-csi-driver-provider-gcp/secrets-store-csi-driver-provider-gcp-config.yaml
presubmits: GoogleCloudPlatform/secrets-store-csi-driver-provider-gcp: - name: prow-e2e-tests cluster: secretmanager-csi-build decorate: true # Decorate with Prow utilities always_run: true # Run for every PR, or only when requested. spec: containers: - image: gcr.io/google.com/cloudsdktool/cloud-sdk:alpine command: - test/infra/prow/presubmit.sh env: - name: GOOGLE_APPLICATION_CREDENTIALS value: /etc/gcs-access-service-account/service-account.json volumeMounts: - name: gcs-access-service-account mountPath: /etc/gcs-access-service-account volumes: - name: gcs-access-service-account secret: secretName: service-account
presubmits: GoogleCloudPlatform/secrets-store-csi-driver-provider-gcp: - name: prow-e2e-tests cluster: build-secretmanager-csi decorate: true # Decorate with Prow utilities always_run: true # Run for every PR, or only when requested. spec: containers: - image: gcr.io/google.com/cloudsdktool/cloud-sdk:alpine command: - test/infra/prow/presubmit.sh env: - name: GOOGLE_APPLICATION_CREDENTIALS value: /etc/gcs-access-service-account/service-account.json volumeMounts: - name: gcs-access-service-account mountPath: /etc/gcs-access-service-account volumes: - name: gcs-access-service-account secret: secretName: service-account
Update secrets-store-csi-driver-provider-gcp with correct cluster name
Update secrets-store-csi-driver-provider-gcp with correct cluster name
YAML
apache-2.0
GoogleCloudPlatform/oss-test-infra,GoogleCloudPlatform/oss-test-infra
0566e661ce86717886aa02eaddcba40cf771893a
loomengine/client/playbooks/tasks/run_task.yml
loomengine/client/playbooks/tasks/run_task.yml
- name: Run the Loom task runner. docker_container: name: "{{taskrunner_container_name}}-{{task_attempt_id}}" image: "{{loom_docker_image}}" volumes: "{{[ '/var/run/docker.sock'~':'~'/var/run/docker.sock', \ storage_root~':'~storage_root ]}}" api_version: auto network_mode: host command: /bin/bash -c 'loom-taskrunner --task_attempt_id {{task_attempt_id}} --master_url {{server_url}} --log_level {{log_level}} --log_file {{storage_root}}/loom_taskrunner-{{task_attempt_id}}.log}}' log_driver: fluentd log_options: fluentd-address: "{{server_url | regex_replace('^.*://(.+):.*$', '\\1')}}:{{fluentd_port}}" fluentd-async-connect: "true" tag: "loom.{%raw%}{{.Name}}.{{.ID}}{%endraw%}"
- name: Run the Loom task runner. docker_container: name: "{{taskrunner_container_name}}-{{task_attempt_id}}" image: "{{loom_docker_image}}" volumes: "{{[ '/var/run/docker.sock'~':'~'/var/run/docker.sock', \ storage_root~':'~storage_root ]}}" api_version: auto network_mode: host command: /bin/bash -c 'loom-taskrunner --task_attempt_id {{task_attempt_id}} --master_url {{server_url}} --log_level {{log_level}} --log_file {{storage_root}}/loom_taskrunner-{{task_attempt_id}}.log}}' log_driver: fluentd log_options: fluentd-address: "{{server_url | regex_replace('^.*://([^:]+)(?::.+)?$', '\\1')}}:{{fluentd_port}}" fluentd-async-connect: "true" tag: "loom.{%raw%}{{.Name}}.{{.ID}}{%endraw%}"
Update regex that extracts hostname/ip from server_url to handle urls without ports.
Update regex that extracts hostname/ip from server_url to handle urls without ports.
YAML
agpl-3.0
StanfordBioinformatics/loom,StanfordBioinformatics/loom,StanfordBioinformatics/loom,StanfordBioinformatics/xppf,StanfordBioinformatics/xppf,StanfordBioinformatics/xppf,StanfordBioinformatics/loom,StanfordBioinformatics/xppf
7dea3556f9ea3086251afa735eebbccd3fd111dc
manifests/shared/deployments/datadog-agent.yml
manifests/shared/deployments/datadog-agent.yml
--- releases: - name: datadog-agent sha1: 14c7f9be2eb534fda1f4c70ea2355865ac93a87b url: https://github.com/alphagov/paas-datadog-agent-boshrelease/releases/download/v5.8.5.3-gds/datadog-agent-v5.8.5.3-gds.tgz version: "v5.8.5.3-gds" meta: datadog: enabled: (( grab $ENABLE_DATADOG )) api_key: (( grab $DATADOG_API_KEY || "undefined" )) application_key: (( grab $DATADOG_APP_KEY || "undefined" )) use_dogstatsd: false include_bosh_tags: true tags: aws_account: (( grab $AWS_ACCOUNT )) deploy_env: (( grab terraform_outputs.environment ))
--- releases: - name: datadog-agent version: 0.1.1 url: https://s3-eu-west-1.amazonaws.com/gds-paas-build-releases/datadog-agent-0.1.1.tgz sha1: 71c6e2f957b4381d44dedce1b1080cbfc5e8ef28 meta: datadog: enabled: (( grab $ENABLE_DATADOG )) api_key: (( grab $DATADOG_API_KEY || "undefined" )) application_key: (( grab $DATADOG_APP_KEY || "undefined" )) use_dogstatsd: false include_bosh_tags: true tags: aws_account: (( grab $AWS_ACCOUNT )) deploy_env: (( grab terraform_outputs.environment ))
Use CI-built datadog agent release
Use CI-built datadog agent release This is the same version but the build is now automated.
YAML
mit
alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf
faaecc01944670f47b0a967560345ddbb0d18deb
.gitlab-ci.yml
.gitlab-ci.yml
image: debian:stable # run this before every stage before_script: # install environment - apt-get update -q && apt-get install -qq curl python3-pip > /dev/null - pip3 install -r requirements.txt # set up project - cp salt_observer/private_settings.example.py salt_observer/private_settings.py # build stage is the first stage build_staticfiles: stage: build script: # Install nodejs - curl -sL https://deb.nodesource.com/setup_4.x | sh > /dev/null 2>&1 - apt-get update -q && apt-get install -qq nodejs # install & run gulp - npm i gulp-cli --global > /dev/null - npm i > /dev/null - gulp build # collect staticfiles - python3 manage.py collectstatic --noinput artifacts: paths: - static/ name: "staticfiles" # execute test stage jobs if build stage is completed successful check_runserver: stage: test script: - python3 manage.py runserver localhost:8000 & - sleep 5 - curl -isSf http://localhost:8000/ try_migrations: stage: test script: - python3 manage.py migrate
image: debian:stable # run this before every stage before_script: # install environment - apt-get update -q && apt-get install -qq curl python3-pip > /dev/null - pip3 install -r requirements.txt # set up project - cp salt_observer/private_settings.example.py salt_observer/private_settings.py # build stage is the first stage build_staticfiles: stage: build only: [master] script: - curl -sL https://deb.nodesource.com/setup_4.x | sh > /dev/null 2>&1 - apt-get update -q && apt-get install -qq nodejs # install & run gulp - npm i gulp-cli --global > /dev/null - npm i > /dev/null - gulp build # collect staticfiles - python3 manage.py collectstatic --noinput artifacts: paths: - static/ name: "staticfiles" # execute test stage jobs if build stage is completed successful check_runserver: stage: test script: - python3 manage.py runserver localhost:8000 & - sleep 5 - curl -isSf http://localhost:8000/ try_migrations: stage: test script: - python3 manage.py migrate
Move ci build task to master branch only
Move ci build task to master branch only
YAML
mit
hs-hannover/salt-observer,hs-hannover/salt-observer,hs-hannover/salt-observer
e3cf721333d5684ef01eae32d3b1b42a5334a58a
.gitlab-ci.yml
.gitlab-ci.yml
image: docker:stable variables: BUILDER_TAG: index.docker.io/algorithmiahq/dev-center:latest IMAGE_TAG: index.docker.io/algorithmiahq/dev-center:$CI_COMMIT_SHA GIT_SUBMODULE_STRATEGY: recursive services: - docker:19.03.4 stages: - build - push # # Build # build: stage: build image: name: docker:stable entrypoint: [""] before_script: - mkdir ~/.docker - echo "$DOCKER_AUTH_CONFIG" > ~/.docker/config.json - docker pull $BUILDER_TAG || true script: - docker build -t $BUILDER_TAG -t $IMAGE_TAG --file $CI_PROJECT_DIR/Dockerfile --cache-from $BUILDER_TAG $CI_PROJECT_DIR - docker push $BUILDER_TAG - mkdir image - docker save $IMAGE_TAG > image/golduck.tar artifacts: paths: - image # # Push # push: stage: push image: name: docker:stable entrypoint: [""] before_script: - mkdir ~/.docker - echo "$DOCKER_AUTH_CONFIG" > ~/.docker/config.json script: - docker load -i image/golduck.tar - docker push $IMAGE_TAG only: - /^(master|develop)$/ except: - tags
image: docker:stable variables: BUILDER_TAG: index.docker.io/algorithmiahq/dev-center:latest IMAGE_TAG: index.docker.io/algorithmiahq/dev-center:$CI_COMMIT_SHA GIT_SUBMODULE_STRATEGY: recursive services: - docker:18.09.7 stages: - build - push # # Build # build: stage: build image: name: docker:stable entrypoint: [""] before_script: - mkdir ~/.docker - echo "$DOCKER_AUTH_CONFIG" > ~/.docker/config.json - docker pull $BUILDER_TAG || true script: - docker build -t $BUILDER_TAG -t $IMAGE_TAG --file $CI_PROJECT_DIR/Dockerfile --cache-from $BUILDER_TAG $CI_PROJECT_DIR - docker push $BUILDER_TAG - mkdir image - docker save $IMAGE_TAG > image/golduck.tar artifacts: paths: - image # # Push # push: stage: push image: name: docker:stable entrypoint: [""] before_script: - mkdir ~/.docker - echo "$DOCKER_AUTH_CONFIG" > ~/.docker/config.json script: - docker load -i image/golduck.tar - docker push $IMAGE_TAG only: - /^(master|develop)$/ except: - tags
Revert to previous docker version.
Revert to previous docker version.
YAML
mit
algorithmiaio/dev-center,algorithmiaio/dev-center,algorithmiaio/dev-center,algorithmiaio/dev-center
d4fdff56cf386427ce301e4840dda94c7fdb6ebf
.gitlab-ci.yml
.gitlab-ci.yml
variables: MAVEN_OPTS: "-Djava.awt.headless=true -Dmaven.repo.local=./.m2/repository" MAVEN_CLI_OPTS: "-s bin/settings.xml --batch-mode -U --errors --fail-at-end --show-version -Droot.logging.level=INFO" cache: paths: - ./.m2/repository # keep cache across branch key: "$CI_BUILD_REF_NAME" .verify: &verify stage: test script: - export repoToken=$COVERALLS_TOKEN - mvn $MAVEN_CLI_OPTS clean install verify jacoco:report coveralls:report -Dmaven.javadoc.skip=true # Verify merge requests using JDK8 verify:jdk8: <<: *verify image: maven:3-jdk-8 # Verify merge requests using JDK11 verify:jdk11: <<: *verify image: maven:3-jdk-11 when: manual deploy:jdk8: stage: deploy script: - mvn $MAVEN_CLI_OPTS deploy -DskipTests=true -Dmaven.javadoc.skip=true only: - master image: maven:3-jdk-8
variables: MAVEN_OPTS: "-Djava.awt.headless=true -Dmaven.repo.local=./.m2/repository" MAVEN_CLI_OPTS: "-s bin/settings.xml --batch-mode -U --errors --fail-at-end --show-version -Droot.logging.level=INFO" cache: paths: - ./.m2/repository # keep cache across branch key: "$CI_BUILD_REF_NAME" .verify: &verify stage: test script: - export repoToken=$COVERALLS_TOKEN - export CI_BRANCH=$CI_COMMIT_REF_NAME - mvn $MAVEN_CLI_OPTS clean install verify jacoco:report coveralls:report -Dmaven.javadoc.skip=true # Verify merge requests using JDK8 verify:jdk8: <<: *verify image: maven:3-jdk-8 # Verify merge requests using JDK11 verify:jdk11: <<: *verify image: maven:3-jdk-11 when: manual deploy:jdk8: stage: deploy script: - mvn $MAVEN_CLI_OPTS deploy -DskipTests=true -Dmaven.javadoc.skip=true only: - master image: maven:3-jdk-8
Set environment variable for coveralls
Set environment variable for coveralls
YAML
apache-2.0
kuujo/copycat,atomix/atomix,atomix/atomix,kuujo/copycat
3a10ccc8593e6c46a48917d64a51ff0f8d746543
docs/_data/docs_navigation.yml
docs/_data/docs_navigation.yml
- name: Basics children: - link: /docs/ - link: /docs/filename.html - link: /docs/search.html - link: /docs/favorites.html - link: /docs/website-login.html - link: /docs/shortcuts.html - link: /docs/faq.html - name: Commands children: - link: /docs/commands/ - link: /docs/commands/my-imouto.html - link: /docs/commands/gelbooru.html - link: /docs/commands/shimmie.html - name: Sources children: - link: /docs/sites/ - link: /docs/sites/source.html - link: /docs/sites/javascript-helper.html - name: Plugins children: - link: /docs/plugins/translation.html - link: /docs/plugins/theme.html - name: Tools children: - link: /docs/tools/blacklist-fixer.html - link: /docs/tools/image-renamer.html - link: /docs/tools/tag-loader.html - name: Advanced children: - link: /docs/compilation.html - link: /docs/cli.html - link: /docs/portable-version.html - link: /docs/telemetry.html
- name: Basics children: - link: /docs/ - link: /docs/filename.html - link: /docs/search.html - link: /docs/favorites.html - link: /docs/website-login.html - link: /docs/shortcuts.html - link: /docs/faq.html - name: Commands children: - link: /docs/commands/ - link: /docs/commands/szurubooru.html - link: /docs/commands/my-imouto.html - link: /docs/commands/gelbooru.html - link: /docs/commands/shimmie.html - name: Sources children: - link: /docs/sites/ - link: /docs/sites/source.html - link: /docs/sites/javascript-helper.html - name: Plugins children: - link: /docs/plugins/translation.html - link: /docs/plugins/theme.html - name: Tools children: - link: /docs/tools/blacklist-fixer.html - link: /docs/tools/image-renamer.html - link: /docs/tools/tag-loader.html - name: Advanced children: - link: /docs/compilation.html - link: /docs/cli.html - link: /docs/portable-version.html - link: /docs/telemetry.html
Add Szurubooru link in the docs navbar
Add Szurubooru link in the docs navbar
YAML
apache-2.0
Bionus/imgbrd-grabber,Bionus/imgbrd-grabber,Bionus/imgbrd-grabber,Bionus/imgbrd-grabber,Bionus/imgbrd-grabber,Bionus/imgbrd-grabber
c4d1c7ae52bb8b9b9d8f8bb528723934c6d15b87
apps/bletest/pkg.yml
apps/bletest/pkg.yml
# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # pkg.name: apps/bletest pkg.type: app pkg.description: Test project for the nimble BLE controller. pkg.author: "Apache Mynewt <[email protected]>" pkg.homepage: "http://mynewt.apache.org/" pkg.keywords: pkg.deps: - net/nimble/controller - net/nimble/host - libs/os - libs/console/full - libs/shell - libs/imgmgr - libs/newtmgr - sys/config - sys/log - sys/stats pkg.cflags: -DBLETEST
# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # pkg.name: apps/bletest pkg.type: app pkg.description: Test project for the nimble BLE controller. pkg.author: "Apache Mynewt <[email protected]>" pkg.homepage: "http://mynewt.apache.org/" pkg.keywords: pkg.deps: - fs/nffs - net/nimble/controller - net/nimble/host - libs/os - libs/console/full - libs/shell - libs/imgmgr - libs/newtmgr - sys/config - sys/log - sys/stats pkg.cflags: -DBLETEST
Add dependency for nffs to bletest
Add dependency for nffs to bletest
YAML
apache-2.0
andrzej-kaczmarek/apache-mynewt-core,IMGJulian/incubator-mynewt-core,mlaz/mynewt-core,andrzej-kaczmarek/incubator-mynewt-core,IMGJulian/incubator-mynewt-core,IMGJulian/incubator-mynewt-core,IMGJulian/incubator-mynewt-core,wes3/incubator-mynewt-core,mlaz/mynewt-core,mlaz/mynewt-core,IMGJulian/incubator-mynewt-core,mlaz/mynewt-core,andrzej-kaczmarek/incubator-mynewt-core,andrzej-kaczmarek/apache-mynewt-core,wes3/incubator-mynewt-core,andrzej-kaczmarek/incubator-mynewt-core,wes3/incubator-mynewt-core,andrzej-kaczmarek/apache-mynewt-core,wes3/incubator-mynewt-core,wes3/incubator-mynewt-core,andrzej-kaczmarek/apache-mynewt-core,mlaz/mynewt-core,andrzej-kaczmarek/incubator-mynewt-core,andrzej-kaczmarek/incubator-mynewt-core
5cd0f936744f8dd304ac0576799803a18af55582
.gitlab-ci.yml
.gitlab-ci.yml
stages: - test - build before_script: - ./scripts/get-ci-version python3.4: image: python:3.4-alpine stage: test script: - pip install -e .[test] - pylint --errors-only fwgen - PYTHONPATH=. pytest --cov=fwgen -vv tags: - docker dist: image: python:3.4-alpine stage: build script: - pip install wheel - python setup.py bdist_wheel artifacts: paths: - dist/*.whl tags: - docker
stages: - test - build before_script: - ./scripts/get-ci-version python3.4: image: python:3.4-alpine stage: test script: - pip install -e .[test] - pylint --errors-only fwgen - PYTHONPATH=. pytest --cov=fwgen -vv tags: - docker dist: image: python:3.4-alpine stage: build script: - python setup.py bdist_wheel artifacts: paths: - dist/*.whl tags: - docker
Remove wheel install from CI debug test
Remove wheel install from CI debug test
YAML
mit
hkbakke/fwgen
0bd62341511042569b4fc6130a51c182357a2539
.gitlab-ci.yml
.gitlab-ci.yml
variables: DOCKER_DRIVER: overlay2 stages: - build .retry_twice: retry: max: 2 when: - runner_system_failure - stuck_or_timeout_failure natif-build: extends: .retry_twice stage: build image: registry.orfeo-toolbox.org/sdinot/otb:ubuntu-18.04-gccV0.2 script: - ctest -VV -S CI/main_ci.cmake \ -DCTEST_SITE:string=${CI_MERGE_REQUEST_PROJECT_PATH}_ubuntu-18.04 shark-build: extends: .retry_twice stage: build image: registry.orfeo-toolbox.org/sdinot/otb:ubuntu18.04-shark3.1.4 script: - ctest -VV -S CI/main_ci.cmake \ -DCTEST_SITE:string=${CI_MERGE_REQUEST_PROJECT_PATH}_ubuntu18.04-shark3.1.4
variables: DOCKER_DRIVER: overlay2 stages: - build .retry_twice: retry: max: 2 when: - runner_system_failure - stuck_or_timeout_failure natif-build: extends: .retry_twice stage: build image: registry.orfeo-toolbox.org/sdinot/otb:ubuntu-18.04-gccV0.2 script: - echo ${CI_MERGE_REQUEST_PROJECT_PATH} # - ctest -VV -S CI/main_ci.cmake \ # "-DCTEST_SITE:string=${CI_MERGE_REQUEST_PROJECT_PATH}_ubuntu-18.04" shark-build: extends: .retry_twice stage: build image: registry.orfeo-toolbox.org/sdinot/otb:ubuntu18.04-shark3.1.4 script: # - ctest -VV -S CI/main_ci.cmake \ # -DCTEST_SITE:string=${CI_MERGE_REQUEST_PROJECT_PATH}_ubuntu18.04-shark3.1.4
Test to retreive value of CI_MERGE_REQUEST_PROJECT_PATH
Test to retreive value of CI_MERGE_REQUEST_PROJECT_PATH
YAML
apache-2.0
orfeotoolbox/OTB,orfeotoolbox/OTB,orfeotoolbox/OTB,orfeotoolbox/OTB,orfeotoolbox/OTB,orfeotoolbox/OTB
ab0c0713f81c3f769e059d91993bbfe56e3782c1
.gitlab-ci.yml
.gitlab-ci.yml
stages: - test - build - deploy before_script: - apk update - apk add nodejs nodejs-npm git - npm install - npm install cli/ test: stage: test tags: - alpine script: npm run-script test build: stage: build tags: - alpine script: npm run-script build
stages: - build - deploy before_script: - apk update - apk add nodejs nodejs-npm git - npm install - npm install cli/ build: stage: build tags: - alpine script: npm run-script build
Accelerate CI pipeline: Test is run during build
Accelerate CI pipeline: Test is run during build
YAML
mit
elor/tuvero
33d256db0155c7fab0e28a56cd503477bef07e70
.gitlab-ci.yml
.gitlab-ci.yml
# .gitlab-ci.yml -- configures gitlab.com CI system # # The MIT Licence (MIT) # # Copyright (c) 2016 Samuel Sirois (sds) <[email protected]> # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included # in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN # NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR # THE USE OR OTHER DEALINGS IN THE SOFTWARE. before_script: - apt update -qq && apt install -y -qq shunit2 stages: - test - deploy check: stage: test script: - make check build-example-artifacts: stage: deploy script: - make build-example-artifacts artifacts: paths: - artifacts/
# .gitlab-ci.yml -- configures gitlab.com CI system # # The MIT Licence (MIT) # # Copyright (c) 2016 Samuel Sirois (sds) <[email protected]> # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included # in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN # NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR # THE USE OR OTHER DEALINGS IN THE SOFTWARE. before_script: - apt-get update -qq && apt-get install -y -qq shunit2 xsltproc stages: - test - deploy check: stage: test script: - make check build-example-artifacts: stage: deploy script: - make build-example-artifacts artifacts: paths: - artifacts/
Add xsltproc package (and use apt-get to avoid warnings)
Add xsltproc package (and use apt-get to avoid warnings)
YAML
mit
ssirois/hephaestus
38790830f432c2492218f4e5efd497fd19cfbb97
.gitlab-ci.yml
.gitlab-ci.yml
image: mvdan/fdroid-ci:base-20160414 test: script: - pip3 install -e . - cd tests - ./complete-ci-tests
image: mvdan/fdroid-ci:server-20160429 test: script: - pip3 install -e . - cd tests - ./complete-ci-tests
Update image, not using base anymore
CI: Update image, not using base anymore Since base is now 200MB smaller, this one is smaller too. The fdroidserver-only deps are now in the client image - mainly python3-dev, gcc and all the build deps for stuff like pillow.
YAML
agpl-3.0
fdroidtravis/fdroidserver,f-droid/fdroidserver,f-droid/fdroid-server,f-droid/fdroid-server,f-droid/fdroid-server,f-droid/fdroidserver,f-droid/fdroidserver,fdroidtravis/fdroidserver,fdroidtravis/fdroidserver,f-droid/fdroid-server,f-droid/fdroid-server,f-droid/fdroidserver,f-droid/fdroidserver,fdroidtravis/fdroidserver
499f61b9f664bbd52b8e36c14ce7adba8796fd2a
.gitlab-ci.yml
.gitlab-ci.yml
# iOS template, see monorepo/Templates # # Version: 1 stages: - test - build before_script: - git status - echo $CI_PROJECT_PATH - export LANG=en_US.UTF-8 - export LANGUAGE=en_US.UTF-8 - export LC_ALL=en_US.UTF-8 - export FASTLANE_SKIP_UPDATE_CHECK=1 - gem install bundle - bundle install after_script: - git status test: stage: test tags: - ios script: - bundle exec fastlane tests build: stage: build only: - master tags: - ios script: - bundle exec fastlane build
# iOS template, see monorepo/Templates # # Version: 1 stages: - test - build before_script: - git status - echo $CI_PROJECT_PATH - export LANG=en_US.UTF-8 - export LANGUAGE=en_US.UTF-8 - export LC_ALL=en_US.UTF-8 - export FASTLANE_SKIP_UPDATE_CHECK=1 - gem install bundle - bundle install after_script: - git status test: stage: test tags: - ios script: - bundle exec fastlane tests build: stage: build only: - master tags: - ios script: - bundle exec fastlane build artifacts: paths: - release/ expire_in: 1 day
Update GitLab CI configuration to use build artefacts
Update GitLab CI configuration to use build artefacts
YAML
apache-2.0
graemer957/SimpleRESTLayer,graemer957/SimpleRESTLayer,graemer957/SimpleRESTLayer
dff9a9ad164a93d77a5124f52d5755bb4c4db171
.gitlab-ci.yml
.gitlab-ci.yml
image: ubuntu:vivid test-stable: script: - apt-get install -y curl - curl -sSf https://static.rust-lang.org/rustup.sh | sh - grep -v "maud_macros" Cargo.toml > Cargo.toml.new - mv Cargo.toml.new Cargo.toml - cargo build --release --verbose - cargo test --verbose artifacts: paths: - target/doc - target/package/maud-pulldown-cmark-*.crate test-beta: script: - apt-get install -y curl - curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- --channel=beta - travis-cargo build --release --verbose - travis-cargo test --verbose - travis-cargo package --verbose test-nightly: script: - apt-get install -y curl - curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- --channel=nightly - travis-cargo build --release --verbose - travis-cargo test --verbose
image: ubuntu:vivid test-stable: script: - apt-get install -y curl - curl -sSf https://static.rust-lang.org/rustup.sh | sh - grep -v "maud_macros" Cargo.toml > Cargo.toml.new - mv Cargo.toml.new Cargo.toml - cargo build --release --verbose - cargo test --verbose artifacts: paths: - target/doc - target/package/maud-pulldown-cmark-*.crate test-beta: script: - apt-get install -y curl - curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- --channel=beta - travis-cargo build --release --verbose - travis-cargo test --verbose - travis-cargo package --verbose test-nightly: allow_failure: true script: - apt-get install -y curl - curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- --channel=nightly - travis-cargo build --release --verbose - travis-cargo test --verbose
Allow nightly build to fail
Allow nightly build to fail
YAML
apache-2.0
Nemo157/maud-pulldown-cmark,Nemo157/maud-pulldown-cmark
d9518961344568541703dda0cba6846182edb4d0
.swiftlint.yml
.swiftlint.yml
disabled_rules: included: excluded: - Carthage - Pods
disabled_rules: included: excluded: - Carthage - Pods # Make line length violations more lenient line_length: 135
Make line_length violations more lenient
Make line_length violations more lenient While we should strive for less than 100 I'm okay with this being a bit more flexible.
YAML
mit
bignerdranch/CoreDataStack,bignerdranch/CoreDataStack,bignerdranch/CoreDataStack
60b86013bbcfde5974148ddaf21aab85fd9d9850
packages/he/here.yaml
packages/he/here.yaml
homepage: https://github.com/tmhedberg/here changelog-type: '' hash: e2c67680ab030dfdc9aaedf46e518f86ad17e96f699ec1d598c25e04288b8b87 test-bench-deps: {} maintainer: [email protected] synopsis: Here docs & interpolated strings via quasiquotation changelog: '' basic-deps: base: ! '>=4.5 && <4.10' parsec: ==3.1.* mtl: ! '>=2.1 && <2.3' haskell-src-meta: ! '>=0.6 && <0.9' template-haskell: -any all-versions: - '1.0' - '1.1' - '1.2' - '1.2.1' - '1.2.2' - '1.2.3' - '1.2.4' - '1.2.5' - '1.2.6' - '1.2.7' - '1.2.8' - '1.2.9' - '1.2.10' author: Taylor M. Hedberg latest: '1.2.10' description-type: haddock description: Here docs & interpolated strings via quasiquotation license-name: BSD3
homepage: https://github.com/tmhedberg/here changelog-type: '' hash: 7e6e14d3afd129b5ffd758670e813d049a9a3146d58f8a7f74607d0490d0b6a5 test-bench-deps: {} maintainer: [email protected] synopsis: Here docs & interpolated strings via quasiquotation changelog: '' basic-deps: base: ! '>=4.5 && <4.11' parsec: ==3.1.* mtl: ! '>=2.1 && <2.3' haskell-src-meta: ! '>=0.6 && <0.9' template-haskell: -any all-versions: - '1.0' - '1.1' - '1.2' - '1.2.1' - '1.2.2' - '1.2.3' - '1.2.4' - '1.2.5' - '1.2.6' - '1.2.7' - '1.2.8' - '1.2.9' - '1.2.10' - '1.2.11' author: Taylor M. Hedberg latest: '1.2.11' description-type: haddock description: Here docs & interpolated strings via quasiquotation license-name: BSD3
Update from Hackage at 2017-05-29T20:08:56Z
Update from Hackage at 2017-05-29T20:08:56Z
YAML
mit
commercialhaskell/all-cabal-metadata
fa595b3055798aa0d381c38e69a0eb529975e800
default-bnc.yaml
default-bnc.yaml
# This is the GoshuBNC config file # bouncer configuration bouncer: storage: type: buntdb database: bncdata.db # addresses to listen on listeners: #- ":6667" - ":6697" # listeners to use tls on tls-listeners: ":6697": cert: tls.crt key: tls.key logging: file: # folder to store chat logs path: chatlogs/
# This is the GoshuBNC config file # bouncer configuration bouncer: storage: type: buntdb database: bncdata.db # addresses to listen on listeners: #- ":6667" - ":6697" # listeners to use tls on tls-listeners: ":6697": cert: tls.crt key: tls.key # logging of channel/client messages logging: # file logger type: file # folder to store chat logs path: chatlogs/ # # sqlite logger # type: sqlite # # database to use for chatlogs # database: chatlogs.db
Fix default config, add both file and sqlite loggers
Fix default config, add both file and sqlite loggers
YAML
unknown
DanielOaks/gircbnc,goshuirc/bnc
e02fd27410c628eeffad972205a90fb9a9716cf5
provision/roles/ggrc/tasks/main.yml
provision/roles/ggrc/tasks/main.yml
--- - name: install requirements sudo: yes pip: requirements: "/vagrant/src/requirements.txt" - name: install packages sudo: yes with_items: ggrc_packages apt: pkg: "{{ item.name }}" state: latest - name: create development directories sudo: yes with_items: ggrc_development_directories file: path: "{{ item.name }}" owner: vagrant group: vagrant state: directory - name: prepare development virtualenv command: make setup_dev DEV_PREFIX=/vagrant-dev args: chdir: /vagrant - name: install gems sudo: yes with_items: ggrc_gems gem: name: "{{ item.name }}" user_install: no state: present - name: run make command: make appengine DEV_PREFIX=/vagrant-dev args: chdir: /vagrant - name: create databases sudo: yes with_items: ggrc_databases mysql_db: name: "{{ item.name }}" state: present - name: change root password sudo: yes mysql_user: name: root password: root priv: "*.*:ALL" state: present - name: configure bash sudo: yes template: src: .bashrc.j2 dest: /home/vagrant/.bashrc owner: vagrant group: vagrant
--- - name: install requirements sudo: yes pip: requirements: "/vagrant/src/requirements.txt" - name: install packages sudo: yes with_items: ggrc_packages apt: pkg: "{{ item.name }}" state: latest - name: create development directories sudo: yes with_items: ggrc_development_directories file: path: "{{ item.name }}" owner: vagrant group: vagrant state: directory - name: prepare development virtualenv command: make setup_dev DEV_PREFIX=/vagrant-dev args: chdir: /vagrant - name: install gems sudo: yes with_items: ggrc_gems gem: name: "{{ item.name }}" user_install: no state: present - name: run make command: make appengine DEV_PREFIX=/vagrant-dev args: chdir: /vagrant - name: change root password mysql_user: name: root password: root login_user: root login_password: root check_implicit_admin: yes priv: "*.*:ALL" - name: create databases with_items: ggrc_databases mysql_db: name: "{{ item.name }}" state: present login_user: root login_password: root - name: configure bash sudo: yes template: src: .bashrc.j2 dest: /home/vagrant/.bashrc owner: vagrant group: vagrant
Use check_implicit_admin in myslq provisioning
Use check_implicit_admin in myslq provisioning
YAML
apache-2.0
vladan-m/ggrc-core,vladan-m/ggrc-core,AleksNeStu/ggrc-core,vladan-m/ggrc-core,prasannav7/ggrc-core,uskudnik/ggrc-core,andrei-karalionak/ggrc-core,hasanalom/ggrc-core,selahssea/ggrc-core,NejcZupec/ggrc-core,edofic/ggrc-core,prasannav7/ggrc-core,plamut/ggrc-core,selahssea/ggrc-core,josthkko/ggrc-core,edofic/ggrc-core,josthkko/ggrc-core,hasanalom/ggrc-core,hyperNURb/ggrc-core,AleksNeStu/ggrc-core,edofic/ggrc-core,VinnieJohns/ggrc-core,vladan-m/ggrc-core,plamut/ggrc-core,andrei-karalionak/ggrc-core,uskudnik/ggrc-core,selahssea/ggrc-core,kr41/ggrc-core,vladan-m/ggrc-core,kr41/ggrc-core,hyperNURb/ggrc-core,uskudnik/ggrc-core,NejcZupec/ggrc-core,prasannav7/ggrc-core,AleksNeStu/ggrc-core,j0gurt/ggrc-core,hasanalom/ggrc-core,jmakov/ggrc-core,hyperNURb/ggrc-core,j0gurt/ggrc-core,jmakov/ggrc-core,VinnieJohns/ggrc-core,jmakov/ggrc-core,plamut/ggrc-core,kr41/ggrc-core,hasanalom/ggrc-core,josthkko/ggrc-core,edofic/ggrc-core,NejcZupec/ggrc-core,hyperNURb/ggrc-core,VinnieJohns/ggrc-core,j0gurt/ggrc-core,selahssea/ggrc-core,josthkko/ggrc-core,NejcZupec/ggrc-core,j0gurt/ggrc-core,uskudnik/ggrc-core,VinnieJohns/ggrc-core,jmakov/ggrc-core,andrei-karalionak/ggrc-core,hyperNURb/ggrc-core,jmakov/ggrc-core,kr41/ggrc-core,plamut/ggrc-core,uskudnik/ggrc-core,hasanalom/ggrc-core,prasannav7/ggrc-core,AleksNeStu/ggrc-core,andrei-karalionak/ggrc-core
9d2cd246c8b5274b5e8b56749b94c5929a18d428
metadata/host.stjin.anonaddy.yml
metadata/host.stjin.anonaddy.yml
Categories: - Internet License: MIT AuthorName: Stjin AuthorWebSite: https://stjin.host/ SourceCode: https://gitlab.com/Stjin/anonaddy-android IssueTracker: https://gitlab.com/Stjin/anonaddy-android/-/issues AutoName: AnonAddy RepoType: git Repo: https://gitlab.com/Stjin/anonaddy-android.git Builds: - versionName: 1.0.2 versionCode: 6 commit: v1.0.2 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.0.2 CurrentVersionCode: 6
Categories: - Internet License: MIT AuthorName: Stjin AuthorWebSite: https://stjin.host/ SourceCode: https://gitlab.com/Stjin/anonaddy-android IssueTracker: https://gitlab.com/Stjin/anonaddy-android/-/issues AutoName: AnonAddy RepoType: git Repo: https://gitlab.com/Stjin/anonaddy-android.git Builds: - versionName: 1.0.2 versionCode: 6 commit: v1.0.2 subdir: app gradle: - yes - versionName: 1.1.1 versionCode: 9 commit: v1.1.1 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.1.1 CurrentVersionCode: 9
Update AnonAddy to 1.1.1 (9)
Update AnonAddy to 1.1.1 (9)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
da8013cf1306ce8284f7d0aef6716225b1871c76
.travis.yml
.travis.yml
language: go go: - 1.2 - 1.3 - tip before_install: - go get github.com/c4milo/unzipit - mkdir -p $HOME/gopath/src/github.com/cloudescape/govix; git clone https://github.com/cloudescape/govix.git $HOME/gopath/src/github.com/cloudescape/govix - go get github.com/dustin/go-humanize - mkdir -p $HOME/gopath/src/github.com/hashicorp/terraform; git clone https://github.com/hashicorp/terraform.git $HOME/gopath/src/github.com/hashicorp/terraform install: make build matrix: allow_failures: - go: tip
language: go go: - 1.2 - 1.3 - tip before_install: - go get github.com/c4milo/unzipit - mkdir -p $HOME/gopath/src/github.com/cloudescape/govix; git clone https://github.com/cloudescape/govix.git $HOME/gopath/src/github.com/cloudescape/govix - go get github.com/dustin/go-humanize - mkdir -p $HOME/gopath/src/github.com/hashicorp/terraform; git clone https://github.com/hashicorp/terraform.git $HOME/gopath/src/github.com/hashicorp/terraform - cd $HOME/gopath/src/github.com/hashicorp/terraform; make dev install: make build matrix: allow_failures: - go: tip
Build terraform as well so it downloads its dependencies
Build terraform as well so it downloads its dependencies
YAML
mpl-2.0
hooklift/terraform-provider-vix
dc2b1ec6bbf4e21a3ae0832288d0123a09eaa542
.travis.yml
.travis.yml
before_script: - cp config/database.yml.example config/database.yml - bundle exec rake db:create db:migrate db:test:prepare git: strategy: tarball language: ruby rvm: - 2.0.0 - 2.1 - ruby-head bundler_args: --jobs=3 --retry=3 --deployment --local --without development matrix: allow_failures: - rvm: 2.1 - rvm: ruby-head services: - redis-server
language: ruby rvm: - 2.0.0 - 2.1 - ruby-head services: - redis-server git: strategy: tarball sudo: false bundler_args: --jobs=3 --retry=3 --deployment --local --without development before_script: - cp config/database.yml.example config/database.yml - bundle exec rake db:create db:migrate db:test:prepare matrix: allow_failures: - rvm: 2.1 - rvm: ruby-head
Use the new build env on Travis
Use the new build env on Travis http://docs.travis-ci.com/user/workers/container-based-infrastructure/ more capacity, more ram and cpu, better network
YAML
mit
knappe/rubygems.org,rubygems/rubygems.org,iSC-Labs/rubygems.org,wallin/rubygems.org,rubygems/rubygems.org,huacnlee/rubygems.org,sonalkr132/rubygems.org,polamjag/rubygems.org,jamelablack/rubygems.org,davydovanton/rubygems.org,maclover7/rubygems.org,childbamboo/rubygems.org,spk/rubygems.org,JuanitoFatas/rubygems.org,Ch4s3/rubygems.org,fotanus/rubygems.org,farukaydin/rubygems.org,algolia/rubygems.org,davydovanton/rubygems.org,hrs113355/rubygems.org,jamelablack/rubygems.org,farukaydin/rubygems.org,Elffers/rubygems.org,olivierlacan/rubygems.org,JuanitoFatas/rubygems.org,iRoxxDotOrg/rubygems.org,andrew/rubygems.org,polamjag/rubygems.org,huacnlee/rubygems.org,iSC-Labs/rubygems.org,spk/rubygems.org,knappe/rubygems.org,andrew/rubygems.org,algolia/rubygems.org,maclover7/rubygems.org,krainboltgreene/rubygems.org,polamjag/rubygems.org,krainboltgreene/rubygems.org,andrew/rubygems.org,jamelablack/rubygems.org,davydovanton/rubygems.org,hrs113355/rubygems.org,davydovanton/rubygems.org,iSC-Labs/rubygems.org,childbamboo/rubygems.org,fotanus/rubygems.org,iRoxxDotOrg/rubygems.org,hrs113355/rubygems.org,huacnlee/rubygems.org,Ch4s3/rubygems.org,krainboltgreene/rubygems.org,fotanus/rubygems.org,olivierlacan/rubygems.org,Elffers/rubygems.org,iRoxxDotOrg/rubygems.org,Exeia/rubygems.org,maclover7/rubygems.org,olivierlacan/rubygems.org,kbrock/rubygems.org,childbamboo/rubygems.org,Exeia/rubygems.org,wallin/rubygems.org,sonalkr132/rubygems.org,Elffers/rubygems.org,knappe/rubygems.org,Elffers/rubygems.org,Exeia/rubygems.org,Ch4s3/rubygems.org,andrew/rubygems.org,huacnlee/rubygems.org,sonalkr132/rubygems.org,sonalkr132/rubygems.org,farukaydin/rubygems.org,rubygems/rubygems.org,arthurnn/rubygems.org,olivierlacan/rubygems.org,algolia/rubygems.org,childbamboo/rubygems.org,spk/rubygems.org,polamjag/rubygems.org,JuanitoFatas/rubygems.org,arthurnn/rubygems.org,iSC-Labs/rubygems.org,algolia/rubygems.org,kbrock/rubygems.org,spk/rubygems.org,krainboltgreene/rubygems.org,Exeia/rubygems.org,kbrock/rubygems.org,jamelablack/rubygems.org,wallin/rubygems.org,hrs113355/rubygems.org,iRoxxDotOrg/rubygems.org,JuanitoFatas/rubygems.org,maclover7/rubygems.org,farukaydin/rubygems.org,rubygems/rubygems.org,wallin/rubygems.org,Ch4s3/rubygems.org,fotanus/rubygems.org,kbrock/rubygems.org,knappe/rubygems.org,arthurnn/rubygems.org
0f4e96704ae3577c18da4c0c052d3a5d5334b63d
.travis.yml
.travis.yml
language: "node_js" node_js: - "4" - "5" - "6"
language: "node_js" node_js: - "6" - "7"
Build for node 6 and 7.
Build for node 6 and 7.
YAML
mit
http-auth/htdigest,gevorg/htdigest
20082c109c2712a144288f0c6ac0b11b9d15d310
roles/editor/tasks/main.yml
roles/editor/tasks/main.yml
# install vim dotfiles - name: install vimrc template: src=dotfiles/{{ item.src }} dest=~{{ ansible_user_id }}/{{ item.dest }} with_items: - { src: 'vimrc', dest: '.vimrc' } - name: install vimrc.d synchronize: src=dotfiles/{{ item.src }} dest=~/{{ item.dest }} with_items: - { src: 'vimrc.d/', dest: '.vimrc.d' } - name: Install fully featured vim in Debian when: ansible_os_family == "Debian" apt : pkg=vim-gtk state=installed sudo: yes - name: Install fully featured vim in Darwin when: ansible_os_family == "Darwin" homebrew: > name=vim state=present install_options=override-system-vi,with-client-server,with-lua,with-luajit,with-perl,with-python3,with-tlc - name: Grab Vundle git: > repo=git://github.com/gmarik/vundle.git dest=~{{ ansible_user_id }}/.vim/bundle/vundle - name: Run PluginInstall shell: cd; bash -lc "vim +PluginInstall +qall"
# install vim dotfiles - name: install vimrc template: src=dotfiles/{{ item.src }} dest=~{{ ansible_user_id }}/{{ item.dest }} with_items: - { src: 'vimrc', dest: '.vimrc' } - name: install vimrc.d synchronize: src=dotfiles/{{ item.src }} dest=~/{{ item.dest }} with_items: - { src: 'vimrc.d/', dest: '.vimrc.d' } - name: Install fully featured vim in Debian when: ansible_os_family == "Debian" apt : pkg=vim-gtk state=installed sudo: yes - name: Install fully featured vim in Darwin when: ansible_os_family == "Darwin" homebrew: > name=vim state=present install_options=override-system-vi,with-lua,with-luajit,with-perl,with-python3,with-tlc - name: Grab Vundle git: > repo=git://github.com/gmarik/vundle.git dest=~{{ ansible_user_id }}/.vim/bundle/vundle - name: Run PluginInstall shell: cd; bash -lc "vim +PluginInstall +qall"
Remove --with-client-server from vim options
Remove --with-client-server from vim options It keeps opening xquartz on OS X which is silly
YAML
mit
ciarand/phoenix
e6d4cf40ec944639f8e880b585281b918cfb8db2
.travis.yml
.travis.yml
dist: trusty language: node_js node_js: - '8' addons: chrome: stable env: - CHROME_BIN=google-chrome-stable cache: yarn before_install: - openssl aes-256-cbc -K $encrypted_b9133dc7101e_key -iv $encrypted_b9133dc7101e_iv -in ssh-key.enc -out ssh-key -d jobs: include: - stage: test script: yarn test -- --singleRun - stage: test script: yarn e2e - stage: build & deploy script: - yarn build - '[ "$TRAVIS_BRANCH" != "master" ] && travis_terminate 0 || :' - rsync -avWe "ssh -i ssh-key -o StrictHostKeyChecking=no" --delete-before dist/ [email protected]:/data/httpd/site/neo.assembly.org/html
dist: trusty language: node_js node_js: - '8' addons: chrome: stable env: - CHROME_BIN=google-chrome-stable cache: yarn before_install: - openssl aes-256-cbc -K $encrypted_b9133dc7101e_key -iv $encrypted_b9133dc7101e_iv -in ssh-key.enc -out ssh-key -d - mv ssh-key ~/.ssh/id_rsa jobs: include: - stage: test script: yarn test -- --singleRun - stage: test script: yarn e2e - stage: build & deploy script: - yarn build - '[ "$TRAVIS_BRANCH" != "master" ] && travis_terminate 0 || :' - rsync -avWe "ssh -o StrictHostKeyChecking=no" --delete-before dist/ [email protected]:/data/httpd/site/neo.assembly.org/html
Move ssh key to .ssh
ci: Move ssh key to .ssh
YAML
mit
Assembly-WebCrew/contentful-web,Assembly-WebCrew/contentful-web,rubiesonthesky/contentful-web,rubiesonthesky/contentful-web,Assembly-WebCrew/contentful-web,rubiesonthesky/contentful-web