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 |
|---|---|---|---|---|---|---|---|---|---|
389d9788186b31919fc9eec844eaa2953721e651 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "3.3" # ST3 uses this, but we're only running flake8 anyway
install:
- pip install flake8==3.3.0
script:
- flake8 .
| sudo: false
language: python
python:
- "3.3" # ST3 uses this internally, so we do as well for flake8
# branches:
# except:
# - /^v\d/
install:
- pip install flake8==3.3.0
# fetch syntax testing binary
- wget --content-disposition https://download.sublimetext.com/latest/dev/linux/x64/syntax_tests
- t... | Add syntax testing to CI | Add syntax testing to CI
(Requires the 3157+ binary because it previously returned random
non-zero exit codes even when tests passed.)
| YAML | mit | SublimeText/AAAPackageDev,SublimeText/AAAPackageDev,SublimeText/PackageDev |
3011ad9c8b474f73ede061468c44239fd90be9d6 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
install: "pip install -r requirements.txt"
script: nosetests
| language: python
python:
- "2.6"
- "2.7"
install: "pip install -r requirements.txt"
sudo: false
script: nosetests
| Switch to new build infrastructure | Switch to new build infrastructure
| YAML | bsd-3-clause | darkpixel/openmesher,darkpixel/openmesher |
192326f7df0c37c7ebfcb6c09670ca26ec4b5539 | .travis.yml | .travis.yml | language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
install:
- "pip install -r requirements.txt"
- "pip install coveralls"
# command to run tests
script:
- coverage run --source="classes/", "tests/" -m py.test
after_success:
- coveralls
| language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
install:
- "pip install -r requirements.txt"
- "pip install coveralls"
# command to run tests
script:
coverage run --source="classes" -m py.test
after_success:
coveralls
| Rewrite script section's coverage command | Rewrite script section's coverage command
| YAML | mit | peterpaints/room-allocator |
ad77314fc473550815db89d12ba5685ca5e7ca5f | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not ... | Drop Oracle JDK 8, add OpenJDK 13. | Drop Oracle JDK 8, add OpenJDK 13. | YAML | apache-2.0 | apache/commons-geometry |
3d78bba218636b1a3d61e5f3222f777b47a8924a | .travis.yml | .travis.yml | language: go
go:
- 1.5.4
- 1.6.3
env:
global:
- GO15VENDOREXPERIMENT=1
matrix:
- ES_VERSION=1.0.3 GROOVY_VER=2.0.0
- ES_VERSION=1.1.2 GROOVY_VER=2.0.0
- ES_VERSION=1.2.1 GROOVY_VER=2.2.0
- ES_VERSION=1.3.4
- ES_VERSION=1.4.4
- ES_VERSION=1.5.2
- ES_VERSION=1.6.0
- ES_VERSIO... | language: go
go:
- 1.5.4
- 1.6.3
- 1.7.1
env:
global:
- GO15VENDOREXPERIMENT=1
matrix:
- ES_VERSION=1.3.4
- ES_VERSION=1.4.4
- ES_VERSION=1.5.2
- ES_VERSION=1.6.0
- ES_VERSION=1.7.0
before_script:
- mkdir ${HOME}/elasticsearch
- wget https://download.elastic.co/elasticsearch/ela... | Add go 1.7, drop older versions of ES | Add go 1.7, drop older versions of ES
| YAML | bsd-3-clause | OwnLocal/goes |
cb36693d68976fefce897eb3336b561855aa6950 | .travis.yml | .travis.yml | ---
language: node_js
sudo: false
cache:
directories:
- node_modules
before_install:
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- npm test
| ---
language: node_js
sudo: false
cache:
directories:
- node_modules
before_install:
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- ember try:testall
| Use `ember try:testall` in Travis builds | Use `ember try:testall` in Travis builds
| YAML | mit | mike-north/ember-modal-dialog,systembugtj/ember-modal-dialog,corrspt/ember-modal-dialog,kellyselden/ember-modal-dialog,kagemusha/ember-modal-dialog,greyhwndz/ember-modal-dialog,samselikoff/ember-modal-dialog,oscarni/ember-modal-dialog,corrspt/ember-modal-dialog,samselikoff/ember-modal-dialog,kagemusha/ember-modal-dialo... |
4619e9d8190f19aac7c9e44f78d13710b7f2966a | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
env:
global:
- SYMFONY_PHPUNIT_DIR=$HOME/.phpunit-bridge
matrix:
fast_finish: true
include:
- php: 5.3
dist: precise
- php: 7.1
env: COMPOSER_FLAGS="--prefer-lowest" SYMFONY_DEPRECATION_HELPER=weak
- php: 5.6
e... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
env:
global:
- SYMFONY_PHPUNIT_DIR=$HOME/.phpunit-bridge
matrix:
fast_finish: true
include:
- php: 5.3
dist: precise
- php: 7.1
env: COMPOSER_FLAGS="--prefer-lowest" SYMFONY_DEPRECATION_HELPER=weak
- php: 5.6
e... | Increase memory limit for Composer | Increase memory limit for Composer
| YAML | mit | stof/StofDoctrineExtensionsBundle |
e1ac4299a6ca440a510907c579b21c338cc1aab4 | .travis.yml | .travis.yml | sudo: false
language: elixir
elixir:
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.0
jobs:
include:
- stage: deploy
otp_release: 19.3
script: skip
deploy:
provider: script
script: ./scripts/hexpub.sh
skip_cleanup: true
on:
tags: true
| sudo: false
language: elixir
elixir:
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.0
#jobs:
# include:
# - stage: deploy
# otp_release: 19.3
# script: skip
# deploy:
# provider: script
# script: ./scripts/hexpub.sh
# skip_cleanup: true
# on:
# tags: true
| Disable auto push to hex | Disable auto push to hex
| YAML | mit | slashmili/ex_syslogger |
000e1baa61fc1058b84238b14be860a385054adb | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '4'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
| language: node_js
node_js:
- '0.10'
- '4'
- '7'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
| Build with Node.js 7 on Travis CI. | Build with Node.js 7 on Travis CI.
| YAML | mit | bigeasy/expandable |
bbfbb9bcef41ee016859a4f3198d8a7880ce09d2 | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
env:
- RAILS_VERSION=""
- RAILS_VERSION="~>3.2.0"
- RAILS_VERSION="~>3.1.0"
- RAILS_VERSION="~>3.0.0"
- RAILS_VERSION="~>4.0.0"
- RAILS_VERSION="" MONETA_VERSION="~> 0.6.0"
- RAILS_VERSION="" MONETA_VERSION="~> 0.7.0"
matrix:
exclude:
- rvm: 1.8.... | ---
language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
env:
- RAILS_VERSION=""
- RAILS_VERSION="~>3.2.0"
- RAILS_VERSION="~>3.1.0"
- RAILS_VERSION="~>3.0.0"
- RAILS_VERSION="~>4.0.0"
- RAILS_VERSION="~>4.1.0"
- RAILS_VERSION="" MONETA_VERSION="~> 0.6.0"
- RAILS_VERSION="" MONETA_VERSION="~> 0.7.0"
matrix... | Add Rails 4.1.0 to the specs. | Add Rails 4.1.0 to the specs.
| YAML | mit | CloudVLab/rocket_pants,DamirSvrtan/rocket_pants,Pathgather/rocket_pants,michaelachrisco/rocket_pants,nikolai-b/rocket_pants,Dealermade/rocket_pants,Sutto/rocket_pants |
c78e2436f636fe0d1a87718945134392f231d7f8 | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- oraclejdk7
install: "./installViaTravis.sh"
script: "./buildViaTravis.sh"
cache:
directories:
- "$HOME/.gradle/caches/"
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_72c5bc9b2891_key -iv $encrypted_72c5bc9b2891_iv
-in gradle.properties.e... | language: java
sudo: false
jdk:
- oraclejdk7
install: "./installViaTravis.sh"
script: "./buildViaTravis.sh"
cache:
directories:
- "$HOME/.gradle/caches/"
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_72c5bc9b2891_key -iv $encrypted_72c5bc9b2891_iv
-in gradle.properties.e... | Fix path problem in Travis CI configuration | Fix path problem in Travis CI configuration
| YAML | apache-2.0 | nebula-plugins/gradle-warnings-plugin |
b38a319fe8b30bc226c6560c57f6b876623d7092 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
before_install:
- sudo sh -c "echo 'deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.8 main' >> /etc/apt/sources.list"
- wget -O - ... | sudo: required
dist: trusty
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
before_install:
- sudo sh -c "echo 'deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.8 main' >> /etc/apt/sources.list"
- wget -O - ... | Make sure llvm-config points to llvm-config-3.8 | Make sure llvm-config points to llvm-config-3.8
| YAML | mit | GeorgeKT/menhir-lang,GeorgeKT/menhir-lang,GeorgeKT/cobra-lang,GeorgeKT/cobra-lang |
cb8fba4087a055f162ac31a0aa73fc1af2d56859 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
env:
- DJANGO_VERSION=1.5.2
install:
- pip install -q Django==$DJANGO_VERSION --use-mirrors
- pip install coveralls --use-mirrors
- pip install mock --use-mirrors
- pip install south --use-mirrors
- pip install nose
script:
- python setup.py b... | language: python
python:
- "2.7"
- "3.3"
- "pypy"
env:
- DJANGO_VERSION=1.5.2
install:
- pip install -q Django==$DJANGO_VERSION --use-mirrors
- pip install coveralls --use-mirrors
- pip install mock --use-mirrors
- pip install south --use-mirrors
- pip install nose
script:
- pyth... | Package should be pypy compatibile | Package should be pypy compatibile
| YAML | mit | yetty/django-embed-video,mpachas/django-embed-video,mpachas/django-embed-video,yetty/django-embed-video,jazzband/django-embed-video,jazzband/django-embed-video |
af762921f09cf06e7ce9550c25d806a8deae612c | .travis.yml | .travis.yml | language: ruby
script: "bundle exec rake ci"
env:
- TRAVIS=true
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- rbx-2
matrix:
allow_failures:
- rvm: rbx-2
notifications:
irc:
channels:
- irc.freenode.org#mutant
on_success: never
on_failure: change
| language: ruby
script: "bundle exec rake ci"
env:
- TRAVIS=true
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- rbx-2
notifications:
irc:
channels:
- irc.freenode.org#mutant
on_success: never
on_failure: change
| Remove RBX from allowed failures | Remove RBX from allowed failures
| YAML | mit | nepalez/mutant,kbrock/mutant,backus/mutant,backus/mutest,tjchambers/mutant,backus/mutest |
3c8e74209c4479edd6d64837cc4bef243f81244a | .travis.yml | .travis.yml | language: ruby
rvm:
- jruby
- 2.0.0
- 2.1
- 2.2
- 2.3.0
env:
global:
- JRUBY_OPTS="--2.0"
gemfile:
- Gemfile
- gemfiles/active_record-rails40.gemfile
- gemfiles/active_record-rails41.gemfile
- gemfiles/active_record-rails42.gemfile
before_script:
- mysql -e 'create database sorcery_test;'
... | language: ruby
rvm:
- jruby
- 2.0.0
- 2.1
- 2.2
- 2.3.0
env:
global:
- JRUBY_OPTS="--2.0"
gemfile:
- Gemfile
- gemfiles/active_record-rails40.gemfile
- gemfiles/active_record-rails41.gemfile
- gemfiles/active_record-rails42.gemfile
before_script:
- mysql -e 'create database sorcery_test;'
... | Exclude ruby 2.0.0 and 2.1 on rails 5 | Exclude ruby 2.0.0 and 2.1 on rails 5
| YAML | mit | athix/sorcery,Sorcery/sorcery,Sorcery/sorcery,athix/sorcery,athix/sorcery,Sorcery/sorcery |
004808360ad7ca2c83bb6032adad1418d5c916bf | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
sudo: required
install: true
script: mvn clean verify
cache:
directories:
- $HOME/.m2 | language: java
jdk:
- openjdk11
sudo: required
install: true
script: mvn clean verify
cache:
directories:
- $HOME/.m2 | Change jdk for tycho maven builds to jdk11 | [releng] Change jdk for tycho maven builds to jdk11 | YAML | apache-2.0 | b2ihealthcare/snow-owl,b2ihealthcare/snow-owl,b2ihealthcare/snow-owl,b2ihealthcare/snow-owl |
7e3b8d71fa487cd51d110d8e114e2b94ae93f637 | .travis.yml | .travis.yml | language: go
before_install:
- go get -u github.com/golang/lint/golint
- rvm install 2.0.0
- gem install danger
- danger --verbose
go:
- tip
| os:
- osx
language: go
before_install:
- go get -u github.com/golang/lint/golint
- rvm install 2.0.0
- gem install danger
- danger --verbose
go:
- tip
| Use osx on travic ci since workflows always run on osx | Use osx on travic ci since workflows always run on osx
| YAML | mit | BenchR267/goalfred,BenchR267/goalfred |
004d2fdde601351f36333571361f718a5c4048e8 | .travis.yml | .travis.yml | language: java
matrix:
include:
- os: linux
jdk: oraclejdk8
- os: linux
services:
- docker
before_install:
- docker pull ibmcom/ibmjava:8-sdk
script:
- docker run -v `pwd`:/work ibmcom/ibmjava:8-sdk /bin/sh -c "cd work; ./mvnw clean test"
| language: java
matrix:
include:
- os: linux
jdk: oraclejdk8
- os: linux
services:
- docker
before_install:
- docker pull ibmcom/ibmjava:8-sdk
script:
- docker run -v `pwd`:/work ibmcom/ibmjava:8-sdk /bin/sh -c "cd work; java -version; ./mvnw clean test"
| Add java version output to J9 run | Add java version output to J9 run
| YAML | apache-2.0 | headius/invokebinder,headius/invokebinder |
c77463687d0995a472904295da51f14a6870e1c8 | .travis.yml | .travis.yml | language: java
before_install: cp -f .travis.settings.xml ~/.m2/settings.xml
install: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -nsu
jdk:
- openjdk8
- openjdk9
- openjdk10
- openjdk11
- openjdk12
- openjdk13
| language: java
before_install: cp -f .travis.settings.xml ~/.m2/settings.xml
install: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -nsu
jdk:
- openjdk8
- openjdk9
- openjdk10
- openjdk11
- openjdk12
- openjdk13
- openjdk14
- openjdk15
| Update Travis config to add newer Java versions | Update Travis config to add newer Java versions
| YAML | mit | iovation/launchkey-java,iovation/launchkey-java |
22f543048101e6621f33a43955076ee068862c74 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
branches:
only:
- master
before_install:
- git submodule update --init --recursive
install:
- sudo apt-get update -qq
- sudo apt-get install -qq libqt4-dev libqt4-private-dev
script:
- ./build.sh
| language: cpp
compiler:
- gcc
- clang
branches:
only:
- master
before_install:
- git submodule update --init --recursive
sudo: false
addons:
apt:
packages:
- libqt4-dev
- libqt4-private-dev
script:
- ./build.sh
| Migrate to container-based Travis infrastructure | Migrate to container-based Travis infrastructure | YAML | mit | sjinks/qt_eventdispatcher_epoll,sjinks/qt_eventdispatcher_epoll |
60e3c64dbb3f81350cdf5a48828c77bc275019cd | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: java
jdk:
- openjdk7
- oraclejdk8
- oraclejdk10
env:
- WLP_VERSION=18.0.0_01 WLP_LICENSE=L-CTUR-AVDTCN
- WLP_VERSION=18.0.0_02 WLP_LICENSE=L-CTUR-AYBK6Z
script:
- travis_wait mvn verify -Ponline-its -Dinvoker.streamLogs=true -DwlpVersion=$WLP_VERSION -DwlpLicens... | sudo: required
dist: trusty
language: java
jdk:
- openjdk7
- oraclejdk8
- oraclejdk9
env:
- WLP_VERSION=18.0.0_01 WLP_LICENSE=L-CTUR-AVDTCN
- WLP_VERSION=18.0.0_02 WLP_LICENSE=L-CTUR-AYBK6Z
script:
- travis_wait mvn verify -Ponline-its -Dinvoker.streamLogs=true -DwlpVersion=$WLP_VERSION -DwlpLicense... | Revert testing on Java 10 | Revert testing on Java 10
| YAML | apache-2.0 | WASdev/ci.ant |
277e7d48ae34232e5c6786f747cd9447860b1191 | .travis.yml | .travis.yml | language: cpp
compiler:
- clang
- gcc
env:
matrix:
- CC=clang
- CC=gcc
notifications:
irc:
channels:
- "irc.freenode.net#nupic-hackers"
webhooks: http://issues.numenta.org:8081/travis
before_install:
- if [ "$CC" = "gcc" ]; then export CXX=g++; fi
- if [ "$CC" = "clang" ]; then expor... | language: cpp
compiler:
- clang
- gcc
env:
matrix:
- CC=clang
- CC=gcc
notifications:
irc:
channels:
- "irc.freenode.net#nupic-hackers"
webhooks: http://issues.numenta.org:8081/travis
before_install:
- if [ "$CC" = "gcc" ]; then export CXX=g++; fi
- if [ "$CC" = "clang" ]; then expor... | Revert "Use 'make' instead of direct call to test binaries" | Revert "Use 'make' instead of direct call to test binaries" | YAML | agpl-3.0 | lscheinkman/nupic.core,Bemujo/https-github.com-numenta-nupic,subutai/nupic.core,utensil/nupic.core,numenta/htmresearch-core,rhyolight/nupic.core,neuroidss/nupic.core,breznak/nupic.core,numenta/htmresearch-core,brev/nupic.core,lscheinkman/nupic.core,subutai/nupic.core,rhyolight/nupic.core,numenta/nupic.core,subutai/nupi... |
f2b3c3211446241f99fd074c9a549ca1b727adcd | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
| language: node_js
node_js:
- "iojs"
- "0.12"
- "0.11"
- "0.10"
| Test node v0.12 and io.js in Travis | Test node v0.12 and io.js in Travis
| YAML | apache-2.0 | resin-io/resin-vcs |
1bf58feeef0355f5ca6c9ad678e54a8195f33eb8 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install coverage
- pip install codecov
# Command to run tests
script:
- coverage run tests.py
# Run coverage.io
after_success:
- bash <(curl -s https://codecov.io/bash)
- codecov
| language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install 'coverage<4'
- pip install codecov
# Command to run tests
script:
- coverage run tests.py
# Run coverage.io
after_success:
- bash <(curl -s https://codecov.io/bash)
- codecov
| Fix coverage won't work in TravisCI | Fix coverage won't work in TravisCI | YAML | mit | Keda87/python-quran-odoa |
b4a290c0d4df416355420828b25686036e51b1d3 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
script: make test REPORTER=spec
# travis encrypt [subdomain]:[api token]@[room id]
notifications:
email: false
campfire:
rooms:
secure: "ZFrIv0Gf8DkEOoq2IvmMAzr91Yc6une/FR2UlJ+rp2RBPbSglzpuM8Q6ktW6XsGaBe4QNsm1x5cxA1oSLtSzviIBSfsGnGwgOjAVEq9EPodv5XVn01BfKIzm1ZKw8ZnnvT... | language: node_js
node_js:
- "0.10"
script: make test REPORTER=spec
# travis encrypt [subdomain]:[api token]@[room id]
notifications:
email: false
slack:
secure: U+RtmtVJEzEoZf+/VVuon9qNC4GXKzXoTqdYThP57ZTzqoDAJDnuZ/qUrMGrMYpYg38ikxtK3qJhBMfffzHXc3KS9hcA7Ay/yPz4QiCBMy3M9EBPWt8iGP6n2T3KUw4WG/hSBUtnJqmwPdzRfVU... | Switch node SDK to Slack | Switch node SDK to Slack
| YAML | mit | adrusi/node-sdk,transloadit/node-sdk,transloadit/node-sdk |
c4b62d85bd82192ce8bee79955a6751d40c7278b | .travis.yml | .travis.yml | language: android
jdk: oraclejdk7
android:
components:
- build-tools-20.0.0
- android-20
- sysimg-20
- extra-android-support
licenses:
- android-sdk-license-bcbbd656
- android-sdk-license-5be876d5
- android-sdk-preview-license-52d11cd2
- '.*intel.+'
after_success:
- mvn clean cober... | language: android
android:
components:
- tools
- platform-tools
- build-tools-25.0.2
- android-25
- extra-android-m2repository
jdk:
- oraclejdk8
| Configure Travis for new api level. | Configure Travis for new api level.
| YAML | apache-2.0 | TapCard/TapCard |
db0ad47c579a20ea8c84565a16f7534dc5068863 | .travis.yml | .travis.yml | language: python
python:
- '3.5'
addons:
postgresql: "9.4"
install:
- pip install -r requirements.txt
- pip install coveralls
services:
- postgresql
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
- psql -c 'create database flask_test;' -U po... | language: python
python:
- '3.5'
addons:
postgresql: "9.4"
install:
- pip install -r requirements.txt
- pip install coveralls
services:
- postgresql
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
- psql -c 'create database flask_test;' -U po... | Install in develop mode for testing | Install in develop mode for testing | YAML | isc | textbook/flask-forecaster,textbook/flask-forecaster |
6eae7605ed88ce894bd1cb3a8907403b9cb1cc97 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
before_install:
- composer self-update
- composer install --dev -n --prefer-source
script:
- ./vendor/bin/phpunit
after_script:
- CODECLIMATE_REPO_TOKEN=5eecaf38fad60eb4fd578e492b7cc4a877cb236802c1159dfa12ec15fb88e952 ./vendor/bin/test-reporter
| language: php
php:
- 5.3
- 5.4
- 5.5
before_install:
- composer self-update
- composer install --dev -n --prefer-source
script:
- ./vendor/bin/phpunit
after_script:
- CODECLIMATE_REPO_TOKEN="5eecaf38fad60eb4fd578e492b7cc4a877cb236802c1159dfa12ec15fb88e952" ./vendor/bin/test-reporter --stdout > codecli... | Send clover to CodeClimate via curl | Send clover to CodeClimate via curl
| YAML | mit | masterzen/slim-unit-testing-example,masterzen/slim-unit-testing-example,there4/slim-unit-testing-example,there4/slim-unit-testing-example |
4f5a889ea96b1e814119de67433b8e3efa9750ae | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
env:
- DJANGO_VERSION=1.8.*
- DJANGO_VERSION=1.9.*
- DJANGO_VERSION=1.10.*
- DJANGO_VERSION=1.11*
install:
- "pip install -r requirements.txt"
- "pip install Django==$DJANGO_VERSION"
script: "python src/runtests.py"
sudo: false
| language: python
python:
- "2.7"
- "3.4"
env:
- DJANGO_VERSION=1.8.*
- DJANGO_VERSION=1.9.*
- DJANGO_VERSION=1.10.*
- DJANGO_VERSION=1.11a1
install:
- "pip install -r requirements.txt"
- "pip install Django==$DJANGO_VERSION"
script: "python src/runtests.py"
sudo: false
| Fix Django 1.11 Travis config | Fix Django 1.11 Travis config
| YAML | mit | jjkester/django-auditlog,kbussell/django-auditlog,Zmeylol/auditlog,chris-griffin/django-auditlog |
224601d9d102ec8f0f892c56d885c581e9953fdd | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
cache:
directories:
- $HOME/.m2 | language: java
jdk:
- oraclejdk7
script:
- mvn clean install -Dmaven.javadoc.skip=false
cache:
directories:
- $HOME/.m2 | Enable javadoc to verify that doclint is happy | Enable javadoc to verify that doclint is happy | YAML | apache-2.0 | ferstl/depgraph-maven-plugin |
00b833792e1d231fa77f767fed009f0bb2983b53 | .travis.yml | .travis.yml | language: elixir
dist: bionic
elixir:
- "1.10.3"
- "1.11.2"
otp_release: 23.0
addons:
apt:
packages:
- libzmq3-dev
- libsqlite3-dev
install:
- pip install --user virtualenv
- virtualenv ~/test_ielixir
- source ~/test_ielixir/bin/activate
- pip install pip --upgrade
- pip install tornad... | language: elixir
dist: bionic
elixir:
- "1.10.3"
- "1.11.2"
otp_release: 23.0
env:
- PYTHON_VERSION=`which python2.7`
- PYTHON_VERSION=`which python3.6`
addons:
apt:
packages:
- libzmq3-dev
- libsqlite3-dev
install:
- pip install --user virtualenv
- virtualenv -p $PYTHON_VERSION ~/test_i... | Test for python2.7 and python3.6 | Test for python2.7 and python3.6
| YAML | mit | pprzetacznik/ielixir |
fb6f88c4831d9ccc52750b6a23c544f81378b2fe | .travis.yml | .travis.yml | dist: xenial
language: python
cache: pip
python:
- 3.6
- 3.7
- 3.8
- pypy3
env:
- DJANGO=1.11
- DJANGO=2.2
- DJANGO=3.0
- DJANGO=master
jobs:
fast_finish: true
allow_failures:
- env: DJANGO=master
include:
- python: 3.6
env: TOXENV=qa
- stage: deploy
env:
python: 3.6
... | dist: xenial
language: python
cache: pip
python:
- 3.6
- 3.7
- 3.8
- pypy3
env:
- DJANGO=1.11
- DJANGO=2.2
- DJANGO=3.0
- DJANGO=master
jobs:
fast_finish: true
allow_failures:
- env: DJANGO=master
include:
- python: 3.6
env: TOXENV=qa
- stage: deploy
env:
python: 3.6
... | Fix faulty upstream PyPI repository name | Fix faulty upstream PyPI repository name | YAML | mit | jazzband/django-axes |
2d5fc968b0de6640d543335e3cedb6d4ba98a933 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
| language: node_js
node_js:
- "iojs"
- "0.12"
- "0.11"
- "0.10"
| Test node v0.12 and io.js in Travis | Test node v0.12 and io.js in Travis
| YAML | apache-2.0 | resin-io/resin-image-fs |
fec48cb4e642dfcd62bbdae144f2496a4e43fd0f | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.12"
- "0.10"
- "0.8"
- "4"
- "iojs"
before_install:
- "npm install -g npm@1.4.x"
script:
- "npm run test-travis"
after_script:
- "npm install coveralls@2.11.x && cat coverage/lcov.info | coveralls"
matrix:
fast_finish: true
| sudo: false
language: node_js
node_js:
- "0.12"
- "0.10"
- "4"
- "iojs"
script:
- "npm run test-travis"
after_script:
- "npm install coveralls@2.11.x && cat coverage/lcov.info | coveralls"
matrix:
fast_finish: true
| Remove NPM hack and old npm | [ci] Remove NPM hack and old npm
| YAML | mit | pzarudnii/pre-commit,observing/pre-commit,observing/pre-commit,pzarudnii/pre-commit |
aa8072a9d0e3451803e90fae58dd9ce923c70d28 | .travis.yml | .travis.yml | # Make sure we run in the docker container
sudo: false
language: c
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
# Libraries needed to build cross compiler
- libgmp-dev
- libmpfr-dev
# Needed to build the ISO
... | # Make sure we run in the docker container
sudo: false
language: c
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
# Libraries needed to build cross compiler
- libgmp-dev
- libmpfr-dev
# Needed to build the ISO
... | Include clang package for scan-build | Include clang package for scan-build
| YAML | mit | iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth |
76be39a20414cb5af2c32b4c9cc30f5b76a79bb5 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.9.x
- 1.10.x
- 1.11.x
- 1.12.x
- tip
matrix:
allow_failures:
- go: tip
install:
- go get github.com/jonboulle/clockwork
- go get github.com/onsi/ginkgo
- go get github.com/onsi/gomega
- go get github.com/pkg/errors
- go get github.com/caio/go-tdigest
- go ... | sudo: false
language: go
go:
- 1.11.x
- 1.12.x
- tip
matrix:
allow_failures:
- go: tip
env:
- GO111MODULE=on
go_import_path: github.com/airbrake/gobrake
| Use go mod to install deps | Use go mod to install deps
| YAML | mit | airbrake/gobrake |
cb6f470e8ddd8b2ddbaca8df9e078decb319040f | .travis.yml | .travis.yml | language: go
go:
- 1.4
env:
global:
- MYSQL_FLAVOR=MariaDB
matrix:
- MAKE_TARGET=unit_test
- MAKE_TARGET=queryservice_test
- MAKE_TARGET=small_integration_test
- MAKE_TARGET=medium_integration_test
- MAKE_TARGET=large_integration_test
- MAKE_TARGET=java_vtgate_client_test
- MAKE_TA... | language: go
env:
global:
- MYSQL_FLAVOR=MariaDB
matrix:
- MAKE_TARGET=unit_test
- MAKE_TARGET=queryservice_test
- MAKE_TARGET=small_integration_test
- MAKE_TARGET=medium_integration_test
- MAKE_TARGET=large_integration_test
- MAKE_TARGET=java_vtgate_client_test
- MAKE_TARGET=unit_te... | Revert "Travis: Bump Go to v1.4" | Revert "Travis: Bump Go to v1.4"
This reverts commit ac2028fa98d0ed077262d34577fcebcfcf982bcb.
| YAML | apache-2.0 | ptomasroos/vitess,tirsen/vitess,kmiku7/vitess-annotated,netroby/vitess,yaoshengzhe/vitess,kmiku7/vitess-annotated,AndyDiamondstein/vitess,nurblieh/vitess,atyenoria/vitess,alainjobart/vitess,alainjobart/vitess,mlc0202/vitess,AndyDiamondstein/vitess,enisoc/vitess,yaoshengzhe/vitess,mattharden/vitess,tirsen/vitess,dcadevi... |
7e5328b6364b564d0dfcfa5642f8a3a510b763db | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "5"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
| Add nodejs-0.10, 0.12 to TravisCI targets | Add nodejs-0.10, 0.12 to TravisCI targets
| YAML | mit | koichik/node-tunnel |
b839d03476a9c12186eacedc87ac0445c76b9b8b | .travis.yml | .travis.yml | language: python
before_install: pip install tox
script: tox
| language: python
before_install: pip install tox
env:
- TOXENV=py27-A
- TOXENV=py27-B
script: tox -e $TOXENV
| Split Travis tests per tox env. | Split Travis tests per tox env.
| YAML | mit | iurisilvio/Flask-SQLAlchemy-Cache |
00fef5b807651f9c6fb2383b16a6ec1e908419ad | .travis.yml | .travis.yml | language: java
sudo: false
matrix:
include:
- jdk: openjdk8
- jdk: oraclejdk8
- jdk: oraclejdk9
- jdk: oraclejdk10
- jdk: openjdk10
- jdk: openjdk11
- os: osx
osx_image: xcode9.2
env: JAVA_HOME=$(/usr/libexec/java_home)
script: ./build.sh -Dexist.autodeploy=off -Dtest.haltonerr... | language: java
sudo: false
matrix:
include:
- jdk: openjdk8
- jdk: oraclejdk8
- jdk: openjdk9
- jdk: oraclejdk9
- jdk: openjdk10
- jdk: oraclejdk10
- jdk: openjdk11
- os: osx
osx_image: xcode9.2
env: JAVA_HOME=$(/usr/libexec/java_home)
script: ./build.sh -Dexist.autodeploy=... | Add OpenJDK 9 to Travis-CI build | [feature] Add OpenJDK 9 to Travis-CI build
| YAML | lgpl-2.1 | RemiKoutcherawy/exist,RemiKoutcherawy/exist,RemiKoutcherawy/exist,RemiKoutcherawy/exist,RemiKoutcherawy/exist,RemiKoutcherawy/exist |
9e1f663588d0394fe691a8e3af9f860c82d91275 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
| Revert "JRuby env is failing on Travis, but works locally. Removing for now." | Revert "JRuby env is failing on Travis, but works locally. Removing for now."
This reverts commit 3db3ba644aa5c5bea71d4e73d922927a914e20d0.
| YAML | mit | tatey/porth |
b0367ba5c8c411ceb6f3d0eb9fa36e880f968bee | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.5.9
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
before_install:
- cd ..
- git clone https://github.com/neos/flow-development-collection.git
- cd flow-development-collection
- git checkout 2.0.0
- composer update --dev
- composer require ... | language: php
php:
- 5.5
- 5.5.9
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
before_install:
- cd ..
- git clone https://github.com/neos/flow-development-collection.git
- cd flow-development-collection
- git checkout 2.0.0
- composer update
- composer require codecl... | Remove --dev from composer update command | [TASK] Remove --dev from composer update command
| YAML | mit | rfyio/JWT |
2a1a5c8dbff7803a1236913726ce4bffbe666590 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
# command to install dependencies
install: "pip install tox"
# command to run tests
script: make test
| language: python
python:
- "2.7"
# command to install dependencies
install: "pip install tox"
# command to run tests
script:
- cp config-example.py config.py
- make test
| Create config.py before running make test | Create config.py before running make test
| YAML | mit | Yelp/love,Yelp/love,Yelp/love |
89ed64bfc1b5123f0d6824a50f1f25862487cf74 | .travis.yml | .travis.yml | 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
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Build with latest Node.js 5 on Travis CI. | Build with latest Node.js 5 on Travis CI.
| YAML | mit | bigeasy/compassion |
56e02c6586ae07469eafabdd98781742a9b0d0c4 | .travis.yml | .travis.yml | language: php
branches:
only:
- master
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
before_script:
- composer install
script:
- ./vendor/bin/codecept run --coverage-xml
after_script:
- ./vendor/bin/coveralls
| language: php
branches:
only:
- master
php:
- 5.6
- 7.0
- 7.1
before_script:
- composer install
script:
- ./vendor/bin/codecept run --coverage-xml
after_script:
- ./vendor/bin/coveralls
| Remove PHP 5.4 and 5.5 support from CI | Remove PHP 5.4 and 5.5 support from CI | YAML | apache-2.0 | edno/codeception-gherkin-param |
d23d00e9a1364c753e280466bce4211ae90f3675 | .travis.yml | .travis.yml | language: objective-c
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/a7cbe520877895f3154a
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: true # default: false
email:
on_... | language: objective-c
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/a7cbe520877895f3154a
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: true # default: false
email:
on_... | Enable caching for Travis CI | Enable caching for Travis CI
| YAML | mit | MeetMe/atom-beautify,MeetMe/atom-beautify,ProgramFan/atom-beautify,Asp1d/atom-beautify,basarat/atom-beautify,basarat/atom-beautify,mnquintana/atom-beautify,mnquintana/atom-beautify,dvingo/atom-beautify,basarat/atom-beautify,Glavin001/atom-beautify,thedadams/atom-beautify,MeetMe/atom-beautify,dvingo/atom-beautify,MeetMe... |
eb1916557f2bc995f2893a264cb82ccf0a0dbbe8 | .travis.yml | .travis.yml | language: python
python: 3.6
# Ubuntu 18.04
dist: bionic
# Command to install Python dependencies
install:
- pip install -r bin/requirements.txt
# Command to run tests
script:
- cd bin/ && coverage run --include=./*.py --omit=tests/* -m unittest discover && rm -rf ../html_dev/coverage && coverage html --directory=.... | language: python
python: 3.6
# Ubuntu 18.04
dist: bionic
# Command to install Python dependencies
install:
- pip install -r bin/requirements.txt
# Command to run tests
script:
- ./bin/test.sh
# Deploy the development information website to Github Pages
deploy:
provider: pages
skip_cleanup: true
github_token: ... | Update Travis config to use the test suite wrapper | Update Travis config to use the test suite wrapper
| YAML | agpl-3.0 | e2jk/vallenato.fr,e2jk/vallenato.fr,e2jk/vallenato.fr,e2jk/vallenato.fr |
69d7202b290e521b3482dfce32f4cc7819cf9909 | .travis.yml | .travis.yml | language: go
go:
- 1.7
- 1.8
- 1.9
- tip
sudo: false
install:
- go get -t -d -v ./...
- go get github.com/onsi/ginkgo/ginkgo
- go get -u github.com/golang/lint/golint
- go get -u github.com/modocache/gover
- go get -u github.com/mattn/goveralls
# optional dependencies
- go get -u github.com/g... | language: go
go:
- "1.8"
- "1.9"
- "1.10"
- "tip"
sudo: false
install:
- go get -t -d -v ./...
- go get github.com/onsi/ginkgo/ginkgo
- go get -u github.com/golang/lint/golint
- go get -u github.com/modocache/gover
- go get -u github.com/mattn/goveralls
# optional dependencies
- go get -u git... | Drop support for go 1.7 because of echo | Drop support for go 1.7 because of echo
Echo dropped the support for go 1.7 which leads us
to either drop support for echo, or go 1.7. :/
| YAML | mit | manyminds/api2go,manyminds/api2go |
fc907cfac67e87bdf38c4b3dc88835d1d3c7a9d4 | .travis.yml | .travis.yml | language: d
d:
- dmd-2.067.1
# - ldc-0.16.0
install:
- sudo apt-get update -qq
- sudo apt-get install -qq fglrx=2:8.960-0ubuntu1 opencl-headers
script:
# examples
- dub run --build=coverage --compiler=${DC} :algebra -- 32
- dub run --build=coverage --compiler=${DC} :bp -- 32
# current compilers both dmd a... | language: d
d:
- dmd
# - ldc
install:
- sudo apt-get update -qq
- sudo apt-get install -qq fglrx=2:8.960-0ubuntu1 opencl-headers
script:
# examples
- dub run --build=coverage --compiler=${DC} :algebra -- 32
- dub run --build=coverage --compiler=${DC} :bp -- 32
# current compilers both dmd and ldc run over... | Use the most recent version of the D compiler. | Use the most recent version of the D compiler.
| YAML | mit | dmakarov/clop |
cdc99e8606c81daed250eec88e93b381c3b4be7f | .travis.yml | .travis.yml | language: ruby
rvm:
- ree
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
| Drop ree support for the moment. | Drop ree support for the moment.
| YAML | mit | neopoly/bureau |
5d7334b12b54d3b066c09e297161779fcfd5f0d1 | .travis.yml | .travis.yml | language: elixir
services:
- postgresql
addons:
postgresql: "9.4"
elixir:
- 1.4
- 1.3
otp_release:
- 19.3
- 18.3
notifications:
email: false
sudo: false
script:
- mix test
| language: elixir
services:
- postgresql
addons:
postgresql: "9.4"
elixir:
- 1.4
- 1.3
otp_release:
- 20.0
- 19.3
- 18.3
notifications:
email: false
sudo: false
script:
- mix test
| Add OTP 20.0 to Travis matrix | Add OTP 20.0 to Travis matrix
| YAML | mit | ueberauth/guardian_db |
c50896b0f1077e949bcea9cd57c9d13ce4a843ca | .travis.yml | .travis.yml | language: go
go:
- 1.0
- 1.1
- 1.2
- tip
| language: go
go:
- 1.1
- 1.2
- tip
| Update Travis config, Go 1.0 not supported. | Update Travis config, Go 1.0 not supported. | YAML | apache-2.0 | matryer/websocket,helight/helight_code,helight/helight_code,helight/helight_code,hpcloud/websocket,jmptrader/websocket,helight/helight_code,gorilla/websocket,helight/helight_code,matryer/websocket,Janipro/websocket,ASAPPinc/websocket,helight/helight_code,helight/helight_code,helight/helight_code,torfuzx/websocket,Elit3... |
8798c4e04e4f95f0337911e5b7495dc56b64df49 | docker-compose.override.yml | docker-compose.override.yml | version: '2.1'
services:
mongo:
ports:
- "27017:27017"
restart: "no"
redis:
ports:
- "6379:6379"
restart: "no"
solr:
build:
context: ./solr
ports:
- "8983:8983"
volumes:
- ./solr/config:/opt/solr/server/solr/
restart: "no"
api:
image: openconcept... | version: '2.1'
services:
mongo:
ports:
- "27017:27017"
restart: "no"
redis:
ports:
- "6379:6379"
restart: "no"
solr:
build:
context: ./solr
ports:
- "8983:8983"
volumes:
- ./solr/config:/opt/solr/server/solr/
restart: "no"
api:
image: openconcept... | Fix IMPORT_DEMO_DATA env for dev | Fix IMPORT_DEMO_DATA env for dev
| YAML | mpl-2.0 | snyaggarwal/oclapi,snyaggarwal/oclapi,OpenConceptLab/oclapi,snyaggarwal/oclapi,OpenConceptLab/oclapi,OpenConceptLab/oclapi,OpenConceptLab/oclapi,snyaggarwal/oclapi,OpenConceptLab/oclapi |
a9ee2aee6f9c306003338257f9b533f0dd55d6d9 | .github/workflows/jenkins-security-scan.yml | .github/workflows/jenkins-security-scan.yml | # Jenkins Security Scan
# For more information, see: https://www.jenkins.io/doc/developer/security/scan/
name: Jenkins Security Scan
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
jobs:
security-scan:
uses: jenkins-infra/jenkins-security... | # Jenkins Security Scan
# For more information, see: https://www.jenkins.io/doc/developer/security/scan/
name: Jenkins Security Scan
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
jobs:
security-scan:
uses: jenkins-infra/jenkins-security... | Use Jenkins Security Scan v2 | Use Jenkins Security Scan v2
| YAML | mit | jenkinsci/ws-cleanup-plugin,jenkinsci/ws-cleanup-plugin |
168f2a59fb11e136a535d687f98b44573b01b7ce | .github/workflows/ci_test_and_coverage.yml | .github/workflows/ci_test_and_coverage.yml | name: CI + Coverage Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Krill
uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build and install Krill
... | name: CI + Coverage Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Krill
uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build and install Krill
... | Fix indentation in github worflow | Fix indentation in github worflow
Change-Id: I9a171444510c63b3c4f22649a6b06daa17e88f58
| YAML | bsd-2-clause | KorAP/Krill |
51355edaa93dec06a86445ab4f73bdc066c3b861 | roles/tmux/vars/main.yml | roles/tmux/vars/main.yml | ---
tmux_brew_packages:
- name: tmux
install_options: "with-utf8proc"
- name: "reattach-to-user-namespace"
tmux_tpm_repo: "https://github.com/tmux-plugins/tpm.git"
tmux_tpm_dir: "{{ home_dir }}/.tmux/plugins/tpm"
| ---
tmux_brew_packages:
- name: tmux
- name: "reattach-to-user-namespace"
tmux_tpm_repo: "https://github.com/tmux-plugins/tpm.git"
tmux_tpm_dir: "{{ home_dir }}/.tmux/plugins/tpm"
| Remove old tmux package flag | Feat: Remove old tmux package flag
| YAML | mit | mtchavez/mac-ansible |
01cafdc281ee1697c3d89af050bb7c06999ddbcf | bitbucket-pipelines.yml | bitbucket-pipelines.yml | image: golang:1.8
pipelines:
default:
- step:
script:
- go get -v github.com/spf13/cobra/cobra
- go get -v
- go build -o cli -v
- go test ./... -v
| image: golang:1.8
pipelines:
default:
- step:
script:
- go get -v github.com/spf13/cobra/cobra
- go get -v github.com/Sirupsen/logrus
- go test ./... -v
| Add get logrus from full path | Add get logrus from full path
| YAML | mit | q231950/sputnik |
600d261eb02e80bd05855499da53fcb8f1a8a005 | .github/workflows/gradle-build.yml | .github/workflows/gradle-build.yml | name: "Build Gradle project"
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
env:
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
strategy:
matrix:
java: [ 8, 9, 10, 11, 12, 13, 14, 15, 16, 17 ]
name: Building on Java ${{ matrix.java }}
... | name: "Build Gradle project"
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
env:
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
strategy:
matrix:
java: [ 8, 9, 10, 11, 12, 13, 14, 15, 16, 17 ]
name: Building on Java ${{ matrix.java }}
... | Use Gradle GH action more idiomatically | Use Gradle GH action more idiomatically
| YAML | apache-2.0 | etiennestuder/java-ordered-properties |
72712755d2a9ed3ebb6d650a4f08b55afce797f9 | roles/zsh/tasks/main.yml | roles/zsh/tasks/main.yml | ---
- name: Install packages
become: yes
apt: name={{item}} state=installed
with_items:
- fonts-powerline
- git-core
- zsh
- name: Change user's shell to zsh
shell: chsh {{ username_on_the_host.stdout }} --shell `which zsh`
become: yes
# Install oh-my-zsh, forcing it to think that the shell has ... | ---
- name: Install packages
become: yes
apt: name={{item}} state=installed
with_items:
- fonts-powerline
- git-core
- zsh
- name: Change user's shell to zsh
shell: chsh {{ username_on_the_host.stdout }} --shell `which zsh`
become: yes
| Remove oh-my-zsh (replaced with antigen) | Remove oh-my-zsh (replaced with antigen)
| YAML | mit | fernandoacorreia/homefiles,fernandoacorreia/homefiles |
f6544411f6021642ffb180bc14ac70a86c5a1dc8 | .github/workflows/ci.yml | .github/workflows/ci.yml | on:
- push
- pull_request
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- nightly
steps:
- run: sudo apt install libfuse-dev
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions-rs/toolchain@v... | on:
- push
- pull_request
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
toolchain:
- stable
- nightly
steps:
- if: ${{ runner.os == 'Linux' ... | Add macOS and Windows to GitHub workflows. | Add macOS and Windows to GitHub workflows.
| YAML | mit | google/rrg |
c1758893c04dfd8cae8c4d47fde8b6eaab15b356 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: '1.8'
- name: Run maven verify
run: ./mvnw verify
| name: CI
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: '1.8'
- name: Run maven verify
run: ./mvnw verify
| Change branch from master to main | Change branch from master to main
| YAML | mit | inpercima/rest-api |
959734ae53b1a428ed03ed4e543e35d42e345a14 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: "Continuous Integration"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
macos:
name: macOS
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install dependencies
run: brew install macfuse
- nam... | name: "Continuous Integration"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
macos:
name: macOS
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: recursive
- name: Install dependencies
... | Check out submodules in CI | Check out submodules in CI
| YAML | bsd-2-clause | torarnv/sparsebundlefs,torarnv/sparsebundlefs |
825251c53f392344b1f7eeaa08763ff72f2d7c63 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: "Unit tests"
on:
pull_request:
branches:
- "master"
push:
branches:
- "master"
jobs:
unit-test:
name: "Unit tests"
runs-on: "ubuntu-20.04"
strategy:
matrix:
php-version:
- "7.4"
... | name: "Unit tests"
on:
pull_request:
branches:
- "master"
push:
branches:
- "master"
jobs:
unit-test:
name: "Unit tests"
runs-on: "ubuntu-20.04"
strategy:
matrix:
php-version:
- "7.4"
... | Fix initial CI composer install auth | Fix initial CI composer install auth
| YAML | bsd-3-clause | juriansluiman/SlmQueue |
f2713da9ace36bac5d50a266528ad4a915445982 | ansible/roles/jstools/tasks/main.yml | ansible/roles/jstools/tasks/main.yml | ---
- shell: source ~/.nvm/nvm.sh && dirname $(which node)
register: node_path
args:
executable: /bin/bash
- npm: name={{ item }} global=yes state=present executable="{{node_path.stdout}}/npm"
with_items:
- node-check-updates
- pm2
- commitizen
- resin-cli
environment:
PATH: "{{ ansible_env.PAT... | ---
- shell: source ~/.nvm/nvm.sh && dirname $(which node)
register: node_path
args:
executable: /bin/bash
- npm: name={{ item }} global=yes state=present executable="{{node_path.stdout}}/npm"
with_items:
- npm-check-updates
- pm2
- commitizen
- resin-cli
environment:
PATH: "{{ ansible_env.PATH... | Update incorrectly named npm package | Update incorrectly named npm package
| YAML | mit | mshogren/alsl-infrastructure,mshogren/alsl-infrastructure |
d566286b8699ac15dd1792c9e6f4d78b35fa9020 | .codeclimate.yml | .codeclimate.yml | ---
engines:
csslint:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
- javascript
- python
- php
exclude_paths:
- "tests/*"
eslint:
enabled: true
fixme:
enabled: true
radon:
enabled: true
ratings:
paths:
- "**.css"
- "**... | ---
engines:
csslint:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
- javascript
- python
- php
exclude_paths:
- "tests/*"
eslint:
enabled: true
fixme:
enabled: true
radon:
enabled: true
ratings:
paths:
- "**.css"
- "**... | Exclude tests only when checking for duplication | Exclude tests only when checking for duplication
| YAML | mit | Dallinger/Dallinger,Dallinger/Dallinger,Dallinger/Dallinger,Dallinger/Dallinger,Dallinger/Dallinger |
a2faef4d0f9bf2b9268c41cfe0a6f48b9d494f3b | .scrutinizer.yml | .scrutinizer.yml | imports:
- php
filter:
excluded_paths:
- 'bin/*'
- 'vendor/*'
- 'features/*'
- 'spec/*'
- 'tests/*'
before_commands:
- composer install --prefer-source --dev --optimize-autoloader --no-interaction
tools:
php_sim: true
php_cpd: false
# PHP Code Sniffer
php_code_sniffer:
conf... | imports:
- php
filter:
excluded_paths:
- 'bin/*'
- 'vendor/*'
- 'features/*'
- 'spec/*'
- 'tests/*'
before_commands:
- composer install --prefer-source --dev --optimize-autoloader --no-interaction
tools:
php_sim: true
php_cpd: false
# PHP Code Sniffer
php_code_sniffer:
conf... | Install SPL types when building with scruitinizer | Install SPL types when building with scruitinizer
| YAML | mit | jk/RestServer |
ddb468bfb3bc81ec083af045094270211694a741 | roles/ceph-rbd-mirror/meta/main.yml | roles/ceph-rbd-mirror/meta/main.yml | ---
galaxy_info:
author: Sébastien Han
description: Installs Ceph Mirror Agent
license: Apache
min_ansible_version: 2.3
platforms:
- name: Ubuntu
versions:
- xenial
- name: EL
versions:
- 7
categories:
- system
dependencies: []
| ---
galaxy_info:
author: Sébastien Han
description: Installs Ceph Mirror Agent
license: Apache
min_ansible_version: 2.3
platforms:
- name: Ubuntu
versions:
- xenial
- name: EL
versions:
- 7
- name: opensuse
versions:
- 42.3
categories:
- system
depen... | Add support for openSUSE Leap distributions | ceph-rbd-mirror: Add support for openSUSE Leap distributions
Add support for openSUSE Leap distributions
Signed-off-by: Markos Chandras <33d8b43ece1558bd62b361ce5e954c5d9a97a7a2@suse.de>
| YAML | apache-2.0 | travmi/ceph-ansible,font/ceph-ansible,ceph/ceph-ansible,fgal/ceph-ansible,font/ceph-ansible,ceph/ceph-ansible,travmi/ceph-ansible,fgal/ceph-ansible |
ecc1c3f9412ac7ee7ff10f6e02c310e20e2b65e5 | blueprints/kirbytracking_visitor.yml | blueprints/kirbytracking_visitor.yml | title: Visitor
pages: false
options:
preview: false
status: false
template: false
update: true
url: false
icon: user
files: false
fields:
title:
label: Title
type: text
width: 1/2
lang:
label: Lang
type: text
width: 1/4
window_size:
label: Width×Height of browser
type: ... | title: Visitor
pages: false
options:
preview: false
status: false
template: false
update: true
url: false
icon: user
files: false
fields:
title:
label: Title
type: text
width: 1/2
lang:
label: Lang
type: text
width: 1/4
window_size:
label: Width×Height of browser
type: ... | Remove dev logs from blueprints | Remove dev logs from blueprints
| YAML | mit | louis-ev/kirby-tracking,louis-ev/kirby-tracking |
72d72c86bd31a7570a1cb24b399aadee53180b92 | tasks/galera_client_install.yml | tasks/galera_client_install.yml | ---
# Copyright 2014, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to ... | ---
# Copyright 2014, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to ... | Fix race condition on installing Packages | Fix race condition on installing Packages
We're seeing intermittent issues when installing the galera_client
packages. The pip package install happens before the apt/yum package
install in some situations, which is causing failures to
nova/neutron/ironic/tempest gates.
This PR removes the "static: no" statement aroun... | YAML | apache-2.0 | openstack/openstack-ansible-galera_client,openstack/openstack-ansible-galera_client |
e48e9b905e34bc76772a5f2537c9acc789b561bf | recipes/pymix/meta.yaml | recipes/pymix/meta.yaml | {% set name = "pymix" %}
{% set version = "0.8" %}
{% set md5 = "4e2b7db99251d9ce6d0527528224a45b" %}
source:
fn: {{ name }}-{{ version }}a.tar.gz
md5: {{ md5 }}
url: http://www.pymix.org/{{ name }}-{{ version }}a.tar.gz
patches:
- setup.py.patch
build:
number: 0
skip: True # [not py27]
package:
na... | {% set name = "pymix" %}
{% set version = "0.8" %}
{% set md5 = "4e2b7db99251d9ce6d0527528224a45b" %}
source:
fn: {{ name }}-{{ version }}a.tar.gz
md5: {{ md5 }}
url: http://www.pymix.org/{{ name }}-{{ version }}a.tar.gz
patches:
- setup.py.patch
build:
number: 0
skip: True # [not py27]
package:
na... | Add xorg-libsm to fix missing libSM.so | Add xorg-libsm to fix missing libSM.so
| YAML | mit | joachimwolff/bioconda-recipes,bow/bioconda-recipes,phac-nml/bioconda-recipes,jfallmann/bioconda-recipes,chapmanb/bioconda-recipes,matthdsm/bioconda-recipes,npavlovikj/bioconda-recipes,HassanAmr/bioconda-recipes,joachimwolff/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,daler/bioconda-recipes,cokelaer/bioconda-recipes,... |
75eb0b310066109ffc4795853a82745e35582e30 | images/kubekins-e2e/variants.yaml | images/kubekins-e2e/variants.yaml | variants:
experimental:
CONFIG: experimental
GO_VERSION: 1.13.6
K8S_RELEASE: stable
BAZEL_VERSION: 0.28.1
UPGRADE_DOCKER: 'true'
master:
CONFIG: master
GO_VERSION: 1.13.6
K8S_RELEASE: stable
BAZEL_VERSION: 0.23.2
'1.18':
CONFIG: '1.18'
GO_VERSION: 1.13.6
K8S_RELEASE... | variants:
experimental:
CONFIG: experimental
GO_VERSION: 1.13.6
K8S_RELEASE: stable
BAZEL_VERSION: 0.28.1
UPGRADE_DOCKER: 'true'
master:
CONFIG: master
GO_VERSION: 1.13.6
K8S_RELEASE: stable
BAZEL_VERSION: 0.23.2
'1.18':
CONFIG: '1.18'
GO_VERSION: 1.13.6
K8S_RELEASE... | Fix kubekins-e2e version marker for 1.18 | releng: Fix kubekins-e2e version marker for 1.18
Signed-off-by: Stephen Augustus <f96984fef9637085f0559f1484dfd4e99545cd6e@vmware.com>
| YAML | apache-2.0 | fejta/test-infra,pwittrock/test-infra,fejta/test-infra,kubernetes/test-infra,brahmaroutu/test-infra,brahmaroutu/test-infra,cblecker/test-infra,cjwagner/test-infra,michelle192837/test-infra,cjwagner/test-infra,BenTheElder/test-infra,dims/test-infra,monopole/test-infra,pwittrock/test-infra,michelle192837/test-infra,cblec... |
e64d2be838c4367c2d647a35cf71de2443c357ea | playbooks/roles/common/defaults/main.yml | playbooks/roles/common/defaults/main.yml |
# Override these variables
# to change the base directory
# where edX is installed
COMMON_BASE_DIR: /edx
COMMON_DATA_DIR: "{{ COMMON_BASE_DIR}}/var"
COMMON_APP_DIR: "{{ COMMON_BASE_DIR}}/app"
COMMON_LOG_DIR: "{{ COMMON_DATA_DIR }}/log"
# these directories contain
# symlinks for convenience
COMMON_BIN_DIR: "{{ COMMON... |
# Override these variables
# to change the base directory
# where edX is installed
COMMON_BASE_DIR: /edx
COMMON_DATA_DIR: "{{ COMMON_BASE_DIR}}/var"
COMMON_APP_DIR: "{{ COMMON_BASE_DIR}}/app"
COMMON_LOG_DIR: "{{ COMMON_DATA_DIR }}/log"
# these directories contain
# symlinks for convenience
COMMON_BIN_DIR: "{{ COMMON... | Add the common variants so that package logic can use the where necessary. | Add the common variants so that package logic can use the where necessary.
| YAML | agpl-3.0 | arbrandes/edx-configuration,lgfa29/configuration,IndonesiaX/configuration,arbrandes/edx-configuration,nikolas/configuration,edx/configuration,jp-bpl/configuration,proversity-org/configuration,chudaol/configuration,yrchen/configuration,lgfa29/configuration,usernamenumber/configuration,pedrorib/istx,CredoReference/config... |
0a346ed49e94a6706b3c65c43e5c8c67911cbea7 | .codeclimate.yml | .codeclimate.yml | ---
engines:
brakeman:
enabled: true
bundler-audit:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
- javascript
- python
- php
eslint:
enabled: true
config:
config: .eslintrc.js
checks:
import/extensions:
enabled: ... | ---
engines:
brakeman:
enabled: true
bundler-audit:
enabled: true
duplication:
enabled: true
config:
languages:
ruby:
javascript:
mass_threshold: 60
eslint:
enabled: true
config:
config: .eslintrc.js
checks:
import/extensions:
enabl... | Increase the JS mass threshold to hopefully weed out false positives | Increase the JS mass threshold to hopefully weed out false positives
| YAML | mit | neinteractiveliterature/intercode,neinteractiveliterature/intercode,neinteractiveliterature/intercode,neinteractiveliterature/intercode,neinteractiveliterature/intercode |
4bbcc620c835919c697aa929cbccbe9001e05010 | parameters/Endogenous_BASL_21-params.yml | parameters/Endogenous_BASL_21-params.yml | ---
wall_channel: 1
marker_channel: 0
surface_percentile: 95
wall_percentile_filter_percentile: 95
wall_percentile_filter_size: 2
wall_zabove: -2
wall_zbelow: 6
wall_threshold_adaptive_block_size: 51
wall_remove_small_objects_in_cell_min_size: 5
wall_remove_small_objects_in_wall_min_size: 50
wall_erode_step: True
marke... | ---
wall_channel: 1
marker_channel: 0
surface_percentile: 95
wall_percentile_filter_percentile: 95
wall_percentile_filter_size: 2
wall_zabove: -2
wall_zbelow: 6
wall_threshold_adaptive_block_size: 151
wall_remove_small_objects_in_cell_min_size: 30
wall_remove_small_objects_in_wall_min_size: 50
wall_erode_step: True
mar... | Improve params for endogenous basl 21 | Improve params for endogenous basl 21
| YAML | mit | JIC-Image-Analysis/cells-from-leaves,JIC-Image-Analysis/cells-from-leaves,JIC-Image-Analysis/cells-from-leaves |
120e869bb98d23a327e26ee0679f7d0fe88839a4 | _config.yml | _config.yml | # Site settings
email: extension.institucional@madrid.es
description: >
Software libre para participación ciudadana. Inteligencia colectiva y democracia directa digital para ciudades inteligentes. Abriendo gobiernos.
baseurl: ""
url: "http://www.consulproject.org/"
twitter_username: abriendomadrid
github_username: co... | # Site settings
email: extension.institucional@madrid.es
description: >
Software libre para participación ciudadana. Inteligencia colectiva y democracia directa digital para ciudades inteligentes. Abriendo gobiernos.
baseurl: ""
url: "http://www.consulproject.org/"
twitter_username: abriendomadrid
github_username: co... | Remove doc documents from list | Remove doc documents from list
| YAML | mit | consul/website,consul/website,consul/website |
195ef67d5d2b06375b564b50c602a5e7ba8e0e76 | _config.yml | _config.yml | # Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
relative_permalinks: true
# Setup
title: Nicholas Blair
tagline: 'Software Engineer'
url: http://nblair.github.io
baseurl: ''
paginate: ... | permalink: pretty
# Setup
title: Nicholas Blair
tagline: 'Software Engineer'
url: http://nblair.github.io
baseurl: ''
paginate: 5
# Assets
#
# We specify the directory for Jekyll so we can use @imports.
sass:
sass_dir: _sass
style... | Update config for Jekyll 3.x compatibility | Update config for Jekyll 3.x compatibility
relative_permalinks option is gone, and need to explicitly add paginate to use it.
| YAML | mit | nblair/nblair.github.io,nblair/nblair.github.io,nblair/nblair.github.io,nblair/nblair.github.io |
e454c91744a522a86e2a55c14700296df7dd3d19 | _config.yml | _config.yml | permalink: /articles/:title
# Use the port config option to determine if we're in prod or dev
# anything other than port 80 is assumed to be dev
port: 80
url: http://philipwalton.github.io/solved-by-flexbox
markdown: rdiscount
pygments: true
exclude:
- config.rb
- README.md
- Rakefile
- Gemfile
- Gemfile.lock
- bowe... | permalink: /articles/:title
# Use the port config option to determine if we're in prod or dev
# anything other than port 80 is assumed to be dev
port: 80
url: http://philipwalton.github.io/solved-by-flexbox
markdown: rdiscount
pygments: true
exclude:
- config.rb
- README.md
- Rakefile
- Gemfile
- Gemfile.lock
- bowe... | Update config.yml to exclude license files from website. | Update config.yml to exclude license files from website.
| YAML | mit | yanxyz/philipwalton-solved-by-flexbox,gnagel/solved-by-flexbox,therealklanni/solved-by-flexbox,SarahJune/solved-by-flexbox,juoni/solved-by-flexbox,afider/solved-by-flexbox,hugomiura/solved-by-flexbox,wangyingwy/solved-by-flexbox,demateu/solved-by-flexbox,griffio/solved-by-flexbox,pramodrhegde/solved-by-flexbox,welksonr... |
44d2e69466472117b9fc3af739c5e5ad1be40e83 | _config.yml | _config.yml | name: "hikari"
description: "Fluid, responsive blog theme for Jekyll"
author: "John Doge"
url: "http://m3xm.github.io"
baseurl: /hikari-for-Jekyll
markdown: rdiscount
permalink: :year/:month/:title.html
pygments: true
# Google Analytics
ga_domain: m3xm.github.io
ga_tracking_id: UA-47727049-1
| name: "hikari"
description: "Fluid, responsive blog theme for Jekyll"
author: "John Doge"
url: "http://m3xm.github.io"
baseurl: ""
markdown: rdiscount
permalink: :year/:month/:title.html
pygments: true
# Google Analytics
ga_domain: m3xm.github.io
ga_tracking_id: UA-47727049-1
| Set baseurl to blank for expected behavior | Set baseurl to blank for expected behavior
When cloning this theme, it's expected that Jekyll will serve the site
from the root. "baseurl" must be set to an empty string since the
default is "/", which breaks the absolute URLs defined in the templates.
Fixes #8.
| YAML | mit | victorsenam/deprecated-blog-maratonime,barraponto/barraponto.github.io,nisoto/nisoto.github.io,barraponto/barraponto.github.io,Frontux/frontux.github.io,mugizico/hikari-for-Jekyll,emilcieslar/emilcieslar.github.io,Frontux/frontux-site,Kenty/materi-for-jekyll,victorsenam/deprecated-blog-maratonime,cheejon/cheejon.github... |
f41098ff4b10ee8f4ce7df0efbc91f4311c89ba8 | _config.yml | _config.yml | # Site settings
title: Bastien Bourdon
description: 'My personal website - I blog about tech, web development, data science, startup life, and thoughts on about anything from music to finance'
url: 'https://bastien-brd.github.io'
baseurl: '/'
google_analytics: 'UA-84007943-1'
# disqus_shortname: 'your-disqus-name'
aut... | # Site settings
title: Bastien Bourdon
description: 'Trying to give back to the community - I write about tech, web development, data science, and leassons learned from the startup life'
url: 'https://bastien-brd.github.io'
baseurl: '/'
google_analytics: 'UA-84007943-1'
# disqus_shortname: 'your-disqus-name'
author:
... | Change the website description a little | Change the website description a little
| YAML | mit | Bastien-Brd/Bastien-Brd.github.io,Bastien-Brd/Bastien-Brd.github.io,Bastien-Brd/Bastien-Brd.github.io |
2c84f5628837c89eb8a53e4fac154c31bd3c8488 | _config.yml | _config.yml | name: Your New Jekyll Site
description: Blogging about stuffs
meta_description: "Your New Jekyll Site, Blogging about stuffs"
markdown: kramdown
highlighter: rouge
logo: false
paginate: 15
baseurl: /
domain_name: 'http://yourblog-domain.com'
google_analytics: 'UA-XXXXXXXX-X'
gems: [jekyll-paginate]
# Details for the ... | name: Your New Jekyll Site
description: Blogging about stuffs
meta_description: "Your New Jekyll Site, Blogging about stuffs"
markdown: kramdown
highlighter: rouge
logo: false
paginate: 15
baseurl: /kasper
domain_name: 'http://yourblog-domain.com'
google_analytics: 'UA-XXXXXXXX-X'
gems: [jekyll-paginate]
# Details fo... | Fix baseurl to hopefully work on gh-pages | Fix baseurl to hopefully work on gh-pages | YAML | mit | web-zoo/kasper,web-zoo/kasper |
3df72fa3536ba570dbf66a49b9892ae89eb9af56 | _config.yml | _config.yml | name: "Brandon Amos: Blog"
description: The personal blog of Brandon Amos
url: http://bamos.github.io
destination: ./_site
lsi: false
port: 4000
pygments: true
markdown: maruku
permalink: pretty
paginate: 5
maruku:
use_tex: false
use_divs: false
png_dir: images/latex/
png_url: /... | name: "Brandon Amos: Blog"
description: The personal blog of Brandon Amos
url: http://bamos.io
destination: ./_site
lsi: false
port: 4000
pygments: true
markdown: kramdown
permalink: pretty
paginate: 5
| Clean and update config to use kramdown. | Clean and update config to use kramdown.
| YAML | mit | renan-souza/renan-souza.github.io,bamos/bamos.github.io,bamos/bamos.github.io,bamos/bamos.github.io,bamos/bamos.github.io,renan-souza/renan-souza.github.io,renan-souza/renan-souza.github.io |
8b5aae08a66d6be28d4d83c3ba1b5cf1637aafd8 | _config.yml | _config.yml | # visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings
paginate: 10 # pagination based on number of posts
paginate_path: "page:num"
exclude: ["README.md"] # files to exclude
highlighter: true
markdown: kramdown
defaults:
-
scope:
path: "" # empty string for all files
values:
... | # visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings
paginate: 10 # pagination based on number of posts
paginate_path: "page:num"
exclude: ["README.md"] # files to exclude
highlighter: pygments
markdown: kramdown
defaults:
-
scope:
path: "" # empty string for all files
value... | Change highlighter attribute to pygments | Change highlighter attribute to pygments
| YAML | mit | andreacfm/andreacfm.github.com,ihsanudin/ihsanudin.github.io,reginax/dbyll,RedBear17/RedBear17.github.io,RedBear17/RedBear17.github.io,jjongun/jjongun.github.io,purpleroc/purpleroc.github.io,zach0624/jekyllblog,AlexMayle/AlexMayle.github.io,minamid3v/minamid3v.github.io,AlexMayle/AlexMayle.github.io,noasax/noasax.githu... |
4dd38c8d31ef92c6abc1c4aa7872edc81ba6f4f0 | _config.yml | _config.yml | ---
title: Choose a License
description: Non-judgmental guidance on choosing a license for your open source project
relative_permalinks: false
markdown: kramdown
url: "https://choosealicense.com"
collections:
licenses:
output: true
permalink: /licenses/:path/
defaults:
-
scope:
path: ""
ty... | ---
title: Choose a License
description: Non-judgmental guidance on choosing a license for your open source project
relative_permalinks: false
markdown: kramdown
url: "https://choosealicense.com"
collections:
licenses:
output: true
permalink: /licenses/:path/
defaults:
-
scope:
path: ""
ty... | Stop vendored material READMEs from rendering | Stop vendored material READMEs from rendering
| YAML | mit | github/choosealicense.com,github/choosealicense.com,github/choosealicense.com |
4753dc219830d4e08a09bbdfadd0e07b7042d6fb | _config.yml | _config.yml | # Your presentation title
title: Jekyll and Reveal.js
# The Reveal theme
reveal_theme: ncc.css
# The Reveal transition
reveal_transition: default
# Path to the used theme (defaults to the Reveal.js standard theme path)
reveal_theme_path: reveal.js/css/theme/
# Embed Server-side speaker notes?
reveal_notes_server: ... | # Your presentation title
title: Docker - Security Myths, Security Legends
# The Reveal theme
reveal_theme: ncc.css
# The Reveal transition
reveal_transition: default
# Path to the used theme (defaults to the Reveal.js standard theme path)
reveal_theme_path: reveal.js/css/theme/
# Embed Server-side speaker notes?
... | Update config file to set title | Update config file to set title
| YAML | bsd-2-clause | raesene/bsides-london-2016-presentation,raesene/bsides-london-2016-presentation,raesene/bsides-london-2016-presentation,raesene/bsides-london-2016-presentation |
d267acd6abef4346d4ab187e1cf3c9430c2b0106 | .readthedocs.yml | .readthedocs.yml | ---
version: 2
sphinx:
configuration: docs/conf.py
python:
version: 3.7
install:
- method: pip
path: .
| ---
version: 2
sphinx:
configuration: docs/conf.py
python:
version: 3.9
install:
- method: pip
path: .
| Update RTD to newer Python | Update RTD to newer Python
| YAML | mit | w1ll1am23/simplisafe-python |
b7326b1e53b37ca297d12b640a19212006f8243b | snap/meta/package.yaml | snap/meta/package.yaml | name: paradrop
version: 0.1.0
vendor: Paradrop Labs <snappy-devel@lists.ubuntu.com>
icon: meta/hello.png
type: framework
frameworks:
- docker
# binaries:
# - name: bin/pd
# security-policy:
# apparmor: meta/pd.apparmor
# seccomp: meta/pd.seccomp
binaries:
- name: bin/dnsmasq
description: DHCP... | name: paradrop
version: 0.1.0
vendor: Paradrop Labs <snappy-devel@lists.ubuntu.com>
icon: meta/hello.png
type: framework
frameworks:
- docker
# binaries:
# - name: bin/pd
# security-policy:
# apparmor: meta/pd.apparmor
# seccomp: meta/pd.seccomp
binaries:
- name: bin/dnsmasq
description: DHCP... | Enable pdconfd as a service. | Enable pdconfd as a service.
| YAML | apache-2.0 | ParadropLabs/Paradrop,ParadropLabs/Paradrop,ParadropLabs/Paradrop |
779857b99d3d837ed36c6e6ec0d678e1e220233f | host_vars/cardboard.yml | host_vars/cardboard.yml | ---
gw_network: 192.168.2.0
dhcp_self: 192.168.2.1
dhcp_lower: 192.168.2.2
dhcp_upper: 192.168.2.200
domain: texsaw
domain_address: 10.176.169.100
hostname: cardboard
dns_SOA: 2016110401
int_if: bge0
ext_if: re0
boot_fname:
boot_next:
ntp:
- pool.ntp.org
staticHosts:
wap:
mac: 44:94:fc:39:50:ea
addr: 1... | ---
gw_network: 192.168.2.0
dhcp_self: 192.168.2.1
dhcp_lower: 192.168.2.2
dhcp_upper: 192.168.2.200
domain: texsaw
domain_address: 10.176.169.100
hostname: cardboard
dns_SOA: 2016110401
int_if: bge0
ext_if: re0
boot_fname:
boot_next:
ntp:
- pool.ntp.org
staticHosts:
wap:
mac: 44:94:fc:39:50:ea
addr: 1... | Deploy domains slightly before CTF | Deploy domains slightly before CTF
| YAML | isc | utdlug/lug_config |
bc4ed38139980af067ba3f6c01a1d144b3294e4c | metadata/com.releasestandard.scriptmanager.yml | metadata/com.releasestandard.scriptmanager.yml | Categories:
- Development
License: MIT
AuthorName: Release Standard
SourceCode: https://github.com/ReleaseStandard/ScriptManager
IssueTracker: https://github.com/ReleaseStandard/ScriptManager/issues
Changelog: https://github.com/ReleaseStandard/ScriptManager/releases
Donate: https://www.paypal.com/paypalme/ReleaseSta... | Categories:
- Development
License: MIT
AuthorName: Release Standard
SourceCode: https://github.com/ReleaseStandard/ScriptManager
IssueTracker: https://github.com/ReleaseStandard/ScriptManager/issues
Changelog: https://github.com/ReleaseStandard/ScriptManager/releases
Donate: https://www.paypal.com/paypalme/ReleaseSta... | Update ScriptManager to 0.5 (5) | Update ScriptManager to 0.5 (5)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
9e4a513cf0618b61e5b257ed4bed6e8584ff095a | playbooks/openshift-hosted/private/upgrade.yml | playbooks/openshift-hosted/private/upgrade.yml | ---
# This play is called during upgrade_control_plane via post_control_plane.yml
- name: Upgrade default router and default registry
hosts: oo_first_master
roles:
- lib_utils
- openshift_facts
tasks:
- import_role:
name: openshift_hosted
tasks_from: upgrade_routers.yml
- import_role:
na... | ---
# This play is called during upgrade_control_plane via post_control_plane.yml
- name: Upgrade default router and default registry
hosts: oo_first_master
roles:
- lib_utils
- openshift_facts
tasks:
- import_role:
name: openshift_hosted
tasks_from: upgrade_routers.yml
when: openshift_hoste... | Upgrade router and registry only when these are managed | Upgrade router and registry only when these are managed
| YAML | apache-2.0 | akram/openshift-ansible,liggitt/openshift-ansible,miminar/openshift-ansible,sdodson/openshift-ansible,rjhowe/openshift-ansible,markllama/openshift-ansible,miminar/openshift-ansible,miminar/openshift-ansible,akram/openshift-ansible,jwhonce/openshift-ansible,tagliateller/openshift-ansible,jwhonce/openshift-ansible,markll... |
c07fbf4cd05d0c88a1a3aa419b91fa9f45f08972 | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on:
# Trigger the workflow on push or pull request,
# but only for the master branch
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
build: [linux, macos, windows]
inclu... | name: CI
on:
# Trigger the workflow on push or pull request,
# but only for the master branch
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
build: [linux, macos, windows]
toolc... | Add 1.48 to github actions CI matrix | Add 1.48 to github actions CI matrix
| YAML | apache-2.0 | eminence/terminal-size |
0170a7083c9cf908ab62bc6c9feeaa98cbe5adce | backend/app.yaml | backend/app.yaml | # Copyright 2019-2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writ... | # Copyright 2019-2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writ... | Allow .map static files so debug builds can be served from App Engine | Allow .map static files so debug builds can be served from App Engine
| YAML | apache-2.0 | google/peoplemath,google/peoplemath,google/peoplemath,google/peoplemath,google/peoplemath |
896c872ad52deb9d20d24e408cacd6a7073ea90b | codeship-services.yml | codeship-services.yml | testing:
build:
image: testing
dockerfile_path: ./Dockerfile.testing
cached: true | version: '2'
services:
testing:
image: testing
dockerfile_path: ./Dockerfile.testing | Use version 2 for testing service | Use version 2 for testing service
| YAML | mit | DmitryKrekota/jlto |
849ec6fbde8e1db16279706f3ce095b67d35d170 | conf/conda-recipes/openmpi/meta.yaml | conf/conda-recipes/openmpi/meta.yaml | package:
name: openmpi
version: 1.8.8
about:
home: http://www.open-mpi.org/
summary: 'Open MPI: A high performance message passing library'
license: 'BSD (https://www.open-mpi.org/community/license.php)'
requirements:
conflicts:
- mpich
- mpich2
source:
fn: openmpi-1.8.7.tar.bz2
url: http://w... | package:
name: openmpi
version: 1.10.0
about:
home: http://www.open-mpi.org/
summary: 'Open MPI: A high performance message passing library'
license: 'BSD (https://www.open-mpi.org/community/license.php)'
requirements:
conflicts:
- mpich
- mpich2
source:
fn: openmpi-1.10.0.tar.bz2
url: http:/... | Update Open MPI recipe to 1.10.0 | conda: Update Open MPI recipe to 1.10.0
| YAML | bsd-2-clause | mpi4py/mpi4py,mpi4py/mpi4py,mpi4py/mpi4py |
77cfd5da14031b537de654f60e4c333162069a50 | common/docker-compose.yml | common/docker-compose.yml | sns:
image: alicefuzier/fake-sns
ports:
- "9292:9292"
sqs:
image: s12v/elasticmq
ports:
- "9324:9324"
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:5.4.0
ports:
- "9200:9200"
- "9300:9300"
environment:
- "http.host=0.0.0.0"
- "transport.host=0.0.0.0"
- "cl... | dynamodb:
image: peopleperhour/dynamodb
ports:
- "45678:8000"
sns:
image: alicefuzier/fake-sns
ports:
- "9292:9292"
sqs:
image: s12v/elasticmq
ports:
- "9324:9324"
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:5.4.0
ports:
- "9200:9200"
- "9300:9300"
environme... | Add dynamo docker image to common so that tests for common pass | Add dynamo docker image to common so that tests for common pass
| YAML | mit | wellcometrust/platform-api,wellcometrust/platform-api,wellcometrust/platform-api,wellcometrust/platform-api |
5befe0d61be5d37ee94a4ccc272e394717719eef | config/textinator_api.yml | config/textinator_api.yml | defaults: &defaults
text_url: 'http://textinator-sandbox.internal.comparaonline.com/texts.json'
request_timeout: 10
development:
<<: *defaults
local_development:
<<: *defaults
test:
<<: *defaults
qa:
<<: *defaults
staging:
<<: *defaults
qc:
<<: *defaults
production:
<<: *defaults
text_url: 'h... | defaults: &defaults
text_url: 'http://textinator-sandbox.internal.comparaonline.com:8102/texts.json'
request_timeout: 10
development:
<<: *defaults
local_development:
<<: *defaults
test:
<<: *defaults
qa:
<<: *defaults
staging:
<<: *defaults
qc:
<<: *defaults
production:
<<: *defaults
text_ur... | Add port to URL Textinator | Add port to URL Textinator
| YAML | mit | comparaonline/translinator,comparaonline/translinator,comparaonline/translinator |
ac42ab77c7608f09d18e4e0d16523432cf0cda98 | hiera/data/roles.yaml | hiera/data/roles.yaml | all_classes:
- profile::webserver::apache
- profile::base::base
- partial::rpm
- partial::mirror
- profile::openstack::identity
- profile::openstack::image
- mysql::server
- keystone::db::mysql
- glance::db::mysql
- nova::db::mysql
- neutron::db::mysql
- openstack::auth_file
- profile::mes... | all_classes:
- profile::webserver::apache
- profile::base::base
- partial::rpm
- partial::mirror
- profile::openstack::identity
- profile::openstack::image
- mysql::server
- keystone::db::mysql
- glance::db::mysql
- nova::db::mysql
- neutron::db::mysql
- openstack::auth_file
- profile::mes... | Add base profile to hypervisor | Add base profile to hypervisor
| YAML | apache-2.0 | michaeltchapman/puppet_openstack_builder,michaeltchapman/puppet_openstack_builder,phchoic/puppet_openstack_builder,phchoic/puppet_openstack_builder,phchoic/puppet_openstack_builder,michaeltchapman/puppet_openstack_builder |
f9cb9a07000801ca2e202e77b940c67c1f345ddc | .forestry/front_matter/templates/test-block-one.yml | .forestry/front_matter/templates/test-block-one.yml | ---
hide_body: false
is_partial: false
fields:
- type: blocks
template_types:
- test-partial-two
- test-partial-one
name: edit_blocks
label: Edit Blocks
| ---
pages:
- testing.md
hide_body: false
is_partial: false
fields:
- type: blocks
template_types:
- test-partial-two
- test-partial-one
name: edit_blocks
label: Edit Blocks
| Update from Forestry.io - _drafts/_pages/testing.md | Update from Forestry.io - _drafts/_pages/testing.md | YAML | mit | truecodersio/truecoders.io,truecodersio/truecoders.io,truecodersio/truecoders.io |
e7cd8eb1fec588c55b3207ff313ca238f069dbcf | .github/workflows/breakage-against-ponyc-latest.yml | .github/workflows/breakage-against-ponyc-latest.yml | name: Nightly breakage against ponyc:latest
on:
schedule:
- cron: "0 3 * * *"
jobs:
vs-ponyc-master:
name: Verify master against ponyc:latest
runs-on: ubuntu-latest
container:
image: ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-ssl:latest
needs: update-ponyc-latest
ste... | name: Nightly breakage against ponyc:latest
on:
schedule:
- cron: "0 3 * * *"
jobs:
vs-ponyc-master:
name: Verify master against ponyc:latest
runs-on: ubuntu-latest
container:
image: ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-ssl:latest
steps:
- uses: actions/check... | Remove stray "needs" from pipeline definition | Remove stray "needs" from pipeline definition
Left over after I deleted the dependency
| YAML | bsd-2-clause | Theodus/ponyup |
574a0cd497482f7963cb59654565d014ee582817 | .github/workflows/actions.yml | .github/workflows/actions.yml | name: Build and test
on: [push]
jobs:
ubuntu-18_04:
runs-on: ubuntu-18.04
strategy:
matrix:
compiler: [g++, clang]
steps:
- name: Install dependencies
run: sudo apt install build-essential libasound2-dev libqt5sql5-sqlite libqt5svg5-dev pkg-config qt5-default ${{matrix.... | name: Build and test
on: [push]
jobs:
build:
strategy:
matrix:
os: [ubuntu-18.04]
compiler: [g++, clang]
runs-on: ${{matrix.os}}
steps:
- name: Install dependencies
run: sudo apt install build-essential libasound2-dev libqt5sql5-sqlite libqt5svg5-dev pkg-config qt5-... | Remove broken ubuntu 20.04 CI build | Remove broken ubuntu 20.04 CI build
| YAML | mit | charlesfleche/lpd8-editor,charlesfleche/lpd8-editor |
c8242683c56e841e5ee8a94849de8f695f2459e1 | config/locales/en.yml | config/locales/en.yml | # Sample localization file for English. Add more files in this directory for other locales.
# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
en:
spree:
active: Active
alt_text: Alt Text
autumn_winter_16_17: Autumn Winter 16/17
back_to_look_book_list: Back ... | # Sample localization file for English. Add more files in this directory for other locales.
# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
en:
activerecord:
models:
spree/look_book:
one: "Look Book"
other: "Look Books"
spree:
act... | Add activerecord translation for multiple look boooks | Add activerecord translation for multiple look boooks
| YAML | bsd-3-clause | staffordlong/spree_look_book,staffordlong/spree_look_book,staffordlong/spree_look_book |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.