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 |
|---|---|---|---|---|---|---|---|---|---|
10062b68aa4eeb2617fc6ee3c4e2a51fbc9e4da1 | .travis.yml | .travis.yml | ---
language: python
python:
- "2.7"
# - "3.3"
# - "3.4"
# command to install dependencies
services:
- mysql
before_install:
- 'mysql -e "create database if not exists downstream;" -u root'
install:
- "pip install ."
# command to run tests
script: nosetests -v tests/ | ---
language: python
python:
- "2.7"
# - "3.3"
# - "3.4"
# command to install dependencies
services:
- mysql
before_install:
- 'mysql -e "create database if not exists downstream;" -u root'
install:
- "pip install --allow-external ."
# command to run tests
script: nosetests -v tests/ | Add --allow-external to nab Hearbeat release from GitHub | Add --allow-external to nab Hearbeat release from GitHub
| YAML | mit | Storj/downstream-node,Storj/downstream-node |
251735bacc8483bbc3aa487cffcca200e6bbe0e7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
script: bundle exec rake spec
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ree
script: bundle exec rake spec
| Add support version of ruby | Add support version of ruby
| YAML | mit | astockwell/ruby-net-ldap,bkeepers/ruby-net-ldap,javanthropus/ruby-net-ldap,astockwell/ruby-net-ldap,cloudvolumes/ruby-net-ldap,cloudvolumes/ruby-net-ldap,bkeepers/ruby-net-ldap,javanthropus/ruby-net-ldap |
b7382555f831f7f960ca5dc694a9af766e345cd4 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
env:
- MONGO_VERSION=1.3.4
services: mongodb
before_script:
- pecl -q install -f mongo-${MONGO_VERSION} && echo "extension=mongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
- composer install --dev
script: phpunit --coverage-text
| language: php
php:
- 5.3
- 5.4
services: mongodb
before_script:
- pecl -q install -f mongo && echo "extension=mongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
- composer install --dev
script: phpunit --coverage-text
| Remove Mongo version for Travis | Remove Mongo version for Travis
| YAML | mit | yedey/SonataDoctrineMongoDBAdminBundle,zajca/SonataDoctrineMongoDBAdminBundle,zajca/SonataDoctrineMongoDBAdminBundle,yedey/SonataDoctrineMongoDBAdminBundle,zajca/SonataDoctrineMongoDBAdminBundle,zajca/SonataDoctrineMongoDBAdminBundle,yedey/SonataDoctrineMongoDBAdminBundle,peterkokot/SonataDoctrineMongoDBAdminBundle |
c4570fe58a04947cbc4181d231cd7de1c367037f | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
before_script:
- npm install -g gulp
script: gulp | language: node_js
node_js:
- "8"
- "7"
before_script:
- npm install -g gulp
script: gulp | Add support for Node v8 | Add support for Node v8
| YAML | mit | WarenGonzaga/AnimateCSSPlugin,WarenGonzaga/AnimateCSSPlugin |
9b4bd14438cbbb58257d182410947182ed9980b1 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 1.9.3
services: postgresql
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
- sqlite3 travis_ci_test ''
- "cp config/database.yml.test config/database.yml"
env:
- TABLETASK_ENV=postgresql_test
- TABLETASK_ENV=sqlite_test
notifications:
email:
on_success: never
on_failure: change
| language: ruby
cache: bundler
rvm:
- 1.9.3
services: postgresql
before_script:
- psql -c 'create database ci_test;' -U postgres
- sqlite3 ci_test ''
- "cp config/database.yml.test config/database.yml"
env:
- TABLETASK_ENV=postgresql_test
- TABLETASK_ENV=sqlite_test
notifications:
email:
on_success: never
on_failure: change
| Make Travis work w/ generic db names | Make Travis work w/ generic db names
| YAML | mit | shahin/data_task |
53e3e841de491ac56b1e3122bac6fba67bc3c36e | .travis.yml | .travis.yml | rvm:
- jruby
- jruby-head
- 1.8.7
- 1.9.2
- 1.9.3
branches:
only:
- master
env:
- JRUBY_OPTS="--1.8 --server -Xcext.enabled=false -Xcompile.invokedynamic=false"
- JRUBY_OPTS="--1.9 --server -Xcext.enabled=false -Xcompile.invokedynamic=false"
| rvm:
- jruby
- jruby-head
- 1.8.7
- 1.9.2
- 1.9.3
branches:
only:
- master
env:
- JRUBY_OPTS="--1.8 --server -Xcext.enabled=false -Xcompile.invokedynamic=false"
- JRUBY_OPTS="--1.9 --server -Xcext.enabled=false -Xcompile.invokedynamic=false"
matrix:
exclude:
- rvm: 1.8.7
env:
- JRUBY_OPTS="--1.8 --server -Xcext.enabled=false -Xcompile.invokedynamic=false"
- JRUBY_OPTS="--1.9 --server -Xcext.enabled=false -Xcompile.invokedynamic=false"
- rvm: 1.9.2
env:
- JRUBY_OPTS="--1.8 --server -Xcext.enabled=false -Xcompile.invokedynamic=false"
- JRUBY_OPTS="--1.9 --server -Xcext.enabled=false -Xcompile.invokedynamic=false"
- rvm: 1.9.3
env:
- JRUBY_OPTS="--1.8 --server -Xcext.enabled=false -Xcompile.invokedynamic=false"
- JRUBY_OPTS="--1.9 --server -Xcext.enabled=false -Xcompile.invokedynamic=false"
| Reduce matrix, exclude MRI-JRUBY_OPTS permutations | Reduce matrix, exclude MRI-JRUBY_OPTS permutations | YAML | mit | atambo/warbler,mkristian/warbler,idibon/warbler,mkristian/warbler,fedenusy/warbler,idibon/warbler,ctreatma/warbler,idibon/warbler,atambo/warbler,fedenusy/warbler,idibon/warbler,ctreatma/warbler,mkristian/warbler,fedenusy/warbler,fedenusy/warbler,ctreatma/warbler,ctreatma/warbler |
0a7c70d3257406745e30e1f450e26e6197c28513 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.4
- 5.3
- hhvm
before_script:
- composer self-update
- composer update
script:
- phpunit -c tests.xml | language: php
php:
- 5.5
- 5.4
- 5.3
- hhvm
before_script:
- composer self-update
- composer update
script:
- vendor/bin/phpunit -c tests.xml
| Use locally-installed PHPUnit instead of phar | Travis: Use locally-installed PHPUnit instead of phar | YAML | mit | rkrx/php-service-dispatcher |
43b0d21f98238df282159347e8b6d4ee329853de | .travis.yml | .travis.yml | sudo: false
language: rust
rust:
- stable
- beta
- nightly
install:
- nvm install stable
- nvm use stable
- npm install ffi glob
- gem install ffi
script:
- cargo build
- cd python && python main.py
- cd ../node && node main.js
- cd ../ruby && ruby main.rb
| sudo: false
language: rust
rust:
- stable
- beta
- nightly
install:
- nvm install stable
- nvm use stable
- npm install ffi glob
- gem install ffi
script:
- make node
- make python
- make ruby
| Use make commands on Travis CI. | Use make commands on Travis CI.
| YAML | mit | zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools |
4c2e3d72c686424452eef05fde025aa649f15893 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "nightly"
install: pip install -r dev-requirements.txt
sudo: required
services:
- docker
env:
MINIO_STORAGE_ENDPOINT: "localhost:9000"
MINIO_STORAGE_ACCESS_KEY: weak_access_key
MINIO_STORAGE_SECRET_KEY: weak_secret_key
before_install:
- docker run -d -p 9000:9000 -e MINIO_ACCESS_KEY=$MINIO_STORAGE_ACCESS_KEY -e MINIO_SECRET_KEY=$MINIO_STORAGE_SECRET_KEY minio/minio /export
script: "./run_tests.sh"
| language: python
python:
# - "2.7"
- "3.4"
- "3.5"
- "nightly"
install: pip install -r dev-requirements.txt
sudo: required
services:
- docker
env:
MINIO_STORAGE_ENDPOINT: "localhost:9000"
MINIO_STORAGE_ACCESS_KEY: weak_access_key
MINIO_STORAGE_SECRET_KEY: weak_secret_key
before_install:
- docker run -d -p 9000:9000 -e MINIO_ACCESS_KEY=$MINIO_STORAGE_ACCESS_KEY -e MINIO_SECRET_KEY=$MINIO_STORAGE_SECRET_KEY minio/minio /export
script: "./run_tests.sh"
| Disable CI for python 2 | Disable CI for python 2
See #6 for discussion
| YAML | apache-2.0 | tomhoule/django-minio-storage |
9bf60ee139b72ad15bb8ad4f3485debbd2b8bd28 | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- master
matrix:
allow_failures:
- php: 7.4snapshot
sudo: false
install:
- composer install
script:
- ./vendor/bin/phpunit
notifications:
email: false
| language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- master
matrix:
allow_failures:
- php: 7.4snapshot
- php: master
sudo: false
install:
- composer install
script:
- ./vendor/bin/phpunit
notifications:
email: false
| Allow failures on PHP master | Allow failures on PHP master
| YAML | mit | Trainmaster/Vision |
abc54f36bfd9975c5e2f2968cfac3405c7a4d795 | .travis.yml | .travis.yml | language: ruby
notifications:
irc: "irc.freenode.org#axlsx"
email:
recipients:
- digital.ipseity@gmail.com
on_success: always
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- rbx-18mode
- rbx-19mode
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
notifications:
irc: "irc.freenode.org#axlsx"
email:
recipients:
- digital.ipseity@gmail.com
on_success: always
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- rbx-18mode
- rbx-19mode
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
before_install:
- gem install nokogiri -- --with-cflags='--std=gnu99'
| Test a suggestion from @hsbt | Test a suggestion from @hsbt
| YAML | mit | clarkcutler/axlsx,randym/axlsx,alexanderfrankel/axlsx,Debiancc/axlsx,nilbus/axlsx,kappiah/axlsx,sh-ft/axlsx,romuloceccon/axlsx,woto/axlsx,mromulus/axlsx,VueOps/axlsx,sr-education/axlsx,raghavendra-prithvi/axlsx,legitscript/axlsx,pedrogarrett/axlsx,bradstewart/axlsx |
8411cf5ca828438ea2c44fe3cfb4832725627647 | ansible/deploy-ose.yaml | ansible/deploy-ose.yaml | - name: deploy OSE
hosts: installer
tasks:
- name: run deployment playbook
command: ansible-playbook /usr/share/ansible/openshift-ansible/playbooks/byo/config.yml
become: false
| - name: deploy OSE
hosts: installer
tags:
- install
tasks:
- name: run deployment playbook
command: ansible-playbook /usr/share/ansible/openshift-ansible/playbooks/byo/config.yml
become: false
- name: configure OSE components
hosts: demo-ose-master-1
tasks:
- name: deploy internal registry
tags:
- registry
command: >
oadm registry --config=/etc/origin/master/admin.kubeconfig
--credentials=/etc/origin/master/openshift-registry.kubeconfig
--images='registry.access.redhat.com/openshift3/ose-${component}:${version}'
| Add task to configure the registry. | Add task to configure the registry.
| YAML | apache-2.0 | ajsmith/ose3-deployment-demo |
c0a44abcf7d0069f351671ee2830ccc03a1c6099 | .travis.yml | .travis.yml | sudo: required
language:
- cpp
compiler:
- gcc
addons:
apt:
sources:
-ubuntu-toolchain-r-test
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq
install:
- apt-get update
- apt-get install g++-4.8
- update-alternatives --install /usr/bin/g++ g++ /user/bin/g++-4.8 90
- update-alternatives --install /usr/bin/gcc gcc /user/bin/gcc-4.8 90
before_script:
- mkdir build
- cd build
- cmake ..
script:
- make
- ./runTests
| sudo: false
language:
- cpp
compiler:
- gcc
addons:
apt:
sources:
-ubuntu-toolchain-r-test
before_install:
- apt-get update -qq
- apt-get install -qq
install:
- apt-get update
- apt-get install g++-4.8
- update-alternatives --install /usr/bin/g++ g++ /user/bin/g++-4.8 90
- update-alternatives --install /usr/bin/gcc gcc /user/bin/gcc-4.8 90
before_script:
- mkdir build
- cd build
- cmake ..
script:
- make
- ./runTests
| Edit .travs.yml in another attempt to instal gcc-4.8 again, sudo false | Edit .travs.yml in another attempt to instal gcc-4.8 again, sudo false
| YAML | mit | destessm/intro-to-game-dev,destessm/intro-to-game-dev,destessm/intro-to-game-dev,destessm/intro-to-game-dev |
abe4612fa3e77984bae49cef3eddfbcca9d5f73f | src/manifest.json.yml | src/manifest.json.yml | ---
name: reasonable
version: "2.3.4"
manifest_version: 2
description: For a site called reason, you'd think it would block trolls, help users
navigate comment threads, and show inline media. (Drink.)
icons:
'128': /img/icon_128.png
'16': /img/icon_16.png
'32': /img/icon_32.png
'48': /img/icon_48.png
page_action:
default_icon: /img/icon_16.png
default_title: reasonable
background:
page: background.html
content_scripts:
- all_frames: true
js:
- /js/preload.js
matches:
- *://reason.com/*
run_at: document_start
- css:
- /css/content.css
js:
- /js/content.js
matches:
- *://reason.com/*
options_page: options.html
permissions:
- tabs
- http://www.brymck.com/reasonable/
| ---
name: reasonable
version: "2.3.4"
manifest_version: 2
description: For a site called reason, you'd think it would block trolls, help users
navigate comment threads, and show inline media. (Drink.)
icons:
'128': /img/icon_128.png
'16': /img/icon_16.png
'32': /img/icon_32.png
'48': /img/icon_48.png
page_action:
default_icon: /img/icon_16.png
default_title: reasonable
background:
page: background.html
content_scripts:
- all_frames: true
js:
- /js/preload.js
matches:
- '*://reason.com/*'
run_at: document_start
- css:
- /css/content.css
js:
- /js/content.js
matches:
- '*://reason.com/*'
options_page: options.html
permissions:
- tabs
- http://www.brymck.com/reasonable/
| Fix quotation of matching URLs in manifest | Fix quotation of matching URLs in manifest
| YAML | mit | brymck/reasonable,brymck/reasonable,brymck/reasonable |
9e1090ef616d0dc3b8473866a493a9a93abd200d | .travis.yml | .travis.yml | language: java
| language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
matrix:
fast_finish: true
allow_failures:
- jdk: oraclejdk8
| Allow Travis CI to build with JDK 8, but ignore failures | Allow Travis CI to build with JDK 8, but ignore failures
| YAML | lgpl-2.1 | zanata/zanata-platform,zanata/zanata-platform,zanata/zanata-platform,zanata/zanata-platform,zanata/zanata-platform,zanata/zanata-platform,zanata/zanata-platform |
b33d659cf4ca8b4fc4457d6b5e3587348145fa75 | .travis.yml | .travis.yml | # see http://about.travis-ci.org/docs/user/languages/php/ for more hints
language: php
sudo: false
# list any PHP version you want to test against
php:
- 5.4
- 5.5
- 5.6
# optionally specify a list of environments, for example to test different RDBMS
env:
- SPOT_DB=mysql
- SPOT_DB=pgsql
- SPOT_DB=sqlite
# execute any number of scripts before the test run, custom env's are available as variables
before_script:
- composer install
- if [[ "$SPOT_DB" == "mysql" ]]; then mysql -e "create database IF NOT EXISTS spot_test;" -uroot; fi
- if [[ "$SPOT_DB" == "pgsql" ]]; then psql -c 'create database spot_test;' -U postgres; fi
# omitting "script:" will default to phpunit
# use the $SPOT_DB env variable to determine the phpunit.xml to use
script: phpunit --configuration phpunit_$SPOT_DB.xml --coverage-text
# configure notifications (email, IRC, campfire etc)
#notifications:
# irc: "irc.freenode.org#travis"
| # see http://about.travis-ci.org/docs/user/languages/php/ for more hints
language: php
sudo: false
# list any PHP version you want to test against
php:
- 5.4
- 5.5
- 5.6
# optionally specify a list of environments, for example to test different RDBMS
env:
- SPOT_DB=mysql
- SPOT_DB=pgsql
- SPOT_DB=sqlite
install:
- composer install
# execute any number of scripts before the test run, custom env's are available as variables
before_script:
- if [[ "$SPOT_DB" == "mysql" ]]; then mysql -e "create database IF NOT EXISTS spot_test;" -uroot; fi
- if [[ "$SPOT_DB" == "pgsql" ]]; then psql -c 'create database spot_test;' -U postgres; fi
# omitting "script:" will default to phpunit
# use the $SPOT_DB env variable to determine the phpunit.xml to use
script: phpunit --configuration phpunit_$SPOT_DB.xml --coverage-text
# configure notifications (email, IRC, campfire etc)
#notifications:
# irc: "irc.freenode.org#travis"
| Install dependencies in install section | Fix: Install dependencies in install section
| YAML | bsd-3-clause | tuupola/spot2,NekaKawaii/spot2,vlucas/spot2,geggleto/spot2,localheinz/spot2,mitschool/spot2,splio-aleroux/spot2,willemwollebrants/spot2 |
54f5c7c8cd9ebf3f690503ff21fa3d839ac2628e | .travis.yml | .travis.yml | sudo: false
language: ruby
cache: bundler
matrix:
include:
- rvm: 2.0
- rvm: 2.1.10
- rvm: 2.2.10
- rvm: 2.3.7
- rvm: 2.4.4
- rvm: 2.5.1
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
branches:
only:
- master
bundler_args: --without docs development
script: bundle exec rake
| sudo: false
language: ruby
cache: bundler
matrix:
include:
- rvm: 2.0
- rvm: 2.1.10
- rvm: 2.2.10
- rvm: 2.3.8
- rvm: 2.4.5
- rvm: 2.5.3
- rvm: 2.6
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
branches:
only:
- master
bundler_args: --without docs development
script: bundle exec rake
| Add Ruby 2.6 testing in Travis | Add Ruby 2.6 testing in Travis
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef/mixlib-versioning,chef/mixlib-versioning |
d957fde8741aa26a3d64e4f615a780f01a44d49c | .travis.yml | .travis.yml | language: java
sudo: false
install:
- mvn install
deploy:
provider: releases
api_key:
secure: aMJRj29EMLocCiy7gmBnYxI/A1vR8Tu1q9PzzVdgcZJXSzSFHFDmhgDzOqgGIpEmlAMMLHPEFZGnwen8NLeMM6eyRqbDqavmWddVSz0L5hf8YXsAAWEpjjfIspTWTxGtM7xIAaBZ9uFKCLpSn9kXP4W2OB67L4Hr7V8wN4+/ET0=
file: target/WildSex.jar
on:
tags: true
repo: sultanskyman/WildSex
| language: java
jdk:
- oraclejdk8
sudo: false
install:
- mvn install
deploy:
provider: releases
api_key:
secure: aMJRj29EMLocCiy7gmBnYxI/A1vR8Tu1q9PzzVdgcZJXSzSFHFDmhgDzOqgGIpEmlAMMLHPEFZGnwen8NLeMM6eyRqbDqavmWddVSz0L5hf8YXsAAWEpjjfIspTWTxGtM7xIAaBZ9uFKCLpSn9kXP4W2OB67L4Hr7V8wN4+/ET0=
file: target/WildSex.jar
on:
tags: true
repo: sultanskyman/WildSex
| Set Java version to Java 8 | Set Java version to Java 8
| YAML | mit | sultanskyman/WildSex,DrkMatr1984/WildSex |
7eaf879747cf425bddb77a0dc3c6543a9e54044a | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.2
| language: objective-c
osx_image: xcode8.2
env:
global:
- WORKSPACE=Withings-SDK-iOS.xcworkspace
- SCHEME=Withings-SDK-iOS
- EXAMPLE_SCHEME=Withings-SDK-iOS-Demo
- SDK=iphonesimulator10.0
- BUILD_EXAMPLE=YES
matrix:
- DESTINATION="OS=10.0,name=iPhone 7 Plus" POD_LINT="YES"
- DESTINATION="OS=9.0,name=iPhone 6" POD_LINT="NO"
- DESTINATION="OS=8.1,name=iPhone 4S" POD_LINT="NO"
| Configure Travis to build the right schemes | Configure Travis to build the right schemes
| YAML | mit | jdrevet/Withings-SDK-iOS |
1e6fb276f464afe4d950ef73eab519d0156338d0 | .travis.yml | .travis.yml | dist: trusty
sudo: false
language: go
go:
- 1.8.4
- 1.9.1
os:
- linux
- osx
before_install:
- openssl aes-256-cbc -K $encrypted_f2f8be5bc079_key -iv $encrypted_f2f8be5bc079_iv
-in gogetcookie.sh.enc -out scripts/gogetcookie.sh -d
install:
# This script is used by the Travis build to install a cookie for
# go.googlesource.com so rate limits are higher when using `go get` to fetch
# packages that live there.
# See: https://github.com/golang/go/issues/12933
- bash scripts/gogetcookie.sh
- go get github.com/golang/dep/cmd/dep
- dep ensure
script:
- make test
- make vet
matrix:
fast_finish: true
allow_failures:
- go: tip
| dist: trusty
sudo: false
language: go
go:
- 1.9.1
os:
- linux
- osx
before_install:
- openssl aes-256-cbc -K $encrypted_f2f8be5bc079_key -iv $encrypted_f2f8be5bc079_iv
-in gogetcookie.sh.enc -out scripts/gogetcookie.sh -d
install:
# This script is used by the Travis build to install a cookie for
# go.googlesource.com so rate limits are higher when using `go get` to fetch
# packages that live there.
# See: https://github.com/golang/go/issues/12933
- bash scripts/gogetcookie.sh
- go get github.com/golang/dep/cmd/dep
- dep ensure
script:
- make test
- make vet
matrix:
fast_finish: true
allow_failures:
- go: tip
| Stop building with Go 1.8 | Stop building with Go 1.8
| YAML | mit | ringods/terraform-provider-xenserver,ringods/terraform-provider-xenserver,ringods/terraform-provider-xenserver |
d70bc7a90e7cfe430a8b175e54bf43927e1582bd | .travis.yml | .travis.yml | language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- rbx-19mode
- ruby-head
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
allow_failures:
- rvm: 1.8.7 # mutant fails
- rvm: 1.9.3 # mutant fails
- rvm: 2.0.0 # mutant fails
- rvm: rbx-19mode # mutant fails
- rvm: ruby-head # travis broken
fast_finish: true
notifications:
irc:
channels:
- irc.freenode.org#rom-rb
on_success: never
on_failure: change
| language: ruby
before_install:
- gem update bundler
- bundle --version
- gem update --system 2.1.11
- gem --version
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- rbx-19mode
- ruby-head
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
allow_failures:
- rvm: 1.8.7 # mutant fails
- rvm: 1.9.3 # mutant fails
- rvm: 2.0.0 # mutant fails
- rvm: rbx-19mode # mutant fails
- rvm: ruby-head # travis broken
fast_finish: true
notifications:
irc:
channels:
- irc.freenode.org#rom-rb
on_success: never
on_failure: change
| Add temporary workaround for failing build on Ruby 1.8.7 | Add temporary workaround for failing build on Ruby 1.8.7
Rubygems broke builds on Ruby 1.8.7:
https://github.com/travis-ci/travis-ci/issues/1793
https://github.com/rubygems/rubygems/pull/763
This patch is a temporary workaround until rubygems is updated.
| YAML | mit | dkubb/yardstick,backus/yardstick |
b3d633fadfe4abad10e0e8a0c9454c4f30bd7dbd | .travis.yml | .travis.yml | language: ruby
script: ./script/cibuild
before_install:
- "npm install jshint -g"
env:
- JQUERY_VERSION: 1.8.0
- JQUERY_VERSION: 1.8.1
- JQUERY_VERSION: 1.8.2
- JQUERY_VERSION: 1.8.3
- JQUERY_VERSION: 1.9.0
- JQUERY_VERSION: 1.9.1
- JQUERY_VERSION: 1.10.0
- JQUERY_VERSION: 1.10.1
- JQUERY_VERSION: 1.10.2
- JQUERY_VERSION: 1.11.0
- JQUERY_VERSION: 1.11.1
- JQUERY_VERSION: 1.11.2
- JQUERY_VERSION: 2.0.0
- JQUERY_VERSION: 2.1.0
- JQUERY_VERSION: 2.1.1
- JQUERY_VERSION: 2.1.2
- JQUERY_VERSION: 2.1.3
| language: ruby
script: ./script/cibuild
before_install:
- "npm install jshint -g"
env:
- JQUERY_VERSION: 1.8.0
- JQUERY_VERSION: 1.8.1
- JQUERY_VERSION: 1.8.2
- JQUERY_VERSION: 1.8.3
- JQUERY_VERSION: 1.9.0
- JQUERY_VERSION: 1.9.1
- JQUERY_VERSION: 1.10.0
- JQUERY_VERSION: 1.10.1
- JQUERY_VERSION: 1.10.2
- JQUERY_VERSION: 1.11.0
- JQUERY_VERSION: 1.11.1
- JQUERY_VERSION: 1.11.2
- JQUERY_VERSION: 1.12.0
- JQUERY_VERSION: 2.0.0
- JQUERY_VERSION: 2.1.0
- JQUERY_VERSION: 2.1.1
- JQUERY_VERSION: 2.1.2
- JQUERY_VERSION: 2.1.3
- JQUERY_VERSION: 2.2.0
| Test with jQuery 1.12.0 and 2.2.0 | Test with jQuery 1.12.0 and 2.2.0
| YAML | mit | rails/jquery-ujs,mycolorway/jquery-ujs,shakacode/jquery-ujs,callumacrae/jquery-ujs,mycolorway/jquery-ujs,callumacrae/jquery-ujs,rails/jquery-ujs,shakacode/jquery-ujs,mycolorway/jquery-ujs,callumacrae/jquery-ujs,shakacode/jquery-ujs,mycolorway/jquery-ujs,rails/jquery-ujs,shakacode/jquery-ujs,callumacrae/jquery-ujs,rails/jquery-ujs |
3d0dfae83b6aee069009de080de66d546d384893 | .travis.yml | .travis.yml | language: node_js
node_js:
- iojs
- "0.12"
- "0.11"
- "0.10"
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- iojs
- "0.12"
- "0.10"
before_script:
- npm install -g grunt-cli
| Remove support for node 0.11 | Remove support for node 0.11
| YAML | mit | Rowno/sitemap-urls |
2a8ab780de9d38642051db22134765b4c7f21553 | .travis.yml | .travis.yml | language: node_js
sudo: false
before_script:
- npm install web-component-tester
- npm install bower
- 'export PATH=$PWD/node_modules/.bin:$PATH'
- bower install
branches:
only:
- gh-pages
- master
node_js: 4
addons:
firefox: latest
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
script:
- xvfb-run wct
- "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi"
| language: node_js
sudo: required
dist: trusty
before_script:
- npm install web-component-tester
- npm install bower
- 'export PATH=$PWD/node_modules/.bin:$PATH'
- bower install
branches:
only:
- gh-pages
- master
node_js: 4
addons:
firefox: latest
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
script:
- xvfb-run wct
- "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct -s 'default'; fi"
| Upgrade Travis CI to Ubuntu Trusty to fix Chrome usage in testing | Upgrade Travis CI to Ubuntu Trusty to fix Chrome usage in testing | YAML | mit | Juicy/juicy-html,Juicy/juicy-html |
d4378e47a573e02f3e9fe133186748b02038bc55 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
env:
global:
- SAMP_SDK_ROOT=$TRAVIS_BUILD_DIR/sdk
matrix:
- STATIC=ON
- STATIC=OFF
install:
- sudo apt-get update -qq
- sudo apt-get install -y gcc-multilib g++-multilib python-pip doxygen
- sudo pip install ply cidl
- wget http://www.cmake.org/files/v2.8/cmake-2.8.12.2-Linux-i386.sh
- sudo sh cmake-2.8.12.2-Linux-i386.sh --exclude-subdir --prefix=/usr
- git clone https://github.com/Zeex/samp-plugin-sdk.git sdk
before_script:
- cmake . -DCMAKE_C_COMPILER=${CC}
-DCMAKE_CXX_COMPILER=${CXX}
-DSAMPGDK_STATIC=${STATIC}
-DSAMPGDK_BUILD_PLUGINS=ON
-DSAMPGDK_BUILD_AMALGAMATION=ON
script:
- make
- make package
| language: cpp
compiler:
- gcc
- clang
env:
global:
- SAMP_SDK_ROOT=$TRAVIS_BUILD_DIR/sdk
matrix:
- STATIC=ON
- STATIC=OFF
install:
- sudo apt-add-repository -y ppa:kubuntu-ppa/backports
- sudo apt-get update -qq
- sudo apt-get install -y gcc-multilib g++-multilib cmake python-pip doxygen
- sudo pip install ply cidl
- git clone https://github.com/Zeex/samp-plugin-sdk.git sdk
before_script:
- cmake . -DCMAKE_C_COMPILER=${CC}
-DCMAKE_CXX_COMPILER=${CXX}
-DSAMPGDK_STATIC=${STATIC}
-DSAMPGDK_BUILD_PLUGINS=ON
-DSAMPGDK_BUILD_AMALGAMATION=ON
script:
- make
- make package
| Install CMake from a PPA | Install CMake from a PPA
This should fix the certificate issue on Travis CI:
Connecting to cmake.org (cmake.org)|66.194.253.19|:443... connected.
ERROR: no certificate subject alternative name matches
requested host name `cmake.org'.
To connect to cmake.org insecurely, use `--no-check-certificate'.
| YAML | apache-2.0 | WopsS/sampgdk,Zeex/sampgdk,Zeex/sampgdk,WopsS/sampgdk,WopsS/sampgdk,Zeex/sampgdk |
459e3c6693e37e95a5d6c4b89fb839108a9cd504 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
global:
- secure:
notifications:
email: false
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b -p $HOME/miniconda
- export PATH=$HOME/miniconda/bin:$PATH
- export PATH=$HOME/miniconda:$PATH
- conda update --yes conda
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib scikit-learn sphinx
- pip install -r requirements.txt
- python setup.py install
- cd src/
script:
- py.test --cov-config .coveragerc --cov=qinfer
- pylint --py3k qinfer/
- cd ~/doc
- make doctest
after_success:
- coveralls
before_deploy:
# For why this is needed, see:
# http://stackoverflow.com/questions/36635650/travisci-deploy-cannot-find-setup-py
- cd ~/
deploy:
provider: pypi
user: ${PYPI_USERNAME}
password: ${PYPI_PASSWORD}
distributions: "sdist bdist_wheel"
on:
tags: true
| sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
global:
- secure:
notifications:
email: false
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b -p $HOME/miniconda
- export PATH=$HOME/miniconda/bin:$PATH
- export PATH=$HOME/miniconda:$PATH
- conda update --yes conda
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib scikit-learn sphinx
- pip install -r requirements.txt
- python setup.py install
- cd src/
script:
- py.test --cov-config .coveragerc --cov=qinfer
- pylint --py3k qinfer/
- cd $TRAVIS_BUILD_DIR/doc
- make doctest
after_success:
- coveralls
before_deploy:
# For why this is needed, see:
# http://stackoverflow.com/questions/36635650/travisci-deploy-cannot-find-setup-py
- cd $TRAVIS_BUILD_DIR
deploy:
provider: pypi
user: ${PYPI_USERNAME}
password: ${PYPI_PASSWORD}
distributions: "sdist bdist_wheel"
on:
tags: true
| Fix for cd'ing into Travis builddir. | Fix for cd'ing into Travis builddir.
| YAML | agpl-3.0 | csferrie/python-qinfer,QInfer/python-qinfer,ihincks/python-qinfer,whitewhim2718/python-qinfer,MichalKononenko/python-qinfer,Alan-Robertson/python-qinfer |
d2ff3cb52a32d9efb53d6a6f3533b8f350300a72 | .travis.yml | .travis.yml | rvm:
- 2.1
- 2.2
- 2.3
- 2.4
bundler_args: --jobs 7
branches:
only:
- master
before_install:
- gem install bundler
script: bundle exec rake travis:ci
notifications:
hipchat:
on_change: true
on_failure: true
on_success: false
on_pull_requests: false
rooms:
# Build Statuses
- secure: fQEeBZSIV9mKpM5XeKxmvcgUb19skv3+qW6TiyvuPReB4B/mc5vf3AABWhbdnnHzjsKnq2iQtcppXVG0eJwuRM5D1werMO91zwSRNBU/ClOLHaYBp5l4tVkuHzAd3eo/Z67vxE0BAV9lGWeWv7r3y/BLgJ265nQMyfgZSyz1i44=
# Release Engineering
- secure: eUtMt0CeB2bbIcTeQA3rUJsTtBkq/Ng5AnM59NOCzutcPTnNDeM4kNQEfgJ5QEZZkx08IXyiPJ14gEQUaV0bF0s0FLyzFxjlX9p2jem99FmEA404KJ7axoUiGGxgATbq9V7tUOrp1zG+a8xVQTahZASKadPlC9TSRgKqjUL+Dvg=
| language: ruby
cache: bundler
dist: xenial
sudo: false
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
bundler_args: --jobs 7
branches:
only:
- master
before_install:
- gem install bundler
script: bundle exec rake travis:ci
notifications:
hipchat:
on_change: true
on_failure: true
on_success: false
on_pull_requests: false
rooms:
# Build Statuses
- secure: fQEeBZSIV9mKpM5XeKxmvcgUb19skv3+qW6TiyvuPReB4B/mc5vf3AABWhbdnnHzjsKnq2iQtcppXVG0eJwuRM5D1werMO91zwSRNBU/ClOLHaYBp5l4tVkuHzAd3eo/Z67vxE0BAV9lGWeWv7r3y/BLgJ265nQMyfgZSyz1i44=
# Release Engineering
- secure: eUtMt0CeB2bbIcTeQA3rUJsTtBkq/Ng5AnM59NOCzutcPTnNDeM4kNQEfgJ5QEZZkx08IXyiPJ14gEQUaV0bF0s0FLyzFxjlX9p2jem99FmEA404KJ7axoUiGGxgATbq9V7tUOrp1zG+a8xVQTahZASKadPlC9TSRgKqjUL+Dvg=
| Enable caching and run on Xenial | Enable caching and run on Xenial
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef/artifactory-client,chef/artifactory-client |
4d4203080bdbba57d27b1dfaa2c69cdf43f98c89 | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 7.2
- 7.3
- 7.4snapshot
services: mongodb
before_install:
- pecl install -f mongodb
- composer validate --strict
before_script:
- composer install
script:
- ./vendor/bin/phpunit -v
| language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 7.2
- 7.3
- 7.4snapshot
services: mongodb
before_install:
- pecl install -f mongodb
- composer validate --strict
install:
- composer update --prefer-stable --prefer-dist ${COMPOSER_FLAGS}
script:
- ./vendor/bin/phpunit -v
jobs:
include:
# Tests the lowest set of dependencies
- php: 7.2
env: LOWEST COMPOSER_FLAGS="--prefer-lowest"
| Add test against lowest dependencies | Add test against lowest dependencies
| YAML | mit | doctrine/data-fixtures |
e495aaaf0b9dcea6bc8bc97d9143a0d7a649fa06 | .travis.yml | .travis.yml | # Travis (http://travis-ci.org/) is a continuous integration
# service for open source projects. This file configures
# Travis to install and run "tox" test runner, which is
# configured in tox.ini file.
language: python
install: pip install tox --use-mirrors
script: tox
| # Travis (http://travis-ci.org/) is a continuous integration
# service for open source projects. This file configures
# Travis to install and run "tox" test runner, which is
# configured in tox.ini file.
language: python
install: pip install tox --use-mirrors
script: tox
# Disable SSL (Python 2.5 does not have "ssl" module).
env: PIP_INSECURE=true
| Disable SSL for pip inside Travis CI | Disable SSL for pip inside Travis CI
| YAML | mit | kenwilcox/docopt,wkentaro/docopt,devonjones/docopt,crcsmnky/docopt,docopt/docopt,snowsnail/docopt,jagguli/docopt,Zearin/docopt,benthomasson/docopt |
6244c8607620d1ebaf61679532eb972c7b2a1563 | .travis.yml | .travis.yml | # .travis.yml
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
before_script:
- npm run babel
- mysql -e 'create database knex_test;'
notifications:
email: false | # .travis.yml
sudo: false
language: node_js
node_js:
- '4'
- '5'
- '6'
- '7'
before_script:
- npm run babel
- mysql -e 'create database knex_test;'
notifications:
email: false | Drop support for Node 0.10 and 0.12 | Drop support for Node 0.10 and 0.12
| YAML | mit | vellotis/knex-generic-errors |
d014d3148b6af1a03294db377a9170e6f27e63f2 | .travis.yml | .travis.yml | language: go
go:
- 1.6.1
branches:
only:
- master
install: make
script:
- make test
sudo: false
| language: go
go:
- 1.6
branches:
only:
- master
install: make
script:
- make test
sudo: false
| Revert to Go 1.6 to see if that fixes Travis | Revert to Go 1.6 to see if that fixes Travis
| YAML | mpl-2.0 | tshak/consul,tugbabodrumlu/consul,youhong316/consul,i0rek/consul,hashicorp/consul,dankraw/consul,i0rek/consul,42wim/consul,andygoalkeeper/consul,pmalmgren/consul,sequenceiq/consul,pmalmgren/consul,rhyas/consul,scalp42/consul,calgaryscientific/consul,Thib17/consul,kingland/consul,rhyas/consul,youhong316/consul,scalp42/consul,sunadm/consul,hashicorp/consul,vamage/consul,zeroae/consul,Thib17/consul,sean-/consul,Thib17/consul,42wim/consul,dankraw/consul,Thib17/consul,sean-/consul,sunadm/consul,tugbabodrumlu/consul,dankraw/consul,kingland/consul,sweeneyb/consul,dankraw/consul,youhong316/consul,sweeneyb/consul,kylemcc/consul,leowmjw/consul,calgaryscientific/consul,jovandeginste/consul,sweeneyb/consul,calgaryscientific/consul,tshak/consul,scalp42/consul,rhyas/consul,jovandeginste/consul,kingland/consul,dankraw/consul,Pivotal-Pierre-Delagrave/consul,vamage/consul,leowmjw/consul,tugbabodrumlu/consul,tshak/consul,kylemcc/consul,sequenceiq/consul,andygoalkeeper/consul,42wim/consul,sunadm/consul,sunadm/consul,calgaryscientific/consul,sequenceiq/consul,calgaryscientific/consul,sweeneyb/consul,i0rek/consul,pmalmgren/consul,kylemcc/consul,pmalmgren/consul,sequenceiq/consul,zeroae/consul,mckennajones/consul,42wim/consul,Pivotal-Pierre-Delagrave/consul,tugbabodrumlu/consul,zeroae/consul,andygoalkeeper/consul,youhong316/consul,kingland/consul,andygoalkeeper/consul,tugbabodrumlu/consul,leowmjw/consul,sean-/consul,tshak/consul,scalp42/consul,jovandeginste/consul,tshak/consul,Pivotal-Pierre-Delagrave/consul,jovandeginste/consul,mckennajones/consul,vamage/consul,zeroae/consul,vamage/consul,zeroae/consul,pmalmgren/consul,i0rek/consul,andygoalkeeper/consul,mckennajones/consul,kingland/consul,kylemcc/consul,sean-/consul,sean-/consul,Pivotal-Pierre-Delagrave/consul,rhyas/consul,hashicorp/consul,Thib17/consul,vamage/consul,mckennajones/consul,hashicorp/consul,kylemcc/consul,sunadm/consul,rhyas/consul,42wim/consul,jovandeginste/consul,leowmjw/consul,i0rek/consul,youhong316/consul,leowmjw/consul,scalp42/consul,Pivotal-Pierre-Delagrave/consul,sequenceiq/consul,sweeneyb/consul,mckennajones/consul |
fb43ebfdcdeadd246c40aa7f9706482ed368d0d9 | .travis.yml | .travis.yml | language: node_js
node_js:
- '6'
- '7'
- '8'
- '9'
- '10'
before_script:
- npm install
script: npm test
| language: node_js
node_js:
- '6'
- '7'
- '8'
- '9'
- '10'
- '11'
- '12'
before_script:
- npm install
script: npm test
| Build from Node 6 to Node 12 | Build from Node 6 to Node 12
| YAML | mit | iredchuk/array-join,iredchuk/array-join |
3a8d1aa691c4dfa85f215d44db089c6e87bcd652 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
after_success:
- coveralls
rvm:
- 2.5.1
- 2.4.0
- ruby-head
- jruby-9.2.0.0
- jruby-head
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
| language: ruby
sudo: false
cache: bundler
after_success:
- coveralls
rvm:
- 2.4.0
- 2.5.1
- ruby-head
- jruby-9.2.0.0
- jruby-head
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
| Reorder ruby versions in .travil.yml | Reorder ruby versions in .travil.yml
for consistency.
| YAML | mit | Ana06/rantly,abargnesi/rantly |
9decc4b8cf2f8814bd73a2bbe3866db3a4682269 | .travis.yml | .travis.yml | language: generic
env:
global:
- PATH="/opt/chefdk/bin:/opt/chef/bin:$PATH"
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
install:
- unset GEM_PATH
script:
- make
- git diff --exit-code
- git diff --cached --exit-code
- rubocop
- ./run-foodcritic cookbooks
- ./runtests
| language: generic
env:
global:
- PATH="/opt/chefdk/bin:/opt/chefdk/embedded/bin:/opt/chef/bin:$PATH"
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
install:
- unset GEM_PATH
script:
- make
- git diff --exit-code
- git diff --cached --exit-code
- rubocop
- ./run-foodcritic cookbooks
- ./runtests
| Use the embedded chef ruby, too | Use the embedded chef ruby, too
| YAML | mit | travis-ci/packer-templates,travis-ci/packer-templates,travis-ci/packer-templates |
d0db27fd2f16982113125da871fffce7de650fdd | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
- "6"
- "5"
- "4"
- "iojs"
before_install:
- npm config set spin false --global
| language: node_js
node_js:
- "9"
- "8"
- "6"
- "4"
before_install:
- npm config set spin false --global
| Test only on supported node versions | Test only on supported node versions
| YAML | bsd-3-clause | leebyron/async-to-gen |
5885a68def3a40a3b85bc576a7a2d299ff3af716 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
matrix:
allow_failures:
- rvm: 2.0.0
| Allow specs to fail under Ruby 2.0 | Allow specs to fail under Ruby 2.0
| YAML | mit | krautcomputing/tries |
0cba26fdd68c1fb1a652717cd0934f37ec94558e | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0
- jruby
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| Add non-head jruby to the build list. | Add non-head jruby to the build list.
| YAML | mit | nickelser/caddy,nickelser/caddy |
d39cdfba2ea7509195504240ad3926f1db88224c | .travis.yml | .travis.yml | language: ruby
bundler_args: --without local_development
script: bundle exec rake
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-2
notifications:
recipients:
- timo.roessner@googlemail.com
- matijs@matijs.net
- emil.rehnberg@gmail.com
irc: "irc.freenode.org#reek"
| language: ruby
bundler_args: --without local_development
script: bundle exec rake
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
- jruby-19mode
- rbx-2
notifications:
recipients:
- timo.roessner@googlemail.com
- matijs@matijs.net
- emil.rehnberg@gmail.com
irc: "irc.freenode.org#reek"
| Allow any Ruby 2.1 on Travis CI | Allow any Ruby 2.1 on Travis CI
| YAML | mit | skywinder/reek,chastell/reek,apuratepp/reek,troessner/reek,andyw8/reek,nTraum/reek,skywinder/reek,troessner/reek,HParker/reek,tansaku/reek,apuratepp/reek,weby/reek,andyw8/reek,apuratepp/reek,HParker/reek,tansaku/reek,HParker/reek,andyw8/reek,skywinder/reek,weby/reek,tansaku/reek,nTraum/reek,weby/reek |
6014817c568811abb628dc7f1a0f901a65954ce2 | .travis.yml | .travis.yml | language: c
os: osx
jobs:
include:
- os: osx
osx_image: xcode12.2
addons:
homebrew:
packages: ncurses
install:
- cmake -S . -B build -G "Unix Makefiles" -DCOVERAGE=ON -DHOMEBREW_NCURSES=ON
script:
- cmake --build build --target all test
after_success:
- bash <(curl -s https://codecov.io/bash)
- os: linux
dist: focal
install:
- cmake -S . -B build -G "Unix Makefiles"
script:
- cmake --build build --target all test
| language: c
jobs:
include:
- os: osx
osx_image: xcode12.2
addons:
homebrew:
packages: ncurses
install:
- cmake -S . -B build -G "Unix Makefiles" -DCOVERAGE=ON -DHOMEBREW_NCURSES=ON
script:
- cmake --build build --target all test
after_success:
- bash <(curl -s https://codecov.io/bash)
- os: linux
dist: focal
before_install:
- sudo apt-get -y install libbsd-dev
install:
- cmake -S . -B build -G "Unix Makefiles"
script:
- cmake --build build --target all test
| Install libbsd in Travis CI Linux build. | Install libbsd in Travis CI Linux build.
Build fails since libbsd-dev package isn't installed on Ubuntu Focal
20.04 by default.
| YAML | bsd-2-clause | donmccaughey/FiendsAndFortune,donmccaughey/FiendsAndFortune,donmccaughey/FiendsAndFortune |
93e2b0c5fe1e35c9c49ce6b2a0d625f00b758f2a | .travis.yml | .travis.yml | language: java
before_install:
- "git clone -b travis `git config --get remote.origin.url` target/travis"
- "cp target/travis/settings.xml ~/.m2/settings.xml"
# whitelist
branches:
only:
- master
jdk:
- oraclejdk7
- openjdk7
- openjdk6
after_success: mvn site --settings target/travis/settings.xml
env:
global:
- secure: "LO721rjYfnWYYVN+AxbcjWVLysN44Qt+ehGjl4WmKyrIp0gqhDc2PNtwykrM\n3vJy+I//YQy/m7f43B6qAh+KHY+ol0PCJ0Kcx1IAFZ1HR/yVaro04251sDKv\n3rwcFnqFAR9HEQmKGtCu5S9qLA/hIYDvt0oKWrlrT7N1knufoGY="
- secure: "Z1ehdzAP/BvyO+DiV8U7uQ/gd6QVrc00LCd+/MUKUAWC7N090Zue/X2TErsM\nBQ/FTR+9UmzpE7RqaHRZecjjq4GzhZGaZx4Yg/+ImiGusACmKDbO+FP8KdtI\nmhatnV3/7q4Fl7ttjbwsyDsLcSb/V+tO0o6l9FPlnup7kN2m3fo="
| language: java
before_install:
- "git clone -b travis `git config --get remote.origin.url` target/travis"
- "cp target/travis/settings.xml ~/.m2/settings.xml"
# whitelist
branches:
only:
- master
jdk:
- openjdk6
after_success: mvn site --settings target/travis/settings.xml
env:
global:
- secure: "LO721rjYfnWYYVN+AxbcjWVLysN44Qt+ehGjl4WmKyrIp0gqhDc2PNtwykrM\n3vJy+I//YQy/m7f43B6qAh+KHY+ol0PCJ0Kcx1IAFZ1HR/yVaro04251sDKv\n3rwcFnqFAR9HEQmKGtCu5S9qLA/hIYDvt0oKWrlrT7N1knufoGY="
- secure: "Z1ehdzAP/BvyO+DiV8U7uQ/gd6QVrc00LCd+/MUKUAWC7N090Zue/X2TErsM\nBQ/FTR+9UmzpE7RqaHRZecjjq4GzhZGaZx4Yg/+ImiGusACmKDbO+FP8KdtI\nmhatnV3/7q4Fl7ttjbwsyDsLcSb/V+tO0o6l9FPlnup7kN2m3fo="
| Test only for one sdk (1.6) | Test only for one sdk (1.6)
| YAML | bsd-3-clause | codeforamerica/open311_java |
af5a1a3ab541bb4cbe1d4de4177dadfa9c48078f | .travis.yml | .travis.yml | language: go
go:
- master
addons:
ssh_known_hosts: overflod.chary.us
before_install:
- openssl aes-256-cbc -K $encrypted_da0730754d12_key -iv $encrypted_da0730754d12_iv -in travis_rsa.enc -out travis_rsa -d
- chmod 600 travis_rsa
- mv travis_rsa ~/.ssh/id_rsa
install:
- ./scripts/install-hugo.sh
jobs:
include:
# Build and deploy to staging (flotwig's host)
- stage: build
if: tag IS NOT present
script: hugo -b https://snoonet-beta.chary.us/
after_success:
- ./scripts/deploy.sh
# Build and deploy generated content to the gh-pages branch
- stage: deploy
if: tag IS present
script:
- hugo -b https://snoonet.org/
- echo "$CNAME_URL" > public/CNAME
deploy:
provider: pages
github-token: "$GITHUB_OAUTH_TOKEN"
skip-cleanup: true
email: "$GITHUB_EMAIL"
name: "$GITHUB_USERNAME"
verbose: true
keep-history: true
local-dir: public
target-branch: gh-pages
on:
tags: true
| language: go
go:
- master
addons:
ssh_known_hosts: overflod.chary.us
before_install:
- openssl aes-256-cbc -K $encrypted_da0730754d12_key -iv $encrypted_da0730754d12_iv -in travis_rsa.enc -out travis_rsa -d
- chmod 600 travis_rsa
- mv travis_rsa ~/.ssh/id_rsa
install:
- ./scripts/install-hugo.sh
jobs:
include:
# Build and deploy to staging (flotwig's host)
- stage: build
if: tag IS NOT present
script: hugo -b https://snoonet-beta.chary.us/
after_success:
- ./scripts/deploy.sh
# Build and deploy generated content to the gh-pages branch
- stage: deploy
if: tag IS present
script:
- hugo -b "$LIVE_SITE_URL"
- echo "$CNAME_URL" > public/CNAME
deploy:
provider: pages
github-token: "$GITHUB_OAUTH_TOKEN"
skip-cleanup: true
email: "$GITHUB_EMAIL"
name: "$GITHUB_USERNAME"
verbose: true
keep-history: true
local-dir: public
target-branch: gh-pages
on:
tags: true
| Make the site's URL a variable (for easier deployment testing) | Make the site's URL a variable (for easier deployment testing)
| YAML | mit | snoonetIRC/website,snoonetIRC/website,snoonetIRC/website |
cb5b0aaa757cbd56b2ee3874018230e1b3d8f8b5 | .travis.yml | .travis.yml | after_success:
- bundle exec codeclimate-test-reporter
before_install:
- gem update bundler rake
branches:
only:
- master
- v3
env:
global:
- secure: | # CODECLIMATE_REPO_TOKEN
BIemhM273wHZMpuULDMYGPsxYdfw+NMw7IQbOD6gy5r+dha07y9ssTYYE5Gn
t1ptAb09lhQ4gexXTr83i6angMrnHgQ1ZX2wfeoZ0FvWDHQht9YkXyiNH+R6
odHUeDIYAlUiqLX9nAkklL89Rc22BrHMGGNyuA8Uc5sktW5P/FE=
language: ruby
matrix:
allow_failures:
- rvm: ruby-head
notifications:
webhooks:
on_start: always
urls:
- http://buildlight.collectiveidea.com/
rvm:
- 1.9.3
- "2.0"
- "2.1"
- "2.2"
- "2.3"
- "2.4"
- ruby-head
script: bundle exec rspec
| after_success:
- bundle exec codeclimate-test-reporter
before_install:
- gem update bundler rake
branches:
only:
- master
- v3
env:
global:
- secure: | # CODECLIMATE_REPO_TOKEN
BIemhM273wHZMpuULDMYGPsxYdfw+NMw7IQbOD6gy5r+dha07y9ssTYYE5Gn
t1ptAb09lhQ4gexXTr83i6angMrnHgQ1ZX2wfeoZ0FvWDHQht9YkXyiNH+R6
odHUeDIYAlUiqLX9nAkklL89Rc22BrHMGGNyuA8Uc5sktW5P/FE=
language: ruby
matrix:
allow_failures:
- rvm: ruby-head
notifications:
webhooks:
on_start: always
urls:
- http://buildlight.collectiveidea.com/
rvm:
- 1.9.3
- "2.0"
- "2.1"
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- ruby-head
script: bundle exec rspec
| Add support for Ruby 2.5 | Add support for Ruby 2.5
| YAML | mit | collectiveidea/interactor |
13e245cb3a535aa85f024a47525e711956df0a18 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.12"
- "stable"
| sudo: false
language: node_js
node_js:
- "4"
- "stable"
- "0.12"
| Add latest 4 node.js release to Travis CI | Add latest 4 node.js release to Travis CI
| YAML | mit | pascalduez/postcss,dehuszar/postcss,jonathantneal/postcss,postcss/postcss,Semigradsky/postcss,jedmao/postcss,maximkoretskiy/postcss,postcss/postcss,XOP/postcss,bezoerb/postcss,alanev/postcss,andrepolischuk/postcss |
6f335bf7dc45751e9d536aa737e4bcac92473855 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.3
env:
- DB=postgres
install:
- bundle install
env:
matrix:
- SOLIDUS_BRANCH=v1.3
- SOLIDUS_BRANCH=v1.4
- SOLIDUS_BRANCH=v2.0
- SOLIDUS_BRANCH=v2.1
- SOLIDUS_BRANCH=v2.2
- SOLIDUS_BRANCH=master
script:
- bundle exec rake test_app
- ( cd ./spec/dummy && bundle exec rake solidus-adyen:factory_girl:lint RAILS_ENV=test )
- bundle exec rspec
| language: ruby
rvm:
- 2.2.3
env:
- DB=postgres
install:
- bundle install
env:
matrix:
- SOLIDUS_BRANCH=v1.3
- SOLIDUS_BRANCH=v1.4
- SOLIDUS_BRANCH=v2.0
- SOLIDUS_BRANCH=v2.1
- SOLIDUS_BRANCH=v2.2
script:
- bundle exec rake test_app
- ( cd ./spec/dummy && bundle exec rake solidus-adyen:factory_girl:lint RAILS_ENV=test )
- bundle exec rspec
| Remove master from testing grid | Remove master from testing grid
This extension is not at all ready for master. Additional work will be
required to fix everything up.
| YAML | mit | freerunningtech/solidus-adyen,StemboltHQ/solidus-adyen,freerunningtech/solidus-adyen,StemboltHQ/solidus-adyen,StemboltHQ/solidus-adyen,freerunningtech/solidus-adyen,StemboltHQ/solidus-adyen,freerunningtech/solidus-adyen |
f22f3c466106a66b8e43137063d1d74d4c5b8282 | .travis.yml | .travis.yml | dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: '49.0.2'
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "[ x$(cat node_modules/.last-node-version 2>/dev/null) = x$(node -e 'console.log(process.version)') ] || (npm rebuild && node -e 'console.log(process.version)' > node_modules/.last-node-version)"
before_script:
- npm install web-component-tester bower@1.7.9 polylint
- $(npm bin)/bower install
- $(npm bin)/polylint --no-recursion
script:
- xvfb-run $(npm bin)/wct
| dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "[ x$(cat node_modules/.last-node-version 2>/dev/null) = x$(node -e 'console.log(process.version)') ] || (npm rebuild && node -e 'console.log(process.version)' > node_modules/.last-node-version)"
before_script:
- npm install web-component-tester bower@1.7.9 polylint
- $(npm bin)/bower install
- $(npm bin)/polylint --no-recursion
script:
- xvfb-run $(npm bin)/wct
| Use the latest Firefox ESR for testing | Use the latest Firefox ESR for testing
| YAML | apache-2.0 | Collaborne/paper-alert-dialog |
57413afd5aa7ee3ea5df9ee241e5aba347027b10 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
services: mongodb
install:
- "pip install -r requirements.txt --use-mirrors"
script: "python test.py"
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
services: mongodb
install:
- "pip install -r requirements.txt"
script: "python test.py"
| Remove --use-mirrors from libraries installation. | Remove --use-mirrors from libraries installation.
| YAML | bsd-2-clause | puentesarrin/mongodb-log,puentesarrin/mongodb-log |
8489570dc81a31c4ba14d25e1c1ea6ed7000c6a7 | .travis.yml | .travis.yml | language: python
python:
- 3.6
cache:
directories:
- $HOME/.cache/pip
- $HOME/.ccache # https://github.com/travis-ci/travis-ci/issues/5853
install:
# Install this package and the packages listed in requirements.txt.
- pip install .[complete]
# Install extra requirements for running tests and building docs.
- pip install -r requirements-dev.txt
script:
- coverage run -m pytest # Run the tests and check for test coverage.
- coverage report -m # Generate test coverage report.
- codecov # Upload the report to codecov.
- isort --check-only # Verify sorted imports.
- flake8 --max-line-length=115 # Enforce code style (but relax line length limit a bit).
- make -C docs html # Build the documentation.
| language: python
sudo: false
cache:
directories:
- $HOME/.cache/pip
- $HOME/.ccache # https://github.com/travis-ci/travis-ci/issues/5853
services:
- mongodb
matrix:
fast_finish: true
include:
- python: 3.6
- python: 3.7
dist: xenial
env: PUBLISH_DOCS=1
- python: nightly
allow_failures:
- python: nightly
install:
# Install this package and the packages listed in requirements.txt.
- pip install .[complete]
# Install extra requirements for running tests and building docs.
- pip install -r requirements-dev.txt
script:
- coverage run -m pytest # Run the tests and check for test coverage.
- coverage report -m # Generate test coverage report.
- codecov # Upload the report to codecov.
- isort --check-only # Verify sorted imports.
- flake8 --max-line-length=115 # Enforce code style (but relax line length limit a bit).
- make -C docs html # Build the documentation.
| Set up CI in usual way. | Set up CI in usual way.
| YAML | bsd-3-clause | NSLS-II/amostra |
537ede1c86b741475c9887fc0975e5320310c39a | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '6'
- '7'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Build with Node.js 7 on Travis CI. | Build with Node.js 7 on Travis CI.
| YAML | mit | bigeasy/operation |
7c6e2dbe7067dfc375e77387580c813f52f85740 | .travis.yml | .travis.yml | sudo: false
rvm:
- "2.0"
- "2.1"
- "2.2.5"
- "2.3.1"
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
branches:
only:
- master
before_install: gem install bundler -v ">= 1.12.5"
| sudo: false
rvm:
- "2.0"
- "2.1"
- "2.2.6"
- "2.3.3"
- "2.4.0"
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
branches:
only:
- master
before_install: gem install bundler -v ">= 1.12.5"
| Use the latest Rubies on Travis | Use the latest Rubies on Travis
| YAML | mit | danielsdeleo/deep_merge |
adcbb8135c8a8760d78424e964665f51dfb63a58 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.12'
sudo: false
env:
matrix:
- GROUP=
global:
- GH_REF: github.com/jupyter/jupyter-js-plugins.git
install:
- bash ./scripts/travis_install.sh
script:
- bash ./scripts/travis_script.sh
after_success:
- bash ./scripts/travis_after_success.sh
| language: node_js
node_js:
- '0.12'
sudo: false
env:
matrix:
- GROUP=
global:
- GH_REF: github.com/jupyter/jupyter-js-plugins.git
- secure: UwfNcdwPGuWRY6A0kjeEC0Py7OEuSOO14aSypr779D1jabGkXLVPtmXQzy3kRQuMRVse/OVC88wNzYDnTEikwrWHOguANlYyTjJCmeG+YVWjpDN6OzAWYJ/RCacPyY7+mkQKizzKBfgJy39AXMRTp17kYePVo4yTfvkQpaZfFVQqVhL1v6Qz4rI3IG5DlCJFn6le9uhv5tJan+a2iQQBNHNAyrFoTujGz/PVDmuQ/EUF/RuC3OYGOBfkZgsiOeB9eFHSa5sweFnn+57a1Y0YOJM7TqpOwDzWrEbNnev08I5YTH2RJ1hMhLXOUmHAI8vW42IxMWo6B/b6n0/0x2lCbQTNKl6So4esu+G2di5VsSMvyXkVH7ahJRmR/iHAhb7vBR0eJ90vKp2xcVRsWFEKy/MNXECAPnqqPLsCFb8My3ecxDpNiSnTrB54at5OoR5cD7q5ZGDQ7wU+tePVWXZHiiL9j+OcqyjrvcMEp1sbRGriOwhzkJsFW4/SJ1yrcmX/PnMiZBTbxuxjYMaO5+pr49mKCs220keukN0MxiK/1WHQMiNxY7bePA6JPk1SMWyan64D9O6KmoelaIYO6vOWV8ndpQfBez2D1db4VCArJBJqHC1BRWS6/akkFMbsV6YXBi94rsfNAEx2m0d6X++cioqnuw2t3PvK2Bxnxc6TMrU=
install:
- bash ./scripts/travis_install.sh
script:
- bash ./scripts/travis_script.sh
after_success:
- bash ./scripts/travis_after_success.sh
| Add a docs push token | Add a docs push token
| YAML | bsd-3-clause | jupyter/jupyter-js-plugins,blink1073/jupyter-js-plugins,jupyter/jupyter-js-plugins,blink1073/jupyter-js-plugins,jupyter/jupyter-js-plugins,blink1073/jupyter-js-plugins,jupyter/jupyter-js-plugins,blink1073/jupyter-js-plugins,jupyter/jupyter-js-plugins,blink1073/jupyter-js-plugins |
c832a8434622217a8b1dfbf674242961169a4376 | .travis.yml | .travis.yml | language: python
env:
- PYTHON=2.6
- PYTHON=2.7
- PYTHON=3.3
- PYTHON=3.4
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
install:
- conda update conda --yes
- conda create -n testenv --yes pip python=$PYTHON
- conda update conda --yes
- source activate testenv
- conda install --yes --file requirements.txt
before_script:
- conda install --yes -c r r r-survival
- conda install --yes -c https://conda.binstar.org/cgat bioconductor-biobase bioconductor-s4vectors bioconductor-godb bioconductor-genefilter
- R --vanilla < R-combat.R
script:
- python combat.py
- python test.py
| language: python
env:
- PYTHON=2.6
- PYTHON=2.7
- PYTHON=3.3
- PYTHON=3.4
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
install:
- conda update conda --yes
- conda create -n testenv --yes pip python=$PYTHON
- conda update conda --yes
- source activate testenv
- conda install --yes --file requirements.txt
before_script:
- conda install --yes -c r r
- conda install --channel https://conda.binstar.org/asmeurer r-survival
- conda install --yes -c https://conda.binstar.org/cgat bioconductor-biobase bioconductor-s4vectors bioconductor-godb bioconductor-genefilter
- R --vanilla < R-combat.R
script:
- python combat.py
- python test.py
| Use a different channel for r-survival | Use a different channel for r-survival
| YAML | mit | brentp/combat.py,brentp/combat.py |
c1798361bcfcc70d7bb81d0f99266f99a662c029 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
- "0.11"
before_script:
- npm install -g grunt-cli
- git config --global user.name 'Travis CI'
- git config --global user.email 'test@travis-ci.org'
| language: node_js
node_js:
- "0.8"
- "0.10"
before_script:
- npm install -g grunt-cli
- git config --global user.name 'Travis CI'
- git config --global user.email 'test@travis-ci.org'
| Disable testing on 0.11 for now. | Disable testing on 0.11 for now.
| YAML | mit | rubenv/grunt-git,y-a-r-g/grunt-git |
4ac4d56ad9f8d12c52e63f2aebb5ce5b4d1abe7a | logging.dist.yml | logging.dist.yml | version: 1
disable_existing_loggers: False
formatters:
simple:
format: "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
handlers:
console:
class: logging.StreamHandler
level: DEBUG
formatter: simple
stream: ext://sys.stdout
debug_file_handler:
class: logging.handlers.RotatingFileHandler
level: DEBUG
formatter: simple
filename: debug.log
maxBytes: 10485760 # 10MB
backupCount: 20
encoding: utf8
error_file_handler:
class: logging.handlers.RotatingFileHandler
level: ERROR
formatter: simple
filename: errors.log
maxBytes: 10485760 # 10MB
backupCount: 20
encoding: utf8
loggers:
helper:
level: DEBUG
handlers: [console, debug_file_handler, error_file_handler]
propagate: no
root:
level: DEBUG
handlers: [console, debug_file_handler, error_file_handler]
| version: 1
disable_existing_loggers: False
formatters:
simple:
format: "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
handlers:
console:
class: logging.StreamHandler
level: DEBUG
formatter: simple
stream: ext://sys.stdout
debug_file_handler:
class: logging.handlers.RotatingFileHandler
level: DEBUG
formatter: simple
filename: debug.log
maxBytes: 10485760 # 10MB
backupCount: 20
encoding: utf8
error_file_handler:
class: logging.handlers.RotatingFileHandler
level: WARNING
formatter: simple
filename: errors.log
maxBytes: 10485760 # 10MB
backupCount: 20
encoding: utf8
loggers:
helper:
level: DEBUG
handlers: [console, debug_file_handler, error_file_handler]
propagate: no
root:
level: DEBUG
handlers: [console, debug_file_handler, error_file_handler]
| Change log level for errors to 'WARNING' | Change log level for errors to 'WARNING'
| YAML | mit | kort/kort-to-osm,kort/kort-to-osm |
cb7b1fa349a15bc3412342adb7e6c7e65fc7f2e3 | lain.yaml | lain.yaml | appname: hagrid
build:
base: laincloud/centos-lain:20160503
prepare:
version: 3
script:
- npm install -g webpack webpack-dev-server
- mkdir -p /go/src/github.com/laincloud
script:
- npm install react react-dom babel-core babel-loader babel-preset-es2015 babel-preset-react
- ln -s /lain/app $GOPATH/src/github.com/laincloud/hagrid
- go build -o hagrid $GOPATH/src/github.com/laincloud/hagrid/main.go
- webpack
web:
cmd: ./hagrid
port: 8080
memory: 64m
secret_files:
- hagrid.conf.json
web.icinga:
image: registry.lain.local/icinga2:20160830
memory: 256M
cmd: ./run_icinga.sh
port: 80
mountpoint:
- icinga.lain.cloud
https_only: true
stateful: true
secret_files:
- /etc/icinga2/features-available/ido-mysql.conf
- /etc/icinga2/scripts/util.sh
- /etc/icingaweb2/resources.ini
persistent_dirs:
- /var/lib/icinga2
logs:
- icingaweb2.log
use_services:
mysql-service:
- mysql-master
| appname: hagrid
build:
base: laincloud/centos-lain:20160503
prepare:
version: 3
script:
- npm install -g webpack webpack-dev-server
- mkdir -p /go/src/github.com/laincloud
script:
- npm install react react-dom babel-core babel-loader babel-preset-es2015 babel-preset-react
- ln -s /lain/app $GOPATH/src/github.com/laincloud/hagrid
- go build -o hagrid $GOPATH/src/github.com/laincloud/hagrid/main.go
- webpack
- rm -rf node_modules
web:
cmd: ./hagrid
port: 8080
memory: 64m
secret_files:
- hagrid.conf.json
web.icinga:
image: registry.lain.local/centos-lain-icinga2:20160907
memory: 256M
cmd: ./run_icinga.sh
port: 80
mountpoint:
- icinga.lain.cloud
https_only: true
stateful: true
secret_files:
- /etc/icinga2/features-available/ido-mysql.conf
- /etc/icinga2/scripts/util.sh
- /etc/icingaweb2/resources.ini
persistent_dirs:
- /var/lib/icinga2
logs:
- icingaweb2.log
use_services:
mysql-service:
- mysql-master
| Remove node_module dir to decrease the images size | Remove node_module dir to decrease the images size
| YAML | mit | laincloud/hagrid,laincloud/hagrid,laincloud/hagrid |
6c31f26b40ef285082ee2ca1e75904b1c2f4c65f | packages/gh/ghc-srcspan-plugin.yaml | packages/gh/ghc-srcspan-plugin.yaml | homepage: ''
changelog-type: ''
hash: 3131594b5f9d1fc3ee35a5d8f87b1361840d02778080a6494beef514250e02c1
test-bench-deps: {}
maintainer: eric@seidel.io
synopsis: ! 'Generic GHC Plugin for annotating Haskell code with source
location data.'
changelog: ''
basic-deps:
ghc: ! '>=7.8 && <8.2'
base: ! '>=4.7 && <5'
hpc: -any
array: -any
containers: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.2.1.0'
- '0.2.2.0'
author: Eric Seidel
latest: '0.2.2.0'
description-type: haddock
description: ! 'This package provides a generic Core-to-Core pass for
annotating Haskell expressions with the original source
locations, making them available at runtime.
You can use it to build a GHC Plugin tailored to
your own library by providing a predicate to select
interesting expressions for annotation and a function to
annotate the expressions.'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: abf672ae0ace499a4504948175e92b1604f94566295b6bbfafd1e9f2bb48f0fa
test-bench-deps: {}
maintainer: eric@seidel.io
synopsis: ! 'Generic GHC Plugin for annotating Haskell code with source
location data.'
changelog: ''
basic-deps:
ghc: ! '>=7.8'
base: ! '>=4.7 && <5'
hpc: -any
array: -any
containers: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.2.1.0'
- '0.2.2.0'
- '0.2.2.1'
author: Eric Seidel
latest: '0.2.2.1'
description-type: haddock
description: ! 'This package provides a generic Core-to-Core pass for
annotating Haskell expressions with the original source
locations, making them available at runtime.
You can use it to build a GHC Plugin tailored to
your own library by providing a predicate to select
interesting expressions for annotation and a function to
annotate the expressions.'
license-name: BSD3
| Update from Hackage at 2017-12-21T14:43:35Z | Update from Hackage at 2017-12-21T14:43:35Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a9fefcd506d2fcd39bae7612e9be49276b22e66d | packages/tr/trivial-constraint.yaml | packages/tr/trivial-constraint.yaml | homepage: https://github.com/leftaroundabout/trivial-constraint
changelog-type: ''
hash: 819468024c1eab92abdbb52427a81a6e31bbd458cd0185b4709310569d08256a
test-bench-deps: {}
maintainer: sagemuej@smail.uni-koeln.de
synopsis: Constraints that any type, resp. no type fulfills
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
all-versions:
- 0.1.0.0
- 0.2.0.0
- 0.3.0.0
- 0.4.0.0
author: Justus Sagemüller
latest: 0.4.0.0
description-type: haddock
description: ! 'Since GHC 7.4, constraints are first-class: we have the constraint
kind, and thus type-classes have a kind such as @* -> Constraint@.
These can be used as parameters to data types. They also can be combined quite nicely,
@
type NewConstraint a = (Constraint1 a, Constraint2 a)
@
however you always need to start with a plain old type class when building constraints.
This library provides a type class that is not really a constraint at all, so you
can "start from zero" with building up a custom constraint.
Also its opposite (a constraint that no type can ever fulfill).'
license-name: GPL-3.0-only
| homepage: https://github.com/leftaroundabout/trivial-constraint
changelog-type: ''
hash: 2a6366931e8d4fedb8f78738e80ff1f09741ad621aef9202e15be33341ac970c
test-bench-deps: {}
maintainer: sagemuej@smail.uni-koeln.de
synopsis: Constraints that any type, resp. no type fulfills
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
all-versions:
- 0.1.0.0
- 0.2.0.0
- 0.3.0.0
- 0.4.0.0
- 0.5.0.0
author: Justus Sagemüller
latest: 0.5.0.0
description-type: haddock
description: |-
Since GHC 7.4, constraints are first-class: we have the constraint kind, and thus type-classes have a kind such as @* -> Constraint@.
These can be used as parameters to data types. They also can be combined quite nicely,
@
type NewConstraint a = (Constraint1 a, Constraint2 a)
@
however you always need to start with a plain old type class when building constraints.
This library provides a type class that is not really a constraint at all, so you can "start from zero" with building up a custom constraint.
Also its opposite (a constraint that no type can ever fulfill).
license-name: GPL-3.0-only
| Update from Hackage at 2019-05-24T22:57:21Z | Update from Hackage at 2019-05-24T22:57:21Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
8aa681c59ce4042285971cd56e9ae689f0b539f8 | metadata/com.iatfei.streakalarm.yml | metadata/com.iatfei.streakalarm.yml | Categories:
- Time
- Phone & SMS
License: GPL-3.0-or-later
SourceCode: https://github.com/fei0316/snapstreak-alarm
IssueTracker: https://github.com/fei0316/snapstreak-alarm/issues
AutoName: Streak Alarm
Description: |-
Reminds you to keep streaks by firing notification at user-defined intervals.
Only works if you have friends.
This is my first app project!
Features:
* Custom reminder interval from 1 to 22 hours
* Notification stays until streaks are sent so you won't miss it
* Snooze reminder for custom amount of time
* Mark streaks sent (also directly in notification)
* Mark streaks sent some time earlier
* Open Snapchat (also in notification)
* Automatically disable notifications if ignored for long time
* Drop me an email if you have any suggestions!
RepoType: git
Repo: https://github.com/fei0316/snapstreak-alarm
Builds:
- versionName: 1.1.1
versionCode: 13
commit: 1.1.1
subdir: app
gradle:
- free
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.1.1
CurrentVersionCode: 13
| Categories:
- Time
- Phone & SMS
License: GPL-3.0-or-later
SourceCode: https://github.com/fei0316/snapstreak-alarm
IssueTracker: https://github.com/fei0316/snapstreak-alarm/issues
AutoName: Streak Alarm
Description: |-
Reminds you to keep streaks by firing notification at user-defined intervals.
Only works if you have friends.
This is my first app project!
Features:
* Custom reminder interval from 1 to 22 hours
* Notification stays until streaks are sent so you won't miss it
* Snooze reminder for custom amount of time
* Mark streaks sent (also directly in notification)
* Mark streaks sent some time earlier
* Open Snapchat (also in notification)
* Automatically disable notifications if ignored for long time
* Drop me an email if you have any suggestions!
RepoType: git
Repo: https://github.com/fei0316/snapstreak-alarm
Builds:
- versionName: 1.1.1
versionCode: 13
commit: 1.1.1
subdir: app
gradle:
- free
- versionName: 1.1.3
versionCode: 16
commit: 1.1.3
subdir: app
gradle:
- free
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.1.3
CurrentVersionCode: 16
| Update Streak Alarm to 1.1.3 (16) | Update Streak Alarm to 1.1.3 (16)
| YAML | agpl-3.0 | f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata |
02189c43564f661742378a7623b22409aa7c295f | config/locales/en.yml | config/locales/en.yml | en:
spree:
buy_gift_card: "Buy gift card"
gift_card: 'Gift Card'
gift_cards: "Gift cards"
gift_card_calculator: 'Gift Card Calculator'
gift_code: 'Gift Code'
gift_code_applied: 'Gift code has been successfully applied to your order.'
gift_code_not_found: "The gift code you entered doesn't exist. Please try again."
is_gift_card: "is gift card"
new_gift_card: 'New Gift Card'
recipient_name: "Recipient name"
successfully_created_gift_card: 'You have successfully created the gift card.'
transactions: "Transactions"
value: 'Value'
| en:
spree:
apply: "Apply"
back_to_gift_cards_list: "Back to Gift Cards List"
buy_gift_card: "Buy gift card"
current_value: "Current Value"
gift_card: 'Gift Card'
gift_cards: "Gift cards"
gift_card_calculator: 'Gift Card Calculator'
gift_code: 'Gift Code'
gift_code_applied: 'Gift code has been successfully applied to your order.'
gift_code_not_found: "The gift code you entered doesn't exist. Please try again."
is_gift_card: "is gift card"
new_gift_card: 'New Gift Card'
note: "Note"
original_value: "Original Value"
recipient_name: "Recipient name"
successfully_created_gift_card: 'You have successfully created the gift card.'
transactions: "Transactions"
value: 'Value'
| Add a few more translations. | Add a few more translations.
| YAML | bsd-3-clause | dotandbo/spree_gift_card,mr-ado/spree_gift_card,AdamGoodApp/spree_gift_card,JDutil/spree_gift_card,AdamGoodApp/spree_gift_card,mr-ado/spree_gift_card,AdamGoodApp/spree_gift_card,tcjuan/spree_gift_card,Boomkat/spree_gift_card,tcjuan/spree_gift_card,dotandbo/spree_gift_card,Boomkat/spree_gift_card,JDutil/spree_gift_card,mr-ado/spree_gift_card,Boomkat/spree_gift_card,JDutil/spree_gift_card |
f5606574b5a16272f47f154e896f3afaaeecc9b4 | app/config/config_prod.yml | app/config/config_prod.yml | imports:
- { resource: config.yml }
#framework:
# validation:
# cache: apc
#doctrine:
# orm:
# metadata_cache_driver: apc
# result_cache_driver: apc
# query_cache_driver: apc
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: nested
nested:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug
console:
type: console
| imports:
- { resource: config.yml }
#framework:
# validation:
# cache: apc
#doctrine:
# orm:
# metadata_cache_driver: apc
# result_cache_driver: apc
# query_cache_driver: apc
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: nested
nested:
type: stream
# path: "%kernel.logs_dir%/%kernel.environment%.log"
path: "php://stderr"
level: debug
console:
type: console
| Handle logging using Logplex in prod (Heroku) | Handle logging using Logplex in prod (Heroku)
| YAML | apache-2.0 | blockcypher/php-wallet-sample,blockcypher/php-wallet-sample,blockcypher/php-wallet-sample |
cc1098f54c898b2cc2fe189099e8128a08a338af | app/config/config_test.yml | app/config/config_test.yml | imports:
- { resource: config_dev.yml }
framework:
test: ~
session:
storage_id: session.storage.mock_file
profiler:
collect: false
router:
resource: "%kernel.root_dir%/config/routing_install.yml"
web_profiler:
toolbar: false
intercept_redirects: false
services:
database:
class: SpoonDatabase
arguments:
- %database.driver%
- %database.host%
- %database.user%
- %database.password%
- %database.name%_test
- %database.port%
| imports:
- { resource: config_dev.yml }
framework:
test: ~
session:
storage_id: session.storage.mock_file
profiler:
collect: false
router:
resource: "%kernel.root_dir%/config/routing_install.yml"
web_profiler:
toolbar: false
intercept_redirects: false
doctrine:
dbal:
dbname: %database.name%_test
services:
database:
class: SpoonDatabase
arguments:
- %database.driver%
- %database.host%
- %database.user%
- %database.password%
- %database.name%_test
- %database.port%
| Use the test database for doctrine instead of the normal one | Use the test database for doctrine instead of the normal one
| YAML | mit | tommyvdv/forkcms,Thijzer/forkcms,vytsci/forkcms,mathiashelin/forkcms,jessedobbelaere/forkcms,sumocoders/forkcms,carakas/forkcms,dmoerman/forkcms,DegradationOfMankind/forkcms,forkcms/forkcms,jessedobbelaere/forkcms,DegradationOfMankind/forkcms,DegradationOfMankind/forkcms,carakas/forkcms,jessedobbelaere/forkcms,jonasdekeukelaere/forkcms,mathiashelin/forkcms,Thijzer/forkcms,riadvice/forkcms,jeroendesloovere/forkcms,bartdc/forkcms,riadvice/forkcms,jeroendesloovere/forkcms,jessedobbelaere/forkcms,Katrienvh/forkcms,sumocoders/forkcms,jeroendesloovere/forkcms,jeroendesloovere/forkcms,dmoerman/forkcms,riadvice/forkcms,tommyvdv/forkcms,sumocoders/forkcms,jacob-v-dam/forkcms,forkcms/forkcms,jacob-v-dam/forkcms,mathiashelin/forkcms,vytenizs/forkcms,tommyvdv/forkcms,jacob-v-dam/forkcms,carakas/forkcms,sumocoders/forkcms,vytenizs/forkcms,jonasdekeukelaere/forkcms,forkcms/forkcms,jacob-v-dam/forkcms,vytsci/forkcms,jonasdekeukelaere/forkcms,justcarakas/forkcms,vytenizs/forkcms,jonasdekeukelaere/forkcms,justcarakas/forkcms,justcarakas/forkcms,Katrienvh/forkcms,jonasdekeukelaere/forkcms,vytsci/forkcms,Katrienvh/forkcms,DegradationOfMankind/forkcms,carakas/forkcms,tommyvdv/forkcms,riadvice/forkcms,bartdc/forkcms,carakas/forkcms,Katrienvh/forkcms,forkcms/forkcms,Thijzer/forkcms,dmoerman/forkcms,mathiashelin/forkcms,bartdc/forkcms,sumocoders/forkcms |
fa1dd9a0bbe05afe0c2984dd2db053ea98a54cc6 | app/config/routing_dev.yml | app/config/routing_dev.yml | _wdt:
resource: "@WebProfilerBundle/Resources/config/routing/wdt.xml"
prefix: /_wdt
_profiler:
resource: "@WebProfilerBundle/Resources/config/routing/profiler.xml"
prefix: /_profiler
_main:
resource: routing.yml
| _wdt:
resource: "@WebProfilerBundle/Resources/config/routing/wdt.xml"
prefix: /_wdt
options:
expose: true
_profiler:
resource: "@WebProfilerBundle/Resources/config/routing/profiler.xml"
prefix: /_profiler
options:
expose: true
_main:
resource: routing.yml
| Debug profiler route is hardcoded in JS | BAP-7813: Debug profiler route is hardcoded in JS | YAML | mit | jankkhvej/platform-application,cbradescu/deranjamente,vetal-e/academic_platform,jankkhvej/platform-application,devXpro/OROBug,vetal-e/academic_platform,cbradescu/deranjamente,vetal-e/academic_platform,vshabala/academic,cbradescu/deranjamente,cbradescu/orotlt,cbradescu/orotlt,vshabala/academic,orocrm/platform-application,devXpro/OROBug,orocrm/platform-application,cbradescu/orotlt |
8c6d99d6377e58325a3f166613982819208d8edf | data/sites/dfe_media.yml | data/sites/dfe_media.yml | ---
site: dfe_media
host: media.education.gov.uk
redirection_date: 23rd April 2013
tna_timestamp: 20130123124929
title: Department for Education
furl: www.gov.uk/dfe
homepage: https://www.gov.uk/government/organisations/department-for-education
| ---
site: dfe_media
host: media.education.gov.uk
redirection_date: 23rd April 2013
tna_timestamp: 20130123124929
title: Department for Education
furl: www.gov.uk/dfe
homepage: https://www.gov.uk/government/organisations/department-for-education
css: department-for-education
---
| Add DFE branding for DFE subdomain | Add DFE branding for DFE subdomain
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
d32906451536331dd967e0f64751d6efbef69cbf | packages/al/alg.yaml | packages/al/alg.yaml | homepage: ''
changelog-type: ''
hash: ac4e231e4c8d8b69666d0a96e81373d4a3d000ac4f25e23c9546cce66b4509bd
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Algebraic structures
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
all-versions:
- '0.1.0.0'
author: M Farkas-Dyck
latest: '0.1.0.0'
description-type: haddock
description: ''
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 7873bead6831f4d025b678f45cc0bea18e03415196dbda165823f50bd9850b1c
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Algebraic structures
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
all-versions:
- '0.1.0.0'
- '0.1.1.1'
author: M Farkas-Dyck
latest: '0.1.1.1'
description-type: haddock
description: ''
license-name: BSD3
| Update from Hackage at 2017-11-02T22:06:57Z | Update from Hackage at 2017-11-02T22:06:57Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
ebf5133b63ee3f53d297074cc766f407a6e3fa1c | packages/hp/hpg.yaml | packages/hp/hpg.yaml | homepage: https://git.alokat.org/hpg
changelog-type: ''
hash: 5950e9c1c6a091ccf8da9547c2743534bf77bcbfabff95ef9254ed022edc88de
test-bench-deps: {}
maintainer: fritjof@alokat.org
synopsis: 'no'
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
random: -any
all-versions:
- '0.2'
- '0.3'
author: Fritjof Bornebusch
latest: '0.3'
description-type: haddock
description: the haskell password generator.
license-name: ISC
| homepage: https://git.alokat.org/hpg
changelog-type: ''
hash: 80246472e24bdbd9852cd6eb239862984616e5bc4b83d453a98a2068c64e3de6
test-bench-deps: {}
maintainer: fritjof@alokat.org
synopsis: 'no'
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
random: -any
all-versions:
- '0.2'
- '0.3'
- '0.4'
author: Fritjof Bornebusch
latest: '0.4'
description-type: markdown
description: ! "hpg\n===\n\nThe hpg utility creates passwords of different sizes,
between 1 and 2^16.\nPlease note that a length of < 8 is not very secure and should
be avoided.\nThat is why the default value is 16 if the command is called without
any\noptions. The default entropy contains [a-zA-Z0-9].\n\n-l Use lower
case.\n\n-n Use numbers.\n\n-s Use symbols.\n\n-u Use
upper case.\n\n-x Use another length, as the default one.\n\nEXAMPLES\n--------\n\nCreate
a new random password:\n \n\t$ hpg -lnsu -x 32\n\n"
license-name: ISC
| Update from Hackage at 2017-04-28T21:48:04Z | Update from Hackage at 2017-04-28T21:48:04Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
50099568d2b533176a3c5cc746cb6997ff770005 | tasks/install-yum.yml | tasks/install-yum.yml | ---
# Copyright 2016, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or 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.
- name: yum clean all
command: "/usr/bin/yum clean all"
register: yum_clean
until: yum_clean | success
tags:
- skip_ansible_lint
- name: Install yum packages
yum:
pkg: "{{ item }}"
state: "{{ memcached_package_state }}"
register: install_yum_packages
until: install_yum_packages | success
retries: 5
delay: 2
with_items: "{{ memcached_distro_packages }}"
- name: Install yum packages for testing
yum:
pkg: "{{ item }}"
state: "{{ memcached_package_state }}"
register: install_yum_test_packages
until: install_yum_test_packages | success
retries: 5
delay: 2
with_items: "{{ memcached_test_distro_packages }}"
when: install_test_packages|bool
| ---
# Copyright 2016, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or 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.
- name: yum clean all
command: "/usr/bin/yum clean all"
register: yum_clean
until: yum_clean | success
retries: 5
delay: 2
tags:
- skip_ansible_lint
- name: Install yum packages
yum:
pkg: "{{ item }}"
state: "{{ memcached_package_state }}"
register: install_yum_packages
until: install_yum_packages | success
retries: 5
delay: 2
with_items: "{{ memcached_distro_packages }}"
- name: Install yum packages for testing
yum:
pkg: "{{ item }}"
state: "{{ memcached_package_state }}"
register: install_yum_test_packages
until: install_yum_test_packages | success
retries: 5
delay: 2
with_items: "{{ memcached_test_distro_packages }}"
when: install_test_packages|bool
| Add retry to comply with the until loop | Add retry to comply with the until loop
Change-Id: Ibbfbebb0b3b904deb340355e46c33e1b1e65fb1d
| YAML | apache-2.0 | openstack/openstack-ansible-memcached_server,openstack/openstack-ansible-memcached_server |
39d1aa3d960efb4fba2c97fcf41f9b13b55611a1 | src/main/resources/application.yml | src/main/resources/application.yml | server:
port: 8080
spring:
application:
name: game-of-life-client
eureka:
instance:
leaseRenewalIntervalInSeconds: 1
leaseExpirationDurationInSeconds: 2
healthcheck:
enabled: true
lease:
duration: 5
client:
serviceUrl:
defaultZone: http://malvarez.cern.ch/game-of-life/eureka/
---
spring:
profiles: local
server:
port: 8081
eureka:
client:
serviceUrl:
defaultZone: http://localhost:8080/game-of-life/eureka/ | server:
port: 8080
spring:
application:
name: game-of-life-client
eureka:
instance:
leaseRenewalIntervalInSeconds: 1
leaseExpirationDurationInSeconds: 2
healthcheck:
enabled: true
lease:
duration: 5
client:
serviceUrl:
defaultZone: http://malvarez.cern.ch:8080/game-of-life/eureka/
---
spring:
profiles: local
server:
port: 8081
eureka:
client:
serviceUrl:
defaultZone: http://localhost:8080/game-of-life/eureka/ | Include the path in the client registrations as well | Include the path in the client registrations as well
| YAML | apache-2.0 | manuel-alvarez-alvarez/tdd-kata |
bb42e84116f83e50f33b352e0f333007047f2fb1 | packages/ha/haskus-utils-data.yaml | packages/ha/haskus-utils-data.yaml | homepage: http://www.haskus.org
changelog-type: ''
hash: 6dd3ecb6671b3eb888e479b5beb4a9fa7cee09c91683c88c501db6cd0177e427
test-bench-deps:
base: ! '>=4.9 && <5'
doctest: -any
maintainer: sylvain@haskus.fr
synopsis: Haskus data utility modules
changelog: ''
basic-deps:
extra: ! '>=1.4'
base: ! '>=4.9 && <5'
haskus-utils-types: ! '>=1.5'
containers: ! '>=0.5'
ghc-prim: -any
mtl: ! '>=2.2'
transformers: ! '>=0.4'
recursion-schemes: ! '>=5.0'
all-versions:
- '1.0'
- '1.1'
- 1.1.1
- '1.2'
author: Sylvain Henry
latest: '1.2'
description-type: haddock
description: Haskus data utility modules
license-name: BSD-3-Clause
| homepage: http://www.haskus.org
changelog-type: ''
hash: 48f62aa23d84b94edd0338379d3b3d74a34d3c2dbabf8c448a774a89ca70ea5d
test-bench-deps:
base: ! '>=4.9 && <5'
doctest: -any
maintainer: sylvain@haskus.fr
synopsis: Haskus data utility modules
changelog: ''
basic-deps:
extra: ! '>=1.4'
base: ! '>=4.12 && <5'
haskus-utils-types: ! '>=1.5'
containers: ! '>=0.5'
ghc-prim: -any
mtl: ! '>=2.2'
transformers: ! '>=0.4'
recursion-schemes: ! '>=5.0'
all-versions:
- '1.0'
- '1.1'
- 1.1.1
- '1.2'
author: Sylvain Henry
latest: '1.2'
description-type: haddock
description: Haskus data utility modules
license-name: BSD-3-Clause
| Update from Hackage at 2020-02-21T09:26:20Z | Update from Hackage at 2020-02-21T09:26:20Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
53c156634d19213514b73fef15bbd6ae723e41a6 | _config.yml | _config.yml | title: Squirrely Girl Produce
email: squirrely.girl.produce@gmail.com
description: >
Hobby farm exploring Joel Salatin's pastured poultry techniques
with ducks and geese.
theme: minima
markdown: kramdown
kramdown:
input: GFM
hard_wrap: false
repository: sgproduce/sgproduce.github.io
collections:
ideas:
output: true
plans:
output: true
projects:
output: true
permalink: /:collection/:path/
posts:
output: true
plugins:
- jekyll
- jekyll-seo-tag
- jekyll-sitemap
- jekyll-feed
- github-pages
exclude:
- Gemfile
- Gemfile.lock
- README.md
- vendor
timezone: America/New_York
defaults:
-
scope:
path: ""
values:
layout: "default"
-
scope:
path: "/posts"
values:
layout: "post"
| title: Squirrelly Girl Produce
email: squirrelly.girl.produce@gmail.com
description: Turning grass into eggs through portable pens on pasture
theme: minima
markdown: kramdown
kramdown:
input: GFM
hard_wrap: false
repository: sgproduce/sgproduce.github.io
collections:
ideas:
output: true
plans:
output: true
projects:
output: true
permalink: /:collection/:path/
posts:
output: true
plugins:
- jekyll
- jekyll-seo-tag
- jekyll-sitemap
- jekyll-feed
- github-pages
exclude:
- Gemfile
- Gemfile.lock
- README.md
- vendor
timezone: America/New_York
defaults:
-
scope:
path: ""
values:
layout: "default"
-
scope:
path: "/posts"
values:
layout: "post"
| Fix to match logo spelling and branding | Fix to match logo spelling and branding
| YAML | bsd-2-clause | sgproduce/sgproduce.github.io,sgproduce/sgproduce.github.io,sgproduce/sgproduce.github.io |
12f840fb16fac1bef65382f6ca6f7f6c7534fd26 | _config.yml | _config.yml | theme: jekyll-theme-cayman
title: Extending the Bash shell
description: ''
show_downloads: true
google_analytics:
| theme: jekyll-theme-cayman
title: bashlets
description: 'An experiment in extending the command-line interface'
show_downloads: true
google_analytics:
| Edit the site title and description. | Edit the site title and description.
| YAML | mit | bashlets/bashlets-library,bashlets/bashlets,bashlets/bashlets |
d48ee51106e7d5faab6e7b9d2706299afe1490a8 | _config.yml | _config.yml | # Site settings
title: JoeNyland.me
email: contact@joenyland.me
description: ""
baseurl: ""
url: "http://joenyland.me/"
github_username: joenyland
# Build settings
markdown: kramdown
permalink: pretty
| # Site settings
title: JoeNyland.me
email: contact@joenyland.me
description: ""
baseurl: ""
url: "http://joenyland.me/"
github_username: joenyland
# Build settings
markdown: kramdown
permalink: pretty
defaults:
-
scope:
path: ''
type: 'post'
values:
category: 'blog'
| Add default category for blog posts | Add default category for blog posts
| YAML | mit | MasterRoot24/masterroot24.github.io,MasterRoot24/masterroot24.github.io,MasterRoot24/masterroot24.github.io |
7f54079273ecc4d65cfd80b2a61391210b85604b | _config.yml | _config.yml | name: Nick Williams
tagline: Full-stack developer with a passion for JavaScript.
location: Leicestershire, UK
twitter: http://twitter.com/nickwuh
github: https://github.com/nilliams
markdown: redcarpet
pygments: false
sass:
sass_dir: _sass
| name: Nick Williams
tagline: Full-stack developer with a passion for JavaScript.
location: Leicestershire, UK
twitter: http://twitter.com/nickwuh
github: https://github.com/nilliams
markdown: redcarpet
pygments: false
permalink: /:title
sass:
sass_dir: _sass
| Use blog-post title for url by default (reverts e0d914f) | Use blog-post title for url by default (reverts e0d914f)
| YAML | mit | nilliams/jekyll-minimal-blog-theme,nilliams/jekyll-minimal-blog-theme,nilliams/jekyll-minimal-blog-theme |
2147de03e661474bd9c920a33d00a42ff9955e0b | infra/roles/base/tasks/main.yml | infra/roles/base/tasks/main.yml | - name: Install Packages
apt: >
pkg={{item}}
state=present
update-cache=yes
with_items:
# ansible permissions
- acl
# netstat
- net-tools | - name: Install Packages
apt: >
pkg={{item}}
state=present
update-cache=yes
with_items:
# ansible permissions
- acl
# netstat
- net-tools
- unzip | Include unzip (for basemaps file) | Include unzip (for basemaps file)
| YAML | mit | kinow/nz-osm-server,kinow/nz-osm-server,kinow/nz-osm-server,kinow/nz-osm-server |
f2b5bdaeec85485189795639c8439e876a14827d | utils/packaging/cleanup_opensuse.yml | utils/packaging/cleanup_opensuse.yml | ---
- name: Clean up zypper cache
command: zypper clean
- name: Really clean zypper cache
shell: for i in `ls /var/lib/zypp/`; do rm -rfv /var/lib/zypp/${i}/*; done
- name: Determine kernel version in chroot
shell: ls /lib/modules/
register: kernel_version
- name: Generate module dependencies with depmod for kernel
shell: depmod -a {{ kernel_version.stdout }}
- name: Regenerate initramfs using dracut
command: dracut --force --regenerate-all
ignore_errors: true
# - name: Apply default SELinux contexts to the system
# shell: restorecon -R /
# when: selinux_enabled
| ---
- name: Clean up zypper cache
command: zypper clean
- name: Really clean zypper cache
shell: for i in `ls /var/lib/zypp/`; do rm -rfv /var/lib/zypp/${i}/*; done
- name: Determine kernel version in chroot
shell: ls /lib/modules/
register: kernel_version
- name: Generate module dependencies with depmod for kernel
shell: depmod -a {{ kernel_version.stdout }}
- name: Regenerate initramfs using dracut
command: dracut --force --regenerate-all
# - name: Apply default SELinux contexts to the system
# shell: restorecon -R /
# when: selinux_enabled
| Drop ignore errors on dracut regen | Drop ignore errors on dracut regen
| YAML | apache-2.0 | squashible/squashible,squashible/squashible |
2beb2429abe7c29897672eb362d08dbb521c9a21 | config/ruby-libs.yaml | config/ruby-libs.yaml | ---
# Configuration file defining ruby libraries to install
# using gem install (avoiding the distribution package manager)
gems:
- addressable
- cheat
- fastercsv
- hpricot
- htmlentities
- json
- kwalify
- libxml-ruby
- uuidtools
- xml-simple
# science
- bio
# databases
- couchdb-ruby
- data_objects
- datamapper
- dm-adjust
- dm-aggregates
- dm-ar-finders
- dm-cli
- dm-constraints
- dm-core
- dm-ferret-adapter
- dm-is-list
- dm-is-nested_set
- dm-is-remixable
- dm-is-searchable
- dm-is-state_machine
- dm-is-tree
- dm-is-versioned
- dm-migrations
- dm-observer
- dm-rest-adapter
- dm-serializer
- dm-sweatshop
- dm-tags
- dm-timestamps
- dm-types
- dm-validations
- do_sqlite3
# Require up to date ruby. Fail on Centos default
- vagrant
- ruby-ensembl-api
- mysql
- do_mysql
- sqlite3-ruby
| ---
# Configuration file defining ruby libraries to install
# using gem install (avoiding the distribution package manager)
gems:
- addressable
- cake
- cheat
- fastercsv
- hpricot
- htmlentities
- json
- kwalify
- libxml-ruby
- uuidtools
- xml-simple
# science
- bio
# databases
- couchdb-ruby
- data_objects
- datamapper
- dm-adjust
- dm-aggregates
- dm-ar-finders
- dm-cli
- dm-constraints
- dm-core
- dm-ferret-adapter
- dm-is-list
- dm-is-nested_set
- dm-is-remixable
- dm-is-searchable
- dm-is-state_machine
- dm-is-tree
- dm-is-versioned
- dm-migrations
- dm-observer
- dm-rest-adapter
- dm-serializer
- dm-sweatshop
- dm-tags
- dm-timestamps
- dm-types
- dm-validations
- do_sqlite3
# Require up to date ruby. Fail on Centos default
- vagrant
- ruby-ensembl-api
- mysql
- do_mysql
- sqlite3-ruby
| Add cake -- clojure build tool | Add cake -- clojure build tool
| YAML | mit | lpantano/cloudbiolinux,AICIDNN/cloudbiolinux,joemphilips/cloudbiolinux,rchekaluk/cloudbiolinux,averagehat/cloudbiolinux,chapmanb/cloudbiolinux,kdaily/cloudbiolinux,chapmanb/cloudbiolinux,heuermh/cloudbiolinux,elkingtonmcb/cloudbiolinux,lpantano/cloudbiolinux,pjotrp/cloudbiolinux,pjotrp/cloudbiolinux,heuermh/cloudbiolinux,AICIDNN/cloudbiolinux,elkingtonmcb/cloudbiolinux,averagehat/cloudbiolinux,chapmanb/cloudbiolinux,kdaily/cloudbiolinux,rchekaluk/cloudbiolinux,joemphilips/cloudbiolinux,pjotrp/cloudbiolinux,averagehat/cloudbiolinux,elkingtonmcb/cloudbiolinux,heuermh/cloudbiolinux,AICIDNN/cloudbiolinux,joemphilips/cloudbiolinux,chapmanb/cloudbiolinux,averagehat/cloudbiolinux,elkingtonmcb/cloudbiolinux,joemphilips/cloudbiolinux,AICIDNN/cloudbiolinux,heuermh/cloudbiolinux,lpantano/cloudbiolinux,kdaily/cloudbiolinux,pjotrp/cloudbiolinux,rchekaluk/cloudbiolinux,rchekaluk/cloudbiolinux,kdaily/cloudbiolinux |
2a68f958f1a5f2c503dec22e3292fb3390eca973 | packages/bb/bbdb.yaml | packages/bb/bbdb.yaml | homepage: http://www.nadineloveshenry.com/haskell/database-bbdb.html
changelog-type: ''
hash: a359a5bdccd1259c662e04e49eca9f3ddba39d88fc9366fdc7d1f5ff827e2502
test-bench-deps: {}
maintainer: nadine.and.henry@pobox.com
synopsis: Ability to read, write, and examine BBDB files
changelog: ''
basic-deps:
base: ! '>=3 && <=5'
parsec: ! '>=3'
mtl: -any
all-versions:
- '0.1'
- '0.2'
- '0.3'
- '0.4'
author: Henry Laxen
latest: '0.4'
description-type: haddock
description: ! 'BBDB (http://sourceforge.bbdb.net) is a contact management utility
that can be used with emacs. It stores its data internally as a lisp
expression. This module parses the lisp and provides some convenience
functions to get at and manipulate the data all from within Haskell.
See the hackage docs for usage and examples.'
license-name: GPL-3
| homepage: http://www.nadineloveshenry.com/haskell/database-bbdb.html
changelog-type: markdown
hash: 20e5d711f74ed2cc0768b631f0dc6095fecb207258360fc4a3950cb590dd140f
test-bench-deps: {}
maintainer: nadine.and.henry@pobox.com
synopsis: Ability to read, write, and examine BBDB files
changelog: ! 'Changes for Database/BBDB
=========================
From 0.4 -> 0.5
---------------
The BBDB file format changed. The current version of the format
is 7. Once field, called *Affixes* was added, and now the extension
in a US phone field is required.
'
basic-deps:
base: ! '>=3 && <=5'
parsec: ! '>=3'
mtl: -any
all-versions:
- '0.1'
- '0.2'
- '0.3'
- '0.4'
- '0.5'
author: Henry Laxen
latest: '0.5'
description-type: haddock
description: ! 'BBDB (http://sourceforge.bbdb.net) is a contact management utility
that can be used with emacs. It stores its data internally as a lisp
expression. This module parses the lisp and provides some convenience
functions to get at and manipulate the data all from within Haskell.
See the hackage docs for usage and examples.'
license-name: GPL-3
| Update from Hackage at 2015-11-10T15:16:47+0000 | Update from Hackage at 2015-11-10T15:16:47+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
bb3a506e707f1990c914c2a0e351ab2d251b29fa | step.yml | step.yml | title: Gradle Coveralls
summary: |-
Runs Coveralls with `./gradlew`.
description: |-
Sends code coverage to www.coveralls.io. Uses `./gradlew coveralls` task. You have to configure “org.kt3k.gradle.plugin:coveralls-gradle-plugin” in your project first.
website: https://github.com/donvigo/steps-gradle-coveralls
source_code_url: https://github.com/donvigo/steps-gradle-coveralls
support_url: https://github.com/donvigo/steps-gradle-coveralls/issues
host_os_tags:
- "ubuntu"
project_type_tags:
- android
type_tags:
- coveralls
- gradle
is_requires_admin_user: false
is_always_run: false
is_skippable: true
inputs:
- gradlew_file_path: "./gradlew"
opts:
title: "Path for the gradlew file"
description: |
Path for the gradlew file
is_required: true
is_expand: false
- coveralls_task: coveralls
opts:
title: “Coveralls gradle task"
description: |
The coveralls task to execute by gradlew
is_required: true
is_expand: false
outputs: []
| title: Gradle Coveralls
summary: |-
Runs Coveralls with `./gradlew`.
description: |-
Sends code coverage to www.coveralls.io. Uses `./gradlew coveralls` task. You have to configure [org.kt3k.gradle.plugin:coveralls-gradle-plugin](https://github.com/kt3k/coveralls-gradle-plugin) in your project first.
website: https://github.com/donvigo/steps-gradle-coveralls
source_code_url: https://github.com/donvigo/steps-gradle-coveralls
support_url: https://github.com/donvigo/steps-gradle-coveralls/issues
host_os_tags:
- "ubuntu"
project_type_tags:
- android
type_tags:
- coveralls
- gradle
is_requires_admin_user: false
is_always_run: false
is_skippable: true
inputs:
- gradlew_file_path: "./gradlew"
opts:
title: "Path for the gradlew file"
description: |
Path for the gradlew file
is_required: true
is_expand: false
- coveralls_task: coveralls
opts:
title: “Coveralls gradle task"
description: |
The coveralls task to execute by gradlew
is_required: true
is_expand: false
outputs: []
| Add link to gradle coveralls plugin | Add link to gradle coveralls plugin | YAML | mit | donvigo/steps-gradle-coveralls |
3227b82c089d96ef40a903a4e5a669c3687b5ee8 | packages/gp/gpio.yaml | packages/gp/gpio.yaml | homepage: http://github.com/tgolson/gpio
changelog-type: ''
hash: 2590a40ba186bf40be137dcfe414ba53eb724e14b8c9cb2718affc892dcfa20b
test-bench-deps: {}
maintainer: tydotg@gmail.com
synopsis: Haskell GPIO interface, designed specifically for the RaspberryPi.
changelog: ''
basic-deps:
optparse-generic: -any
base: ! '>=4.5 && <5'
basic-prelude: -any
monad-control: -any
gpio: -any
string-conversions: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
author: Tyler Olson
latest: '0.1.0.2'
description-type: haddock
description: Please see README.md
license-name: BSD3
| homepage: http://github.com/tgolson/gpio
changelog-type: ''
hash: 9147226881b1efe85748960462a0569c80725775fedd31f6f59ce103c33b9fff
test-bench-deps: {}
maintainer: tydotg@gmail.com
synopsis: Haskell GPIO interface, designed specifically for the RaspberryPi.
changelog: ''
basic-deps:
exceptions: -any
optparse-generic: -any
base: ! '>=4.7 && <5'
monad-control: -any
gpio: -any
safe: -any
directory: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
author: Tyler Olson
latest: '0.1.0.3'
description-type: markdown
description: ! "Haskell GPIO interface, designed specifically for the RaspberryPi.\n\nThis
library also ships with an executable for directly running gpio commands. Note:
when using the executable there are less guarantees about the current state of a
pin. For example, when using the library we can be sure that an `ActivePin 'Out`
has already been initialized and configured for writing values, when using the executable
we are less sure, and therefore errors might occur.\n\n\nNote: this package has
limited functionality, might be buggy and is not optimized. It works for simple
read/write operations on a few pre-defined pins, but still needs a lot more testing.\n\nTODO:\n
\ * Remove `runLineHack` when reading GPIO value files.\n * Optimize file reading
to only look at first char.\n * Support other pin modes (in/out/up/down/pwm)\n
\ * Support edges\n * Look into GPIO supported file watching\n * Add all pin numbers\n"
license-name: BSD3
| Update from Hackage at 2017-11-06T03:56:17Z | Update from Hackage at 2017-11-06T03:56:17Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
79ae37dd28f709a2878863d3fcec6516e78de8a8 | config/secrets.yml | config/secrets.yml | development:
secret_key_base: 510c1aa0ce4d41378702b88e81b2d99f746efd6d91a16ae8116ba97e9e90aa973005df29bb4980eb27a44047b63da66b1d19b7609e9b883a7966fdfb85c4eb03
test:
secret_key_base: fa789255abc85395d65cd632f8bd94b33a6addabc70e0f434ef91e2d51423f335f0baefe96a879d9dffc62f8b756cad85cd8375cd599037447063d366c2c4b2d
# Do not keep production secrets in the repository,
# instead read values from the environment.
staging:
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
production:
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
| development:
secret_key_base: 510c1aa0ce4d41378702b88e81b2d99f746efd6d91a16ae8116ba97e9e90aa973005df29bb4980eb27a44047b63da66b1d19b7609e9b883a7966fdfb85c4eb03
test:
secret_key_base: fa789255abc85395d65cd632f8bd94b33a6addabc70e0f434ef91e2d51423f335f0baefe96a879d9dffc62f8b756cad85cd8375cd599037447063d366c2c4b2d
# Do not keep production secrets in the repository,
# instead read values from the environment.
production:
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
| Revert "Add staging environment (2)" | Revert "Add staging environment (2)"
This reverts commit 43526c6e2f4801f961afe8ced00a04fbd43b4637.
| YAML | mit | Labtec/OpenLIS,Labtec/OpenLIS,Labtec/OpenLIS |
bf86188b41cf953850df2952af2d5c44de3819b7 | dev-quickstart/ubuntu-playbook.yml | dev-quickstart/ubuntu-playbook.yml | # Ansible playbook for ubuntu-like dev environments.
# Pulls and install my dotfiles, and installs some other tools.
---
- hosts: all
tasks:
- name: apt-get dependencies for rest of playbook
apt: name={{item}}
with_items:
- git
sudo: yes
- name: git force pull latest dotfiles
git:
repo="https://github.com/mattduck/dotfiles.git"
dest="~/dotfiles"
recursive=yes
force=yes
update=yes
- name: source dotfiles in bashrc
lineinfile:
dest="~/.bashrc"
line="source $HOME/dotfiles/activate.sh"
create=yes
backup=yes
- name: run dotfiles install script
shell: 'export DOTFILES="$HOME/dotfiles" && $DOTFILES/bin/,dotfiles-install'
- name: add tmux ppa to apt repositories
apt_repository: repo="ppa:pi-rho/dev"
sudo: yes
- name: clone and install fasd
shell: 'git clone https://github.com/clvv/fasd.git /tmp/fasd &&
cd /tmp/fasd &&
make install'
args:
creates:
/usr/local/bin/fasd
sudo: yes
- name: update apt cache
apt: update_cache=yes
sudo: yes
- name: apt-get install useful tools
apt: name={{item}}
with_items:
- tmux
- vim
- tree
sudo: yes
- name: pip install useful tools
pip: name=ipython
sudo: yes
| # Ansible playbook for ubuntu-like dev environments.
# Pulls and install my dotfiles, and installs some other tools.
---
- hosts: all
tasks:
- name: apt-get dependencies for rest of playbook
apt: name={{item}}
with_items:
- git
sudo: yes
- name: git force pull latest dotfiles
git:
repo="https://github.com/mattduck/dotfiles.git"
dest="~/dotfiles"
recursive=yes
force=yes
update=yes
- name: source dotfiles in bashrc
lineinfile:
dest="~/.bashrc"
line="source $HOME/dotfiles/activate.sh"
create=yes
backup=yes
- name: run dotfiles install script
shell: 'export DOTFILES="$HOME/dotfiles" && $DOTFILES/bin/,dotfiles-install'
- name: add tmux ppa to apt repositories
apt_repository: repo="ppa:pi-rho/dev"
sudo: yes
- name: clone and install fasd
shell: 'git clone https://github.com/clvv/fasd.git /tmp/fasd &&
cd /tmp/fasd &&
make install'
args:
creates:
/usr/local/bin/fasd
sudo: yes
- name: update apt cache
apt: update_cache=yes
sudo: yes
- name: apt-get install useful tools
apt: name={{item}}
with_items:
- tmux
- vim
- tree
- ngrok-client
sudo: yes
- name: pip install useful tools
pip: name=ipython
sudo: yes
| Add ngrok client to ubuntu playbook | Add ngrok client to ubuntu playbook
| YAML | mit | mattduck/dotfiles,mattduck/dotfiles |
811a77ea0133f6662d621c64d56148ee5a352cc2 | packages/pa/partial-semigroup.yaml | packages/pa/partial-semigroup.yaml | homepage: https://github.com/chris-martin/partial-semigroup
changelog-type: ''
hash: 47bb2cfc1fa944ff6de54f1a15ec46d5308f40ef8dbedc15a2007615f5653098
test-bench-deps:
base: ! '>=4.9 && <4.11'
hedgehog: ==0.5.*
doctest: ! '>=0.11 && <0.14'
partial-semigroup: -any
maintainer: Chris Martin <ch.martin@gmail.com>
synopsis: A partial binary associative operator
changelog: ''
basic-deps:
base: ! '>=4.9 && <4.11'
all-versions:
- '0.0.0.1'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.2.0.1'
- '0.3.0.1'
author: Chris Martin <ch.martin@gmail.com>
latest: '0.3.0.1'
description-type: haddock
description: ! 'A partial semigroup is like a semigroup, but the operator is partial.
We
represent this in Haskell as a total function @(<>?) :: a -> a -> Maybe a@.'
license-name: Apache-2.0
| homepage: https://github.com/chris-martin/partial-semigroup
changelog-type: ''
hash: 71182ad0c9e1ea2179d8fc94d19b05f7f2307ec7c6693e4feccbf78b2de34227
test-bench-deps:
base: ! '>=4.9 && <4.11'
hedgehog: ==0.5.*
doctest: ! '>=0.11 && <0.14'
partial-semigroup: -any
maintainer: Chris Martin <ch.martin@gmail.com>
synopsis: A partial binary associative operator
changelog: ''
basic-deps:
base: ! '>=4.9 && <4.11'
all-versions:
- '0.0.0.1'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.2.0.1'
- '0.3.0.1'
- '0.3.0.2'
author: Chris Martin <ch.martin@gmail.com>
latest: '0.3.0.2'
description-type: haddock
description: ! 'A partial semigroup is like a semigroup, but the operator is partial.
We
represent this in Haskell as a total function @(<>?) :: a -> a -> Maybe a@.'
license-name: Apache-2.0
| Update from Hackage at 2017-10-23T23:46:21Z | Update from Hackage at 2017-10-23T23:46:21Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
106433962883efbe35bcbae95d6b7de12c3e064a | packages/ob/observable-sharing.yaml | packages/ob/observable-sharing.yaml | homepage: https://github.com/atzeus/observable-sharing
changelog-type: ''
hash: 50c1239edf0741bdc9a6bf6207eb085f1ac8f989dcaa9abde5ce8157bd2de6ee
test-bench-deps: {}
maintainer: mararon@chalmers.se
synopsis: Simple observable sharing
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
containers: -any
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.2.0.0'
- '0.2.1.0'
author: ! 'Atze van der Ploeg <atzeus@gmail.com>,
Markus Aronsson <mararon@chalmers.se>'
latest: '0.2.1.0'
description-type: haddock
description: ''
license-name: BSD3
| homepage: https://github.com/atzeus/observable-sharing
changelog-type: ''
hash: 6afbf20ac072f4d9a7c151396d0e9c4338148a4c8deae65adf7fdea4a41a972c
test-bench-deps: {}
maintainer: mararon@chalmers.se
synopsis: Simple observable sharing
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
containers: -any
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.2.0.0'
- '0.2.1.0'
- '0.2.1.2'
author: ! 'Atze van der Ploeg <atzeus@gmail.com>,
Markus Aronsson <mararon@chalmers.se>'
latest: '0.2.1.2'
description-type: haddock
description: ! 'Simple observable sharing inspired by the paper "Observable Sharing
for Functional Circuit Description".'
license-name: BSD3
| Update from Hackage at 2015-06-30T14:21:44+0000 | Update from Hackage at 2015-06-30T14:21:44+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
1d14844b81986cd184ac3af92e76ba6ccb63b072 | tasks/fonts.yml | tasks/fonts.yml | - name: Add monospace fonts using Homebrew Cask
homebrew_cask: name={{ item }}
with_items:
- font-open-sans
- font-camingocode
- name: Add presentation fonts using Homebrew Cask
homebrew_cask: name={{ item }}
with_items:
- font-ubuntu
- font-fontawesome
- font-lato
- font-poiret-one
- font-questrial
- font-roboto
- font-roboto-condensed
| - name: Add monospace fonts using Homebrew Cask
homebrew_cask: name={{ item }}
with_items:
- font-open-sans
- font-camingocode
- name: Add presentation fonts using Homebrew Cask
homebrew_cask: name={{ item }}
with_items:
- font-ubuntu
- font-fontawesome
- font-lato
- font-poiret-one
- font-questrial
- font-roboto
- font-roboto-condensed
- font-bebas-neue
| Add Bebas Neue presentation font | Add Bebas Neue presentation font
| YAML | mit | frankhinek/mac-setup |
9b821d0cf8485f72038719c082013a03862ea302 | .github/workflows/publish-to-pypi.yml | .github/workflows/publish-to-pypi.yml | name: "Publish to PyPI"
on:
push:
branches: [ develop ]
tags: [ '*' ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ develop ]
schedule:
- cron: '30 22 15 * *'
jobs:
build-and-publish:
name: Build and publish Python distributions to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install pypa/build
run: |
pip install build
pip list
- name: Build a binary wheel and a source tarball
run: python -m build
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}
- uses: actions/upload-artifact@v2
with:
name: pypi-packages
path: dist/
| name: "Publish to PyPI"
on:
push:
branches: [ develop ]
tags: [ '*' ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ develop ]
schedule:
- cron: '30 22 15 * *'
jobs:
build-and-publish:
name: Build and publish Python distributions to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install pypa/build
run: |
pip install build
pip list
- name: Build a binary wheel and a source tarball
run: python -m build
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
- uses: actions/upload-artifact@v2
with:
name: pypi-packages
path: dist/
| Swap pypa/gh-action-pypi-publish@master to release/v1 as recommended | Swap pypa/gh-action-pypi-publish@master to release/v1 as recommended
| YAML | bsd-3-clause | romgar/django-dirtyfields |
39c115f61e01f93d8f6b28a716dfe4af8ad88e71 | .github/workflows/publish-to-pypi.yml | .github/workflows/publish-to-pypi.yml | name: Publish Package
on:
push:
branches:
- main
jobs:
build-and-publish:
name: Build and publish Python package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install pypa/build
run: |
python -m pip install --upgrade setuptools pip wheel
python -m pip install build --user
- name: Build a binary wheel and a source tarball
run: python -m build --sdist --wheel --outdir dist/ .
- name: Publish package to test PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
- name: Publish package to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
| name: Publish Package
on:
push:
branches:
- master
jobs:
build-and-publish:
name: Build and publish Python package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install pypa/build
run: |
python -m pip install --upgrade setuptools pip wheel
python -m pip install build --user
- name: Build a binary wheel and a source tarball
run: python -m build --sdist --wheel --outdir dist/ .
- name: Publish package to test PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
- name: Publish package to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
| Use master branch to trigger publish | Use master branch to trigger publish | YAML | mit | rm-hull/luma.led_matrix |
54e8d2b12fd49815ca21969ba23650375d0ca00d | .github/workflows/windows_mkspecs.yml | .github/workflows/windows_mkspecs.yml | name: Windows C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Windows-mkspecs:
uses: steinwurf/windows-mkspecs-action/.github/workflows/action.yml@3.0.0
with:
extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
| name: Windows C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Windows-mkspecs:
uses: steinwurf/windows-mkspecs-action/.github/workflows/action.yml@4.0.0
with:
extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
| Update Windows C++ make-specs to new version 4.0.0 | Update Windows C++ make-specs to new version 4.0.0 | YAML | bsd-3-clause | steinwurf/endian,steinwurf/endian |
1e7b0b9a85bbddc5632738755b57dc2e5ba7bdf3 | st2tests/st2tests/fixtures/history_views/filters.yaml | st2tests/st2tests/fixtures/history_views/filters.yaml | ---
default:
action:
- executions.local
- executions.chain
rule:
- st2.person.joe
runner:
- run-local
- action-chain
status:
- succeeded
trigger:
- 46f67652-20cd-4bab-94e2-4615baa846d0
trigger_type:
- st2.webhook
user:
- system
specific:
action:
- executions.local
- executions.chain
user:
- system
| ---
default:
action:
- executions.local
- executions.chain
- None
rule:
- st2.person.joe
runner:
- run-local
- action-chain
status:
- succeeded
trigger:
- 46f67652-20cd-4bab-94e2-4615baa846d0
trigger_type:
- st2.webhook
- None
user:
- system
specific:
action:
- executions.local
- executions.chain
user:
- system
| Update fixture to include None data. | Update fixture to include None data.
| YAML | apache-2.0 | Plexxi/st2,tonybaloney/st2,nzlosh/st2,StackStorm/st2,StackStorm/st2,StackStorm/st2,tonybaloney/st2,Plexxi/st2,tonybaloney/st2,Plexxi/st2,Plexxi/st2,nzlosh/st2,StackStorm/st2,nzlosh/st2,nzlosh/st2 |
52055de089dcf511cb7ce18e63e02928e74c3e71 | metadata/com.asdoi.quicktiles.yml | metadata/com.asdoi.quicktiles.yml | Categories:
- Development
- Multimedia
- System
License: GPL-3.0-or-later
AuthorName: Asdoi
AuthorEmail: asdoi@t-online.de
SourceCode: https://gitlab.com/asdoi/quick-tiles
IssueTracker: https://gitlab.com/asdoi/quick-tiles/issues
Changelog: https://gitlab.com/asdoi/quick-tiles/-/releases
AutoName: QuickTiles
RepoType: git
Repo: https://gitlab.com/asdoi/quick-tiles.git
Builds:
- versionName: '1.2'
versionCode: 12
commit: v1.2
subdir: app
gradle:
- yes
- versionName: '1.3'
versionCode: 13
commit: v1.3
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.3'
CurrentVersionCode: 13
| Categories:
- Development
- Multimedia
- System
License: GPL-3.0-or-later
AuthorName: Asdoi
AuthorEmail: asdoi@t-online.de
SourceCode: https://gitlab.com/asdoi/quick-tiles
IssueTracker: https://gitlab.com/asdoi/quick-tiles/issues
Changelog: https://gitlab.com/asdoi/quick-tiles/-/releases
AutoName: QuickTiles
RepoType: git
Repo: https://gitlab.com/asdoi/quick-tiles.git
Builds:
- versionName: '1.2'
versionCode: 12
commit: v1.2
subdir: app
gradle:
- yes
- versionName: '1.3'
versionCode: 13
commit: v1.3
subdir: app
gradle:
- yes
- versionName: '1.4'
versionCode: 14
commit: 3298fa7a58787d8fec4fea1cbba8aaf072fad447
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.4'
CurrentVersionCode: 14
| Update QuickTiles to 1.4 (14) | Update QuickTiles to 1.4 (14)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
7fd8c44bd36aed172fd14c885c8af8c56bbbc989 | backend/src/main/helm/values-nfs-server-provisioner.yaml | backend/src/main/helm/values-nfs-server-provisioner.yaml | # Default values for nfs-provisioner.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
persistence:
enabled: true
## Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
storageClass: files
accessMode: ReadWriteOnce
size: ${extendedmind.nfsStorageSize}
## For creating the StorageClass automatically:
storageClass:
create: true
## Set a provisioner name. If unset, a name will be generated.
provisionerName: nfs-provisioner
## Set StorageClass as the default StorageClass
## Ignored if storageClass.create is false
defaultClass: false
## Set a StorageClass name
## Ignored if storageClass.create is false
name: nfs
# Resources
resources:
limits:
cpu: 50m
memory: 100Mi
requests:
cpu: 50m
memory: 100Mi
| # Default values for nfs-provisioner.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
persistence:
enabled: true
## Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
storageClass: files
accessMode: ReadWriteOnce
size: ${extendedmind.nfsStorageSize}
## For creating the StorageClass automatically:
storageClass:
create: true
## Set a provisioner name. If unset, a name will be generated.
provisionerName: nfs-provisioner
## Set StorageClass as the default StorageClass
## Ignored if storageClass.create is false
defaultClass: false
## Set a StorageClass name
## Ignored if storageClass.create is false
name: nfs
# Resources
resources:
limits:
cpu: ${extendedmind.nfsCpu}
memory: ${extendedmind.nfsMemory}
requests:
cpu: ${extendedmind.nfsCpu}
memory: ${extendedmind.nfsMemory}
| Use dynamic values for nfs resources | Use dynamic values for nfs resources
| YAML | agpl-3.0 | extendedmind/extendedmind,extendedmind/extendedmind,extendedmind/extendedmind,extendedmind/extendedmind,extendedmind/extendedmind,extendedmind/extendedmind,extendedmind/extendedmind |
206a921aed1b3ee942bb5fdbf038fbbed8bebec8 | parmed/meta.yaml | parmed/meta.yaml | package:
name: parmed
version: !!str 2.0beta0
source:
fn: ParmEd-2.0-beta.tar.gz
url: https://github.com/ParmEd/ParmEd/archive/v2.0-beta.tar.gz
md5: 95be9c4aa4d519cc2e738c23d1662555
build:
number: 0
requirements:
build:
- python
- numpy
- setuptools
run:
- python
- numpy
- pandas
- openmm
about:
home: http://parmed.github.io/ParmEd
license: GNU Lesser General Public License v2 or later (LGPLv2+)
summary: A package for parsing, interconverting, manipulating, and simulating biomolecular simulations with many packages
| package:
name: parmed
version: !!str 2.0beta1
source:
fn: ParmEd-2.0-beta1.tar.gz
url: https://github.com/ParmEd/ParmEd/archive/2.0beta1.tar.gz
md5: 51ecb3d781fda3e13afc00f3d85ebb8e
build:
number: 1
requirements:
build:
- python
- numpy
- setuptools
run:
- python
- numpy
- pandas
- openmm
about:
home: http://parmed.github.io/ParmEd
license: GNU Lesser General Public License v2 or later (LGPLv2+)
summary: A package for parsing, interconverting, manipulating, and simulating biomolecular simulations with many packages
| Upgrade ParmEd conda package to beta1. | Upgrade ParmEd conda package to beta1.
Former-commit-id: 0d561c67dd2e3f7f2f3ece517824f91af7673f49 | YAML | mit | rmcgibbo/conda-recipes,swails/conda-recipes,mpharrigan/conda-recipes,cwehmeyer/conda-recipes,jchodera/conda-recipes,swails/conda-recipes,omnia-md/conda-recipes,jchodera/conda-recipes,swails/conda-recipes,cwehmeyer/conda-recipes,danielparton/omnia-md-conda-recipes,omnia-md/conda-recipes,danielparton/omnia-md-conda-recipes,peastman/conda-recipes,mpharrigan/conda-recipes,jchodera/conda-recipes,rmcgibbo/conda-recipes,jchodera/conda-recipes,cwehmeyer/conda-recipes,rmcgibbo/conda-recipes,marscher/omnia-conda-recipes,marscher/omnia-conda-recipes,swails/conda-recipes,peastman/conda-recipes,peastman/conda-recipes,mpharrigan/conda-recipes,rmcgibbo/conda-recipes,cwehmeyer/conda-recipes,omnia-md/conda-recipes,marscher/omnia-conda-recipes,marscher/omnia-conda-recipes |
c990c7444bf844e768a4c9ca92412aa328dedb86 | ansible/roles/kibana/tasks/rhel.yml | ansible/roles/kibana/tasks/rhel.yml | ---
# RHEL/CentOS specific code for Kibana
- name: Add the kibana key to the system
command: rpm --import https://packages.kibana.org/GPG-KEY-elasticsearch
- name: Add the kibana repo to the system
copy:
src: kibana.repo
dest: /etc/yum.repos.d/kibana.repo
owner: root
group: root
mode: 0644
- name: Install kibana
yum:
name: kibana
state: present
| ---
# RHEL/CentOS specific code for Kibana
- name: Add the elasticsearch key to the system
command: rpm --import https://packages.elasticsearch.org/GPG-KEY-elasticsearch
- name: Add the Kibana repo to the system
copy: src=kibana.repo dest=/etc/yum.repos.d/kibana.repo owner=root group=root mode=0644
- name: Install kibana
yum:
name: kibana
state: present
| Install Kibana from the correct repo | Install Kibana from the correct repo
| YAML | mit | proffalken/aws-blog-framework,proffalken/aws-blog-framework,proffalken/aws-blog-framework |
6478aa94ced97b241651e0681e91972ab077ba05 | appveyor.yml | appveyor.yml | install:
- git submodule update --init --recursive
test_script:
#EXES
- .\projects\VS12\Debug\test_bad_pointers.exe
- .\projects\VS12\Debug\test_basic_lookup.exe
- .\projects\VS12\Debug\test_data_entry_list.exe
- .\projects\VS12\Debug\test_data_types.exe
- .\projects\VS12\Debug\test_dump.exe
- .\projects\VS12\Debug\test_get_value_pointer_bug.exe
- .\projects\VS12\Debug\test_get_value.exe
- .\projects\VS12\Debug\test_ipv4_start_cache.exe
- .\projects\VS12\Debug\test_ipv6_lookup_in_ipv4.exe
- .\projects\VS12\Debug\test_metadata.exe
- .\projects\VS12\Debug\test_no_map_get_value.exe
- .\projects\VS12\Debug\test_read_node.exe
- .\projects\VS12\Debug\test_version.exe
#ENDEXES
notifications:
- provider: Email
to:
- dev-ci@maxmind.com
subject: 'AppVeyor build {{status}}'
on_build_success: false
on_build_failure: true
on_build_status_changed: true
| ---
install:
- git submodule update --init --recursive
test_script:
- .\projects\VS12\Debug\test_bad_pointers.exe
- .\projects\VS12\Debug\test_basic_lookup.exe
- .\projects\VS12\Debug\test_data_entry_list.exe
- .\projects\VS12\Debug\test_data_types.exe
- .\projects\VS12\Debug\test_dump.exe
- .\projects\VS12\Debug\test_get_value_pointer_bug.exe
- .\projects\VS12\Debug\test_get_value.exe
- .\projects\VS12\Debug\test_ipv4_start_cache.exe
- .\projects\VS12\Debug\test_ipv6_lookup_in_ipv4.exe
- .\projects\VS12\Debug\test_metadata.exe
- .\projects\VS12\Debug\test_no_map_get_value.exe
- .\projects\VS12\Debug\test_read_node.exe
- .\projects\VS12\Debug\test_version.exe
notifications:
- auth_token:
secure: X+ymndzchVeC2LYsehzOt6CXEE+3wWDMYHJuOnFXIOHm8ByI2sHXCWRYQaDeSQs+iawQR9QvuRla/BSmtZBfow==
channel: ci
on_build_failure: true
on_build_status_changed: true
on_build_success: false
provider: Slack
- on_build_failure: true
on_build_status_changed: true
on_build_success: false
provider: Email
subject: 'AppVeyor build {{status}}'
to:
- dev-ci@maxmind.com
| Update AppVeyor to send notifiations via Slack & email | Update AppVeyor to send notifiations via Slack & email
| YAML | apache-2.0 | maxmind/libmaxminddb,maxmind/libmaxminddb,maxmind/libmaxminddb |
ca2df37c796a5b3abf7567b0b9b6a10add83c22c | appveyor.yml | appveyor.yml | # version format
version: "{build}"
# Operating system (build VM template)
os: Windows Server 2012 R2
clone_folder: c:\gopath\src\github.com\maputnik\desktop
# environment variables
environment:
GOPATH: c:\gopath
GO15VENDOREXPERIMENT: 1
# scripts that run after cloning repository
install:
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
- go version
- go env
- go get
# to run your custom scripts instead of automatic MSBuild
build_script:
- go vet ./...
- gofmt -s -l .
- make
# to disable automatic tests
test: off
# to disable deployment
deploy: off
| # version format
version: "{build}"
# Operating system (build VM template)
os: Windows Server 2012 R2
clone_folder: c:\gopath\src\github.com\maputnik\desktop
# environment variables
environment:
GOPATH: c:\gopath
GO15VENDOREXPERIMENT: 1
# scripts that run after cloning repository
install:
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
- go version
- go env
- go get github.com/gorilla/handlers
- go get github.com/gorilla/mux
- go get github.com/gorilla/websocket
- go get github.com/urfave/cli
# to run your custom scripts instead of automatic MSBuild
build_script:
- go vet ./...
- gofmt -s -l .
- make
# to disable automatic tests
test: off
# to disable deployment
deploy: off
| Fix go get in AppVeyor | Fix go get in AppVeyor
| YAML | mit | maputnik/desktop |
464440dd137b37c7f3016dfa4d0ce371ff93f02f | appveyor.yml | appveyor.yml | image:
- Visual Studio 2019
before_build:
- nuget restore
before_test:
- nuget install xunit.runner.console -version 2.4.1
test_script:
- xunit.runner.console.2.4.1\tools\xunit.console.exe src\WpfMath.Tests\bin\Debug\net461\WpfMath.Tests.dll
- xunit.runner.console.2.4.1\tools\xunit.console.exe src\WpfMath.Tests\bin\Debug\netcoreapp3.0\WpfMath.Tests.dll
| image:
- Visual Studio 2019
build_script:
- dotnet build -c Release
test_script:
- dotnet test -c Release
| Use dotnet cli for build and test | Use dotnet cli for build and test
| YAML | mit | ForNeVeR/wpf-math |
3a7798cd07feed8e9fc726181e651ab2a8bcd96d | appveyor.yml | appveyor.yml | install:
- ps: Install-Product node 8
- node --version
- npm install -g npm@5.2.0
- npm --version
- npm install
- ps: "[Net.ServicePointManager]::SecurityProtocol = 'Ssl3, Tls, Tls11, Tls12'"
- ps: Start-FileDownload 'https://www.exemsi.com/downloads/msi_wrapper/MSI_Wrapper_7_1_12_0.msi'
- ps: Start-Process msiexec -Wait -ArgumentList '/i MSI_Wrapper_7_1_12_0.msi /q'
build_script:
- npm run dist
artifacts:
- path: .\dist\*.msi | install:
- ps: Install-Product node 8
- node --version
- npm install -g npm@5.2.0
- npm --version
- npm install
- ps: "[Net.ServicePointManager]::SecurityProtocol = 'Ssl3, Tls, Tls11, Tls12'"
- ps: Start-FileDownload 'https://www.exemsi.com/downloads/msi_wrapper/MSI_Wrapper_7_1_12_0.msi'
- ps: Start-Process msiexec -Wait -ArgumentList '/i MSI_Wrapper_7_1_12_0.msi /q'
build_script:
- npm run dist
artifacts:
- path: .\dist\*.msi
name: installer | Remove path inside artificate name | Remove path inside artificate name
| YAML | mit | syedhassaanahmed/kiosk-demo-electron,syedhassaanahmed/kiosk-demo-electron |
4f8528dc8bf5745e1cd7c9856c33e2c0c8a9f2b0 | appveyor.yml | appveyor.yml | version: 1.1.{build}
pull_requests:
do_not_increment_build_number: true
image: Visual Studio 2017
configuration: Release
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
nuget:
project_feed: true
disable_publish_on_pr: true
before_build:
- ps: nuget restore
build:
parallel: true
verbosity: minimal
artifacts:
- path: '**\*.nupkg'
name: Tsarev Analyzer NuGet
deploy:
- provider: NuGet
api_key:
secure: xWsf2rExtqDyT/CWQObnkecDiF7yTSty8Gp8HzRi11erJuXJ8KpdQ7gV7X0rTpD5
on:
branch: master | version: 1.1.{build}
pull_requests:
do_not_increment_build_number: true
image: Visual Studio 2017
configuration: Release
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
nuget:
project_feed: true
disable_publish_on_pr: true
before_build:
- ps: nuget restore
build:
parallel: true
verbosity: minimal
artifacts:
- path: '**\Tsarev.*.nupkg'
name: Tsarev Analyzer NuGet
deploy:
- provider: NuGet
api_key:
secure: xWsf2rExtqDyT/CWQObnkecDiF7yTSty8Gp8HzRi11erJuXJ8KpdQ7gV7X0rTpD5
on:
branch: master
cache:
- packages -> **\packages.config | Use package cache; remove not my packages from artifacts | Use package cache; remove not my packages from artifacts
| YAML | mit | leotsarev/hardcode-analyzer |
e1acaf6deca00d862a5db0c1b4f1ce7051b67622 | appveyor.yml | appveyor.yml | version: 1.0.{build}
image: Visual Studio 2017
configuration:
- Debug
- Release
init:
- git config --global core.autocrlf true
before_build:
- nuget restore
skip_tags: true
build:
project: dotnet-trees.sln
verbosity: minimal
test_script:
- .\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -target:"%xunit20%\xunit.console.x86.exe" -targetargs:"C:\projects\dotnet-trees\TunnelVisionLabs.Collections.Trees.Test\bin\%configuration%\net452\TunnelVisionLabs.Collections.Trees.Test.dll -noshadow -appveyor" -returntargetcode -filter:"+[TunnelVisionLabs*]*" -excludebyattribute:*.ExcludeFromCodeCoverage* -excludebyfile:*\*Designer.cs -hideskipped:All -output:.\trees_coverage.xml
- .\packages\Codecov.1.1.0\tools\codecov.exe -n "%configuration%" -f "trees_coverage.xml" --flag "%configuration%"
cache:
- packages -> **\packages.config
artifacts:
- path: 'TunnelVisionLabs.Collections.Trees\**\*.nupkg'
- path: 'TunnelVisionLabs.Collections.Trees.Experimental\**\*.nupkg'
| version: '{build}'
image: Visual Studio 2017
configuration:
- Debug
- Release
init:
- git config --global core.autocrlf true
before_build:
- nuget restore
skip_tags: true
build:
project: dotnet-trees.sln
verbosity: minimal
test_script:
- .\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -target:"%xunit20%\xunit.console.x86.exe" -targetargs:"C:\projects\dotnet-trees\TunnelVisionLabs.Collections.Trees.Test\bin\%configuration%\net452\TunnelVisionLabs.Collections.Trees.Test.dll -noshadow -appveyor" -returntargetcode -filter:"+[TunnelVisionLabs*]*" -excludebyattribute:*.ExcludeFromCodeCoverage* -excludebyfile:*\*Designer.cs -hideskipped:All -output:.\trees_coverage.xml
- .\packages\Codecov.1.1.0\tools\codecov.exe -n "%configuration%" -f "trees_coverage.xml" --flag "%configuration%"
cache:
- packages -> **\packages.config
artifacts:
- path: 'TunnelVisionLabs.Collections.Trees\**\*.nupkg'
- path: 'TunnelVisionLabs.Collections.Trees.Experimental\**\*.nupkg'
| Simplify the initial build name | Simplify the initial build name
AppVeyor assigns a build number before GitVersioning assigns the true
version number. This change simplifies the initial build number to just
show the raw build number in sequence.
| YAML | mit | tunnelvisionlabs/dotnet-trees |
bc21578fada916cb10c4d94106a44495a31244b0 | appveyor.yml | appveyor.yml | image: Visual Studio 2017
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
environment:
matrix:
- nodejs_version: 8
# Finish on first failed build
matrix:
fast_finish: true
platform:
- x64
branches:
only:
- master
# Disable Visual Studio build and deploy
build: off
deploy: off
install:
- ps: Install-Product node $env:nodejs_version $env:platform
- yarn install
test_script:
- node --version
- yarn build
- yarn test
cache:
- node_modules
- "%LOCALAPPDATA%/Yarn"
| image: Visual Studio 2017
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
environment:
matrix:
- nodejs_version: 8
# Finish on first failed build
matrix:
fast_finish: true
platform:
- x64
branches:
only:
- master
# Disable Visual Studio build and deploy
build: off
deploy: off
install:
- ps: Install-Product node $env:nodejs_version $env:platform
- yarn install
test_script:
- node --version
- yarn lint
- yarn flow
- yarn build
- yarn test
cache:
- node_modules
- "%LOCALAPPDATA%/Yarn"
| Add more tasks to AppVeyor | Add more tasks to AppVeyor | YAML | mit | aickin/react,acdlite/react,mosoft521/react,jdlehman/react,rickbeerendonk/react,TheBlasfem/react,kaushik94/react,krasimir/react,STRML/react,Simek/react,ericyang321/react,tomocchino/react,dilidili/react,roth1002/react,syranide/react,apaatsio/react,dilidili/react,chicoxyzzy/react,acdlite/react,acdlite/react,camsong/react,jdlehman/react,krasimir/react,aickin/react,STRML/react,terminatorheart/react,dilidili/react,TheBlasfem/react,billfeller/react,chenglou/react,roth1002/react,acdlite/react,tomocchino/react,jzmq/react,roth1002/react,dilidili/react,ericyang321/react,empyrical/react,anushreesubramani/react,facebook/react,ericyang321/react,flarnie/react,jzmq/react,flarnie/react,anushreesubramani/react,mjackson/react,STRML/react,mjackson/react,ericyang321/react,trueadm/react,mosoft521/react,camsong/react,VioletLife/react,kaushik94/react,krasimir/react,krasimir/react,facebook/react,STRML/react,krasimir/react,rricard/react,VioletLife/react,jzmq/react,tomocchino/react,camsong/react,tomocchino/react,rickbeerendonk/react,nhunzaker/react,apaatsio/react,yiminghe/react,anushreesubramani/react,yungsters/react,rricard/react,apaatsio/react,flarnie/react,anushreesubramani/react,mjackson/react,chenglou/react,mjackson/react,chicoxyzzy/react,syranide/react,jameszhan/react,kaushik94/react,TheBlasfem/react,billfeller/react,jdlehman/react,yungsters/react,anushreesubramani/react,roth1002/react,Simek/react,VioletLife/react,prometheansacrifice/react,nhunzaker/react,trueadm/react,aickin/react,yungsters/react,billfeller/react,acdlite/react,chicoxyzzy/react,terminatorheart/react,VioletLife/react,prometheansacrifice/react,anushreesubramani/react,prometheansacrifice/react,mjackson/react,Simek/react,jzmq/react,syranide/react,Simek/react,nhunzaker/react,rricard/react,roth1002/react,camsong/react,apaatsio/react,jzmq/react,roth1002/react,yungsters/react,mjackson/react,cpojer/react,yiminghe/react,camsong/react,jameszhan/react,billfeller/react,cpojer/react,empyrical/react,anushreesubramani/react,flarnie/react,dilidili/react,prometheansacrifice/react,apaatsio/react,cpojer/react,apaatsio/react,jameszhan/react,jdlehman/react,trueadm/react,rricard/react,syranide/react,chicoxyzzy/react,glenjamin/react,terminatorheart/react,rickbeerendonk/react,kaushik94/react,terminatorheart/react,mosoft521/react,facebook/react,tomocchino/react,yiminghe/react,VioletLife/react,yiminghe/react,ArunTesco/react,aickin/react,prometheansacrifice/react,ArunTesco/react,flarnie/react,dilidili/react,acdlite/react,terminatorheart/react,jameszhan/react,dilidili/react,Simek/react,rickbeerendonk/react,aickin/react,yungsters/react,tomocchino/react,chenglou/react,camsong/react,ericyang321/react,facebook/react,rricard/react,camsong/react,flarnie/react,jdlehman/react,mosoft521/react,chenglou/react,apaatsio/react,nhunzaker/react,cpojer/react,facebook/react,rickbeerendonk/react,nhunzaker/react,terminatorheart/react,STRML/react,glenjamin/react,prometheansacrifice/react,glenjamin/react,empyrical/react,trueadm/react,empyrical/react,trueadm/react,flarnie/react,Simek/react,jzmq/react,yiminghe/react,facebook/react,billfeller/react,trueadm/react,yiminghe/react,krasimir/react,ericyang321/react,STRML/react,cpojer/react,TheBlasfem/react,empyrical/react,acdlite/react,yungsters/react,aickin/react,tomocchino/react,TheBlasfem/react,empyrical/react,chicoxyzzy/react,jdlehman/react,chenglou/react,rricard/react,rickbeerendonk/react,chicoxyzzy/react,kaushik94/react,jameszhan/react,yungsters/react,krasimir/react,mosoft521/react,cpojer/react,billfeller/react,jameszhan/react,cpojer/react,yiminghe/react,kaushik94/react,VioletLife/react,nhunzaker/react,jameszhan/react,roth1002/react,jzmq/react,kaushik94/react,mosoft521/react,trueadm/react,facebook/react,prometheansacrifice/react,STRML/react,chenglou/react,chicoxyzzy/react,chenglou/react,glenjamin/react,mjackson/react,jdlehman/react,rickbeerendonk/react,mosoft521/react,VioletLife/react,TheBlasfem/react,billfeller/react,ericyang321/react,Simek/react,glenjamin/react,glenjamin/react,aickin/react,glenjamin/react,empyrical/react,nhunzaker/react,ArunTesco/react |
7c690713f25ce19197cc28cc7241df258fa52889 | appveyor.yml | appveyor.yml | version: 1.0.{build}
install:
- cmd: git submodule update --init --recursive
build_script:
- cmd: |-
cd c:\projects\cubeb
cmake .
cmake --build . --config Debug
build:
verbosity: minimal
| version: 1.0.{build}
install:
- cmd: git submodule update --init --recursive
build_script:
- cmd: |-
cd c:\projects\cubeb
cmake .
cmake --build . --config Debug
| Disable MSBuild mode in AppVeyor. | Disable MSBuild mode in AppVeyor.
| YAML | isc | kinetiknz/cubeb,kinetiknz/cubeb,kinetiknz/cubeb |
9e70a2348bd66b25e4bc93dac190b9da5caaf582 | appveyor.yml | appveyor.yml | version: 4.3.{build}
skip_tags: true
configuration:
- Release
- Debug
install:
- ps: (new-object Net.WebClient).DownloadString("https://raw.github.com/madskristensen/ExtensionScripts/master/AppVeyor/vsix.ps1") | iex
before_build:
- ps: >-
Vsix-IncrementVsixVersion | Vsix-UpdateBuildVersion
nuget restore -Verbosity quiet
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
build:
verbosity: minimal
after_build:
- ps: >-
if($env:CONFIGURATION -eq "Release")
{
Get-ChildItem ./*.vsix -Recurse | Rename-Item -NewName {$_.basename + '_' + $env:APPVEYOR_BUILD_VERSION + $_.extension }
}
else
{
Get-ChildItem ./*.vsix -Recurse | Rename-Item -NewName {$_.basename + '_' + $env:APPVEYOR_BUILD_VERSION + '_' + $env:CONFIGURATION + $_.extension }
}
Vsix-PushArtifacts | Vsix-PublishToGallery | version: 4.3.{build}
skip_tags: true
image: Visual Studio 2017
configuration:
- Release
- Debug
install:
- ps: (new-object Net.WebClient).DownloadString("https://raw.github.com/madskristensen/ExtensionScripts/master/AppVeyor/vsix.ps1") | iex
before_build:
- ps: >-
Vsix-IncrementVsixVersion | Vsix-UpdateBuildVersion
nuget restore -Verbosity quiet
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
build:
verbosity: minimal
after_build:
- ps: >-
if($env:CONFIGURATION -eq "Release")
{
Get-ChildItem ./*.vsix -Recurse | Rename-Item -NewName {$_.basename + '_' + $env:APPVEYOR_BUILD_VERSION + $_.extension }
}
else
{
Get-ChildItem ./*.vsix -Recurse | Rename-Item -NewName {$_.basename + '_' + $env:APPVEYOR_BUILD_VERSION + '_' + $env:CONFIGURATION + $_.extension }
}
Vsix-PushArtifacts | Vsix-PublishToGallery | Fix Appveyor by moving to the VS2017 image | Fix Appveyor by moving to the VS2017 image
| YAML | mit | sboulema/TSVN |
7afe0839cced136f45e9b08b562ae479e9bafb93 | appveyor.yml | appveyor.yml | cache:
- "c:\\sr -> appveyor.yml" #
build: off
before_test:
- curl -ostack.zip -L --insecure http://www.stackage.org/stack/windows-i386
- 7z x stack.zip stack.exe
- curl -ocabal.tar.gz https://www.haskell.org/cabal/release/cabal-install-1.22.0.0/cabal-1.22.0.0-i386-unknown-mingw32.tar.gz
- 7z x cabal.tar.gz
- 7z x cabal.tar
- ren cabal-1.22.0.0-i386-unknown-mingw32.exe cabal.exe
clone_folder: "c:\\project"
environment:
global:
STACK_ROOT: "c:\\sr"
test_script:
- echo %PATH%
- set PATH=C:\project;%PATH%
- C:\project\cabal --version
- stack init
- stack setup > nul
- echo "" | stack --no-terminal build
- echo "" | stack --no-terminal test
| cache:
- "c:\\sr -> appveyor.yml" #
build: off
before_test:
- curl -ostack.zip -L --insecure http://www.stackage.org/stack/windows-i386
- 7z x stack.zip stack.exe
- curl -ocabal.tar.gz https://www.haskell.org/cabal/release/cabal-install-1.22.0.0/cabal-1.22.0.0-i386-unknown-mingw32.tar.gz
- 7z x cabal.tar.gz
- 7z x cabal.tar
- ren cabal-1.22.0.0-i386-unknown-mingw32.exe cabal.exe
clone_folder: "c:\\project"
environment:
global:
STACK_ROOT: "c:\\sr"
test_script:
- echo %PATH%
- set PATH=C:\project;%PATH%
- C:\project\cabal --version
- stack init
- stack setup > nul
- echo "" | stack --no-terminal build
- set STACK_ROOT=
- echo "" | stack --no-terminal test
| Clear the STACK_ROOT before running the stack test | Clear the STACK_ROOT before running the stack test
| YAML | bsd-3-clause | ndmitchell/ghcid |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.