commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
fe590d2689488b343bf31e3b602d77db7e7f12f6 | .travis.yml | .travis.yml | sudo: false
language: ruby
cache: bundler
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
- wget
- unzip
- ssh
matrix:
include:
# WE SUPPORT UPGRADES OF CHEF 11.x on RUBY 1.9.3 VIA chef_client_updater COOKBOOK
- rvm: 1.9.3
bundler_args: --without... | sudo: false
language: ruby
cache: bundler
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
- wget
- unzip
- ssh
matrix:
include:
# WE SUPPORT UPGRADES OF CHEF 11.x on RUBY 1.9.3 VIA chef_client_updater COOKBOOK
- rvm: 1.9.3
bundler_args: --without... | Exclude the gems we don't need for Travis | Exclude the gems we don't need for Travis
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef/mixlib-install,chef/mixlib-install,chef/mixlib-install |
a0bd1d2f17b1683831f04f5dffa81653e4e71776 | .travis.yml | .travis.yml | sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- "5"
- "4"
- "0.12"
before_script:
- npm prune
after_success: npm run coverage
branches:
except:
- "/^v\\d+\\.\\d+\\.\\d+$/"
| sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- "5"
- "4"
before_script:
- npm prune
after_success: npm run coverage
branches:
except:
- "/^v\\d+\\.\\d+\\.\\d+$/"
| Remove Node v0.12 from tests | Remove Node v0.12 from tests
| YAML | mit | ericclemmons/npm-install-loader,ericclemmons/babel-plugin-auto-install,ericclemmons/npm-install-webpack-plugin,ericclemmons/npm-install-webpack-plugin |
e9b9562a60d69c57251e6d3a12424bb357f527b3 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.4
- 3.5
# https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
install:
- pip install Cython
- pip inst... | language: python
python:
- 2.7
- 3.4
- 3.5
# https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
install:
- pip install Cython
- pip inst... | Use Makefile target in CI tests. | Use Makefile target in CI tests.
Also run start running pylint again. | YAML | mit | iminuit/probfit,iminuit/probfit |
b812fa8d24fb84c5bdf5e0e965c69d6e833a039c | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.8"
env:
- NODE_ENV=development
before_install:
- npm install -g npm
- npm install -g nodemon
# - npm install -g codeclimate-test-reporter
#before_script:
# - npm install
#addons:
# code_climate:
# repo_token: adf08323...
#after_script:
# - ... | language: node_js
node_js:
- "0.12"
# - "0.11"
# - "0.10"
# - "0.8"
env:
- NODE_ENV=development
before_install:
- npm install -g npm
- npm install -g nodemon
- npm install -g grunt-cli
- npm install -g bower
# - npm install -g codeclimate-test-reporter
before_script:
- bower install
# - grunt build
#... | Add grunt and bower. Less node environments. | Add grunt and bower. Less node environments.
| YAML | mit | Jbelmonte/docker-manager-ui,Jbelmonte/docker-manager-ui |
caadb848420c2ab0f0ed182c02596a5595346e5e | .travis.yml | .travis.yml | script: "bundle exec rake cucumber"
rvm:
- 1.9.3
- 1.9.2
- 1.8.7
- ree-1.8.7
gemfile:
- gemfiles/3.0.9.gemfile
- gemfiles/3.1.3.gemfile
- gemfiles/3.2.1.gemfile
branches:
only:
- master
| script: "bundle exec rake cucumber"
rvm:
- 1.9.3
- 1.9.2
- 1.8.7
- ree-1.8.7
gemfile:
- gemfiles/3.0.gemfile
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
branches:
only:
- master
| Update Travis configuration to reflect new gemfile | Update Travis configuration to reflect new gemfile
| YAML | mit | thoughtbot/diesel |
57b7ce67ea2293b3f8acbe91a711cf89918b945e | .travis.yml | .travis.yml | language : rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libsdl2-dev libsdl2-image-dev
| language : rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
global:
- LD_LIBRARY_PATH: /usr/local/lib
install:
- cd ..
- time wget -q http://www.libsdl.org/release/SDL2-2.0.3.tar.gz
- time wget -q http://www.libsdl.org/projects/SDL_image/release/SDL2_image-2.0.0.... | Build SDL2 from source for Travis | Build SDL2 from source for Travis
| YAML | apache-2.0 | swatteau/sokoban-rs,tempbottle/sokoban-rs |
e304bf17444289add03aa50ee28e9df314a07efd | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| sudo: false
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
| Test on `stable` instead of `iojs` | Test on `stable` instead of `iojs`
| YAML | mit | imagemin/jpegoptim-bin |
f49184b26f13b93ea507747dd2265a02f8dd869e | .travis.yml | .travis.yml | language: ruby
before_install:
- gem install bundler
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.1.1"
- "2.1.2"
- "2.1.4"
- "2.2.0"
- "2.3.1"
- "2.4.1"
| language: ruby
before_install:
- gem install bundler
os:
- linux
- osx
rvm:
- "2.3.8"
- "2.4.5"
- "2.5.5"
- "2.6.3"
| Update Ruby and OS coverage for Travis | Update Ruby and OS coverage for Travis
| YAML | mit | neilslater/ruby_nex_cpp,neilslater/ruby_nex_cpp,neilslater/ruby_nex_cpp |
f3f57e8ea67438121e1635dc9a00de40d4cccef5 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- '0.10'
script:
- npm test
- npm run lint
| ---
language: node_js
node_js: node
script:
- npm test
- npm run lint
| Configure Travis CI to test on latest Node.js | Configure Travis CI to test on latest Node.js
| YAML | mit | mafintosh/content-addressable-blob-store |
fd487d123f017373afaa2d5caf90bc699a2f9a68 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10.16'
- '0.11'
- '0.12'
- 'iojs-v1'
- 'iojs-v2'
- 'iojs-v2'
- '4.0'
services:
- redis-server
script:
- npm run test:cov
env:
- INSTALL_HIREDIS="yes"
- INSTALL_HIREDIS="no"
before_script:
- if [ "$INSTALL_HIREDIS" = "yes" ]; then npm install hiredis; fi
addons:
code_climate:
... | language: node_js
node_js:
- '0.10.16'
- '0.11'
- '0.12'
- 'iojs-v1'
- 'iojs-v2'
- 'iojs-v2'
- '3.0'
- '4.0'
services:
- redis-server
script:
- npm run test:cov
env:
- CXX=g++-4.8 INSTALL_HIREDIS="yes"
- INSTALL_HIREDIS="no"
before_script:
- if [ "$INSTALL_HIREDIS" = "yes" ]; then npm install hiredis; fi
addons:
... | Add tests for Node.js 3.0 & 4.0. Use g++-4.8 | Add tests for Node.js 3.0 & 4.0. Use g++-4.8
| YAML | mit | xuyanxiang/ioredis,nswbmw/ioredis,ColmHally/ioredis,DynamicYield/ioredis,DynamicYield/ioredis,AVVS/ioredis,pensierinmusica/ioredis,luin/ioredis,mtlima/ioredis,luin/ioredis,luin/ioredis,paskakaska/ioredis |
168d9347a222296d0630fa274395db61e34bf542 | .travis.yml | .travis.yml | language: cpp
install:
- export INITIAL_DIR=$PWD
- wget --no-check-certificate https://cmake.org/files/v3.6/cmake-3.6.2-Linux-x86_64.tar.gz -O /tmp/cmake.tar.gz
- tar -xvf /tmp/cmake.tar.gz
- export PATH=$PWD/cmake-3.6.2-Linux-x86_64/bin/:$PATH
- git clone https://github.com/google/googletest
- cd googlete... | language: cpp
install:
- export INITIAL_DIR=$PWD
- wget --no-check-certificate https://cmake.org/files/v3.6/cmake-3.6.2-Linux-x86_64.tar.gz -O /tmp/cmake.tar.gz
- tar -xvf /tmp/cmake.tar.gz
- export PATH=$PWD/cmake-3.6.2-Linux-x86_64/bin/:$PATH
- git clone https://github.com/google/googletest
- cd googlete... | Add google test version and compiler | Add google test version and compiler
| YAML | mit | klalumiere/DelayedConstructor,klalumiere/DelayedConstructor |
c5a2433daeaa8593ed334f0622684fe55cb9203b | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
before_install:
- gem update --system
- rvm @global do gem uninstall bundler -a -x
- rvm @global do gem install bundler -v 1.13.7
script: ./script/ci
rvm:
- 2.3.5
- 2.4.2
- ruby-head
- jruby-9.1.13.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
... | language: ruby
sudo: false
cache: bundler
script: ./script/ci
rvm:
- 2.3.5
- 2.4.2
- ruby-head
- jruby-9.1.13.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/fde2367248d53de4fe70
on_success: cha... | Remove hack to install newest bundler for Travis CI | Remove hack to install newest bundler for Travis CI
| YAML | mit | lotus/mailer,hanami/mailer,lotus/mailer,hanami/mailer,hanami/mailer |
0e52af5cc90be3b17ef0bf2d219a977c223f50fc | .travis.yml | .travis.yml | language: node_js
node_js:
- '4.0'
- '9.0'
after_script: bash <(curl -s https://codecov.io/bash)
sudo: false
deploy:
- provider: npm
skip_cleanup: true
email: tituswormer@gmail.com
api_key:
secure: N9kjXzHlOk0y5AzD3H4rWIBWaJsqZyWAAjyIezHzwIfA3S54BiVQWRQ87VDeytdeq3MNGBn7DZxH3dEy6JiZKPy2AsXo76pEsYknU8... | language: node_js
node_js:
- '4.0'
- '9.0'
after_script: bash <(curl -s https://codecov.io/bash)
sudo: false
deploy:
provider: releases
skip_cleanup: true
api_key:
secure: DfkFffCbPB92KCWByAcQTcL143u6ftLNlHfvlhJZGIkawhKDfJgzjuzat882Wcpw+xkLIZ685GWTGUcVQ2UBYjY9KnCkdkwNBkPGlrTPR82zmsyg+1hvPIfURop4d0xiwtkDaQLnBK... | Remove npm deployment from Travis | Remove npm deployment from Travis
| YAML | mit | syntax-tree/nlcst-emoji-modifier,wooorm/nlcst-emoji-modifier |
6579984898aae88ef52cfba2555499441118165a | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
install:
- sh -c 'cd jOOR && mvn install -DskipTests=true'
- sh -c 'cd jOOR-java-6 && mvn install -DskipTests=true'
script:
- sh -c 'cd jOOR && mvn test'
- sh -c 'cd jOOR-java-6 && mvn test'
| language: java
jdk:
- oraclejdk8
- oraclejdk9
install:
- sh -c 'cd jOOR && mvn install -DskipTests=true'
- sh -c 'cd jOOR-java-6 && mvn install -DskipTests=true'
script:
- sh -c 'cd jOOR && mvn test'
- sh -c 'cd jOOR-java-6 && mvn test'
| Build jOOR also with JDK 9 | Build jOOR also with JDK 9 | YAML | apache-2.0 | jOOQ/jOOR |
186da1e0daf96c4cd3d23f97be3ca6e26dff68c6 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- nightly
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-dist --no-interaction
script: phpunit
| language: php
php:
- 5.6
- 7.0
- nightly
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-dist --no-interaction
script: phpunit
| Support for PHP 5.5 phased out. | Support for PHP 5.5 phased out.
| YAML | mit | olssonm/identity-number |
87a02cbf77ac98491a73fa634a2da41f640edf56 | .travis.yml | .travis.yml | sudo: false
language: cpp
compiler:
- gcc
- clang
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.7" CC="gcc-4.7"; fi
script:
- mkdir build
- cd build
- cmake ..
- ctest -D ExperimentalBuild
- ctest -D ExperimentalMemCheck
addons:
apt:
sources:
- ubuntu-toolchain-r-test
... | sudo: false
language: cpp
compiler:
- gcc
- clang
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.7" CC="gcc-4.7"; fi
script:
- mkdir build
- cd build
- cmake ..
- make
- ctest -D ExperimentalBuild
- ctest -D ExperimentalMemCheck
addons:
apt:
sources:
- ubuntu-toolchai... | Make added as extra step. | CI: Make added as extra step.
| YAML | bsd-2-clause | offa/seasocks,offa/seasocks,offa/seasocks,mattgodbolt/seasocks,offa/seasocks,offa/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks,offa/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks |
61121a716750d6113f95255c640ed5c35b7d73fd | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
- 7.2
- master
before_script:
- composer self-update
- composer install
script:
- composer validate
- vendor/bin/parallel-lint src/ tests/
- vendor/bin/phpunit
- vendor/bin/phpstan analyze src tests --level=7
- vendor/bin/php-cs-fixer fix --rules=@PSR2 -v --dry-run --stop-on... | language: php
php:
- 7.0
- 7.1
- 7.2
- master
matrix:
allow_failures:
- php: master
before_script:
- composer self-update
- composer install
script:
- composer validate
- vendor/bin/parallel-lint src/ tests/
- vendor/bin/phpunit
- vendor/bin/phpstan analyze src tests --level=7
- vendor/bin/php-cs-f... | Allow failure with PHP master | Allow failure with PHP master
| YAML | mit | villfa/php-invert-color |
8010fa41950f19e0873b6fd2a4f6e912b33235db | .travis.yml | .travis.yml | os: linux
dist: focal
language: php
env:
- PATH="app/vendor/bin:${PATH}"
php:
- 7.4
- nightly
jobs:
allow_failures:
- php: nightly
services:
- memcached
- redis
cache:
directories:
- $HOME/.composer/cache
- $HOME/.npm
- app/vendor
before_install:
- printf "\n" | pecl install -f apc... | os: linux
dist: bionic
language: php
env:
- PATH="app/vendor/bin:${PATH}"
php:
- 7.2
- 7.3
- 7.4
- nightly
jobs:
allow_failures:
- php: nightly
services:
- memcached
- redis
cache:
directories:
- $HOME/.composer/cache
- $HOME/.npm
- app/vendor
before_install:
- printf "\n" | pe... | Test PHP 7.2, 7.3 and 7.4 in Travis tests | Test PHP 7.2, 7.3 and 7.4 in Travis tests
| YAML | mit | DirectoryLister/DirectoryLister,DirectoryLister/DirectoryLister,DirectoryLister/DirectoryLister,DirectoryLister/DirectoryLister |
47bf3b11f30cf3a33239565d92012aa5e22bac55 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- pypy
env:
- TEST_RELEASE=false
- TEST_RELEASE=true
- NGHTTP2=true
- HYPER_FAST_PARSE=true
matrix:
allow_failures:
- env: TEST_RELEASE=true
exclude:
- env: NGHTTP2=true
python: pypy
install:
- ".travis/install.sh"
script:
- >
... | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- pypy
env:
- TEST_RELEASE=false HYPER_FAST_PARSE=false
- TEST_RELEASE=false HYPER_FAST_PARSE=true
- TEST_RELEASE=true HYPER_FAST_PARSE=false
- TEST_RELEASE=true HYPER_FAST_PARSE=true
- NGHTTP2=true
matrix:
allow_failures:
- env: TEST_RELEASE=t... | Use HYPER_FAST_PARSE in release tests as well. | Use HYPER_FAST_PARSE in release tests as well.
| YAML | mit | lawnmowerlatte/hyper,jdecuyper/hyper,fredthomsen/hyper,plucury/hyper,jdecuyper/hyper,Lukasa/hyper,irvind/hyper,masaori335/hyper,fredthomsen/hyper,lawnmowerlatte/hyper,irvind/hyper,plucury/hyper,masaori335/hyper,Lukasa/hyper |
34ab9e303fd0782b2691d18ad910040f08f8e3bc | .travis.yml | .travis.yml | language: rust
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --verbose
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=cssparser/index.html>' > target/doc/index.html &&
sudo pip install ghp-import &&
... | sudo: false
language: rust
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --verbose
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=cssparser/index.html>' > target/doc/index.html &&
pip install --user gh... | Use hopefully faster container-based builders on Travis-CI. | Use hopefully faster container-based builders on Travis-CI.
| YAML | mpl-2.0 | notriddle/rust-cssparser,tempbottle/rust-cssparser,servo/rust-cssparser,servo/rust-cssparser,disjukr/rust-cssparser,tempbottle/rust-cssparser,notriddle/rust-cssparser,disjukr/rust-cssparser |
8b378c67f6d5e0ca3effa1ab9cdce401c694b2d1 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.6
- 0.8
services: mongodb
| language: node_js
node_js:
- 0.6
- 0.8
- 0.10
- 0.12
- 4.2
- 5.0
services: mongodb
| Test against more Node.js versions on Travis CI | Test against more Node.js versions on Travis CI
| YAML | mit | ratson/monk |
f5d44667b81356e3f8ea43e2cd682add7d8b39b2 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- ... | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_ins... | Test with Node.js 5.1 on Travis CI. | Test with Node.js 5.1 on Travis CI.
| YAML | mit | bigeasy/timezone,bigeasy/timezone,bigeasy/timezone |
79c08c1ce1f02ba8af941c4f8aa1f0fd13753f79 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- composer self-update
- composer update
| language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- composer self-update
- composer update
- echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
| Include mongo.so to run LiteCQRS tests. | Include mongo.so to run LiteCQRS tests.
| YAML | mit | beberlei/litecqrs-php,LidskaSila/Glow |
06bc5e8ce8249b405218a731f8c01a4ebfdef888 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
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'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Test with latest Node.js 4 on Travis CI. | Test with latest Node.js 4 on Travis CI.
| YAML | mit | bigeasy/establishment,bigeasy/establishment |
ec2e9848a021cddae69a5cbb89e21274cc496fa6 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
| Remove ruby 1.8.7 from ci config | Remove ruby 1.8.7 from ci config
| YAML | mit | sosedoff/net-ssh-session |
7a40739e76fdf2941244f1f03eaa06f34b1cb6e0 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
env:
- BUILD_CONFIGURATION=0
- BUILD_CONFIGURATION=1
- BUILD_CONFIGURATION=2
- BUILD_CONFIGURATION=3
- BUILD_CONFIGURATION=4
- BUILD_CONFIGURATION=5
- BUILD_CONFIGURATION=6
- BUILD_CONFIGURATION=7
- BUILD_CONFIGURATION=8
- BUILD_CONFIGURATION=9
- BUILD_CON... | language: cpp
compiler:
- gcc
- clang
env:
- BUILD_CONFIGURATION=0
- BUILD_CONFIGURATION=1
- BUILD_CONFIGURATION=2
- BUILD_CONFIGURATION=3
- BUILD_CONFIGURATION=4
- BUILD_CONFIGURATION=5
- BUILD_CONFIGURATION=6
- BUILD_CONFIGURATION=7
- BUILD_CONFIGURATION=8
- BUILD_CONFIGURATION=9
- BUILD_CON... | Build the development branch with Travis. | Build the development branch with Travis.
| YAML | apache-2.0 | saschazelzer/CppMicroServices,CppMicroServices/CppMicroServices,CppMicroServices/CppMicroServices,Heather/CppMicroServices,ksubramz/CppMicroServices,quinnlin/CppMicroServices,quinnlin/CppMicroServices,mobileFX/CppMicroServices,ksubramz/CppMicroServices,mobileFX/CppMicroServices,ksubramz/CppMicroServices,CppMicroService... |
200f09d2a0d391cea106dec4caad7431e4b73413 | .travis.yml | .travis.yml | language: php
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
- npm install bower less grunt-cli -g
- npm install
- bower install
- grunt
php:
- 5.4
- 5.5
- 5.6
- hhvm
script: bin/phpunit --configuration phpunit.xml --coverage-text
| language: php
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
- npm install bower less grunt-cli -g
- npm install
- bower install
- grunt
php:
- 5.4
- 5.5
- 5.6
- hhvm
- nightly
script: bin/phpunit --configuration phpunit.xml --coverage-text
| Test PHP7 as well on Travis CI | Test PHP7 as well on Travis CI
| YAML | mpl-2.0 | thorsten/phpMyFAQ,thorsten/phpMyFAQ,thorsten/phpMyFAQ,thorsten/phpMyFAQ |
63350e56884be1f9e5bb91418b67fb7b4b75da15 | .travis.yml | .travis.yml | sudo: false
git:
depth: 10
language: node_js
node_js: 6
env:
- CC=clang CXX=clang++ npm_config_clang=1
script: npm test
| sudo: false
git:
depth: 10
language: node_js
node_js: 6
env:
- CC=clang CXX=clang++ npm_config_clang=1
script: npm test
notifications:
email:
on_success: never
on_failure: change
| Add notification settings to Travis | Add notification settings to Travis
| YAML | mit | atom/superstring,atom/superstring,atom/superstring,atom/superstring,atom/superstring |
0e391545dfb6cc07239a01466823b287c5b393e6 | src/modules/core/producer_tone.yml | src/modules/core/producer_tone.yml | schema_version: 0.1
type: producer
identifier: tone
title: Tone
version: 1
copyright: Meltytech, LLC
creator: Brian Matherly
license: LGPLv2.1
language: en
tags:
- Audio
description: >
Generate audio tones.
parameters:
- identifier: frequency
title: Frequency
type: float
description: >
The frequ... | schema_version: 0.1
type: producer
identifier: tone
title: Tone
version: 1
copyright: Meltytech, LLC
creator: Brian Matherly
license: LGPLv2.1
language: en
tags:
- Audio
description: >
Generate audio tones.
parameters:
- identifier: frequency
title: Frequency
type: float
description: >
The frequ... | Fix invalid YAML for tone producer. | Fix invalid YAML for tone producer.
| YAML | lgpl-2.1 | wideioltd/mlt,anba8005/mlt,j-b-m/mlt,zzhhui/mlt,mltframework/mlt,anba8005/mlt,xzhavilla/mlt,zzhhui/mlt,j-b-m/mlt,xzhavilla/mlt,siddharudh/mlt,xzhavilla/mlt,siddharudh/mlt,wideioltd/mlt,wideioltd/mlt,mltframework/mlt,xzhavilla/mlt,zzhhui/mlt,xzhavilla/mlt,anba8005/mlt,mltframework/mlt,zzhhui/mlt,zzhhui/mlt,mltframework/... |
d4ba8b33d5275fd431c00f5601a32749d6d2a571 | stack.yaml | stack.yaml | resolver: lts-13.25
packages:
- .
flags: {}
extra-package-dbs: []
| resolver: lts-13.25
packages:
- .
flags: {}
extra-package-dbs: []
nix:
packages: [zlib.dev, zlib.out, pkgconfig, haskell.compiler.ghc865]
| Add Nix information for the lucky few. | Add Nix information for the lucky few.
| YAML | isc | diku-dk/futhark,HIPERFIT/futhark,HIPERFIT/futhark,HIPERFIT/futhark,diku-dk/futhark,diku-dk/futhark,diku-dk/futhark,diku-dk/futhark |
faba14fa18195da7ed5c5d53972544759e7b7668 | stack.yaml | stack.yaml | flags:
Snowdrift:
dev: true
resolver: lts-9.18
packages:
- website
- crowdmatch
- run-persist
# This is patched to use UTCTime instead of Localtime (needs to get moved
# upstream: see https://git.snowdrift.coop/sd/snowdrift/issues/8)
- location:
git: https://git.snowdrift.coop/sd/postgresql-simpl... | flags:
Snowdrift:
dev: true
resolver: lts-9.18
packages:
- website
- crowdmatch
- run-persist
# This is patched to use UTCTime instead of Localtime (needs to get moved
# upstream: see https://git.snowdrift.coop/sd/snowdrift/issues/8)
- location:
git: https://git.snowdrift.coop/sd/postgresql-simpl... | Use latest version of shakespeare-sass | Use latest version of shakespeare-sass
Fixes silius files producing whitespace-stripped CSS when shakespeare-sass is
used in development mode.
| YAML | agpl-3.0 | snowdriftcoop/snowdrift |
3eab63710ba93369221dcdda9651ba2b3145eb3b | stack.yaml | stack.yaml | resolver: lts-13.20
flags: {}
packages:
- '.'
extra-deps:
- hakyll-4.12.5.2
- lrucache-1.2.0.1
| resolver: lts-18.19
flags: {}
packages:
- '.'
extra-deps:
- hakyll-4.15.1.1
- lrucache-1.2.0.1
| Use more recent Stackage LTS and Hakyll version | Use more recent Stackage LTS and Hakyll version
This isn't strictly necessary given that this site is being deprecated,
but I wasn't able to easily build the previous version on NixOS.
| YAML | mit | ucsd-progsys/liquidhaskell-blog,ucsd-progsys/liquidhaskell-blog |
3c829ec52a48a68a8b0f350dd5d3837731635e4b | stack.yaml | stack.yaml | resolver: lts-16.7
packages:
- .
extra-deps:
- sexp-grammar-2.2.1@sha256:a05a86f83e7d1d9767fbc1b0cba7859455a10c6365173b72c10f5b0e93140a50,2473
- invertible-grammar-0.1.3@sha256:aeae40093db800e1130b8f58ae47f4474b131c22d830913d1051d1ab083f6f13,1651
- versions-4.0.1
flags: {}
extra-package-dbs: []
nix:
packa... | resolver: nightly-2020-12-14
packages:
- .
extra-deps: []
flags: {}
extra-package-dbs: []
nix:
packages: [zlib.dev, zlib.out, pkgconfig, haskell.compiler.ghc882]
# By default, stack doesn't compile multiple modules in parallel.
# This makes it do so.
ghc-options:
$locals: -j -optP-Wno-nonportable-include-pat... | Upgrade to newer Stack snapshot. | Upgrade to newer Stack snapshot.
| YAML | isc | HIPERFIT/futhark,diku-dk/futhark,HIPERFIT/futhark,diku-dk/futhark,diku-dk/futhark,diku-dk/futhark,HIPERFIT/futhark,diku-dk/futhark |
743a2cadfeb25129931aecf6d60586943736dc59 | .codacy.yml | .codacy.yml | ---
engines:
phpmd:
enabled: true
config:
rulesets: "phpmd.xml.dist"
exclude_paths:
- 'ext/**'
- 'prototypes/**'
| ---
engines:
phpmd:
enabled: true
config:
rulesets: "phpmd.xml.dist"
phpcs:
enabled: true
config:
ruleset: "phpcs.xml.dist"
exclude_paths:
- 'ext/**'
- 'prototypes/**'
| Enable phpcs ruleset for Codacy | Enable phpcs ruleset for Codacy
| YAML | mit | vpg/zephir,vpg/zephir,vpg/zephir,phalcon/zephir,zephir-lang/zephir,zephir-lang/zephir,vpg/zephir,zephir-lang/zephir,zephir-lang/zephir,phalcon/zephir,zephir-lang/zephir,vpg/zephir,vpg/zephir,phalcon/zephir,phalcon/zephir,phalcon/zephir,phalcon/zephir |
cb2ecb10fba1e0eb05c0dba4c129e8fd3c107630 | .poggit.yml | .poggit.yml | --- # Poggit-CI Manifest. Open the CI at https://poggit.pmmp.io/ci/Sandertv/BlockPets
branches:
- master
projects:
BlockPets:
path: ""
icon: resources/BlockPetsLogo.png
libs:
- src: Falkirks/spoondetector/spoondetector
version: ^0
- src: poggit/libasynql/libasynql
version: ^3.0... | --- # Poggit-CI Manifest. Open the CI at https://poggit.pmmp.io/ci/Sandertv/BlockPets
branches:
- master
projects:
BlockPets:
path: ""
icon: resources/BlockPetsLogo.png
compressBuilds: false
fullGzip: 9
libs:
- src: Falkirks/spoondetector/spoondetector
version: ^0
- src: poggit... | Compress whole phar instead of individual files | Compress whole phar instead of individual files
This is disabled by default because of unstable behavior with phar stub, but this plugin doesn't have a stub anyway.
This will enable compression that optimizes the recurring license headers, etc., and usually reduces the artifact size greatly. | YAML | apache-2.0 | BlockHorizons/BlockPets |
c98450d1d53014ad6f7b8a506e0fe7e7eaaf349c | stack.yaml | stack.yaml | resolver: lts-6.2
extra-deps:
- Ranged-sets-0.3.0
- bytestring-tree-builder-0.2.7
- hasql-0.19.12
- hasql-pool-0.4.1
- hasql-transaction-0.4.5.1
- jwt-0.7.2
- postgresql-binary-0.9.0.1
- binary-parser-0.5.2
- contravariant-extras-0.3.2
- placeholders-0.1
- postgresql-error-codes-1
- success-0.2.... | resolver: lts-6.7
extra-deps:
- Ranged-sets-0.3.0
- bytestring-tree-builder-0.2.7
- hasql-0.19.12
- hasql-pool-0.4.1
- hasql-transaction-0.4.5.1
- jwt-0.7.2
- postgresql-binary-0.9.0.1
- binary-parser-0.5.2
- contravariant-extras-0.3.2
- placeholders-0.1
- postgresql-error-codes-1
- success-0.2.... | Use real version of hjsonschema | Use real version of hjsonschema
Its raw commit on github no longer exists
| YAML | mit | steve-chavez/postgrest,diogob/postgrest,begriffs/postgrest,Skyfold/postgrest,NotBrianZach/postgrest,steve-chavez/postgrest,ruslantalpa/postgrest |
27fa4896ec5b06c69d44d529f5e8d7d0eb489a7f | _config.yml | _config.yml | # Site settings
title: the padded cell
email: ba@sanitarium.se
description: ""
baseurl: ""
url: "http://sanitarium.se"
twitter_username: gaqzi
github_username: gaqzi
facebook_username:
timezone: UTC
github_base_url: https://github.com/gaqzi/sanitarium.se/blob/master/
# Build settings
markdown: kramdown
redcarpet:
e... | # Site settings
title: the padded cell
email: ba@sanitarium.se
description: ""
baseurl: ""
url: "http://sanitarium.se"
twitter_username: gaqzi
github_username: gaqzi
facebook_username:
timezone: UTC
github_base_url: https://github.com/gaqzi/sanitarium.se/blob/master/
# Build settings
markdown: kramdown
redcarpet:
e... | Exclude .idea folder from jekyll config | Exclude .idea folder from jekyll config
| YAML | apache-2.0 | gaqzi/sanitarium.se,gaqzi/sanitarium.se,gaqzi/sanitarium.se,gaqzi/sanitarium.se |
f3a113ea4aa32606fd072343fb86807edf6b12a8 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10" | language: node_js
node_js:
- "8"
- "6"
- "4"
| Test on Node 4 and up | Test on Node 4 and up
| YAML | mit | mariocasciaro/gulp-clone |
451ac84e967acfbf005ffb33fec6153a3fe478c4 | .travis.yml | .travis.yml | language: ruby
cache: bundler
dist: trusty
sudo: false
rvm:
- 2.4.2
- 2.4.1
- 2.3.4
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
branches:
only:
- master
notifications:
slack:
on_success: change
on_failure: always
rooms:
secure: ml+Ph8FuoU4TgEqGmjERaF5peoNTRhllG5rBFDUgG... | sudo: false
language: ruby
cache: bundler
matrix:
include:
- 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
notifications:
slack:
on_success: change
... | Test on Ruby 2.5 in Travis + exclude gem groups | Test on Ruby 2.5 in Travis + exclude gem groups
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | ClogenyTechnologies/knife-google,chef/knife-google,chef/knife-google |
466d54ebbb4a9fec10ad77688010b31992a3264c | .travis.yml | .travis.yml | sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
env:
- MONGO_VERSION=stable
matrix:
include:
- php: 5.3
dist: precise
- php: 7.0
env: ADAPTER_VERSION="^1.0.0" MONGODB_VERSION=stable
services: mongodb
before_script:
- if [ "x${MONGO_VERSION}" != "x" ]; then yes '' | pecl -q ... | sudo: false
language: php
php:
- 5.4
- 5.5
- 5.6
env:
- MONGO_VERSION=stable
matrix:
include:
- php: 5.3
dist: precise
- php: 7.0
env: ADAPTER_VERSION="^1.0.0" MONGODB_VERSION=stable
services: mongodb
before_script:
- if [ "x${MONGO_VERSION}" != "x" ]; then yes '' | pecl -q install ... | Remove 5.3 from the standard set | Remove 5.3 from the standard set
| YAML | mit | caciobanu/mongodb-migrations,caciobanu/mongodb-migrations,caciobanu/mongodb-migrations |
866f4f13413a858f9226a2f4e8af096daf9d424a | .travis.yml | .travis.yml | language: python
python:
- "2.7"
notifications:
email: false
# Setup anaconda
before_install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/minicond... | language: python
python:
- "2.7"
notifications:
email: false
# Setup anaconda
before_install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/minicond... | Replace nose with py.test for Travis CI configuration | Replace nose with py.test for Travis CI configuration
| YAML | apache-2.0 | gakhov/sbdc |
d2db1ab78f199d3c41887d9d8ba99974d681ed2f | .github/workflows/pythonapp.yml | .github/workflows/pythonapp.yml | name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: |
sudo make dev-install-no-model
sudo pip3 install pytest-faulthandler
sudo apt install xvfb
- name: Lint with flake8
run: |
... | name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Get pip cache
id: pip-cache
run: |
python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)"
- uses: actions/cache@v1
with:
path: ${{... | Implement the pip cache for the CI build | Implement the pip cache for the CI build
| YAML | mit | mertyildiran/Dragonfire,DragonComputer/Dragonfire,mertyildiran/Dragonfire,DragonComputer/Dragonfire,DragonComputer/Dragonfire |
2314b8f230ebc012319e4f0f7045b569338d9472 | .github/workflows/slicerbot.yml | .github/workflows/slicerbot.yml | name: "Slicer Bot"
on:
pull_request:
branches:
- update-github-workflow-with-schedule-and-dispatch
workflow_dispatch:
schedule:
- cron: "30 11 * * 2"
jobs:
update-slicer-certificate-bundle:
name: "Update Slicer.crt certificate bundle"
runs-on: ubuntu-latest
steps:
- name: "Down... | name: "Slicer Bot"
on:
pull_request:
jobs:
update-slicer-certificate-bundle:
name: "Update Slicer.crt certificate bundle"
runs-on: ubuntu-latest
steps:
- name: "Download certdata.txt from https://github.com/mozilla/gecko-dev"
run: echo "Download certdata.txt from https://github.com/mozil... | Remove workflow_dispatch, schedule and pr branch | github-workflow: Remove workflow_dispatch, schedule and pr branch
| YAML | apache-2.0 | jcfr/ci-sandbox,jcfr/ci-sandbox |
68ea23498b669c410c1311ea2e68c4c258af10dc | .travis.yml | .travis.yml | language: go
| sudo: false
language: go
go:
- 1.6.2
- tip
matrix:
allow_failures:
- go: tip
fast_finish: true
install:
- # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
script:
- go get -t -v ./...
- diff -u <(echo -n)... | Build with 1.6+tip, run gofmt, go vet, go test -race checks. | Travis: Build with 1.6+tip, run gofmt, go vet, go test -race checks.
Make tip a fast-finish allowed failure. That way, if CI fails on
tip due to a temporary issue with tip, it will not break build status.
However, it's still possible to see tip build status by looking at CI
details page.
This is a followup to #1... | YAML | apache-2.0 | googlesamples/mugo |
c094e6a2d6d9c21b3523ce7c58fc39334b8a54b7 | .travis.yml | .travis.yml | language: python
python:
- "3.6"
# command to install dependencies
install:
- pip install -r requirements.txt
# command to run tests
script:
- pytest -cov=wikilink --cov-report=html
branches:
only:
- dev
after_success:
- coveralls
| language: python
python:
- "3.6"
# command to install dependencies
install:
- pip install -r requirements.txt
# command to run tests
script:
- pytest --cov=wikilink tests/ --cov-report=html
branches:
only:
- dev
after_success:
- coveralls
| Fix syntax for coverall line | Fix syntax for coverall line
Signed-off-by: Tran Ly Vu <0555cc0f3d5a46ac8c0e84ddf31443494c66bd55@gmail.com>
| YAML | apache-2.0 | tranlyvu/findLink,tranlyvu/find-link |
8648b6ec593747080cc08594eefb33865d685669 | .travis.yml | .travis.yml | language: go
go:
- "1.7"
- "1.8"
- "1.8.1"
script:
- go test -v -race ./...
| language: go
go:
- "1.7"
- "1.8"
- "1.8.1"
- "tip"
script:
- go test -v -race ./...
| Test golang tip on Travis CI | Test golang tip on Travis CI
| YAML | mit | hnakamur/ltsvlog |
273c616b5293fb6aa62de90a240b34d7c505d483 | _config.yml | _config.yml | name: Sufi-Al-Hussaini
description: Senior Software Developer | Urdu Sufi Poet | Self-proclaimed philosopher
meta_description: "Shoaib Ahmed is a system software developer, urdu Sufi poet and self-proclaimed philosopher. He writes under the nom-de-plume of 'Sufi-Al-Hussaini'."
aboutPage: true
markdown: kramdown
highl... | name: Sufi-Al-Hussaini
description: Senior Software Developer | Urdu Sufi Poet | Self-proclaimed philosopher
meta_description: "Shoaib Ahmed is a system software developer, urdu Sufi poet and self-proclaimed philosopher. He writes under the nom-de-plume of 'Sufi-Al-Hussaini'."
aboutPage: true
markdown: kramdown
highl... | Modify permalink to include year | Modify permalink to include year
| YAML | mit | Sufi-Al-Hussaini/Sufi-Al-Hussaini.github.io,Sufi-Al-Hussaini/Sufi-Al-Hussaini.github.io,Sufi-Al-Hussaini/Sufi-Al-Hussaini.github.io,Sufi-Al-Hussaini/Sufi-Al-Hussaini.github.io |
5e4fddf2d0f3884136aa3822f12e4ca7b8d064d0 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.14
- 1.15
before_script:
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $GOPATH/bin v1.25.1
script:
- make test vet lint testacc
| sudo: false
language: go
go:
- 1.14
- 1.15
cache:
directories:
- $GOPATH/pkg/mod
before_script:
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $GOPATH/bin v1.25.1
script:
- make test vet lint testacc
| Add `$GOPATH/pkg/mod` to Travis CI cache | Add `$GOPATH/pkg/mod` to Travis CI cache
| YAML | mpl-2.0 | kjmkznr/terraform-provider-mackerel,kjmkznr/terraform-provider-mackerel |
7d99b10c65bc65de860d422e5be835ebc0856ed1 | appveyor.yml | appveyor.yml | version: '1.0.{build}'
configuration:
- Debug
- Release
platform: Any CPU
environment:
# Don't report back to the mothership
DOTNET_CLI_TELEMETRY_OPTOUT: 1
init:
- ps: $Env:LABEL = "CI" + $Env:APPVEYOR_BUILD_NUMBER.PadLeft(5, "0")
before_build:
- appveyor-retry dotnet restore -v Minimal
... | version: '1.0.{build}'
configuration:
- Debug
- Release
platform: Any CPU
environment:
# Don't report back to the mothership
DOTNET_CLI_TELEMETRY_OPTOUT: 1
init:
- ps: $Env:LABEL = "CI" + $Env:APPVEYOR_BUILD_NUMBER.PadLeft(5, "0")
before_build:
- appveyor-retry dotnet restore -v Minimal
... | Fix - Incorrect YAML syntax. | Fix - Incorrect YAML syntax.
| YAML | apache-2.0 | jdevillard/JmesPath.Net |
5a4681d7dcfad60bcaa7a0299357c64596afa927 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 2.2.5
- 2.3.1
- jruby-9.1.2.0
- rbx
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: rbx
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 2.2.5
- 2.3.1
- jruby
- rbx
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: rbx
- rvm: jruby
| Change Travis JRuby to default and allow failures. | Change Travis JRuby to default and allow failures.
| YAML | unlicense | ruby-rdf/ld-patch,gkellogg/ld-patch,ruby-rdf/ld-patch,gkellogg/ld-patch |
d7610a1646441a26d02d833e4af376e5012e4c6d | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- ruby-head
before_script:
- gem install minitest
- sh bootstrap
- ruby extconf.rb
- make
script: rake
matrix:
allow_failures:
- rvm: ruby-head
| rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.0
- ruby-head
before_script:
- gem install minitest
- sh bootstrap
- ruby extconf.rb
- make
script: rake
matrix:
allow_failures:
- rvm: ruby-head
| Build against Ruby 2.1 on Travis | Build against Ruby 2.1 on Travis
| YAML | bsd-2-clause | der-scheme/rice,der-scheme/rice,der-scheme/rice,der-scheme/rice |
658580c271d724a310c73d1e70c7ab80aadf52fb | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.2
xcode_project: Haneke.xcodeproj
xcode_scheme: Haneke
xcode_sdk: iphonesimulator9.2
branches:
only:
- master
| language: objective-c
osx_image: xcode7.2
xcode_workspace: Haneke.xcworkspace
xcode_scheme: Haneke
xcode_sdk: iphonesimulator9.2
branches:
only:
- master
| Use workspace instead of project in Travis config | Use workspace instead of project in Travis config
| YAML | apache-2.0 | pollarm/HanekeSwift,Haneke/HanekeSwift,meteochu/HanekeSwift,Haneke/HanekeSwift,dcharbonnier/HanekeSwift,pollarm/HanekeSwift,dcharbonnier/HanekeSwift,szehnder/HanekeSwift,yoller/HanekeSwift,meteochu/HanekeSwift,szehnder/HanekeSwift,yoller/HanekeSwift |
92296823c2e38f83330ff7452c1bfbb8f4787ed2 | appveyor.yml | appveyor.yml | environment:
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python33"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python33-x64"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python35-x64"
install:
- "%PYTHON%\\python.exe -m pip instal... | environment:
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python33"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python33-x64"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python35-x64"
install:
- "%PYTHON%\\python.exe -m pip instal... | Remove installing the wheel from on AppVeyor | Remove installing the wheel from on AppVeyor
Using the wildcard character to tell pip to install the newly built
wheel file is not helpful. So for now just build the wheel on AppVeyor
and don't install it.
| YAML | mit | farzadghanei/statsd-metrics |
2f99cc76fce8cc2052e62241ed6f44ac21b98557 | _config.yml | _config.yml | # Site settings
title: My Name
author: My Name
# This is the author that will be used for highlighting the author in
# publication entries.
pubauthor: My Name
url: "http://www.cl.cam.ac.uk"
baseurl: /~crsid123
createdyear: 2014
destination: public_html
collections:
projects:
output: false
people:
output: f... | # Site settings
title: My Name
author: My Name
# This is the author that will be used for highlighting the author in
# publication entries.
pubauthor: My Name
url: "//www.cl.cam.ac.uk"
baseurl: /~crsid123
createdyear: 2014
destination: public_html
collections:
projects:
output: false
people:
output: false
... | Use // instead of an explicit protocol. | Use // instead of an explicit protocol.
| YAML | mit | CompilerTeaching/CompilerTeaching.github.io,CompilerTeaching/CompilerTeaching.github.io,CompilerTeaching/CompilerTeaching.github.io |
320ab13435ff0a2e2c4a4805ef344ad982e3be75 | appveyor.yml | appveyor.yml | install:
- choco install HaskellPlatform -version 2014.2.0.0
- SET PATH=C:\Program Files\Haskell Platform\2014.2.0.0\bin;C:\Program Files\Haskell Platform\2014.2.0.0\mingw\bin;C:\Program Files\Haskell Platform\2014.2.0.0\lib\extralibs\bin;%PATH%
- cabal update
build_script:
- cd Cabal
- ghc --make -threaded ... | install:
- choco install HaskellPlatform -version 2014.2.0.0
- SET PATH=C:\Program Files\Haskell Platform\2014.2.0.0\bin;C:\Program Files\Haskell Platform\2014.2.0.0\mingw\bin;C:\Program Files\Haskell Platform\2014.2.0.0\lib\extralibs\bin;%PATH%
- cabal update
build_script:
- cd Cabal
- ghc --make -threaded ... | Enable Cabal package tests on AppVeyor | Enable Cabal package tests on AppVeyor
| YAML | bsd-3-clause | headprogrammingczar/cabal,gbaz/cabal,garetxe/cabal,themoritz/cabal,kolmodin/cabal,bennofs/cabal,headprogrammingczar/cabal,mydaum/cabal,sopvop/cabal,thomie/cabal,thomie/cabal,themoritz/cabal,Heather/cabal,themoritz/cabal,sopvop/cabal,gbaz/cabal,Heather/cabal,garetxe/cabal,bennofs/cabal,sopvop/cabal,kolmodin/cabal,mydaum... |
d1931a356eaad9f3a0724e8f5aad5f9115ebb829 | .travis.yml | .travis.yml | language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono: none
os:
- linux
- osx
branches:
... | language: csharp
sudo: false
dist: trusty
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono: none
os:
- linux
- osx
osx_image: xcode8.2
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
before_install:
- if test "$TRAVIS_OS_NAME" == ... | Update Travis to macOS Sierra | Update Travis to macOS Sierra
[skip appveyor]
| YAML | apache-2.0 | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore |
13e6545b87e9df240fbf4fc52f52b016ac7034a6 | _config.yml | _config.yml | # Site settings
title: Christian Deinert
email: ChDeinert@gmail.com
description: >
I'm a Web- & Software Developer based in Singen(Hohentwiel) - Germany,
focusing on PHP Backend development,
but I'm not afraid to get my hands dirty in the Front-End!
timezone: Europe/Berlin
baseurl: "" # the subpath of your site, ... | # Site settings
title: Christian Deinert
email: ChDeinert@gmail.com
description: >
I'm a Web- & Software Developer based in Singen(Hohentwiel) - Germany,
focusing on PHP Backend development,
but I'm not afraid to get my hands dirty in the Front-End!
timezone: Europe/Berlin
baseurl: "" # the subpath of your site, ... | Remove Projects for the time being | Remove Projects for the time being
There will be something coming | YAML | mit | ChDeinert/chdeinert.github.io |
aa49fc4400ac0d972f3088a086b8cefb5ee5af0f | _config.yml | _config.yml | # Site settings
title: DEB.SURY.ORG
email: ondrej@sury.org
tag_text: Debian and Ubuntu packaging
description: Debian and Ubuntu packaging
baseurl: "/" # the subpath of your site, e.g. /blog
url: "https://deb.sury.org" # the base hostname & protocol for your site
twitter_username: oerdnj
github_username: oerdnj
font-a... | # Site settings
title: DEB.SURY.ORG
email: ondrej@sury.org
tag_text: Debian and Ubuntu packaging
description: Debian and Ubuntu packaging
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://deb.sury.org" # the base hostname & protocol for your site
twitter_username: oerdnj
github_username: oerdnj
font-aw... | Remove trailing / from url | Remove trailing / from url
| YAML | mit | oerdnj/oerdnj.github.io |
ab62837b72d516bea86c0218429b585da61df009 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
matrix:
fast_finish: true
before_script:
- composer update-all
script:
- composer test
after_script:
- composer coveralls
notifications:
slack: jbzoo:lKYRTvAF36tRDfKTOK5zhFh9
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
matrix:
fast_finish: true
include:
- php: 5.6
env: XDEBUG_OFF="yes"
- php: 7.0
env: XDEBUG_OFF="yes"
before_script:
- if [[ $XDEBUG_OFF = yes ]]; then phpenv config-rm xdebug.ini; fi;
script:
- composer update-all
- composer te... | Add matrix - disable xdebug PHP module | Add matrix - disable xdebug PHP module | YAML | mit | JBZoo/Utils |
b147888e95287666fe6cd56f88cd64d317809281 | _config.yml | _config.yml | # Site settings
title: Your awesome title
email: your-email@domain.com
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.... | # Site settings
title: Your awesome title
email: your-email@domain.com
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.... | Exclude local vendor directory from building | Exclude local vendor directory from building
| YAML | cc0-1.0 | rovansteen/rovansteen.com,rovansteen/rovansteen.com |
8dac66b2521b5d4583dbd56a9730951d427c8bd9 | appveyor.yml | appveyor.yml | version: '{build}'
environment:
COVERALLSAPIKEY:
secure: w6ojRE0he/6J2qd8sgq1kwSl3YlgLXaGJbiLvWfAdf8KtWAfSobZwSFwu3nCBLWJ
build_script:
- ps: .\build.ps1 -target=CoveragePublish -configuration=Debug "-coverallsApiKey=$env:COVERALLSAPIKEY"
test: off
| version: '{build}'
image: Visual Studio 2017
environment:
COVERALLSAPIKEY:
secure: w6ojRE0he/6J2qd8sgq1kwSl3YlgLXaGJbiLvWfAdf8KtWAfSobZwSFwu3nCBLWJ
build_script:
- ps: .\build.ps1 -target=CoveragePublish -configuration=Debug "-coverallsApiKey=$env:COVERALLSAPIKEY"
test: off
| Use Visual Studio 2017 with Appveyor. | Use Visual Studio 2017 with Appveyor.
| YAML | mit | FacilityApi/Facility |
d766599959acb62b67de44627441629a4d819c97 | .travis.yml | .travis.yml | language: go
go:
- 1.7
- 1.8
- tip | language: go
go:
- 1.7
- 1.8
- 1.9
- tip
| Add Go 1.9 to Travis | Add Go 1.9 to Travis | YAML | mit | scottdware/go-bigip |
30aadd15379de8b0718e25c7b989aa368387e70a | appveyor.yml | appveyor.yml | version: 0.9.1.{build}
configuration: Release
skip_tags: true
nuget:
disable_publish_on_pr: true
clone_depth: 1
test: off
build_script:
- ps: .\build.ps1 Package All
artifacts:
- path: build\packages\**\*.nupkg
name: NuGet
| version: 0.9.1.{build}
configuration: Release
image: Visual Studio 2019
skip_tags: true
nuget:
disable_publish_on_pr: true
clone_depth: 1
test: off
build_script:
- ps: .\build.ps1 Package All
artifacts:
- path: build\packages\**\*.nupkg
name: NuGet
| Use VS 2019 image in CI | Use VS 2019 image in CI
| YAML | mit | NRules/NRules |
b15aecd31ddad90f78f9b0ad13b7f7a872ae29dc | _config.yml | _config.yml | title: Hi!
description: Daniel Cruz - Software developer
exclude: ['LICENSE', 'README.md', '.rbenv-version', 'nbproject', '*.sass']
markdown: kramdown
highlighter: pygments
| title: Hi!
description: Daniel Cruz - Software developer
exclude: ['LICENSE', 'README.md', '.rbenv-version', 'nbproject', '*.sass']
markdown: kramdown
highlighter: rouge
| Use rouge as pygments is deprecated | Use rouge as pygments is deprecated
| YAML | unlicense | dncrht/dncrht.github.io,dncrht/dncrht.github.io |
916bf59325a99df9a43ca6b2f3c81c422becc0b4 | appveyor.yml | appveyor.yml | os: unstable
build_script:
- ps: .\Source\Scripts\CI.InstallPrereqs.ps1;.\CI Build
artifacts:
- name: Logs
path: Artifacts\Logs
deploy_script:
- ps: .\CI Deploy | os: unstable
build_script:
- ps: .\Source\Scripts\CI.InstallSystemPrereqs.ps1;.\CI Build
artifacts:
- name: Logs
path: Artifacts\Logs
deploy_script:
- ps: .\CI Deploy | Correct the path to the CI script. | Correct the path to the CI script.
| YAML | mit | rakutensf-malex/slinqy,rakutensf-malex/slinqy |
1bafc92b34accde8de2e2ee4e2c444bae8c9184b | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
notifications:
irc:
channels:
- "chat.freenode.net#montage"
on_success: false
template:
- "%{author} broke the %{repository} tests on %{branch}: %{build_url}"
| language: node_js
node_js:
- "0.10"
notifications:
irc:
channels:
- "chat.freenode.net#montage"
on_success: false
template:
- "%{author} broke the %{repository} tests on %{branch}: %{build_url}"
| Disable Node.js v0.8 integration tests | Disable Node.js v0.8 integration tests
Travis now errors because of a bad npm certificate.
| YAML | mit | kriskowal/collections,kriskowal/collections |
835c31454f0002916b50a9bf98777796d1f6fae2 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
services: postgresql
bundler_args: --jobs=3 --retry=3 --without development
rvm:
- 2.4.1
before_install:
- gem update --system
- gem install bundler
before_script:
- psql -c 'CREATE DATABASE evemonk_test;' -U postgres
- bundle exec rake db:create db:migrate
- bund... | language: ruby
sudo: false
cache: bundler
services: postgresql
bundler_args: --jobs=3 --retry=3 --without development
rvm:
- 2.4.1
before_install:
- gem update --system
- gem install bundler
- gem --version
- bundle --version
before_script:
- psql -c 'CREATE DATABASE evemonk_test;' -U postgres
- bundle ... | Add gem and bundler versions to log after update | Add gem and bundler versions to log after update
| YAML | mit | biow0lf/evemonk,biow0lf/evemonk,biow0lf/evemonk |
26962b2af4f5598dba6b181fa0c7073a186bffbc | _config.yml | _config.yml | # Site settings
title: neiro λ Web development professional
email: neiro.mail@gmail.com
description: > # this means to ignore newlines until "baseurl:"
My personal website, blog and portfolio
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://neiro.io" # the base hostname & protocol for your site
twitte... | # Site settings
title: neiro λ Web development professional
email: neiro.mail@gmail.com
description: > # this means to ignore newlines until "baseurl:"
My personal website, blog and portfolio
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://neiro.io" # the base hostname & protocol for your site
twitte... | Add contact page to config | Add contact page to config
| YAML | mit | ne1ro/neiro.io,ne1ro/neiro.io |
85cb2509e2ec097f2d43c24cca1f0e96d3c8b9d1 | _config.yml | _config.yml | # Site settings
title: Ben Ilegbodu
description: "{priorities:['Christ','Family','Work'], work:'@Eventbrite', title:'Sr UI Engineer', tech:['#ES6,'#CSS3','#HTML5'], passions:['#Jesus','@NBA']}"
url: "https://benmvp.github.io"
paginate: 4
paginate_path: "/page/:num/"
# Build settings
permalink: pretty
gems: [jekyll-pa... | # Site settings
title: Ben Ilegbodu
description: "Christ follower, husband & father of ✌. UI Architect & Speaker. ES6+, React & CSS3. Basketball, DIY & movies. Frontend Platform Manager @ Eventbrite"
url: "http://www.benmvp.com"
paginate: 4
paginate_path: "/page/:num/"
# Build settings
permalink: pretty
gems: [jekyll... | Update some meta info for the blog | Update some meta info for the blog
| YAML | mit | benmvp/benmvp.github.io |
1efc8831ef7f8924cf4c5b68db15c1707afa97f2 | appveyor.yml | appveyor.yml | os: Visual Studio 2017
version: 2.1.{build}
environment:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
NUGET_XMLDOC_MODE: skip
branches:
only:
- master
cache:
- src\API\node_modules
- '%APPDATA%\npm\node_modules'
- '%APPDATA%\npm-cache'
install:
- ps: npm install -g npm@6.1.0 --loglevel=error
- ps: np... | os: Visual Studio 2017
version: 2.1.{build}
environment:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
NUGET_XMLDOC_MODE: skip
branches:
only:
- master
cache:
- src\API\node_modules
- '%APPDATA%\npm\node_modules'
- '%APPDATA%\npm-cache'
install:
- ps: npm install -g npm
- ps: npm install -g gulp@3.9.1... | Install latest npm in AppVeyor | Install latest npm in AppVeyor
Always install latest npm in AppVeyor.
Remove logLevel switch from npm commands.
| YAML | mit | martincostello/api,martincostello/api,martincostello/api |
8b3c15215b5bfa63d382dde90b991db91eec1e65 | appveyor.yml | appveyor.yml | build: false
environment:
global:
BINSTAR_USER: menpo
BINSTAR_KEY:
secure: mw1Fz5a5C0lT4CXzsOCADoo/Xa9YymZI3yjVZNR8f5GwYrVAOC2YXxyEG6NaSWZY
matrix:
- PYTHON_VERSION: 2.7
- PYTHON_VERSION: 3.4
matrix:
fast_finish: true
platform:
- x86
- x64
init:
- ps: Start-FileDownload 'https://raw.gith... | build: false
environment:
global:
BINSTAR_USER: menpo
BINSTAR_KEY:
secure: mw1Fz5a5C0lT4CXzsOCADoo/Xa9YymZI3yjVZNR8f5GwYrVAOC2YXxyEG6NaSWZY
matrix:
- PYTHON_VERSION: 2.7
- PYTHON_VERSION: 3.4
matrix:
fast_finish: true
platform:
- x86
- x64
init:
- ps: Start-FileDownload 'https://raw.gith... | Split command over two lines | Split command over two lines
| YAML | bsd-3-clause | patricksnape/menpo,menpo/menpo,yuxiang-zhou/menpo,mozata/menpo,menpo/menpo,patricksnape/menpo,yuxiang-zhou/menpo,menpo/menpo,grigorisg9gr/menpo,mozata/menpo,patricksnape/menpo,grigorisg9gr/menpo,mozata/menpo,mozata/menpo,grigorisg9gr/menpo,yuxiang-zhou/menpo |
cc7c9f51685d4c06230af3a23163d140dafda84a | appveyor.yml | appveyor.yml | version: 3.0.{build}
# The above also controls the VSIX Version. For any dlls which are intended to be referenced from
# 3rd parties, eg, any contract DLLs, those have their own AssemblyInfo/AssemblyVersioning.
# If there are any breaking changes it recommended that the below assembly_version is changed as well.
... | version: 3.0.{build}
# The above also controls the VSIX Version. For any dlls which are intended to be referenced from
# 3rd parties, eg, any contract DLLs, those have their own AssemblyInfo/AssemblyVersioning.
configuration: Release
platform: Any CPU
build:
parallel: true
verbosity: minimal
artifacts... | Revert "Set AssemblyVersion to a fixed 3.0.0.0" | Revert "Set AssemblyVersion to a fixed 3.0.0.0"
This reverts commit b6457a4d4abea5ae94c2c488cdd5cc0c3dab6f6a.
| YAML | apache-2.0 | adamdriscoll/poshtools,mgreenegit/poshtools,SpotLabsNET/poshtools,zbrad/poshtools,KevinHorvatin/poshtools,daviwil/poshtools,erwindevreugd/poshtools,YOTOV-LIMITED/poshtools,Microsoft/poshtools |
ab9ec0e4abde2c2cb999719ff43af2d3b5830f75 | .travis.yml | .travis.yml | language: go
go:
- 1.10.x
- 1.11.x
- tip
install:
- mkdir -p $GOPATH/src/github.com/prometheus $GOPATH/src/github.com/opencontainers
- cd $GOPATH/src/github.com/opencontainers && git clone https://github.com/opencontainers/runtime-spec && cd runtime-spec && git checkout fa4b36aa9c99e00c2ef7b5c0013c... | language: go
go:
- 1.10.x
- 1.11.x
install:
- mkdir -p $GOPATH/src/github.com/prometheus $GOPATH/src/github.com/opencontainers $GOPATH/src/github.com/coreos $GOPATH/src/github.com/godbus
- cd $GOPATH/src/github.com/opencontainers && git clone https://github.com/opencontainers/runtime-spec && cd runtime... | Add go-systemd dep for CI testing | Add go-systemd dep for CI testing
The underlying package changed and we need to depend on a specific
version now for testing with the CI
Signed-off-by: Michael Crosby <951f4c7b5d47e32d0112c78d14a98eaa23e6b5ef@gmail.com>
| YAML | apache-2.0 | containerd/cgroups |
216306ce2e35d09a45021c0c26416daaa2e967d2 | _config.yml | _config.yml | name: Ryan Davies - 📱 Engineer
description: iOS Engineer @ notonthehighstreet.com
meta_description: "Ryan Davies, iOS Engineer at notonthehighstreet.com. Blogging about iOS, Mac, and tvOS development – all things Swift and Objective-C."
theme: minima
markdown: kramdown
highlighter: rouge
gems: [jekyll-paginate]
pagi... | name: Ryan Davies - 📱 Engineer
description: iOS Engineer @ notonthehighstreet.com
meta_description: "Ryan Davies, iOS Engineer at notonthehighstreet.com. Blogging about iOS, Mac, and tvOS development – all things Swift and Objective-C."
theme: minima
markdown: kramdown
highlighter: rouge
gems: [jekyll-paginate]
pagi... | Change domain name to iotize.github.io | Change domain name to iotize.github.io
| YAML | mit | iotize/iotize.github.io |
b2c7d861fb096638961bbf4687483e95c5e43342 | .travis.yml | .travis.yml | language: ruby
services: mongodb
rvm:
- 2.0.0
- 1.9.3
- 1.8.7
gemfile:
- Gemfile
- Gemfile.mongoid-two
| language: ruby
services: mongodb
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
gemfile:
- Gemfile
- Gemfile.mongoid-two
| Test for 1.9.2, 1.9.3, and 2.0.0 | Test for 1.9.2, 1.9.3, and 2.0.0
| YAML | mit | bezugen/mongoid_alize,pranav-g10/mongoid_alize,burgalon/mongoid_alize,kayakyakr/mongoid_alize,pranav-g10/mongoid_alize |
49fbceee7ee2e28a82db16c1c78ed0cf90376b8c | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
script: "bundle exec rake"
| language: ruby
rvm:
- 2.0.0
- 2.3.3
- 2.4.0
script: "bundle exec rake"
| Enable newer ruby versions and disable deprecated 1.9.3 | Enable newer ruby versions and disable deprecated 1.9.3
| YAML | mit | cantino/reckon,cantino/reckon |
5d8b3d35f3b9605bd0aa42c37a31c9188578a41f | _config.yml | _config.yml | # Site settings
title: Hydra-In-a-Box
email: hybox-contact@googlegroups.com
description: > # this means to ignore newlines until "baseurl:"
Digital Public Library of America, Stanford University, and DuraSpace,
with funding from the Institute of Museum and Library Services,
are working together to build a next-ge... | # Site settings
title: Hydra-In-a-Box
email: hybox-contact@googlegroups.com
description: > # this means to ignore newlines until "baseurl:"
Digital Public Library of America, Stanford University, and DuraSpace,
with funding from the Institute of Museum and Library Services,
are working together to build a next-ge... | Change configuration to post to correct hostname | Change configuration to post to correct hostname
| YAML | apache-2.0 | hybox/hybox.github.io,hybox/hybox.github.io |
8b583322e88de437e2da5393cee62c30cf52f423 | .travis.yml | .travis.yml | language: php
php:
- 7.0
cache:
directories:
- vendor
- $HOME/.composer/cache
sudo: required
dist: trusty
install:
- chmod a+x $TRAVIS_BUILD_DIR/install.sh
- $TRAVIS_BUILD_DIR/install.sh
script:
- php codecept run
| language: php
php:
- 7.0
cache:
directories:
- vendor
- $HOME/.composer/cache
sudo: required
dist: trusty
install:
- chmod a+x $TRAVIS_BUILD_DIR/install.sh
- $TRAVIS_BUILD_DIR/install.sh
script:
- chmod a+rx -R $TRAVIS_BUILD_DIR
- cd $TRAVIS_BUILD_DIR && ./vendor/bin/codecept run
| Make build directory readable/executable to all users (for Travis). | Make build directory readable/executable to all users (for Travis).
| YAML | agpl-3.0 | SlvrEagle23/AzuraCast,AzuraCast/AzuraCast,AzuraCast/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast,AzuraCast/AzuraCast,AzuraCast/AzuraCast,SlvrEagle23/AzuraCast |
7502a27c344393a7e391924cf30f03f380058482 | _config.yml | _config.yml | # Site settings
title: NewMe
header-img: img/home-bg.png
email: dom.mckellar@gmail.com
copyright_name: Dom-Mc
description: > # this means to ignore newlines until "baseurl:"
The infancy of life in web development
baseurl: "" # the subpath of your site, e.g. /blog
twitter_username: _dom_mc
github_username: Dom-Mc
lea... | # Site settings
title: NewMe
header-img: img/home-bg.jpeg
email: dom.mckellar@gmail.com
copyright_name: Dom-Mc
description: > # this means to ignore newlines until "baseurl:"
The infancy of life in web development
baseurl: "" # the subpath of your site, e.g. /blog
twitter_username: _dom_mc
github_username: Dom-Mc
le... | Change header image to bay bridge | Change header image to bay bridge
| YAML | mit | Dom-Mc/Dom-Mc.github.io,Dom-Mc/Dom-Mc.github.io,Dom-Mc/Dom-Mc.github.io,Dom-Mc/Dom-Mc.github.io |
cdff9a228f7031937656540147d317df1520338a | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
env:
-
- ACTION_MAILER_VERSION=3.0.0
- ACTION_MAILER_VERSION=3.1.0
- ACTION_MAILER_VERSION=3.2.0
- ACTION_MAILER_VERSION=4.0.0
- ACTION_MAILER_VERSION=4.1.0
- ACTION_MAILER_VERSION=4.2.0
script: "bundle exec rake spec"
branches:
only:
- master
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
env:
-
- ACTION_MAILER_VERSION=3.0.0
- ACTION_MAILER_VERSION=3.1.0
- ACTION_MAILER_VERSION=3.2.0
- ACTION_MAILER_VERSION=4.0.0
- ACTION_MAILER_VERSION=4.1.0
- ACTION_MAILER_VERSION=4.2.0
script: "bundle exec rake spec"
branches:
only:
- mast... | Add test in CI for ruby 2.2 | Add test in CI for ruby 2.2
| YAML | mit | dtaniwaki/mandriller |
2ed6b173e173edb33e78c58037c2d2c0ab3621ce | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "5"
- "4"
before_script:
- npm install -g gulp karma-cli
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
branches:
only:
- master
| language: node_js
node_js:
- "6"
- "5"
- "4"
addons:
firefox: "latest"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
branches:
only:
- master
| Add Firefox in Travis CI. | Add Firefox in Travis CI.
| YAML | mit | gluons/trapjs2 |
6cd0177f348766ff9785f67cecca7bd5e8e539e4 | _config.yml | _config.yml | # Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
relative_permalinks: true
# Setup
title: Zhiyi's Blog
tagline: 'Great things take time'
description: 'I am Zhiyi Sun<a href="https://google.com/+ZhiyiSun" target=... | # Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
# Setup
title: Zhiyi's Blog
tagline: 'Great things take time'
description: 'I am Zhiyi Sun<a href="https://google.com/+ZhiyiSun" target="_blank">(+zhiyisun)</a>. ... | Remove relative permalinks which is not supported by github and Jekyll. | Remove relative permalinks which is not supported by github and Jekyll.
| YAML | mit | zhiyisun/zhiyisun.github.io |
b4c956d3921e7f4197ddeb00d312c76b9abd8e14 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 1.8.7
bundler_args: --path=vendor
| language: ruby
rvm:
- 1.8.7
bundler_args: --path=vendor
| Remove Ruby 1.9.3 from CI build | Remove Ruby 1.9.3 from CI build | YAML | apache-2.0 | arnetogo/opennebula-puppet-module,endocode/opennebula-puppet-module,rwaffen/opennebula-puppet-module,rwaffen/opennebula-puppet-module,pdrakeweb/opennebula-puppet-module,arnetogo/opennebula-puppet-module,endocode/opennebula-puppet-module,arnetogo/opennebula-puppet-module,mattthias/opennebula-puppet-module,pdrakeweb/open... |
d8ff46d57c8271b0ae881ddbd88788d11504b07e | .travis.yml | .travis.yml | language: ruby
notifications:
email: false
rvm:
- 2.0.0
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
| language: ruby
addons:
code_climate:
repo_token: 2df66540ac895ba609ec19665a233e73dc7b4d3f3e0c788c4b99ed974765d4bf
notifications:
email: false
rvm:
- 2.0.0
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
| Add CodeClimate repo token, for test coverage reports | Add CodeClimate repo token, for test coverage reports
| YAML | mit | mntnorv/puttext |
ad7ee0e575316c7b72f2d5e91b0c1d5ce61bf73e | .travis.yml | .travis.yml | language: node_js
node_js:
- 'node'
before_install:
- rvm install 2.2.2
install:
- npm install --global awesome-lint
- gem install awesome_bot
script:
# - awesome-lint README.md
- awesome_bot README.md --allow-redirect --allow-dupe
| language: node_js
node_js:
- 'node'
before_install:
- rvm install 2.2.2
install:
- npm install --global awesome-lint
- gem install awesome_bot
script:
# - awesome-lint README.md
- awesome_bot README.md --allow-redirect --allow-dupe
notifications:
email:
on_failure: always
| Add email notifications to failed builds | Add email notifications to failed builds | YAML | cc0-1.0 | carlosperate/awesome-microbit,carlosperate/awesome-microbit |
185ce44329df6880f4084a24384b705ce815fd4a | .travis.yml | .travis.yml | language: smalltalk
sudo: false
os: linux
smalltalk:
- GemStone-3.5.0
- Pharo-5.0
- Squeak-5.1
- GemStone-2.4.8
- GemStone-3.1.0.6
- GemStone-3.2.17
- GemStone-3.3.9
- GemStone-3.4.3
- Pharo-3.0
- Pharo-4.0
- Pharo-6.0
- Pharo-6.1
- Squeak-4.5
- Squeak-4.6
- Squeak-5.0
- Squeak-trunk
... | language: smalltalk
sudo: false
os: linux
smalltalk:
- GemStone-3.5.0
- Pharo-5.0
- Squeak-5.1
- GemStone-2.4.8
- GemStone-3.1.0.6
- GemStone-3.2.17
- GemStone-3.3.9
- GemStone-3.4.3
- Pharo-3.0
- Pharo-4.0
- Pharo-6.0
- Pharo-6.1
- Squeak-5.0
- Squeak-5.1
- Squeak-5.2
- Squeak-5.3
-... | Drop CI for squeak4.x, add support for all current 5.x | Drop CI for squeak4.x, add support for all current 5.x | YAML | mit | Metacello/metacello |
2ebb9f5e65b9b5f8a52e83aa55c756b34d713c8b | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# ... | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# ... | Change the google analytics id. | Change the google analytics id.
| YAML | mit | EmmanuelCorrales/EmmanuelCorrales.github.io,EmmanuelCorrales/blog.emmanuelcorrales.com,EmmanuelCorrales/blog.emmanuelcorrales.com |
ae8005ed2cd6857d085a0b36ea29fdcecfed1bc2 | _config.yml | _config.yml | # Website settings
title: 1upnote
tagline: Web design, development and UX
description: >-
1upnote is a blog that focuses on standards-based design techniques,
useful UX information and expert tips for building effective user interfaces.
baseurl: ''
url: https://1upnote.com
permalink: /:title
timezone: Asia/Seoul
ve... | # Website settings
title: 1upnote
tagline: Web design, development and UX
description: >-
1upnote is a blog that focuses on standards-based design techniques,
useful UX information and expert tips for building effective user interfaces.
baseurl: ''
url: https://1upnote.com
permalink: /:title
timezone: Asia/Seoul
ve... | Switch from Pygments to Rouge for syntax highlight | Switch from Pygments to Rouge for syntax highlight
| YAML | mit | woneob/1upnote,woneob/woneob.github.io,woneob/woneob.github.io,woneob/1upnote,woneob/1upnote,woneob/woneob.github.io |
54a7d98755af8b54b8b36402b66a1ecbd8d3afda | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For te... | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For te... | Update blog title and flavour text | Update blog title and flavour text
| YAML | mit | FTLam11/FTLam11.github.io,FTLam11/FTLam11.github.io,FTLam11/FTLam11.github.io |
49f495a53a12f6125af9c8226e770e56222853ed | .travis.yml | .travis.yml | language: python
python:
- "3.4"
# command to install dependencies
# install: "pip install -r requirements.txt"
# command to run tests
script: bash ./test.sh
env:
global:
- TESTMODULE: birthday.py
- GH_REPO: github.com/HHS-IntroProgramming/tests.git
| language: python
python:
- "3.7"
# command to install dependencies
# install: "pip install -r requirements.txt"
# command to run tests
script: bash ./test.sh
env:
global:
- TESTMODULE: birthday.py
- GH_REPO: github.com/Runpython-IntroProgramming/tests.git
| Update python version, organization name. | Update python version, organization name. | YAML | mit | HHS-IntroProgramming/Birthday-quiz,HHS-IntroProgramming/Birthday-quiz |
f0b528582e20d0075dc530251f4d4c4666f8eaa4 | .travis.yml | .travis.yml | env:
global:
- TERM=dumb
- secure: "ZDQTgoiKtNrUzqBTMGQFMji1fgBKJLnqQ1AzfHJbnF3xg2GtZ0gvJtDEVgD+nB7U6f0hdMDn4yc5Y5sPtEhreBFI5vdYqckUJssvjQM9jWbB4wmm1NjJHu7lcmTwGKnvkdrvCRDGLwErOq+7CLbAjjaghweG6F6ZmcSoaW/Slf0="
language: java
script: gradle -Djava.awt.headless=true clean check publishGhPages
branches:
only:... | env:
global:
- TERM=dumb
- secure: "ZDQTgoiKtNrUzqBTMGQFMji1fgBKJLnqQ1AzfHJbnF3xg2GtZ0gvJtDEVgD+nB7U6f0hdMDn4yc5Y5sPtEhreBFI5vdYqckUJssvjQM9jWbB4wmm1NjJHu7lcmTwGKnvkdrvCRDGLwErOq+7CLbAjjaghweG6F6ZmcSoaW/Slf0="
language: java
script: gradle -Djava.awt.headless=true clean check
after_success: gradle -Djava.awt... | Move the gh-pages publishing to the after_success stage | Move the gh-pages publishing to the after_success stage | YAML | isc | gsson/katydid |
f5961e1b07b83a9a66c5b34fe5fa29601f8608cd | .travis.yml | .travis.yml | # Use Travis's cointainer based infrastructure
sudo: false
dist: trusty
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the defaul... | # Use Travis's cointainer based infrastructure
sudo: false
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the defau... | Simplify Travis config and fix ChefDK 2.0 failures | Simplify Travis config and fix ChefDK 2.0 failures
| YAML | apache-2.0 | opscode-cookbooks/enterprise-chef-common,chef-cookbooks/enterprise-chef-common,opscode-cookbooks/enterprise-chef-common,chef-cookbooks/enterprise-chef-common |
c541606333aa77d1c0ffbbf499ba3e63ecbe8d2c | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
notifications:
irc:
channels:
- "irc.freenode.org#sailsjs"
on_success: never
on_failure: always
template:
- "Build by %{author} has failed:"
- "Git Info: %{branch} - %{commit}"
- "Travis states: %{message}"
- "... | language: node_js
node_js:
- "0.10"
- "0.12"
notifications:
irc:
channels:
- "irc.freenode.org#sailsjs"
on_success: never
on_failure: always
template:
- "Build by %{author} has failed:"
- "Git Info: %{branch} - %{commit}"
- "Travis states: %{message}"
- "Build Detai... | Remove iojs from Travis config Microtime can't be built with it and just stalls Travis until it fails | Remove iojs from Travis config
Microtime can't be built with it and just stalls Travis until it fails
| YAML | mit | jianpingw/sails,hellowin/sails,jsisaev1/sails,krishnaglick/sails,listepo/sails,zand3rs/sails,hokkoo/sails,Benew/sails,JumpLink/sails,justsml/sails,t2013anurag/sails,ctartist621/sails,AnyPresence/sails,jenalgit/sails,Hanifb/sails,winlolo/sails,haavardw/sails,apowers313/sails,cazulu/sails,saronwei/sails,janladaking/sails... |
05c04a24a2131ad591352910bd71b8fd0acb958e | _config.yml | _config.yml | title: loustler 블로그
email: dev.loustler@gmail.com
description: |
아직은 모르는 것이 많고 부족한 주니어 개발자
모르는 것이 많기에 항상 학구열에 불타는 개발자
baseurl: "" # the subpath of your site, e.g. /blog
url: "http://loustler.io" # the base hostname & protocol for your site
timezone: Asia/Seoul
repository: loustler/loustler.github.io
permalink: /:... | title: loustler 블로그
email: dev.loustler@gmail.com
description: |
아직은 모르는 것이 많고 부족한 주니어 개발자
모르는 것이 많기에 항상 학구열에 불타는 개발자
baseurl: "" # the subpath of your site, e.g. /blog
url: http://loustler.io # the base hostname & protocol for your site
timezone: Asia/Seoul
repository: loustler/loustler.github.io
permalink: /:ca... | Remove quote and change permalink on configuration. | Remove quote and change permalink on configuration.
| YAML | apache-2.0 | loustler/loustler.github.io,loustler/loustler.github.io,loustler/loustler.github.io |
b1be6b60101baef000a0ba70ccd7c04a46892068 | .travis.yml | .travis.yml | language: c++
compiler:
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-6; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-6" CC="gcc-6"; fi
- $CXX --version
- sudo apt-get i... | language: c++
compiler:
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-6; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-6" CC="gcc-6"; fi
- sudo apt-get install libcppunit-dev... | Install FindGLEW to local cmake modules | Install FindGLEW to local cmake modules
| YAML | mit | namelessvoid/qrwar,namelessvoid/qrwar |
45376f350bbdaaa1bce191535401e9dcff5b2a07 | .travis.yml | .travis.yml | sudo: required
language: node_js
node_js:
- '8'
cache:
directories:
- node_modules # NPM packages
addons:
chrome: stable
script:
- 'if [ "${D3VER}" = "4" ]; then npm i "d3@^4"; npm list d3; fi'
- 'if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then grunt ci; else grunt ci-pull; fi'
env:
global:
- secure... | language: node_js
node_js:
- '11'
cache:
directories:
- node_modules # NPM packages
script:
- 'if [ "${D3VER}" = "4" ]; then npm i "d3@^4"; npm list d3; fi'
- 'if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then grunt ci; else grunt ci-pull; fi'
env:
global:
- secure: Kt+5IJDJRVwr28xRnmR5YDsJceXDcDR21/JUBf... | Update Node to v11, cleanup Chrome related settings | Update Node to v11, cleanup Chrome related settings
| YAML | apache-2.0 | dc-js/dc.js,dc-js/dc.js,dc-js/dc.js,dc-js/dc.js,dc-js/dc.js |
3619e5f4a17f237643ef02bb15c7787643d8c3e2 | .travis.yml | .travis.yml | bundler_args: "--without development production"
rvm:
- ree
- 1.9.2
before_script:
- "sudo aptitude -q -y install firefox"
- "sudo cp config/ci/xvfb /etc/init.d/xvfb"
- "sh -e /etc/init.d/xvfb start"
- "sass --update public/stylesheets/sass/:public/stylesheets/"
- "cp config/database.yml.example config/d... | bundler_args: "--without development production"
rvm:
- ree
- 1.9.2
before_script:
- ruby -e "system('rm Gemfile.lock') if RUBY_VERSION.include?('1.9')"
- "sudo aptitude -q -y install firefox"
- "sudo cp config/ci/xvfb /etc/init.d/xvfb"
- "sh -e /etc/init.d/xvfb start"
- "sass --update public/stylesheets... | Add a remove of Gemfile.lock for the 1.9 build. | Add a remove of Gemfile.lock for the 1.9 build.
| YAML | agpl-3.0 | SuperTux88/diaspora,Muhannes/diaspora,jhass/diaspora,diaspora/diaspora,despora/diaspora,spixi/diaspora,despora/diaspora,KentShikama/diaspora,Flaburgan/diaspora,spixi/diaspora,geraspora/diaspora,geraspora/diaspora,Flaburgan/diaspora,spixi/diaspora,Flaburgan/diaspora,diaspora/diaspora,KentShikama/diaspora,Flaburgan/diasp... |
9dd7828c8d0c3548d205ef6d2bce027cfa44285f | .travis.yml | .travis.yml | language: python
cache: pip
script:
- tox
install:
- pip install tox tox-travis
matrix:
include:
- python: "2.7"
- python: "3.5"
- python: "3.6"
- python: "3.7"
- python: "3.8"
- python: "pypy2.7-6.0"
- python: "pypy3.5-6.0"
# Documentation
- python: "3.8"
env: TOXEN... | language: python
cache: pip
script:
- tox
install:
- pip install tox tox-travis
matrix:
include:
- python: "2.7"
- python: "3.5"
- python: "3.6"
- python: "3.7"
- python: "3.8"
- python: "pypy"
- python: "pypy3"
# Documentation
- python: "3.8"
env: TOXENV=docs
- ... | Use Travis alias to latest PyPy releases | Use Travis alias to latest PyPy releases
Helps ensure factory_boy remains compatible as new PyPy releases roll
out.
| YAML | mit | FactoryBoy/factory_boy |
4f3d80ef4c14983f458a7e97408c7e4e7a59d8c1 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
sudo: required
before_install:
- "curl -L http://git.io/ejPSng | /bin/sh"
| language: node_js
node_js:
- "0.10"
sudo: required
before_install:
- "curl -L http://git.io/ejPSng | /bin/sh"
- "rm -r node.js/benchmark/ node.js/deps/ node.js/doc/ node.js/src/ node.js/test/ node.js/tools/"
| Make node.js smaller so that testing can finish in time. | Make node.js smaller so that testing can finish in time.
| YAML | bsd-3-clause | peerlibrary/meteor-util |
d912f8292a10e48be848af5bf9ddae8459966386 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
env:
- DB=sqlite
- DB=mysql
- DB=postgres
before_script:
- "cp config/database.$DB.travis.yml config/database.yml; fi"
- sh -c "if [ '$DB' = 'postgres' ]; then psql -c 'create database firefly_test;' -U postgres; fi"
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'create da... | language: ruby
rvm:
- 1.9.2
env:
- DB=sqlite
- DB=mysql
- DB=postgres
before_script:
- "cp config/database.$DB.travis.yml config/database.yml"
- sh -c "if [ '$DB' = 'postgres' ]; then psql -c 'create database firefly_test;' -U postgres; fi"
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'create databa... | Fix mistake in cp before_script command | Fix mistake in cp before_script command
| YAML | mit | ariejan/firefly,ariejan/firefly,hayksaakian/rxlcc,ariejan/firefly,codehire/cdh.re,cupcicm/firefly,cupcicm/firefly |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.