commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
dcea6d90745489e7d1e765114b6b1e2bb482c05a
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 matrix: allow_failures: - rvm: 2.0.0 env: CAPYBARA_WAIT_TIME=30 notifications: email: false
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 matrix: allow_failures: - rvm: 1.9.2 - rvm: 2.0.0 env: CAPYBARA_WAIT_TIME=30 notifications: email: false
Allow failures on ruby 1.9.2
Allow failures on ruby 1.9.2 We deploy to 1.9.3 using .ruby-version, so presumably we're not overly bothered by failures on 1.9.2?
YAML
mit
gds-attic/limelight,gds-attic/limelight,gds-attic/limelight
9d212ab40c1aed5d2f366f61708fee460a26606f
.travis.yml
.travis.yml
language: php sudo: false cache: directories: - $HOME/.composer/cache/files matrix: fast_finish: true include: - php: 5.5 - php: 5.6 - php: 7.0 - php: hhvm allow_failures: - php: hhvm before_install: - if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi - composer self-update install: - composer install script: - ./vendor/bin/phpunit - ./vendor/bin/php-cs-fixer fix --diff --dry-run -v - ./bin/console lint:yaml app/config - ./bin/console lint:yaml @CodeExplorerBundle - ./bin/console lint:twig app/Resources @CodeExplorerBundle
language: php sudo: false cache: directories: - $HOME/.composer/cache/files matrix: fast_finish: true include: - php: 5.5 - php: 5.6 - php: 7.0 - php: hhvm allow_failures: - php: hhvm before_install: - if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi - composer self-update install: - composer install script: - ./vendor/bin/phpunit # this checks that the source code follows the Symfony Code Syntax rules - ./vendor/bin/php-cs-fixer fix --diff --dry-run -v # this checks that the YAML config files contain no syntax errors - ./bin/console lint:yaml app/config - ./bin/console lint:yaml @CodeExplorerBundle # this checks that the Twig template files contain no syntax errors - ./bin/console lint:twig app/Resources @CodeExplorerBundle # this checks that the application doesn't use dependencies with known security vulnerabilities - ./bin/console security:check
Add "security:check" to our CI checks
Add "security:check" to our CI checks
YAML
mit
symfony/symfony-demo,voronkovich/symfony-demo,maidmaid/symfony-demo,bocharsky-bw/symfony-demo,yodur2potassium/test-behat-selenium-symfo,dzuelke/symfony-demo,TomasVotruba/symfony-demo,Codeception/symfony-demo,Codeception/symfony-demo,maidmaid/symfony-demo,samitiana/symfony-demo,javiereguiluz/symfony-demo,Codeception/symfony-demo,maidmaid/symfony-demo,dzuelke/symfony-demo,samitiana/symfony-demo,yodur2potassium/test-behat-selenium-symfo,javiereguiluz/symfony-demo,yceruto/symfony-demo,yceruto/symfony-demo,voronkovich/symfony-demo,symfony/symfony-demo,TomasVotruba/symfony-demo,yodur2potassium/test-behat-selenium-symfo,nilamkhedkar1/symfony_demo,bocharsky-bw/symfony-demo,yceruto/symfony-demo,bocharsky-bw/symfony-demo,symfony/symfony-demo,dzuelke/symfony-demo,nilamkhedkar1/symfony_demo,samitiana/symfony-demo,voronkovich/symfony-demo,TomasVotruba/symfony-demo,javiereguiluz/symfony-demo,nilamkhedkar1/symfony_demo
be80aeb4c4b60833c76e971874f5c5508a7f0b80
.travis.yml
.travis.yml
language: java before_install: - mvn --version # download the latest android sdk and unzip - sudo apt-get update -qq - if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch; fi - wget http://dl.google.com/android/android-sdk_r22.3-linux.tgz - tar xzf android-sdk_r22.3-linux.tgz - export ANDROID_HOME=$PWD/android-sdk-linux - export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools - echo yes | android update sdk -a --filter platform-tools,build-tools-19.0.1,android-19,extra-android-support,extra-android-m2repository --no-ui --force - which android - cp -R $ANDROID_HOME/extras/android/m2repository/com ~/.m2/repository install: - mvn clean install -DskipTests=true -pl openxc -am script: - mvn clean package -pl enabler - mvn test -pl openxc - mvn test -pl openxc-it
language: android android: components: - platform-tools - android-19 - sysimg-19 - build-tools-19.0.1 - extra-android-support - extra-android-m2repository before_install: - cp -R $ANDROID_HOME/extras/android/m2repository/com ~/.m2/repository install: - mvn clean install -DskipTests=true -pl openxc -am script: - mvn test -pl openxc - mvn test -pl openxc-it - mvn package -pl enabler
Use new 'android' language on Travis CI.
Use new 'android' language on Travis CI.
YAML
bsd-3-clause
openxc/openxc-android,mray19027/openxc-android,prateeknitish391/demo,ChernyshovYuriy/openxc-android,mray19027/openxc-android,dhootha/openxc-android,openxc/openxc-android,msowka/openxc-android,msowka/openxc-android,prateeknitish391/demo,ChernyshovYuriy/openxc-android,prateeknitish391/demo,petemaclellan/openxc-android,petemaclellan/openxc-android,dhootha/openxc-android
35bf5e516ffa40f418ed6e954548d05737aa818f
.travis.yml
.travis.yml
language: python python: - 2.7 - 3.4 env: - DJANGO=1.5 - DJANGO=1.6 - DJANGO=1.7 - DJANGO=1.8 - DJANGO=1.9 - DJANGO=1.10 install: - pip install -q Django==$DJANGO script: - python runtests.py
language: python python: - 2.7 - 3.4 env: - DJANGO=1.5 - DJANGO=1.6 - DJANGO=1.7 - DJANGO=1.8 - DJANGO=1.9 - DJANGO=1.10 install: - pip install -q Django~=$DJANGO.0 script: - python runtests.py
Test latest-patched versions of Django in Travis CI.
Test latest-patched versions of Django in Travis CI.
YAML
mit
yunojuno/django-s3-upload,yunojuno/django-s3-upload,AlexRiina/django-s3direct,bradleyg/django-s3direct,AlexRiina/django-s3direct,bradleyg/django-s3direct,yunojuno/django-s3-upload,AlexRiina/django-s3direct,bradleyg/django-s3direct
62f155918b9f32f5a6daaa8db1e3ed2a77c9d067
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - jruby-18mode - rbx-18mode deploy: provider: rubygems api_key: secure: ZmZoDL1tilWvQrqRWDm2K4xQ5Grt9eRJzYVZPLANR0P1TM5BJBLk+UhWCWCPkkDVIBWMa5ANsiFYBxtH65Lw+uqMztSpVusk0l0LQXZGv9jMpT9445A8008U3vvfS0ke7IG8Q4bMAC7Sd6VGaiHDyZC7zmNvnqMpmVX7ShcgBME= gem: dpl on: repo: rkh/dpl ruby: 2.0.0
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - jruby-18mode - rbx-18mode deploy: provider: rubygems api_key: secure: ZmZoDL1tilWvQrqRWDm2K4xQ5Grt9eRJzYVZPLANR0P1TM5BJBLk+UhWCWCPkkDVIBWMa5ANsiFYBxtH65Lw+uqMztSpVusk0l0LQXZGv9jMpT9445A8008U3vvfS0ke7IG8Q4bMAC7Sd6VGaiHDyZC7zmNvnqMpmVX7ShcgBME= gem: dpl on: repo: rkh/dpl
Revert "release from ruby 2.0"
Revert "release from ruby 2.0" This reverts commit 6ee59f2c22285ba43bc0fd19bd692e37999e5f61.
YAML
mit
WeConnect/dpl,LoicMahieu/dpl,bensojona/dpl,travis-ci/dpl,zabawaba99/dpl,Misfit-SW-China/dpl,georgantasp/dpl,testfairy/dpl,testfairy/dpl,travis-ci/dpl,jonathan-s/dpl,felixrieseberg/dpl,meatballhat/dpl,wtcross/dpl,johanneswuerbach/dpl,mathiasrw/dpl,Hearst-Hatchery/dpl,giltsl/travis-test,computology/dpl,gmegidish/dpl,nmohoric/dpl,axelfontaine/dpl,kalbasit/dpl,montaro/dpl,testfairy/dpl,STRd6/dpl,mattk42/dpl,goodeggs/dpl,sebest/dpl,clayreimann/dpl,jsloyer/dpl,ianblenke/dpl,travis-ci/dpl,tt/dpl,flowlo/dpl,Zyko0/dpl,timoschilling/dpl,jorihardman/dpl,pengsrc/dpl,adamjmcgrath/dpl
76ab7080e0ed60176d4c03e59c345d392ad3d19e
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode # JRuby in 1.8 mode - jruby-19mode # JRuby in 1.9 mode - rbx-18mode - rbx-19mode
language: ruby rvm: - 1.9.2 - 1.9.3 - jruby-19mode # JRuby in 1.9 mode - rbx-19mode
Update to Ruby 1.9 or better
Update to Ruby 1.9 or better
YAML
apache-2.0
pmorton/html2md
62daeb30375b4fde0f95e36bcc094d18dd12c691
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '10' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc script: - nyc npm test
sudo: false language: node_js node_js: - '10' - '11' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc script: - nyc npm test
Test with Node.js 11 on Travis CI.
Test with Node.js 11 on Travis CI.
YAML
mit
bigeasy/arguable
c0fa372c79c3a296f477355c83c42d412d1f430e
.travis.yml
.travis.yml
language: objective-c osx_image: xcode8 script: - cd URITemplate && swift package generate-xcodeproj - xcodebuild -project Mockingjay.xcodeproj -scheme Mockingjay test -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty - pod lib lint --quick
matrix: include: - os: osx osx_image: xcode8.3 - os: osx osx_image: xcode9.1 script: - cd URITemplate && swift package generate-xcodeproj - xcodebuild -project Mockingjay.xcodeproj -scheme Mockingjay test -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty - pod lib lint --quick
Test on Xcode 8.3 and Xcode 9.1
chore: Test on Xcode 8.3 and Xcode 9.1
YAML
bsd-3-clause
kylef/Mockingjay,kylef/Mockingjay
38435fee5a1e54a624d093bd7fc5f13372651921
.travis.yml
.travis.yml
language: node_js node_js: - "7.0" - "6.0" - "5.0" - "4.0" - "iojs" - "0.12" - "0.11" - "0.10" - "0.8" # Allow Travis tests to run in containers. sudo: false
language: node_js node_js: - "7.0" - "6.0" - "5.0" - "4.0" - "iojs" - "0.12" - "0.11" - "0.10" - "0.8" matrix: allow_failures: - node_js: "0.8" # Allow Travis tests to run in containers. sudo: false
Allow test failures in Node 0.8.
Allow test failures in Node 0.8.
YAML
mit
benjamn/commoner
ed871803ca1ed1a732be1f226f7726f569b86c02
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.1.0 env: - PUPPET_VERSION="~> 2.7.0" - PUPPET_VERSION="~> 3.6.2" before_install: - gem update bundler - bundle --version - gem update --system 2.1.11 - gem --version script: "rake" gemfile: Gemfile
language: ruby rvm: - 1.9.3 - 2.1.0 env: - PUPPET_VERSION="~> 2.7.0" - PUPPET_VERSION="~> 3.6.2" before_install: - gem update bundler - bundle --version - gem update --system 2.1.11 - gem --version script: "rake" gemfile: Gemfile matrix: exclude: - rvm: 2.1.0 env: PUPPET_VERSION="~> 2.7.0"
Exclude Ruby 2.1.0/Puppet 2.7.x from Travis build
Exclude Ruby 2.1.0/Puppet 2.7.x from Travis build
YAML
mit
Graylog2/graylog2-puppet,Jimdo/graylog2-puppet,treydock/graylog2-puppet,Graylog2/graylog2-puppet,treydock/graylog2-puppet,Jimdo/graylog2-puppet,Graylog2/graylog2-puppet,treydock/graylog2-puppet,Jimdo/graylog2-puppet
682edb7be6d7d82bc1addbab901cce98c97ef7aa
.travis.yml
.travis.yml
if: tag IS present OR type = pull_request OR (branch = master AND type = push) # we only CI the master, tags and PRs language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" addons: apt: packages: - graphviz install: - pip install -U pip setuptools - python setup.py sdist - pip install dist/pydot-*.tar.gz - pip install -r requirements.txt script: - cd test/ - python pydot_unittest.py # after_success: # - coveralls
if: tag IS present OR type = pull_request OR (branch = master AND type = push) # we only CI the master, tags and PRs language: python # Main test jobs: The lowest and highest current Python versions. python: - 3.6 - 3.9 # List additional test configurations individually, instead of using # matrix expansion, to prevent an exponential growth of test jobs. matrix: include: # Python versions that are EOL, but we still support. # PY2.7 here should bring out any PY3.5 incompatibilities as well. - python: 2.7 arch: amd64 # pydot itself should be architecture-independent. Still, some # limited testing on other architectures to catch corner cases. - python: 2.7 arch: ppc64le - python: 3.9 arch: ppc64le addons: apt: packages: - graphviz install: - pip install -U pip setuptools - python setup.py sdist - pip install dist/pydot-*.tar.gz - pip install -r requirements.txt script: - cd test/ - python pydot_unittest.py # after_success: # - coveralls
Add ppc64le and bump Python versions in Travis CI
Add ppc64le and bump Python versions in Travis CI Considering that: - IBM, through its supplier Datamatics, requested many Python projects to [add the `ppc64le` (Power) architecture][1] to their Travis CI test matrices. Related links: - ibm.com: [Build your open source projects on IBM Power Systems with Travis CI][2]. - youtube.com: [OpenPOWER Summit NA 2019: Developing Applications using Acceleration Hardware on Power][3]. - Gerrit Huizenga of IBM (@gerrith3 on GitHub) provided more details on the [motives and open source contributions of IBM][4] in answer to questions from Ludovic Fernandez (@ldez) of nrdcg/goinwx. - The request to add `ppc64` testing was also made to pydot in PR [pydot/pydot#243][5] by @asellappen of Datamatics. The proposed implementation extended the test job configuration by [matrix expansion][6]. - [Matrix expansion][7] means adding a new dimension to the build configuration (e.g. `arch`, `os`, `env`), after which the number of test jobs is automatically multiplied by the number of choices given in the newly added dimension. In this case, it would add a dimension of two architectures, expanding the matrix of test jobs by a factor of 2: 5 Python versions (at that time) * 2 architectures = 10 test runs of 2 to 3 minutes each. - Gerrit Huizenga of IBM said he thinks the adding of `ppc64le` test jobs to Travis will not lead to additional billing from Travis CI to the OSS community, because [he provides Travis CI with the Power hardware][8]. - The [Travis CI documentation on CPU architectures][9] currently says IBM architecture support is in beta stage and only available for Open Source repositories. - There are many abstraction layers between pydot and the hardware architecture, including other libraries, Python and the operating system. Pydot itself does not need to be compiled for a specific architecture. In a perfect world, pydot is architecture-independent and testing pydot on a single architecture should be sufficient. - However, the world is not perfect and [abstraction layers can be leaky][10]. According to Gerrit Huizenga of IBM, [corner cases do come up][11], which is why they do so much testing up front and provide free access to testing. - Still, even if an automated testing service is provided for free, it has an [environmental footprint][12], so there are limits to how much we should make use of that as well. - Travis CI also requests open-source users to remember that Travis CI provides its service free of charge to the community and only specify the matrix we [actually need][13]. - Even if we ever find an architecture-specific bug in pydot, it seems highly likely that it will come out on several Python versions for that architecture. - All of this was further discussed between pydot maintainers Sebastian Kalinowski (@prmtl) and Peter Nowee (@peternowee) and Gerrit Huizenga of IBM in PR [pydot/pydot#245][14]. The following was decided: - Baseline testing is kept at `amd64`, with testing of the lowest and the highest Python versions supported by the Python community, as well as the lowest end-of-life (EOL) Python version that we still choose to support pydot on. Currently, that means Python 3.6, 3.9 and 2.7 respectively. - For other architectures, such as `ppc64le`, we do limited testing to catch reasonably expectable corner cases and validate architecture independence in a resource conserving way. For now, we start with Python 2.7 and 3.9. We can always reconsider this policy depending on actual findings. [1]: https://github.com/pulls?q=author%3Aasellappen+ppc64le+travis [2]: https://developer.ibm.com/tutorials/travis-ci-on-power/ [3]: https://www.youtube.com/watch?v=qPZtf3hoMSs [4]: https://github.com/nrdcg/goinwx/pull/5 [5]: https://github.com/pydot/pydot/pull/243 [6]: https://docs.travis-ci.com/user/build-matrix/#matrix-expansion [7]: https://config.travis-ci.com/matrix_expansion [8]: https://github.com/nrdcg/goinwx/pull/5#issuecomment-721422838 [9]: https://docs.travis-ci.com/user/multi-cpu-architectures/ [10]: https://www.joelonsoftware.com/2002/11/11/the-law-of-leaky-abstractions/ [11]: https://github.com/nrdcg/goinwx/pull/5#issuecomment-719084047 [12]: https://en.wikipedia.org/wiki/Data_center#Energy_use [13]: https://docs.travis-ci.com/user/build-matrix/#listing-individual-jobs [14]: https://github.com/pydot/pydot/pull/245
YAML
mit
erocarrera/pydot,pydot/pydot
59c4b21381e250ca23396550cc42ba227af993cc
.travis.yml
.travis.yml
language: node_js node_js: - "5.10.1" before_script: "npm install -g codeclimate-test-reporter" script: - npm run lint - $(npm bin)/nyc $(npm bin)/babel-node scripts/batchTests.js after_script: - "CODECLIMATE_REPO_TOKEN=27125df6192d300baf67cd5f5eab6597c998256f4883b744a1055d0f0c18e608 codeclimate-test-reporter < coverage/lcov.info" - "./node_modules/.bin/codecov"
language: node_js node_js: - "5.10.1" before_script: "npm install -g codeclimate-test-reporter" script: - npm run lint - $(npm bin)/nyc $(npm bin)/babel-node scripts/batchTests.js after_script: - "CODECLIMATE_REPO_TOKEN=27125df6192d300baf67cd5f5eab6597c998256f4883b744a1055d0f0c18e608 codeclimate-test-reporter < coverage/lcov.info" - "./node_modules/.bin/codecov -f coverage/lcov.info"
Add the path of the coverage file
Add the path of the coverage file
YAML
mit
acdlite/recompose,acdlite/recompose
60354e4ab458c5d6ea430b15e3aef7c53b16eefd
.travis.yml
.travis.yml
language: php matrix: include: - php: 5.6 - php: 7.0 - php: 7.1 env: - ENABLE_XDEBUG=true - php: 7.1 env: - ENABLE_DEVTOOLS=true - php: nightly allow_failures: - php: nightly fast_finish: true os: - linux sudo: false cache: directories: - vendor/ before_script: - if [[ ! $ENABLE_XDEBUG ]]; then phpenv config-rm xdebug.ini || echo "ext-xdebug is not available, cannot remove it."; fi script: - composer install - if [[ $ENABLE_XDEBUG ]]; then php vendor/bin/phpunit --coverage-clover clover.xml; else php vendor/bin/phpunit; fi - if [[ $ENABLE_DEVTOOLS ]]; then php vendor/bin/phpcs --standard=phpcs.xml; fi after_script: >- if [[ $ENABLE_XDEBUG ]]; then composer require 'satooshi/php-coveralls:~1.0'; echo 'json_path: coveralls-upload.json' > .coveralls.yml; php vendor/bin/coveralls -v --coverage_clover=clover.xml; fi
language: php matrix: include: - php: 5.6 - php: 7.0 - php: 7.0 env: - COMPOSER_FLAGS=--prefer-lowest - php: 7.1 env: - ENABLE_XDEBUG=true - php: 7.1 env: - ENABLE_DEVTOOLS=true - php: nightly allow_failures: - php: nightly fast_finish: true os: - linux sudo: false cache: directories: - vendor/ before_script: - if [[ ! $ENABLE_XDEBUG ]]; then phpenv config-rm xdebug.ini || echo "ext-xdebug is not available, cannot remove it."; fi script: - composer update $COMPOSER_FLAGS - if [[ $ENABLE_XDEBUG ]]; then php vendor/bin/phpunit --coverage-clover clover.xml; else php vendor/bin/phpunit; fi - if [[ $ENABLE_DEVTOOLS ]]; then php vendor/bin/phpcs --standard=phpcs.xml; fi after_script: >- if [[ $ENABLE_XDEBUG ]]; then composer require 'satooshi/php-coveralls:~1.0'; echo 'json_path: coveralls-upload.json' > .coveralls.yml; php vendor/bin/coveralls -v --coverage_clover=clover.xml; fi
Add a test layer on lowest dependencies.
Add a test layer on lowest dependencies. This will help identify incompatible changes.
YAML
apache-2.0
CHStudio/laravel-transclude
7d6423d5f5bb6e4603c0bdccc52f3efcce554dad
.travis.yml
.travis.yml
language: c os: - linux - osx addons: apt: packages: - libbsd-dev - libarchive-dev - libssl-dev - liblzma-dev sudo: required compiler: - clang - gcc before_install: - scripts/install_deps.sh before_script: - autoreconf -i script: - scripts/travis_build.sh after_failure: - kyua report --verbose notifications: email: false irc: channels: - "irc.freenode.org#pkgng" on_success: change on_failure: always
language: c os: - linux - osx addons: apt: packages: - libbsd-dev - libarchive-dev - libssl-dev - liblzma-dev - liblua5.2-dev sudo: required compiler: - clang - gcc before_install: - scripts/install_deps.sh before_script: - autoreconf -i script: - scripts/travis_build.sh after_failure: - kyua report --verbose notifications: email: false irc: channels: - "irc.freenode.org#pkgng" on_success: change on_failure: always
Add lua for building lutok
Add lua for building lutok
YAML
bsd-2-clause
khorben/pkg,khorben/pkg,en90/pkg,khorben/pkg,en90/pkg
a565918dc14e833878bf18ecaa176e035990849b
.travis.yml
.travis.yml
language: node_js node_js: - '0.12' - '4' - '5' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
language: node_js node_js: - '0.12' - '4' - '5' - '6' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
Build with Node.js 6 on Travis CI.
Build with Node.js 6 on Travis CI.
YAML
mit
bigeasy/assessment,bigeasy/assessment
3f3a6a11c7f7d57b3b518792e87a79c7b851c6d9
.travis.yml
.travis.yml
language: php php: - '5.4' - '5.6' - '7.0' env: matrix: - XDEBUG_VERSION=2.4.1 - XDEBUG_VERSION=2.3.3 - XDEBUG_VERSION=2.2.3 # XDebug version on Vagrant matrix: exclude: - env: XDEBUG_VERSION=2.3.3 php: '7.0' - env: XDEBUG_VERSION=2.2.3 php: '7.0' before_install: - pecl install xdebug-$XDEBUG_VERSION - phpenv config-add travis-php.ini - nvm install 6.5.0 - nvm use 6.5.0 - npm config -g set progress false install: - npm install script: - npm run compile --silent - npm run lint --silent - npm cover --silent after_success: - 'nyc report --reporter=lcov > coverage.lcov && codecov' after_script: - cat /tmp/xdebug.log sudo: false
language: php php: - '5.4' - '5.6' - '7.0' env: matrix: - XDEBUG_VERSION=2.4.1 - XDEBUG_VERSION=2.3.3 - XDEBUG_VERSION=2.2.3 # XDebug version on Vagrant matrix: exclude: - env: XDEBUG_VERSION=2.3.3 php: '7.0' - env: XDEBUG_VERSION=2.2.3 php: '7.0' before_install: - pecl install xdebug-$XDEBUG_VERSION - phpenv config-add travis-php.ini - nvm install 6.5.0 - nvm use 6.5.0 - npm config -g set progress false install: - npm install script: - npm run compile --silent - npm run lint --silent - npm run cover --silent after_success: - 'nyc report --reporter=lcov > coverage.lcov && codecov' after_script: - cat /tmp/xdebug.log sudo: false
Fix wrong command in Travis
Fix wrong command in Travis
YAML
mit
felixfbecker/vscode-php-debug,felixfbecker/vscode-php-debug,felixfbecker/vscode-php-debug
d1d0f0b3abfe6151855c2922327f47775cfdead5
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '0.10' - '0.12' 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.2' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
Test with Node.js 4.2 on Travis CI.
Test with Node.js 4.2 on Travis CI.
YAML
mit
bigeasy/abend
876286fcee220bce16bd6b37128096ee87794259
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" - "3.4" - "3.5" - "3.6" install: - pip install pipenv - pipenv install --dev script: - pipenv run python -m pytest --cov-report term-missing --cov=pytac - pipenv run flake8 after_success: - coveralls
sudo: false language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" install: - pip install pipenv - pipenv install --dev script: - pipenv run python -m pytest --cov-report term-missing --cov=pytac - pipenv run flake8 after_success: - coveralls
Add Python 3.7 to Travis configuration.
Add Python 3.7 to Travis configuration.
YAML
apache-2.0
willrogers/pytac,willrogers/pytac
6409492e724a4f95a0212dd5a65559914a46f59d
.travis.yml
.travis.yml
language: go go: - "1.11" - "1.10.3" sudo: false install: - go get -u golang.org/x/lint/golint script: - golint -set_exit_status - go vet - go test
language: go go: - "1.11.1" - "1.10.4" sudo: false install: - go get -u golang.org/x/lint/golint script: - golint -set_exit_status - go vet - go test
Build against Go 1.11.1, 1.10.4
Build against Go 1.11.1, 1.10.4
YAML
mit
TV4/search-go
d6643a70180319d8eb3acbfc4c42a079c2381266
.travis.yml
.travis.yml
language: python python: - "2.7" script: ./TEST/regress.all
language: python python: - "2.7" script: ./TEST/test.at.travis
Change of the test script
Change of the test script
YAML
mit
usp-engineers-community/Open-usp-Tukubai,usp-engineers-community/Open-usp-Tukubai,usp-engineers-community/Open-usp-Tukubai,usp-engineers-community/Open-usp-Tukubai
3c5a5af34e12b387be86c84235598063423d3cb7
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - '10' - '8' - '6' - '4' env: - MAIN_RUN=true - MAIN_RUN=false && REACT_VERSION=0.14 - MAIN_RUN=false && REACT_VERSION=15.0 before_install: - npm install -g npm@2 before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - if [[ $MAIN_RUN == false ]]; then npm install react-dom@^$REACT_VERSION react@^$REACT_VERSION; fi
language: node_js sudo: false node_js: - '10' - '8' - '6' env: - REACT_VERSION=0.14.9 - REACT_VERSION=15.0 - REACT_VERSION=16.0 before_install: - npm install -g npm@6.4.1 before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - npm install react-dom@^$REACT_VERSION react@^$REACT_VERSION
Stop testing Node 4, explicitly test React 16
Stop testing Node 4, explicitly test React 16 Node 4 is EOL and should not be used anymore. This removes it from the test suite so that we can speed things up a bit. I've also started explicitly resting React 16, rather than rely on the fact that our devDependencies have React 16. I've also made explicit testing against at least React 0.14.9, since we don't support versions of React below that, and since it is pre-major version, npm will treat feature versions as major versions. Further, this also uses the newest version of npm to do our install which should speed things up a bit. npm version is independent of Node version so this should have no impact other than speedier installs.
YAML
mit
brigade/react-waypoint,brigade/react-waypoint
746765d6a3a66d08f5d7e93489a808438c446785
.travis.yml
.travis.yml
sudo: required language: go go: - 1.5 - 1.6 - 1.7 - tip install: - sudo apt-add-repository ppa:git-core/ppa -y - sudo apt-get update -y - sudo apt-get install git -y - make deps
sudo: required language: go go: - 1.5 - 1.6 - 1.7 - 1.8 - tip install: - sudo apt-add-repository ppa:git-core/ppa -y - sudo apt-get update -y - sudo apt-get install git -y - make deps
Add Go 1.8 to CI configuration
Add Go 1.8 to CI configuration
YAML
mpl-2.0
c4milo/gitd
b2ad7126448957c84048b43a0b339dd6a141d183
.travis.yml
.travis.yml
language: php php: - 5.6 - 5.5 - 5.4 - 5.3 - hhvm
language: php php: - 7.0 - 5.6 - 5.5 - 5.4 - 5.3 - hhvm - hhvm-nightly matrix: fast_finish: true allow_failures: - php: 7.0 - php: hhvm-nightly
Test on nightly releases of PHP (7.0) and HHVM
Test on nightly releases of PHP (7.0) and HHVM See https://github.com/erusev/parsedown/issues/294 See https://github.com/erusev/base/commit/12bf1c6d05e0ec89b1235078c6b5af3094422e0f#commitcomment-10090016 Nightly releases are allowed to fail since they are not stable and could fail in unpredictable ways. New versions of PHP could be added as they are released. I think they should not be in the allowed to fail part of the matrix then.
YAML
mit
mkudenko/parsedown,dignajar/parsedown,dsuess/parsedown,jinghm318/parsedown,Hugues-Antoine/parsedown,vihoangson/parsedown,BR0kEN-/parsedown,mkudenko/parsedown,venusdharan/parsedown,erusev/parsedown,ProfNandaa/parsedown,wstoettinger/parsedown,jamesg/parsedown,erdemece/parsedown,xetryj/parsedown,SooryaN/parsedown,dignajar/parsedown,BR0kEN-/parsedown,wstoettinger/parsedown,xetryj/parsedown,ProfNandaa/parsedown,cmxiaocai/parsedown,wkevin/parsedown,jinghm318/parsedown,demeyere/parsedown,demeyere/parsedown,jamesg/parsedown,dsuess/parsedown,k-joseph/parsedown,mariosotil/parsedown,erdemece/parsedown,Pasarkode/parsedown,mariosotil/parsedown,wkevin/parsedown,vihoangson/parsedown,allsmy/parsedown,venusdharan/parsedown,Hugues-Antoine/parsedown,Diego-Brocanelli/parsedown,erusev/parsedown,k-joseph/parsedown,SooryaN/parsedown,Pasarkode/parsedown,allsmy/parsedown,cmxiaocai/parsedown,Diego-Brocanelli/parsedown
ce08226f461c509aee2b9b85a592562eef239890
.travis.yml
.travis.yml
language: php php: 7.1 sudo: false cache: directories: - vendor before_script: - composer self-update - composer install script: vendor/bin/phpunit
language: php php: 7.1 sudo: false cache: directories: - vendor before_script: - composer self-update - composer install script: vendor/bin/phpunit deploy: provider: script script: curl $ENVOYER_DEPLOYMENT_HOOK on: branch: master
Implement Continuous Deployment with TravisCI
Implement Continuous Deployment with TravisCI
YAML
mit
laravelio/pastebin,laravelio/pastebin,laravelio/pastebin
cb5e74a03c10dee42a0c77791b1e35ef9acae24c
.travis.yml
.travis.yml
language: ruby bundler_args: --without debug doc tooling rvm: - 1.8.7 - 1.9.2 - 1.9.3 - ruby-head - ree - jruby-18mode - jruby-19mode - jruby-head - rbx-18mode - rbx-19mode - rbx-head notifications: irc: "irc.freenode.org#htty" script: "bundle exec rake" matrix: allow_failures: - rvm: 1.9.3 - rvm: ruby-head - rvm: jruby-18mode - rvm: jruby-19mode - rvm: jruby-head - rvm: rbx-18mode - rvm: rbx-19mode - rvm: rbx-head
language: ruby bundler_args: --without debug doc tooling rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - ruby-head - ree - jruby-18mode - jruby-19mode - jruby-head - rbx-18mode - rbx-19mode - rbx-head notifications: irc: "irc.freenode.org#htty" script: "bundle exec rake" matrix: allow_failures: - rvm: ruby-head - rvm: jruby-18mode - rvm: jruby-19mode - rvm: jruby-head - rvm: rbx-18mode - rvm: rbx-19mode - rvm: rbx-head
Configure Travis CI to build against all common Ruby versions
Configure Travis CI to build against all common Ruby versions
YAML
mit
shaunstanislaus/htty,pepijnve/htty,lanastasov/htty,Ribeiro/htty,yous/htty,bradparks/htty,ilesan-ypg/htty,dibenso/htty,shekkbuilder/htty,paolomainardi/htty
379e10417c115369b813103d3a808a1472d45df1
.travis.yml
.travis.yml
language: ruby cache: bundler bundler_args: --without development rvm: - '2.4.0' before_install: - gem update --system - gem install bundler
language: ruby cache: bundler bundler_args: --without development rvm: - '2.4.0' before_install: - gem update --system - gem install bundler before_script: - bundle exec rails db:create:all - bundle exec rails db:migrate
Add DB setup tasks to CI
Add DB setup tasks to CI
YAML
agpl-3.0
jgraichen/mnemosyne-server,jgraichen/mnemosyne-server,jgraichen/mnemosyne-server
6f4fb31e704629a5f9ab53ec8b2c3d77a8745034
.travis.yml
.travis.yml
language: node_js node_js: - "6" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 install: - npm install --global bower gulp - npm install - bower install script: gulp
language: node_js node_js: - "6" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 install: - npm install --global bower gulp - npm install - bower install script: gulp deploy: gulp deploy
Add deploy step to TravisCI config
Add deploy step to TravisCI config Complete shot in the dark; but the prior worked so well, gotta try it.
YAML
mit
clhynfield/resume,clhynfield/resume,clhynfield/clayton-hynfield-resume
6716d772b1f419e529260f6402c037d94b5605e9
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 - nightly matrix: allow_failures: - php: nightly env: - SYMFONY_VERSION="" COMPOSER_OPTS="" - SYMFONY_VERSION="2.7" COMPOSER_OPTS="--prefer-lowest" - SYMFONY_VERSION="3.0" COMPOSER_OPTS="--prefer-lowest" - SYMFONY_VERSION="4.0" COMPOSER_OPTS="--prefer-lowest" install: - composer self-update --snapshot - tests/travis/symfony.php - composer update $COMPOSER_OPTS script: - vendor/bin/phpunit - tests/lint.sh - vendor/bin/composer-require-checker jobs: include: - stage: coverage script: - vendor/bin/phpunit --coverage-clover=coverage.xml - bash <(curl -s https://codecov.io/bash) git: depth: 5 dist: trusty sudo: false
language: php php: - 7.1 - 7.2 - 7.3 - nightly matrix: allow_failures: - php: nightly env: - SYMFONY_VERSION="" COMPOSER_OPTS="" - SYMFONY_VERSION="2.7" COMPOSER_OPTS="--prefer-lowest" - SYMFONY_VERSION="3.0" COMPOSER_OPTS="--prefer-lowest" - SYMFONY_VERSION="4.0" COMPOSER_OPTS="--prefer-lowest" install: - composer self-update --snapshot - tests/travis/symfony.php - composer update $COMPOSER_OPTS script: - vendor/bin/phpunit - tests/lint.sh - vendor/bin/composer-require-checker jobs: include: - stage: coverage script: - vendor/bin/phpunit --coverage-clover=coverage.xml - bash <(curl -s https://codecov.io/bash) git: depth: 5 dist: trusty sudo: false
Add support for PHP 7.3
Add support for PHP 7.3
YAML
apache-2.0
duncan3dc/console
99dfac338e904b63e48f04038064b1b20324d024
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "5" - "4" - "0.12" - "0.10"
sudo: false language: node_js node_js: - "6" - "5" - "4" - "0.12" - "0.10"
Add support for Node.js 6
Add support for Node.js 6
YAML
mit
silas/node-consul
6249d8f29cd360e30871fe09d783e9e05a25633a
.travis.yml
.travis.yml
language: node_js node_js: - '6' - '8' - node before_deploy: - 'npm run build' deploy: provider: npm email: $NPM_EMAIL api_key: $NPM_TOKEN skip_cleanup: true on: tags: true repo: jsynowiec/good-sentry node: '8'
language: node_js node_js: - '8' - '10' - node before_deploy: - 'npm run build' deploy: provider: npm email: $NPM_EMAIL api_key: $NPM_TOKEN skip_cleanup: true on: tags: true repo: jsynowiec/good-sentry node: '10'
Disable Node.js v6 CI builds
Disable Node.js v6 CI builds
YAML
mit
jsynowiec/good-sentry
66efadc11592b76291fbf9fbe8ad1c4fdd2cec97
.travis.yml
.travis.yml
sudo: false language: node_js cache: directories: - "node_modules" node_js: - "4"
language: node_js cache: directories: - "node_modules" node_js: - "4"
Remove sudo: false as this is now Travis default
Remove sudo: false as this is now Travis default
YAML
mit
open-contracting/ocds-show,open-contracting/ocds-show
e86ee7118791a6eb7ed1ccdff3ba6e4888abd763
.travis.yml
.travis.yml
language: php php: - 7.0 - 7.1 - 7.2 - 7.3 - 7.4snapshot before_script: - travis_retry composer self-update - travis_retry composer install --prefer-source --no-interaction after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover sudo: false script: ./vendor/bin/phpunit --coverage-clover=coverage.clover matrix: fast_finish: true
language: php php: - 7.0 - 7.1 - 7.2 - 7.3 - 7.4 before_script: - travis_retry composer self-update - travis_retry composer install --prefer-source --no-interaction after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover sudo: false script: ./vendor/bin/phpunit --coverage-clover=coverage.clover matrix: fast_finish: true
Use stable php7.4 for 1.4 version
Use stable php7.4 for 1.4 version
YAML
mit
laravel-doctrine/orm
975607a19bef04760be1e3a98c1f41997ea8ee47
.travis.yml
.travis.yml
language: php git: depth: 5 php: - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 matrix: include: - php: hhvm dist: trusty sudo: required install: - composer self-update - composer install script: - vendor/bin/phug-dev check --report --coverage-php-version=5.6 notifications: slack: phug:nzXFnxhU14RWK2EQSDL0u08z addons: code_climate: repo_token: 9c0588d54489bc33e39a491695edf96ee097a0f071be4b89692836dedc70abad
language: php git: depth: 5 php: - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 matrix: include: - php: hhvm-3.18 dist: trusty sudo: required - php: hhvm-3.19 dist: trusty sudo: required - php: hhvm-3.20 dist: trusty sudo: required - php: hhvm-3.21 dist: trusty sudo: required - php: hhvm-3.22 dist: trusty sudo: required - php: hhvm-3.23 dist: trusty sudo: required - php: hhvm-3.24 dist: trusty sudo: required allow_failures: - php: hhvm-3.18 dist: trusty sudo: required - php: hhvm-3.19 dist: trusty sudo: required - php: hhvm-3.20 dist: trusty sudo: required - php: hhvm-3.21 dist: trusty sudo: required - php: hhvm-3.22 dist: trusty sudo: required - php: hhvm-3.23 dist: trusty sudo: required - php: hhvm-3.24 dist: trusty sudo: required install: - composer self-update - composer install script: - vendor/bin/phug-dev check --report --coverage-php-version=5.6 notifications: slack: phug:nzXFnxhU14RWK2EQSDL0u08z addons: code_climate: repo_token: 9c0588d54489bc33e39a491695edf96ee097a0f071be4b89692836dedc70abad
Test multiple HHVM version and allow failure on them
Test multiple HHVM version and allow failure on them
YAML
mit
phug-php/formatter
f85607f3a2c9b2327dc829637bae36964707a413
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7 # also test against HHVM, but require "trusty" and ignore errors matrix: include: - php: hhvm dist: trusty allow_failures: - php: hhvm sudo: false install: - composer install --no-interaction script: - vendor/bin/phpunit --coverage-text
language: php php: # - 5.3 # requires old distro, see below - 5.4 - 5.5 - 5.6 - 7 - 7.1 - 7.2 - hhvm # ignore errors, see below # lock distro so future defaults will not break the build dist: trusty matrix: include: - php: 5.3 dist: precise allow_failures: - php: hhvm sudo: false install: - composer install --no-interaction script: - vendor/bin/phpunit --coverage-text
Update Travis config to test against legacy PHP 5.3 through PHP 7.2
Update Travis config to test against legacy PHP 5.3 through PHP 7.2
YAML
mit
clue/php-term-react
54524d8ffa89bfff641782a347a87032b536278a
.travis.yml
.travis.yml
language: node_js node_js: node addons: apt: sources: - ubuntu-toolchain-r-test packages: - libcairo2-dev - libjpeg8-dev - libpango1.0-dev - libgif-dev - g++-4.9 env: - CXX=g++-4.9 before_install: - npm explore npm -g -- npm install node-gyp@latest script: npm run lint && npm test after_success: npm run coverage notifications: email: on_success: never
language: node_js node_js: node addons: apt: sources: - ubuntu-toolchain-r-test packages: - libcairo2-dev - libjpeg8-dev - libpango1.0-dev - libgif-dev - g++-4.9 env: - CXX=g++-4.9 before_install: - npm install npm@4 -g && npm explore npm -g -- npm install node-gyp@latest script: npm run lint && npm test after_success: npm run coverage notifications: email: on_success: never
Use npm 4 on Travis
Use npm 4 on Travis
YAML
mit
lukechilds/merge-images
63618af6136db6b1cd9550531b85086b24046da7
.travis.yml
.travis.yml
services: - postgresql language: ruby before_script: - cp config/database.example.yml config/database.yml - cp .env.example .env script: - bin/rails db:setup - bin/rails db:test:prepare - bin/rspec
services: - postgresql language: ruby before_install: - gem install bundler:1.17.0 before_script: - cp config/database.example.yml config/database.yml - cp .env.example .env script: - bin/rails db:setup - bin/rails db:test:prepare - bin/rspec
Use the right bundler version on CI
Use the right bundler version on CI
YAML
mit
usgo/gocongress,usgo/gocongress,usgo/gocongress,usgo/gocongress
b8dbf0aaeea4da5d9107795c211355d4b138afee
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "4.2.4" - "0.12"
sudo: false language: node_js node_js: - "5" - "4" - "0.12"
Add looser ranges for node versions
Add looser ranges for node versions
YAML
mit
simonsmith/postcss-property-lookup
332325df448791ce2a85d0ae426d1e4e1ed69fd8
.travis.yml
.travis.yml
language: ruby services: mongodb rvm: - 1.8.7 - 1.9.2 - 1.9.3 - ruby-head branches: only: - master - v3 gemfile: - gemfiles/rails30.gemfile - gemfiles/rails31.gemfile - gemfiles/rails32.gemfile
language: ruby services: mongodb rvm: - 1.8.7 - 1.9.2 - 1.9.3 gemfile: - gemfiles/rails30.gemfile - gemfiles/rails31.gemfile - gemfiles/rails32.gemfile
Reconfigure Travis to exclude HEAD Ruby
Reconfigure Travis to exclude HEAD Ruby
YAML
mit
reenhanced/audited,Datacom/audited,cfiorini/audited,instacart/audited,xuwupeng2000/audited,simplepractice/audited,klatunetworks/audited,ledermann/audited,GhostGroup/audited,azanar/audited,airbnb/audited,collectiveidea/audited,ConsultingMD/audited,ZHANGJIE982/audited,ajoulie/audited,ontrack/audited,lrgalego/audited,ishail/audited,happio/audited
e887bfabc63ad7006cbc1457a513bdb700c7779c
.travis.yml
.travis.yml
language: python sudo: false python: - 3.6 - 3.5 env: matrix: - TOXENV=py27 - TOXENV=py33 - TOXENV=py34 - TOXENV=py35 # py36 fails because python3-openid tries to use a missing # component in xml module, enable when that's ready # - TOXENV=py36 - TOXENV=pypy matrix: allow_failures: - python: 3.6 env: TOXENV=py36 exclude: - python: 3.6 env: TOXENV=py27 - python: 3.6 env: TOXENV=py33 - python: 3.6 env: TOXENV=py34 - python: 3.6 env: TOXENV=py35 - python: 3.6 env: TOXENV=pypy - python: 3.5 env: TOXENV=py36 fast_finish: true addons: apt: packages: - libxmlsec1-dev - swig install: - pip install tox -U pip script: - tox -e $TOXENV
language: python sudo: false python: - 3.6 - 3.5 env: matrix: - TOXENV=py27 - TOXENV=py33 - TOXENV=py34 - TOXENV=py35 - TOXENV=py36 - TOXENV=pypy matrix: exclude: - python: 3.6 env: TOXENV=py27 - python: 3.6 env: TOXENV=py33 - python: 3.6 env: TOXENV=py34 - python: 3.6 env: TOXENV=py35 - python: 3.6 env: TOXENV=pypy - python: 3.5 env: TOXENV=py36 fast_finish: true addons: apt: packages: - libxmlsec1-dev - swig install: - pip install tox -U pip script: - tox -e $TOXENV
Enable Python 3.6 in Travis integration
Enable Python 3.6 in Travis integration
YAML
bsd-3-clause
python-social-auth/social-core,tobias47n9e/social-core,python-social-auth/social-core
b681420cbc000bfbcdc67592ef424ed98d07b01a
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '12' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc mocha script: - nyc npm test
sudo: false language: node_js node_js: - '12' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc proof script: - nyc npm test
Install Proof runner at Travis CI.
Install Proof runner at Travis CI. See #436.
YAML
mit
bigeasy/paxos,bigeasy/paxos
6e6ef6b84e2b81f759d4a7b758e49038c039e672
.travis.yml
.travis.yml
language: objective-c osx_image: xcode8.3 env: global: - PROJECT=GLTableCollectionView.xcodeproj - SCHEME=GLTableCollectionView - SDK=iphonesimulator10.2 - DESTINATION="platform=iOS Simulator,OS=latest,name=iPhone 5" before_install: # - brew update # - brew upgrade - gem update - gem install xcpretty - gem install xcpretty-travis-formatter - gem clean - xcodebuild -version - xcodebuild -showsdks script: xcodebuild -project "$PROJECT" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug test | xcpretty -f `xcpretty-travis-formatter` && exit ${PIPESTATUS[0]}
language: objective-c osx_image: xcode8.3 env: global: - PROJECT=GLTableCollectionView.xcodeproj - SCHEME=GLTableCollectionView - SDK=iphonesimulator10.3 - DESTINATION="platform=iOS Simulator,OS=latest,name=iPhone 5" before_install: # - brew update # - brew upgrade - gem update - gem install xcpretty - gem install xcpretty-travis-formatter - gem clean - xcodebuild -version - xcodebuild -showsdks script: xcodebuild -project "$PROJECT" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug test | xcpretty -f `xcpretty-travis-formatter` && exit ${PIPESTATUS[0]}
Upgrade iOS Simulator to iOS 10.3
Upgrade iOS Simulator to iOS 10.3
YAML
mit
giulio92/GLTableCollectionView
da8ad93e35fcbfff17689131eefd4688e9536872
.travis.yml
.travis.yml
dist: trusty sudo: false language: python python: - "2.7" - "3.5" - "3.6" - "nightly" before_install: - pip install --upgrade setuptools pip - pip install --upgrade virtualenv install: - pip install --upgrade flake8 pylint - pip --version - virtualenv --version - flake8 --version - pylint --version - git --version # before_script: script: - flake8 --count ${TRAVIS_BUILD_DIR} # Do not run pylint on nightly Python versions as they may not be compatible - | if [[ $TRAVIS_PYTHON_VERSION != "nightly" ]]; then pylint ${TRAVIS_BUILD_DIR} fi
dist: trusty sudo: false language: python python: - "2.7" - "3.5" - "3.6" before_install: - pip install --upgrade setuptools pip - pip install --upgrade virtualenv install: - pip install --upgrade flake8 pylint - pip --version - virtualenv --version - flake8 --version - pylint --version - git --version # before_script: script: - flake8 --count ${TRAVIS_BUILD_DIR} - pylint ${TRAVIS_BUILD_DIR}
Stop testing with nightly Python versions in anticipation of the linters' move to pytest infrastructure.
Stop testing with nightly Python versions in anticipation of the linters' move to pytest infrastructure.
YAML
mpl-2.0
MozillaSecurity/funfuzz,nth10sd/funfuzz,nth10sd/funfuzz,nth10sd/funfuzz,MozillaSecurity/funfuzz,MozillaSecurity/funfuzz
320ea4572255db377d1995403e438788094ef54c
.travis.yml
.travis.yml
language : node_js node_js : - "6.95" before_script : - ( node --version | grep 4.1 && npm update -g npm ) || true - npm --version - npm install -g grunt-cli
language : node_js node_js : - "6.9.5" before_script : - ( node --version | grep 4.1 && npm update -g npm ) || true - npm --version - npm install -g grunt-cli
Fix NodeJS version typo in CI config.
Fix NodeJS version typo in CI config.
YAML
mit
squarefeet/ShaderParticleEngine
1968c2ca6a5187baa10fa479634ba0596da3cd7f
.travis.yml
.travis.yml
--- sudo: false cache: - pip before_cache: - rm ~/.cache/pip/log/debug.log language: python python: - "2.7" - "3.5" install: - pip install tox-travis coveralls script: - tox after_success: - coveralls
--- sudo: false cache: - pip before_cache: - rm ~/.cache/pip/log/debug.log language: python python: - "2.7" - "3.5" install: - pip install --upgrade pip - pip install tox-travis coveralls script: - tox after_success: - coveralls
Fix issue with Travis-CI using old pip version
Fix issue with Travis-CI using old pip version
YAML
apache-2.0
ewolinetz/openshift-ansible,twiest/openshift-ansible,ttindell2/openshift-ansible,rhdedgar/openshift-ansible,zhiwliu/openshift-ansible,maxamillion/openshift-ansible,akubicharm/openshift-ansible,mwoodson/openshift-ansible,mmahut/openshift-ansible,detiber/openshift-ansible,tagliateller/openshift-ansible,miminar/openshift-ansible,liggitt/openshift-ansible,gburges/openshift-ansible,kwoodson/openshift-ansible,abutcher/openshift-ansible,rjhowe/openshift-ansible,ttindell2/openshift-ansible,sdodson/openshift-ansible,markllama/openshift-ansible,aveshagarwal/openshift-ansible,maxamillion/openshift-ansible,aveshagarwal/openshift-ansible,abutcher/openshift-ansible,DG-i/openshift-ansible,anpingli/openshift-ansible,aveshagarwal/openshift-ansible,thoraxe/openshift-ansible,jwhonce/openshift-ansible,zhiwliu/openshift-ansible,rjhowe/openshift-ansible,nak3/openshift-ansible,nak3/openshift-ansible,jwhonce/openshift-ansible,EricMountain-1A/openshift-ansible,ewolinetz/openshift-ansible,maxamillion/openshift-ansible,detiber/openshift-ansible,ttindell2/openshift-ansible,wbrefvem/openshift-ansible,git001/openshift-ansible,tagliateller/openshift-ansible,akram/openshift-ansible,aveshagarwal/openshift-ansible,DG-i/openshift-ansible,git001/openshift-ansible,ewolinetz/openshift-ansible,wbrefvem/openshift-ansible,abutcher/openshift-ansible,sosiouxme/openshift-ansible,miminar/openshift-ansible,zhiwliu/openshift-ansible,markllama/openshift-ansible,ewolinetz/openshift-ansible,twiest/openshift-ansible,twiest/openshift-ansible,zhiwliu/openshift-ansible,abutcher/openshift-ansible,jwhonce/openshift-ansible,akubicharm/openshift-ansible,gburges/openshift-ansible,openshift/openshift-ansible,markllama/openshift-ansible,EricMountain-1A/openshift-ansible,markllama/openshift-ansible,aveshagarwal/openshift-ansible,ttindell2/openshift-ansible,rjhowe/openshift-ansible,mmahut/openshift-ansible,miminar/openshift-ansible,akubicharm/openshift-ansible,sosiouxme/openshift-ansible,ttindell2/openshift-ansible,sosiouxme/openshift-ansible,tagliateller/openshift-ansible,mmahut/openshift-ansible,sdodson/openshift-ansible,mwoodson/openshift-ansible,liggitt/openshift-ansible,sdodson/openshift-ansible,thoraxe/openshift-ansible,git001/openshift-ansible,DG-i/openshift-ansible,akram/openshift-ansible,sosiouxme/openshift-ansible,EricMountain-1A/openshift-ansible,maxamillion/openshift-ansible,zhiwliu/openshift-ansible,rjhowe/openshift-ansible,wbrefvem/openshift-ansible,miminar/openshift-ansible,tagliateller/openshift-ansible,openshift/openshift-ansible,sosiouxme/openshift-ansible,sdodson/openshift-ansible,sdodson/openshift-ansible,liggitt/openshift-ansible,liggitt/openshift-ansible,bparees/openshift-ansible,mmahut/openshift-ansible,twiest/openshift-ansible,liggitt/openshift-ansible,akubicharm/openshift-ansible,twiest/openshift-ansible,anpingli/openshift-ansible,tagliateller/openshift-ansible,DG-i/openshift-ansible,thoraxe/openshift-ansible,wbrefvem/openshift-ansible,maxamillion/openshift-ansible,kwoodson/openshift-ansible,mmahut/openshift-ansible,detiber/openshift-ansible,wbrefvem/openshift-ansible,detiber/openshift-ansible,akubicharm/openshift-ansible,ewolinetz/openshift-ansible,EricMountain-1A/openshift-ansible,EricMountain-1A/openshift-ansible,thoraxe/openshift-ansible,git001/openshift-ansible,markllama/openshift-ansible,jwhonce/openshift-ansible,miminar/openshift-ansible,bparees/openshift-ansible,detiber/openshift-ansible,rhdedgar/openshift-ansible,rjhowe/openshift-ansible,abutcher/openshift-ansible,jwhonce/openshift-ansible
d3b281ebc842058c6477eb4783785ba8baeab201
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.1 before_install: true install: true script: script/cibuild Tyro Tyro-iOS
language: objective-c osx_image: xcode7.1 before_install: true install: true script: script/cibuild Tyro Tyro-iOS notifications: webhooks: urls: - https://webhooks.gitter.im/e/1d781e1bcbabade5de35 on_success: always on_failure: always on_start: always
Add Gitter integration for Travis
Add Gitter integration for Travis
YAML
bsd-3-clause
CodaFi/Tyro,typelift/Tyro,mpurland/Tyro,CodaFi/Tyro,typelift/Tyro
904ac1bc4975f65300e0854c9ea1d82f0d456a4c
.travis.yml
.travis.yml
language: go go: - 1.2.2 - 1.6.1 env: - GIMME_OS=linux GIMME_ARCH=amd64 - GIMME_OS=darwin GIMME_ARCH=amd64 - GIMME_OS=windows GIMME_ARCH=amd64 - GIMME_OS=linux GIMME_ARCH=arm GOARM=6 install: - go get -d -v ./rename - go get -d -v ./mame-history - go get -d -v . script: - go build -tags noasm -o rename-bin -v ./rename - go build -tags noasm -o mame-history-bin -v ./mame-history - go build -tags noasm -v . - ./scripts/run-tests.sh
language: go go: - 1.2.2 - 1.7.1 env: - GIMME_OS=linux GIMME_ARCH=amd64 - GIMME_OS=darwin GIMME_ARCH=amd64 # - GIMME_OS=windows GIMME_ARCH=amd64 - GIMME_OS=linux GIMME_ARCH=arm GOARM=6 install: - go get -d -v ./rename - go get -d -v ./mame-history - go get -d -v . script: - go build -tags noasm -o rename-bin -v ./rename - go build -tags noasm -o mame-history-bin -v ./mame-history - go build -tags noasm -v . - ./scripts/run-tests.sh
Disable windows testing and move to 1.7.1
Disable windows testing and move to 1.7.1
YAML
mit
sselph/scraper,arcane47/scraper,arcane47/scraper,sselph/scraper
f87bd1f17145459b60eaa615f6367e33e23b93f8
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.4" - "3.5" - "3.6" install: - pip install six - pip install pycryptodome - pip install chardet script: nosetests --nologcapture
language: python python: - "2.6" - "2.7" - "3.4" - "3.5" - "3.6" install: - pip install six - pip install pycryptodome - pip install chardet - pip install sortedcontainers script: nosetests --nologcapture
Add sortedcontainers to TravisCI config
Add sortedcontainers to TravisCI config
YAML
mit
goulu/pdfminer,pdfminer/pdfminer.six
29fadce0a5d8e22732e3fd541f3e2ac96fc62467
.travis.yml
.travis.yml
language: d os: - linux - osx d: - dmd-2.071.0 - dmd-2.070.0 - dmd-2.069.2 - dmd-2.068.2 - ldc-0.17.1 - ldc-0.17.0 script: - dub test --compiler=$DC sudo: false
language: d os: - linux - osx d: - dmd-2.071.0 - dmd-2.070.0 - dmd-2.069.2 - dmd-2.068.2 - ldc-1.0.0 - ldc-0.17.1 - ldc-0.17.0 script: - dub test --compiler=$DC sudo: false
Add ldc 1.0.0 to continuous integration testing
Add ldc 1.0.0 to continuous integration testing
YAML
mit
etcimon/libasync
92f11f1c7e3a75e2a538da40ea913fdf14641f12
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.3 before_install: - gem install minitest -v '4.7.5' --no-document --quiet
language: ruby rvm: - 2.1.3
Remove minitest installation on Travis
Remove minitest installation on Travis Signed-off-by: David Celis <b1c1d8736f20db3fb6c1c66bb1455ed43909f0d8@davidcel.is>
YAML
mit
crepe/crepe-versioning
e703571a13ac8416a30ef9fb6144682217afd8f9
.travis.yml
.travis.yml
language: objective-c osx_image: beta-xcode6.3 script: - xctool -project Basis.xcodeproj -scheme Basis -sdk macosx ONLY_ACTIVE_ARCH=NO clean build test - xctool -project Basis.xcodeproj -scheme Basis-iOS -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO clean build test
language: objective-c osx_image: beta-xcode6.3 script: - xctool -project Basis.xcodeproj -scheme Basis -sdk macosx ONLY_ACTIVE_ARCH=NO clean build test - xctool -project Basis.xcodeproj -scheme Basis-iOS -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO clean build test notifications: webhooks: urls: - https://webhooks.gitter.im/e/1d781e1bcbabade5de35 on_success: always on_failure: always on_start: always
Add Gitter integration with Travis
Add Gitter integration with Travis
YAML
mit
typelift/Basis
d78feabcf48ca8db44d90bc1d4c49c29248f7a72
.travis.yml
.travis.yml
os: - linux language: node_js node_js: - "0.12" - "0.11" - "0.10" script: "npm run test:travisci" before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start
os: - linux language: node_js node_js: - "4.1" - "4.0" - "0.12" - "0.11" - "0.10" script: "npm run test:travisci" before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start
Add more recent Node.js versions to Travis CI
Add more recent Node.js versions to Travis CI Adds all version from https://docs.travis-ci.com/user/languages/javascript-with-nodejs
YAML
mit
caiogondim/logdown.js,caiogondim/logdown.js
1020cb19d8785e7242536873b9fbc6de29ab0221
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 before_script: - wget http://getcomposer.org/composer.phar - php composer.phar install --dev script: phpunit notifications: irc: "irc.freenode.org#fbp"
language: php php: - 5.5 - 5.6 - 7.0 before_script: - wget http://getcomposer.org/composer.phar - php composer.phar install --dev script: phpunit notifications: irc: "irc.freenode.org#fbp"
Remove 5.4 due to EOL
Remove 5.4 due to EOL
YAML
mit
phpflo/phpflo,bergie/phpflo
bd6b5b4e2b7554153fbbac9bb9f19cc720d9339d
.travis.yml
.travis.yml
language: node_js node_js: - 0.8 - 0.10
language: node_js node_js: - 0.10 - 0.12
Test against node 0.10 and 0.12
Test against node 0.10 and 0.12 Dropped support for 0.8
YAML
mit
hafeez-syed/coffeeify,jnordberg/coffeeify
cd912b52338fb5584cf4bd4e47f031f50e73c93b
.travis.yml
.travis.yml
language: ruby cache: bundler sudo: false rvm: - 2.2 - 2.1 - 2.0 - jruby-21mode - jruby-20mode matrix: allow_failures: - rvm: jruby-20mode - rvm: jruby-21mode env: matrix: - TEST_SUITE=test - TEST_SUITE=cucumber before_script: bundle update script: script/cibuild notifications: irc: on_success: change on_failure: change channels: - irc.freenode.org#jekyll template: - "%{repository}#%{build_number} (%{branch}) %{message} %{build_url}" email: on_success: never on_failure: never slack: secure: dNdKk6nahNURIUbO3ULhA09/vTEQjK0fNbgjVjeYPEvROHgQBP1cIP3AJy8aWs8rl5Yyow4YGEilNRzKPz18AsFptVXofpwyqcBxaCfmHP809NX5PHBaadydveLm+TNVao2XeLXSWu+HUNAYO1AanCUbJSEyJTju347xCBGzESU=
language: ruby cache: bundler sudo: false rvm: - 2.2 - 2.1 - 2.0 env: matrix: - TEST_SUITE=test - TEST_SUITE=cucumber before_script: bundle update script: script/cibuild notifications: irc: on_success: change on_failure: change channels: - irc.freenode.org#jekyll template: - "%{repository}#%{build_number} (%{branch}) %{message} %{build_url}" email: on_success: never on_failure: never slack: secure: dNdKk6nahNURIUbO3ULhA09/vTEQjK0fNbgjVjeYPEvROHgQBP1cIP3AJy8aWs8rl5Yyow4YGEilNRzKPz18AsFptVXofpwyqcBxaCfmHP809NX5PHBaadydveLm+TNVao2XeLXSWu+HUNAYO1AanCUbJSEyJTju347xCBGzESU=
Revert using JRuby in an active matrix.
Revert using JRuby in an active matrix.
YAML
mit
AtekiRyu/jekyll,daniel-beck/jekyll,richsoni/jekyll,CPVPLachlan/CPVP-Blog,thetaxman/jekyll,jmhardison/jekyll,likong/jekyll,alex-kovac/jekyll,kimeng/jekyll,eninya/jekyll,tugberkugurlu/jekyll,pmarsceill/jekyll,leichunxin/jekyll,isathish/jekyll,18F/jekyll,jekyll/jekyll,teju111/jekyll,eninya/jekyll,desidude03/jekyll,hartmel/jekyll,nemotan/jekyll,darwin/jekyll,dezon/jekyll,princeofdarkness76/jekyll,chrisfinazzo/jekyll,digideskio/jekyll,htmelvis/jekyll,jeffkole/jekyll,QuinntyneBrown/jekyll,yhironaka/yhironaka.github.io,jekyll/jekyll,johnnycastilho/jekyll,greent2008/jekyll,yihangho/jekyll,rajrathore/jekyll,Teino1978-Corp/jekyll,desidude03/jekyll,Wirachmat/jekyll,krishnakalyan3/jekyll,darwin/jekyll,AtekiRyu/jekyll,gencer/jekyll,x-way/jekyll,Teino1978-Corp/Teino1978-Corp-jekyll,backendeveloper/jekyll,noikiy/jekyll,jmhardison/jekyll,kuangyeheng/jekyll,tomjohnson1492/jekyll,digideskio/jekyll,omeripek/jekyll,ramoslin02/jekyll,marrujoalex/jekyll,Strangehill/jekyll,nateberkopec/jekyll,kuangyeheng/jekyll,LeuisKen/jekyllcn,rlugojr/jekyll,dansef/jekyll,QuinntyneBrown/jekyll,winndows/jekyll,fulldecent/jekyll,Teino1978-Corp/jekyll,CheekyFE/jekyll,fabulousu/jekyll,Tyrion22/jekyll,zhangkuaiji/jekyllcn,superve/jekyll,Wirachmat/jekyll,CPVPLachlan/CPVP-Blog,tomjohnson1492/jekyll,imaustink/jekyll,cyberid41/jekyll,backendeveloper/jekyll,oresmus/jekyll,gkunwar/gkunwar.github.io,CheekyFE/jekyll,0x00evil/jekyll,fabulousu/jekyll,shuber2/jekyll,xiongjungit/jekyll,ls2uper/jekyll,alihalabyah/jekyll,ryanshaw/jekyll,liukaijv/jekyll,fabulousu/jekyll,larryfox/jekyll,SQS2/Test,ducktyper/jekyll,chiyodad/jekyll,rlugojr/jekyll,mrb/jekyll,LuoPX-15510486969/jekyll,gencer/jekyll,floydpraveen/jekyll,PepSalehi/jekyll,codeclimate-testing/jekyll,alex-kovac/jekyll,christophermanning/jekyll,saitodisse/jekyll,fengsmith/jekyllcn,trungvothanh/jekyll,gaosboy/jekyll,likong/jekyll,howkj1/jekyll,xiaoshaozi52/jekyll,LeuisKen/jekyllcn,PepSalehi/jekyll,ajhit406/jekyll,AnanthaRajuC/jekyll,ajhit406/jekyll,xiaoshaozi52/jekyll,trungvothanh/jekyll,christophermanning/jekyll,xcatliu/jekyllcn,brint/jekyll,daniel-beck/jekyll,alex-kovac/jekyll,omeripek/jekyll,isathish/jekyll,tillgrallert/jekyll,ls2uper/jekyll,drobati/jekyll,mixxmac/jekyll,sasongkojati/jekyll,indraj/jekyll,darwin/jekyll,rongl/jekyll,jaybe-jekyll/jekyll,UniFreak/jekyllcn,jmhardison/jekyll,likong/jekyll,indraj/jekyll,pheuko/jekyll,xantage/jekyll,hubsaysnuaa/jekyll,penchan1218/jekyllcn,shuber2/jekyll,ryanshaw/jekyll,PepSalehi/jekyll,martynbm/jekyll,tomjohnson1492/jekyll,gkunwar/gkunwar.github.io,drobati/jekyll,tillgrallert/jekyll,mrb/jekyll,liukaijv/jekyll,chrisfinazzo/jekyll,xtymichael/jekyll,howkj1/jekyll,LuoPX-15510486969/jekyll,larryfox/jekyll,derekgottlieb/jekyll,x-way/jekyll,honger05/jekyllcn,tomasdiez/jekyll,marrujoalex/jekyll,wadaries/jekyll,AaronSikes/jekyll,richsoni/jekyll,sasongkojati/jekyll,chiyodad/jekyll,foocoder/jekyll,angeliaz/jekyll,vcgato29/jekyll,johnnycastilho/jekyll,oresmus/jekyll,Teino1978-Corp/jekyll,ZDroid/jekyll,ducktyper/jekyll,Tiger66639/jekyll,MjAbuz/jekyll,FlyingWHR/jekyll,iRoxx/jekyll,Strangehill/jekyll,ajhit406/jekyll,zhangkuaiji/jekyllcn,alex-kovac/jekyll,ewinkler/jekyll,SQS2/Test,angeliaz/jekyll,doubleday/jekyll,jmknoll/jekyll,eninya/jekyll,SQS2/Test,gencer/jekyll,EddieDow/jekyll,eloyesp/jekyll,18F/jekyll,royalwang/jekyll,xiongjungit/jekyll,darwin/jekyll,zsyed91/jekyll,rebornix/jekyll,nasht00/jekyll,Tiger66639/jekyll,ajhit406/jekyll,alfredxing/jekyll,ZainRizvi/jekyll,johnnycastilho/jekyll,chinayin/jekyll,nemotan/jekyll,tylermachen/jekyll,julienbourdeau/jekyll,noikiy/jekyll,jmptrader/jekyll,xiaoshaozi52/jekyll,jeffkole/jekyll,gynter/jekyll,xcatliu/jekyllcn,zsyed91/jekyll,htmelvis/jekyll,fengsmith/jekyll,MauroMrod/jekyll,tareq-s/jekyll,mrb/jekyll,m2candre/jekyll,oresmus/jekyll,thetaxman/jekyll,rovrevik/jekyll,matuzo/jekyll,hiteshsuthar/jekyll,adilapapaya/jekyll,xiebinhqy/jklly_china,matuzo/jekyll,alex-kovac/jekyll,xantage/jekyll,mixxmac/jekyll,ZainRizvi/jekyll,vidbina/jekyll,nateberkopec/jekyll,tareq-s/jekyll,krishnakalyan3/jekyll,xantage/jekyll,iRoxx/jekyll,isathish/jekyll,trungvothanh/jekyll,0x00evil/jekyll,alfredxing/jekyll,abhilashhb/jekyll,jmptrader/jekyll,tillgrallert/jekyll,rajrathore/jekyll,ewinkler/jekyll,AnanthaRajuC/jekyll,adilapapaya/jekyll,sasongkojati/jekyll,digideskio/jekyll,princeofdarkness76/jekyll,nateberkopec/jekyll,MauroMrod/jekyll,eloyesp/jekyll,rovrevik/jekyll,jekyll/jekyll,tobscure/jekyll,marrujoalex/jekyll,liukaijv/jekyll,jmptrader/jekyll,christophermanning/jekyll,wentixiaogege/jekyll,stomar/jekyll,hartmel/jekyll,jaroot32/jekyll,thetaxman/jekyll,bsmr-ruby/jekyll,supriyantomaftuh/jekyll,drobati/jekyll,dansef/jekyll,EddieDow/jekyll,omeripek/jekyll,jmepg/jekyll,naughtyboy83/jekyll,fengsmith/jekyll,AnanthaRajuC/jekyll,m2candre/jekyll,howkj1/jekyll,gencer/jekyll,yihangho/jekyll,gaosboy/jekyll,thejameskyle/jekyll,leichunxin/jekyll,floydpraveen/jekyll,gynter/jekyll,winndows/jekyll,tillgrallert/jekyll,FlyingWHR/jekyll,royalwang/jekyll,foocoder/jekyll,julienbourdeau/jekyll,nasht00/jekyll,fulldecent/jekyll,sanxore/sanxore.github.com,MjAbuz/jekyll,mrb/jekyll,princeofdarkness76/jekyll,superve/jekyll,thejameskyle/jekyll,htmelvis/jekyll,yihangho/jekyll,shliujing/jekyll,m2candre/jekyll,codeclimate-testing/jekyll,princeofdarkness76/jekyll,thejameskyle/jekyll,AtekiRyu/jekyll,hiteshsuthar/jekyll,CorainChicago/jekyll,Kinghack/kinghack.github.com,rebornix/jekyll,gynter/jekyll,gkunwar/gkunwar.github.io,shliujing/jekyll,tamouse/jekyll,0x00evil/jekyll,wentixiaogege/jekyll,egobrightan/jekyll,gaosboy/jekyll,Tyrion22/jekyll,rebornix/jekyll,UniFreak/jekyllcn,xtymichael/jekyll,penchan1218/jekyllcn,chiyodad/jekyll,jaroot32/jekyll,leichunxin/jekyll,Wirachmat/jekyll,superve/jekyll,xiongjungit/jekyll,xiebinhqy/jklly_china,tomjohnson1492/jekyll,noikiy/jekyll,brint/jekyll,daniel-beck/jekyll,pmarsceill/jekyll,hartmel/jekyll,xiebinhqy/jklly_china,ryanshaw/jekyll,ramoslin02/jekyll,nickg33/jekyll,goragod/jekyll,nasht00/jekyll,stomar/jekyll,dezon/jekyll,tugberkugurlu/jekyll,rlugojr/jekyll,jaybe-jekyll/jekyll,bsmr-ruby/jekyll,saitodisse/jekyll,tareq-s/jekyll,teju111/jekyll,adilapapaya/jekyll,UniFreak/jekyllcn,abhilashhb/jekyll,hubsaysnuaa/jekyll,dansef/jekyll,teju111/jekyll,winndows/jekyll,anthonyrosengren/grasshoppergathering2.github-io,rasa2011/rasa2011.github.io,xiebinhqy/jklly_china,pmarsceill/jekyll,nasht00/jekyll,jaybe-jekyll/jekyll,anthonyrosengren/grasshoppergathering2.github-io,cyberid41/jekyll,harrissoerja/jekyll,QuinntyneBrown/jekyll,Strangehill/jekyll,indraj/jekyll,getandpost/jekyll.github.io,MauroMrod/jekyll,royalwang/jekyll,Kinghack/kinghack.github.com,vcgato29/jekyll,goragod/jekyll,nickg33/jekyll,rlugojr/jekyll,tomasdiez/jekyll,Kinghack/kinghack.github.com,MjAbuz/jekyll,kuangyeheng/jekyll,kimeng/jekyll,ZDroid/jekyll,mixxmac/jekyll,rajrathore/jekyll,iRoxx/jekyll,ZDroid/jekyll,imaustink/jekyll,jmepg/jekyll,ramoslin02/jekyll,desidude03/jekyll,chrisfinazzo/jekyll,saitodisse/jekyll,supriyantomaftuh/jekyll,julienbourdeau/jekyll,Teino1978-Corp/Teino1978-Corp-jekyll,xcatliu/jekyllcn,jmknoll/jekyll,doubleday/jekyll,naughtyboy83/jekyll,wentixiaogege/jekyll,floydpraveen/jekyll,tobscure/jekyll,tamouse/jekyll,jmepg/jekyll,richsoni/jekyll,tomjohnson1492/jekyll,brint/jekyll,CheekyFE/jekyll,garvitr/jekyll,shuber2/jekyll,angeliaz/jekyll,anthonyrosengren/grasshoppergathering2.github-io,Teino1978-Corp/Teino1978-Corp-jekyll,x-way/jekyll,martynbm/jekyll,codeclimate-testing/jekyll,tomasdiez/jekyll,backendeveloper/jekyll,jaybe-jekyll/jekyll,getandpost/jekyll.github.io,doubleday/jekyll,penchan1218/jekyllcn,rasa2011/rasa2011.github.io,ReachingOut/jekyll,FlyingWHR/jekyll,honger05/jekyllcn,foocoder/jekyll,eloyesp/jekyll,Strangehill/jekyll,x-way/jekyll,jeffkole/jekyll,EddieDow/jekyll,brint/jekyll,tobscure/jekyll,jaroot32/jekyll,Strangehill/jekyll,fengsmith/jekyll,ReachingOut/jekyll,getandpost/jekyll.github.io,chrisfinazzo/jekyll,ZainRizvi/jekyll,derekgottlieb/jekyll,jeffkole/jekyll,alfredxing/jekyll,hubsaysnuaa/jekyll,CorainChicago/jekyll,nemotan/jekyll,jmknoll/jekyll,pheuko/jekyll,wadaries/jekyll,ReachingOut/jekyll,fengsmith/jekyllcn,noikiy/jekyll,bsmr-ruby/jekyll,zsyed91/jekyll,derekgottlieb/jekyll,LeuisKen/jekyllcn,ryanshaw/jekyll,abhilashhb/jekyll,cyberid41/jekyll,egobrightan/jekyll,alihalabyah/jekyll,krishnakalyan3/jekyll,tylermachen/jekyll,dezon/jekyll,naughtyboy83/jekyll,aarvay/jekyll,rovrevik/jekyll,tamouse/jekyll,martynbm/jekyll,fulldecent/jekyll,matuzo/jekyll,stomar/jekyll,sanxore/sanxore.github.com,egobrightan/jekyll,hiteshsuthar/jekyll,bsmr-ruby/jekyll,ducktyper/jekyll,shliujing/jekyll,Tyrion22/jekyll,stomar/jekyll,garvitr/jekyll,AaronSikes/jekyll,harrissoerja/jekyll,wadaries/jekyll,imaustink/jekyll,xtymichael/jekyll,chinayin/jekyll,zhangkuaiji/jekyllcn,supriyantomaftuh/jekyll,tylermachen/jekyll,rasa2011/rasa2011.github.io,alfredxing/jekyll,18F/jekyll,CorainChicago/jekyll,kimeng/jekyll,fengsmith/jekyllcn,honger05/jekyllcn,tugberkugurlu/jekyll,aarvay/jekyll,vcgato29/jekyll,goragod/jekyll,rongl/jekyll,rongl/jekyll,greent2008/jekyll,fulldecent/jekyll,sanxore/sanxore.github.com,vidbina/jekyll,floydpraveen/jekyll,gencer/jekyll,tillgrallert/jekyll,derekgottlieb/jekyll,harrissoerja/jekyll,zsyed91/jekyll,ewinkler/jekyll,CPVPLachlan/CPVP-Blog,AaronSikes/jekyll,nickg33/jekyll,garvitr/jekyll,Tiger66639/jekyll,aarvay/jekyll,chinayin/jekyll,jekyll/jekyll,pheuko/jekyll,alihalabyah/jekyll,greent2008/jekyll,vidbina/jekyll,ls2uper/jekyll,xcatliu/jekyllcn,LuoPX-15510486969/jekyll,pmarsceill/jekyll,larryfox/jekyll
314cb300e509839c37d00561383c18658e00fab9
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" install: python setup.py develop script: nosetests
language: python python: - "2.6" - "2.7" install: python setup.py develop script: python setup.py test
Use python test to run tests.
Use python test to run tests.
YAML
mit
bbangert/retools
83b8b7a575eb567fdecc0086cd70b15163df016c
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: hhvm before_script: - if [[ "$TRAVIS_PHP_VERSION" == "5.3" -o "$TRAVIS_PHP_VERSION" == "5.4" ]]; then composer install --dev --prefer-lowest; else composer install --dev; fi script: phpunit --configuration tools/phpunit after_script: - if [[ "$TRAVIS_PHP_VERSION" == "5.6" ]]; then php vendor/bin/coveralls -v; fi notifications: slack: secure: h5YiO7tAk5bzAQBkUZ3crnOFAOBkNqHp0nc2cxvGauogVfCLE9K8bME512uTeu9QWMht2D30uyTOHFKQ7sPEW4omHNF4qYl4p9L037oQFfEwZPBzJFo9QUzviT3mvKHTN4HSQOkq/08ZoMhh1i3p/OhyFS56J28IDJWDqGZkEUE=
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: hhvm before_script: - if [[ "$TRAVIS_PHP_VERSION" == "5.3" || "$TRAVIS_PHP_VERSION" == "5.4" ]]; then composer install --dev --prefer-lowest; else composer install --dev; fi script: phpunit --configuration tools/phpunit after_script: - if [[ "$TRAVIS_PHP_VERSION" == "5.6" ]]; then php vendor/bin/coveralls -v; fi notifications: slack: secure: h5YiO7tAk5bzAQBkUZ3crnOFAOBkNqHp0nc2cxvGauogVfCLE9K8bME512uTeu9QWMht2D30uyTOHFKQ7sPEW4omHNF4qYl4p9L037oQFfEwZPBzJFo9QUzviT3mvKHTN4HSQOkq/08ZoMhh1i3p/OhyFS56J28IDJWDqGZkEUE=
Fix syntax of the if statement.
Fix syntax of the if statement.
YAML
lgpl-2.1
jschlyter/simplesamlphp,simplesamlphp/simplesamlphp,ghalse/simplesamlphp,simplesamlphp/simplesamlphp,sitya/simplesamlphp,dnmvisser/simplesamlphp,simplesamlphp/simplesamlphp,dnmvisser/simplesamlphp,sitya/simplesamlphp,jschlyter/simplesamlphp,dnmvisser/simplesamlphp,dnmvisser/simplesamlphp,simplesamlphp/simplesamlphp,jschlyter/simplesamlphp,jschlyter/simplesamlphp,ghalse/simplesamlphp,ghalse/simplesamlphp,sitya/simplesamlphp,sitya/simplesamlphp,ghalse/simplesamlphp,jschlyter/simplesamlphp
fcd51e46fee598dc4bf4d959b4d5782bbe6d9de6
.travis.yml
.travis.yml
language: csharp matrix: include: - os: linux dist: trusty dotnet: 2.0.0 mono: none - os: osx osx_image: xcode8.2 dotnet: 2.0.0 mono: none branches: only: - master script: - dotnet test -c Release test/Abioc.Tests/Abioc.TestsCore.csproj
language: csharp matrix: fast_finish: true allow_failures: - os: osx include: - os: linux dist: trusty dotnet: 2.0.0 mono: none - os: osx osx_image: xcode8.2 dotnet: 2.0.0 mono: none branches: only: - master script: - dotnet test -c Release -f netcoreapp2.0 test/Abioc.Tests/Abioc.Tests.csproj
Migrate to a single project
:construction_worker: Migrate to a single project
YAML
apache-2.0
JSkimming/abioc,JSkimming/abioc
376eeaa0def2c1f8a1d2464dead337f818981790
.travis.yml
.travis.yml
language: ruby cache: bundler rvm: - 2.0.0 - 2.1.1 script: - 'export PULL_REQUEST_ID=${TRAVIS_PULL_REQUEST} && bundle exec pronto run -f github_pr' GITHUB_ACCESS_TOKEN: ef2f1a991d20d907620952322fc68afeb201af48 before_script: - psql -c 'create database church_dashboard_qa;' -U postgres deploy: provider: heroku api_key: secure: FJq3VuGesbkscbpiFLNWW2twyjsC77c55A7XxsJrjoOXfJmCl9kjBYmK6jjOsmEog7Hww+fv2JK0vCGtKRdSr35gGUlmYdGgWh+umz88gw/kfVHAHDlTfquiprHDzqcHRcQoGfy1C9rDEjof8S32cClisIAJ0862McK2/m9NHEQ= app: church-dashboard on: repo: bdeverea/Church-Dashboard before_script: - 'rake db:test:prepare' - 'rake db:migrate'
language: ruby cache: bundler rvm: - 2.0.0 - 2.1.1 script: - 'export PULL_REQUEST_ID=${TRAVIS_PULL_REQUEST} && bundle exec pronto run -f github_pr' - bundle exec rspec spec GITHUB_ACCESS_TOKEN: ef2f1a991d20d907620952322fc68afeb201af48 before_script: - psql -c 'create database church_dashboard_qa;' -U postgres deploy: provider: heroku api_key: secure: FJq3VuGesbkscbpiFLNWW2twyjsC77c55A7XxsJrjoOXfJmCl9kjBYmK6jjOsmEog7Hww+fv2JK0vCGtKRdSr35gGUlmYdGgWh+umz88gw/kfVHAHDlTfquiprHDzqcHRcQoGfy1C9rDEjof8S32cClisIAJ0862McK2/m9NHEQ= app: church-dashboard on: repo: bdeverea/Church-Dashboard before_script: - 'rake db:test:prepare' - 'rake db:migrate'
Add unit test run to build script
Add unit test run to build script
YAML
mit
bdeverea/Church-Dashboard,bdeverea/Church-Dashboard,bdeverea/Church-Dashboard
1e9c90f4826452c153399b484136bc55bc68a8e0
config_prod.yml
config_prod.yml
# Site configuration of production environment url: "http://blog.yosymfony.com" # Without end slash # Google Analytics google_analytics: id: 'UA-82625127-1'
# Site configuration of production environment url: "http://blog.yosymfony.com" # Without end slash # Google Analytics google_analytics: id: 'UA-82625127-1' # Comments in posts comments: enabled: true disqus_shortname: yosymfony
Comment in prod environment enabled
Comment in prod environment enabled
YAML
apache-2.0
yosymfony/Blog.yosymfony.com,yosymfony/Blog.yosymfony.com
0187abc02f216deae578ded0707e1f71879a0a17
packages/gm/gmpint.yaml
packages/gm/gmpint.yaml
homepage: https://github.com/vmchale/gmpint#readme changelog-type: '' hash: 8330e99893fcd275f81d41f8389da6770b2ba6cc6b59107026587fb5079e4a0b test-bench-deps: {} maintainer: vamchale@gmail.com synopsis: GMP integer conversions changelog: '' basic-deps: base: ! '>=4.8 && <5' recursion-schemes: -any all-versions: - '0.1.0.0' - '0.1.0.1' author: Vanessa McHale latest: '0.1.0.1' description-type: markdown description: ! '# gmpint This defines a `GMPInt` type and a `Storable` instance for that type, as well functions for working with such types. ' license-name: BSD3
homepage: https://github.com/vmchale/gmpint#readme changelog-type: '' hash: d7b9d6bf424868274ad50981a048d281ddad028d84f34496f3e1bb3dd8c3b705 test-bench-deps: {} maintainer: vamchale@gmail.com synopsis: GMP integer conversions changelog: '' basic-deps: base: ! '>=4.8 && <5' recursion-schemes: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' author: Vanessa McHale latest: '0.1.0.2' description-type: markdown description: ! '# gmpint This defines a `GMPInt` type and a `Storable` instance for that type, as well functions for working with such types. ' license-name: BSD3
Update from Hackage at 2018-02-07T22:06:13Z
Update from Hackage at 2018-02-07T22:06:13Z
YAML
mit
commercialhaskell/all-cabal-metadata
a37463aaec3b31b78a8d4ef6c8f042f40bfd19ef
packages/mi/mikmod.yaml
packages/mi/mikmod.yaml
homepage: https://github.com/evanrinehart/mikmod changelog-type: '' hash: 60237a1ff12149699ae5fe3ba78d6733771c66cd25c438d9565fb59651ae03ea test-bench-deps: {} maintainer: evanrinehart@gmail.com synopsis: MikMod bindings changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <4.8' all-versions: - '0.1.0.1' - '0.1.1.0' - '0.1.2.0' - '0.1.2.1' - '0.1.3.0' - '0.1.3.1' - '0.1.3.2' - '0.2.0.0' author: Evan Rinehart latest: '0.2.0.0' description-type: haddock description: MikMod bindings for Haskell license-name: LGPL
homepage: https://github.com/evanrinehart/mikmod changelog-type: '' hash: 188d22e59f36dfe68797d38582de7c72e859f2745550a09a7eb4b17c5edfa646 test-bench-deps: {} maintainer: evanrinehart@gmail.com synopsis: MikMod bindings changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <4.9' all-versions: - '0.1.0.1' - '0.1.1.0' - '0.1.2.0' - '0.1.2.1' - '0.1.3.0' - '0.1.3.1' - '0.1.3.2' - '0.2.0.0' - '0.2.0.1' author: Evan Rinehart latest: '0.2.0.1' description-type: haddock description: MikMod bindings for Haskell license-name: LGPL
Update from Hackage at 2015-10-08T01:17:25+0000
Update from Hackage at 2015-10-08T01:17:25+0000
YAML
mit
commercialhaskell/all-cabal-metadata
65d21abcf6005205fc8611dca256287a9c9bcb18
packages/ri/risc-v.yaml
packages/ri/risc-v.yaml
homepage: '' changelog-type: '' hash: ecef61208937639fea0736873964fa32fe2441585776f3120ebb771e20cd8a6d test-bench-deps: tasty-smallcheck: ! '>=0.8' base: ! '>=4.11 && <5' risc-v: -any criterion: ! '>=1.4.1' smallcheck: ! '>=1.1.4' tasty: ! '>=1.0' maintainer: strake888@gmail.com synopsis: RISC-V changelog: '' basic-deps: base-unicode-symbols: -any base: ! '>=4.7 && <5' util: -any all-versions: - 0.0.0.0 author: M Farkas-Dyck latest: 0.0.0.0 description-type: markdown description: ! '# risc-v ' license-name: BSD-3-Clause
homepage: '' changelog-type: '' hash: dce9abc77c81c945e5844b95832d820fc4564b0b8a59b4fee2636f47503c17b8 test-bench-deps: tasty-smallcheck: ! '>=0.8' base: ! '>=4.11 && <5' risc-v: -any criterion: ! '>=1.4.1' smallcheck: ! '>=1.1.4' tasty: ! '>=1.0' maintainer: strake888@gmail.com synopsis: RISC-V changelog: '' basic-deps: base-unicode-symbols: -any base: ! '>=4.7 && <5' util: -any all-versions: - 0.0.0.0 - 0.0.1.0 author: M Farkas-Dyck latest: 0.0.1.0 description-type: markdown description: | # risc-v license-name: BSD-3-Clause
Update from Hackage at 2020-02-11T08:15:16Z
Update from Hackage at 2020-02-11T08:15:16Z
YAML
mit
commercialhaskell/all-cabal-metadata
3a97c9f80392d94babc933723a70a4348f8f426c
meta/main.yml
meta/main.yml
# Ansible galaxy requirements file # # Role to setup a 2.4 ELK/EFK stack on a server (CentOS/RHEL only) - src: https://github.com/sadsfae/ansible-elk name: ansible-elk version: 2.4
# Ansible galaxy requirements file # # Role to setup a 2.4 ELK/EFK stack on a server (CentOS/RHEL only) - src: https://github.com/sadsfae/ansible-elk name: ansible-elk-2.4 version: 2.4
Update Ansible galaxy reference for 2.4 version
Update Ansible galaxy reference for 2.4 version
YAML
apache-2.0
sadsfae/ansible-elk-2.4
e43f2e9b89e15abd8aa1b7fe1ca89356ef53fb16
meta/main.yml
meta/main.yml
--- galaxy_info: author: Nick Hammond description: Role to configure logrotate scripts license: BSD min_ansible_version: 1.5 platforms: - name: Ubuntu versions: - lucid - precise - trusty categories: - system dependencies: []
--- galaxy_info: author: Nick Hammond description: Role to configure logrotate scripts license: BSD min_ansible_version: 1.5 platforms: - name: Ubuntu versions: - lucid - precise - trusty - name: EL versions: - 7 categories: - system dependencies: []
Add CentOS/EL version 7 support.
Add CentOS/EL version 7 support. Signed-off-by: Loïc Chabert <57205dc23bae71bc00776245f6647ecc17e7b448@voxity.fr>
YAML
bsd-3-clause
nickhammond/ansible-logrotate
e8bef4b66728882861bb31038c4b9176a6f1c170
metadata/com.dosse.airpods.yml
metadata/com.dosse.airpods.yml
Categories: - Connectivity - Multimedia - System License: GPL-3.0-only WebSite: https://fdossena.com/?p=openPods/index.frag SourceCode: https://github.com/adolfintel/OpenPods IssueTracker: https://github.com/adolfintel/OpenPods/issues Donate: https://paypal.me/sineisochronic AutoName: OpenPods Summary: Check the battery status of your AirPods Description: |- OpenPods lets you monitor the battery status of your AirPods on Android devices. Features: * Shows a notification with AirPods status when they are connected * Respects your privacy RepoType: git Repo: https://github.com/adolfintel/OpenPods.git Builds: - versionName: '0.3' versionCode: 3 commit: '0.3' subdir: OpenPods/app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '0.3' CurrentVersionCode: 3
Categories: - Connectivity - Multimedia - System License: GPL-3.0-only WebSite: https://fdossena.com/?p=openPods/index.frag SourceCode: https://github.com/adolfintel/OpenPods IssueTracker: https://github.com/adolfintel/OpenPods/issues Donate: https://paypal.me/sineisochronic AutoName: OpenPods Summary: Check the battery status of your AirPods Description: |- OpenPods lets you monitor the battery status of your AirPods on Android devices. Features: * Shows a notification with AirPods status when they are connected * Respects your privacy RepoType: git Repo: https://github.com/adolfintel/OpenPods.git Builds: - versionName: '0.3' versionCode: 3 commit: '0.3' subdir: OpenPods/app gradle: - yes - versionName: '0.4' versionCode: 4 commit: '0.4' subdir: OpenPods/app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '0.4' CurrentVersionCode: 4
Update OpenPods to 0.4 (4)
Update OpenPods to 0.4 (4)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata,f-droid/fdroid-data
5c5ab62f3b1a2cebce2ed67ad041d4a877323bc7
data/plugin.yml
data/plugin.yml
name: UltraCommand version: 0.5.5-flex author: Kier Davis <kierdavis@gmail.com> main: com.kierdavis.ultracommand.UltraCommand commands: uc: description: UltraCommand ultracommand: description: UltraCommand 1: description: UltraCommand (testing) permissions: ultracommand.configure: description: Gives access to the /uc and /ultracommand commands. default: op ultracommand.commands.*: description: Gives access to all custom commands defined with this plugin. default: op ultracommand.commands.<name>: description: Gives access to the custom command named <name>.
name: UltraCommand version: 0.5.6-flex author: Kier Davis <kierdavis@gmail.com> main: com.kierdavis.ultracommand.UltraCommand commands: uc: description: UltraCommand ultracommand: description: UltraCommand 1: description: UltraCommand (testing) permissions: ultracommand.configure: description: Gives access to the /uc and /ultracommand commands. default: op ultracommand.commands.*: description: Gives access to all custom commands defined with this plugin. default: op ultracommand.commands.<name>: description: Gives access to the custom command named <name>.
Update version to rebuild with new upstream artifact
Update version to rebuild with new upstream artifact
YAML
mit
kierdavis/UltraCommand
07c78b55110938899171bfba3d72326ad13210be
packages/un/unfoldable-restricted.yaml
packages/un/unfoldable-restricted.yaml
homepage: '' changelog-type: '' hash: 5fcdac0269e4761e8da197df79130ff6697ab9539d353cdb8bfdb15c683ddafe test-bench-deps: {} maintainer: Athan Clark <athan.clark@gmail.com> synopsis: An alternative to the Unfoldable typeclass changelog: '' basic-deps: base: ! '>=4.8 && <5' unordered-containers: -any unfoldable: -any constraints: -any unit-constraint: -any containers: -any hashable: -any all-versions: - '0.0.0' author: Athan Clark <athan.clark@gmail.com> latest: '0.0.0' description-type: haddock description: '' license-name: BSD3
homepage: '' changelog-type: '' hash: 48b70d17ab1daab749e71e46fd5683d065f367d2109ae46182d7c1583690abf4 test-bench-deps: {} maintainer: Athan Clark <athan.clark@gmail.com> synopsis: An alternative to the Unfoldable typeclass changelog: '' basic-deps: base: ! '>=4.8 && <5' unordered-containers: -any unfoldable: -any constraints: -any unit-constraint: -any containers: -any hashable: -any transformers: -any all-versions: - '0.0.0' - '0.0.1' author: Athan Clark <athan.clark@gmail.com> latest: '0.0.1' description-type: haddock description: '' license-name: BSD3
Update from Hackage at 2016-04-08T21:20:34+0000
Update from Hackage at 2016-04-08T21:20:34+0000
YAML
mit
commercialhaskell/all-cabal-metadata
46a26713c37551ba0dbe0251bb89eca3a167dfeb
config/settings.yml
config/settings.yml
--- host: 'beta.moses.et-model.com' etengine_host: 'beta.et-engine.com' etmodel_host: 'beta.pro.energytransitionmodel.com/' cache: # Cache the results of network calculations. networks: true
--- host: 'beta.moses.et-model.com' etengine_host: 'beta.et-engine.com' etmodel_host: 'beta.pro.energytransitionmodel.com' cache: # Cache the results of network calculations. networks: true
Remove trailing slash from etmodel_host. Oops.
Remove trailing slash from etmodel_host. Oops.
YAML
mit
quintel/etmoses,quintel/etmoses,quintel/etmoses,quintel/etmoses,quintel/etmoses
106b3174ac291f309d304558fcf03d8153df673a
config/settings.yml
config/settings.yml
plugins: endorse_enabled: default: true client: true allow_endorsement_on_all_topics: default: true client: true endorsement_trust_level: default: 1 client: true empty_circle_on_unendorsed: default: true client: true endorsed_quote_length: default: 300 client: false endorsed_topics_auto_close_hours: default: 0
plugins: endorse_enabled: default: true client: true allow_endorsement_on_all_topics: default: true client: true endorsement_trust_level: default: 4 client: true empty_circle_on_unendorsed: default: true client: true endorsed_quote_length: default: 300 client: false endorsed_topics_auto_close_hours: default: 0
Change endorsement trust level default from 1 to 4
Change endorsement trust level default from 1 to 4
YAML
mit
bolariin/discourse-instructor-endorsed,bolariin/discourse-instructor-endorsed,bolariin/discourse-instructor-endorsed
ffe3f6d685b475b24e231bb1456bff5d3da9a424
packages/ch/char-qq.yaml
packages/ch/char-qq.yaml
homepage: https://github.com/metrix-ai/char-qq changelog-type: '' hash: b1ff85f338074112e9b49e2f00cc0a47c0d60675f8ae61bfa7bf28a9d8e1c3ab test-bench-deps: {} maintainer: Metrix.AI Tech Team <tech@metrix.ai> synopsis: Quasiquoters for characters and codepoints changelog: '' basic-deps: base: ! '>=4.9 && <5' template-haskell: ! '>=2.9 && <3' all-versions: - '0.1' - 0.1.1 author: Nikita Volkov <nikita.y.volkov@mail.ru> latest: 0.1.1 description-type: haddock description: A set of quasiquoters providing compile-time conversions between characters and codepoints. license-name: MIT
homepage: https://github.com/metrix-ai/char-qq changelog-type: '' hash: 7910cdca00879ed5581c31cf60a0789efa29e1bf0b98bd99766f3b54ae943881 test-bench-deps: {} maintainer: Metrix.AI Tech Team <tech@metrix.ai> synopsis: Quasiquoters for characters and codepoints changelog: '' basic-deps: base: ! '>=4.9 && <5' template-haskell: ! '>=2.9 && <3' all-versions: - '0.1' - 0.1.1 - 0.1.1.1 author: Nikita Volkov <nikita.y.volkov@mail.ru> latest: 0.1.1.1 description-type: haddock description: |- A set of quasiquoters providing compile-time conversions between characters and codepoints. Solves such problems as when you'd rather refer to a codepoint by a char, but don't want to waste your runtime computation cycles on the "ord" operation. license-name: MIT
Update from Hackage at 2019-02-07T12:18:23Z
Update from Hackage at 2019-02-07T12:18:23Z
YAML
mit
commercialhaskell/all-cabal-metadata
6a5ea285f6761100366a2c33f45e8a53ed3b5d6c
packages/od/OddWord.yaml
packages/od/OddWord.yaml
homepage: http://www.gekkou.co.uk/ changelog-type: '' hash: baf03df4fa275a3900fbdd9f6512a8cb3f612905e0a57f4abe8f3b6a48746a0c test-bench-deps: base: ! '>=4.5 && <5' QuickCheck: ! '>=2.4 && <2.7' OddWord: ! '>=1.0 && <1.1' maintainer: Robin KAY <komadori@gekkou.co.uk> synopsis: Provides a wrapper for deriving word types with fewer bits. changelog: '' basic-deps: base: ! '>=4.5 && <5' all-versions: - '1.0.0' - '1.0.0.1' - '1.0.0.2' author: Robin KAY latest: '1.0.0.2' description-type: haddock description: ! 'Provdes the ''OddWord'' type, which wraps an existing integer type and exposes a subset of its bits as a new narrower word type. Includes predefined type synonyms for all the odd sized words up to 63 bits.' license-name: BSD3
homepage: http://www.gekkou.co.uk/ changelog-type: '' hash: 265eb8d268a6e45191ff180fbe14442100f5d9322a2dfd5f6ddd45f3c317bde4 test-bench-deps: base: ! '>=4.5 && <5' QuickCheck: ! '>=2.4 && <2.9' OddWord: ==1.0.* maintainer: Robin KAY <komadori@gekkou.co.uk> synopsis: Provides a wrapper for deriving word types with fewer bits. changelog: '' basic-deps: base: ! '>=4.5 && <5' all-versions: - '1.0.0' - '1.0.0.1' - '1.0.0.2' - '1.0.1.0' author: Robin KAY latest: '1.0.1.0' description-type: haddock description: ! 'Provdes the ''OddWord'' type, which wraps an existing integer type and exposes a subset of its bits as a new narrower word type. Includes predefined type synonyms for all the odd sized words up to 63 bits.' license-name: BSD3
Update from Hackage at 2015-10-25T18:16:58+0000
Update from Hackage at 2015-10-25T18:16:58+0000
YAML
mit
commercialhaskell/all-cabal-metadata
3e4a7c8b61e920ec389c62d101921a2f56e4cca3
roles/ceph-config/meta/main.yml
roles/ceph-config/meta/main.yml
--- galaxy_info: author: Guillaume Abrioux description: Handles ceph-ansible initial configuration license: Apache min_ansible_version: 2.3 platforms: - name: Ubuntu versions: - xenial - name: EL versions: - 7 categories: - system dependencies: []
--- galaxy_info: author: Guillaume Abrioux description: Handles ceph-ansible initial configuration license: Apache min_ansible_version: 2.3 platforms: - name: Ubuntu versions: - xenial - name: EL versions: - 7 - name: opensuse versions: - 42.3 categories: - system dependencies: []
Add support for the openSUSE Leap distributions
ceph-config: Add support for the openSUSE Leap distributions Add support for the openSUSE Leap distributions Signed-off-by: Markos Chandras <33d8b43ece1558bd62b361ce5e954c5d9a97a7a2@suse.de>
YAML
apache-2.0
fgal/ceph-ansible,font/ceph-ansible,fgal/ceph-ansible,travmi/ceph-ansible,font/ceph-ansible,ceph/ceph-ansible,travmi/ceph-ansible,ceph/ceph-ansible
b647301a5260018bb1f1f3482a78e3ac5add0041
recipes/r-fst/meta.yaml
recipes/r-fst/meta.yaml
{% set version = "0.7.2" %} package: name: r-fst version: {{ version }} source: fn: hash_{{ version }}.tar.gz url: http://cran.r-project.org/src/contrib/fst_{{ version }}.tar.gz sha256: 45df4be0e04167b5c87d6bdf6b112adef31c6ad0ad81b8e23ee458be50ff5ef8 build: skip: true # [win] number: 0 rpaths: - lib/R/lib/ - lib/ requirements: build: - r-base - r-rcpp - r-data.table - gcc # [not win] - posix # [win] -{{native}}toolchain # [win] run: - r-base - r-rcpp - r-data.table test: commands: - $R -e "library('fst')" about: home: https://fstpackage.github.io/ license: BSD license_file: LICENSE summary: | Read and write data frames at high speed. Compress your data with fast and efficient type-optimized algorithms that allow for random access of stored data frames (columns and rows). license_family: BSD extra: recipe-maintainers: - jprnz
{% set version = "0.7.2" %} {% set posix = 'm2-' if win else '' %} {% set native = 'm2w64-' if win else '' %} package: name: r-fst version: {{ version }} source: fn: hash_{{ version }}.tar.gz url: http://cran.r-project.org/src/contrib/fst_{{ version }}.tar.gz sha256: 45df4be0e04167b5c87d6bdf6b112adef31c6ad0ad81b8e23ee458be50ff5ef8 build: skip: true # [win] number: 0 rpaths: - lib/R/lib/ - lib/ requirements: build: - r-base - r-rcpp - r-data.table - gcc # [not win] - posix # [win] - {{native}}toolchain # [win] run: - r-base - r-rcpp - r-data.table test: commands: - $R -e "library('fst')" about: home: https://fstpackage.github.io/ license: BSD license_file: LICENSE summary: | Read and write data frames at high speed. Compress your data with fast and efficient type-optimized algorithms that allow for random access of stored data frames (columns and rows). license_family: BSD extra: recipe-maintainers: - jprnz
Fix syntax issue and missing templates
Fix syntax issue and missing templates
YAML
bsd-3-clause
NOAA-ORR-ERD/staged-recipes,ReimarBauer/staged-recipes,kwilcox/staged-recipes,jakirkham/staged-recipes,sodre/staged-recipes,SylvainCorlay/staged-recipes,chrisburr/staged-recipes,rmcgibbo/staged-recipes,hadim/staged-recipes,sodre/staged-recipes,scopatz/staged-recipes,Juanlu001/staged-recipes,jjhelmus/staged-recipes,barkls/staged-recipes,conda-forge/staged-recipes,barkls/staged-recipes,Juanlu001/staged-recipes,pmlandwehr/staged-recipes,glemaitre/staged-recipes,asmeurer/staged-recipes,goanpeca/staged-recipes,shadowwalkersb/staged-recipes,ceholden/staged-recipes,mcs07/staged-recipes,goanpeca/staged-recipes,shadowwalkersb/staged-recipes,petrushy/staged-recipes,jochym/staged-recipes,chrisburr/staged-recipes,conda-forge/staged-recipes,mcs07/staged-recipes,dschreij/staged-recipes,jochym/staged-recipes,scopatz/staged-recipes,sodre/staged-recipes,dschreij/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,chohner/staged-recipes,petrushy/staged-recipes,guillochon/staged-recipes,synapticarbors/staged-recipes,isuruf/staged-recipes,Cashalow/staged-recipes,igortg/staged-recipes,Cashalow/staged-recipes,johanneskoester/staged-recipes,rvalieris/staged-recipes,jjhelmus/staged-recipes,rmcgibbo/staged-recipes,isuruf/staged-recipes,guillochon/staged-recipes,ocefpaf/staged-recipes,basnijholt/staged-recipes,igortg/staged-recipes,chohner/staged-recipes,asmeurer/staged-recipes,pmlandwehr/staged-recipes,ReimarBauer/staged-recipes,ceholden/staged-recipes,NOAA-ORR-ERD/staged-recipes,larray-project/staged-recipes,patricksnape/staged-recipes,rvalieris/staged-recipes,hadim/staged-recipes,johanneskoester/staged-recipes,patricksnape/staged-recipes,synapticarbors/staged-recipes,stuertz/staged-recipes,cpaulik/staged-recipes,ocefpaf/staged-recipes,stuertz/staged-recipes,sannykr/staged-recipes,sannykr/staged-recipes,basnijholt/staged-recipes,cpaulik/staged-recipes,kwilcox/staged-recipes,SylvainCorlay/staged-recipes,birdsarah/staged-recipes,glemaitre/staged-recipes,mariusvniekerk/staged-recipes,birdsarah/staged-recipes,larray-project/staged-recipes
f447000fcd2463fd82e5477eead9710e9fc2ae6d
.github/workflows/build.yml
.github/workflows/build.yml
on: push: branches: - 'build-*' tags: '*' schedule: - cron: '15 1 * * *' jobs: build: if: github.repository == 'hashicorp/vagrant-builders' name: Build Vagrant Installers runs-on: self-hosted steps: - name: Code Checkout uses: actions/checkout@v1 - name: Build and Release run: ./.ci/build-packages.sh env: PKT_SECRET_PHRASE: ${{ secrets.ASSETS_PASSWORD }} PKT_SignKeyPassword: ${{ secrets.WINDOWS_SIGN_PASSWORD }} PKT_VAGRANT_INSTALLER_SignKeyPassword: ${{ secrets.WINDOWS_SIGN_PASSWORD }} PKT_VAGRANT_INSTALLER_CODE_SIGN_PASS: ${{ secrets.MACOS_SIGN_PASSWORD }} PKT_VAGRANT_INSTALLER_NOTARIZE_USERNAME: releases@hashicorp.com PKT_VAGRANT_INSTALLER_NOTARIZE_PASSWORD: ${{ secrets.MACOS_NOTARIZE_PASSWORD }} working-directory: ${{github.workspace}} - name: Clean Workspace if: always() run: rm -rf ${{ github.workspace }}
on: push: branches: - 'build-*' tags: '*' schedule: - cron: '15 1 * * *' jobs: build: if: github.repository == 'hashicorp/vagrant-builders' name: Build Vagrant Installers runs-on: self-hosted steps: - name: Code Checkout uses: actions/checkout@v1 - name: Build and Release run: ./.ci/build-packages.sh env: PKT_SECRET_PHRASE: ${{ secrets.ASSETS_PASSWORD }} PKT_SignKeyPassword: ${{ secrets.WINDOWS_SIGN_PASSWORD }} PKT_VAGRANT_INSTALLER_SignKeyPassword: ${{ secrets.WINDOWS_SIGN_PASSWORD }} PKT_VAGRANT_INSTALLER_CODE_SIGN_PASS: ${{ secrets.MACOS_SIGN_PASSWORD }} PKT_VAGRANT_INSTALLER_NOTARIZE_USERNAME: releases@hashicorp.com PKT_VAGRANT_INSTALLER_NOTARIZE_PASSWORD: ${{ secrets.MACOS_NOTARIZE_PASSWORD }} working-directory: ${{github.workspace}} - name: Clean Workspace if: always() run: rm -rf ${{ github.workspace }}
Fix indentation depth on schedule
Fix indentation depth on schedule
YAML
mit
mitchellh/vagrant-installers,mitchellh/vagrant-installers,chrisroberts/vagrant-installers,chrisroberts/vagrant-installers,mitchellh/vagrant-installers,chrisroberts/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,chrisroberts/vagrant-installers,chrisroberts/vagrant-installers,chrisroberts/vagrant-installers
35e4a33d1c518db28bf3064bb5234ba41d94c7d9
.github/workflows/build.yml
.github/workflows/build.yml
name: Build project on: [push] jobs: build_latex: runs-on: ubuntu-20.04 steps: - name: Set up Git repository uses: actions/checkout@v1 - name: Build run: | mvn test --batch-mode
name: Build project on: [push] jobs: build_project: runs-on: ubuntu-20.04 steps: - name: Set up Git repository uses: actions/checkout@v1 - name: Build run: | mvn test --batch-mode
Fix job name in CI configuration
Fix job name in CI configuration
YAML
apache-2.0
ldbc/ldbc_graphalytics,ldbc/ldbc_graphalytics,ldbc/ldbc_graphalytics,ldbc/ldbc_graphalytics,ldbc/ldbc_graphalytics
7a5d7eb6812cfc10ad030893ebc595a6f3b6bfc5
.github/workflows/build.yml
.github/workflows/build.yml
--- name: build on: # yamllint disable-line rule:truthy push: paths-ignore: - README.md pull_request: branches: - master jobs: ansible-lint: container: image: quay.io/ansible/molecule:3.1.5 name: Lint Ansible files runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: ansible-lint --force-color yamllint: container: image: quay.io/ansible/molecule:3.1.5 name: Lint YAML files runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: yamllint --format github --strict . molecule: container: image: quay.io/ansible/molecule:3.1.5 name: Execute Molecule mock scenario test runs-on: ubuntu-latest env: PY_COLORS: 1 ANSIBLE_FORCE_COLOR: 1 steps: - uses: actions/checkout@v2 run: | molecule test --scenario-name mock --parallel
--- name: build on: # yamllint disable-line rule:truthy push: paths-ignore: - README.md pull_request: branches: - master jobs: ansible-lint: container: image: quay.io/ansible/molecule:3.1.5 name: Lint Ansible files runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: ansible-lint --force-color yamllint: container: image: quay.io/ansible/molecule:3.1.5 name: Lint YAML files runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: yamllint --format github --strict . molecule: container: image: quay.io/ansible/molecule:3.1.5 name: Execute Molecule mock scenario test runs-on: ubuntu-latest env: PY_COLORS: 1 ANSIBLE_FORCE_COLOR: 1 steps: - uses: actions/checkout@v2 - run: | molecule test --scenario-name mock --parallel
Correct list syntax for discrete step
Correct list syntax for discrete step
YAML
mit
aglorei/dotfiles,aglorei/dotfiles
a4fdd17668f71ddc5928998a90a098e026a543d9
.github/workflows/build.yml
.github/workflows/build.yml
name: 'Build' on: push: branches: [main] pull_request: branches: [main] jobs: lint-and-test: runs-on: ubuntu-latest strategy: matrix: ruby_version: ['2.6', '2.7', '3.0', '3.1'] steps: - name: Checkout code uses: actions/checkout@v3 - name: Setup Ruby ${{ matrix.ruby_version }} uses: ruby/setup-ruby@v1 with: bundler-cache: true ruby-version: ${{ matrix.ruby_version }} - name: Install dependencies run: bundle install - name: Lint Ruby files run: bundle exec rubocop - name: Run RSpec tests run: bundle exec rspec
name: 'Build' on: push: branches: [main] pull_request: branches: [main] jobs: lint-and-test: runs-on: ubuntu-latest strategy: matrix: ruby_version: ['2.6', '2.7', '3.0', '3.1', '3.2.0-preview1'] steps: - name: Checkout code uses: actions/checkout@v3 - name: Setup Ruby ${{ matrix.ruby_version }} uses: ruby/setup-ruby@v1 with: bundler-cache: true ruby-version: ${{ matrix.ruby_version }} - name: Install dependencies run: bundle install - name: Lint Ruby files run: bundle exec rubocop - name: Run RSpec tests run: bundle exec rspec
Test and lint with the current Ruby 3.2.x preview
Test and lint with the current Ruby 3.2.x preview
YAML
mit
restforce/restforce,restforce/restforce
634833f36af2896a53fb9d896516f26c96496be3
rsyslog-docker/8.18/docker-compose.yml
rsyslog-docker/8.18/docker-compose.yml
version: '3.2' services: rsyslog: image: webratio/rsyslog-docker:8.18 container_name: rsyslogd volumes: - /var/log/docker:/var/log/ ports: - "10514:10514/udp" restart: always
version: '3.0' services: rsyslog: image: webratio/rsyslog-docker:8.18 container_name: rsyslogd volumes: - /var/log/docker:/var/log/ ports: - "10514:10514/udp" restart: always
Change version from 3.2 to 3.0 for docker compose
Change version from 3.2 to 3.0 for docker compose
YAML
apache-2.0
webratio/docker
4fd31c8a4e4fffb115ebddac454cd9f5bff6bf71
.github/workflows/on-pr.yml
.github/workflows/on-pr.yml
# This workflow will triage pull requests and apply a label based on the # paths that are modified in the pull request. # # To use this workflow, you will need to set up a .github/labeler.yml # file with configuration. For more information, see: # https://github.com/actions/labeler name: Labeler on: [pull_request_target] jobs: size-label: runs-on: ubuntu-latest name: Label the PR size steps: - uses: codelytv/pr-size-labeler@v1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} xs_max_size: '10' s_max_size: '100' m_max_size: '500' l_max_size: '1000' fail_if_xl: 'false' message_if_xl: > 'This PR exceeds the recommended size of 1000 lines. Please make sure you are NOT addressing multiple issues with one PR. Note this PR might be rejected due to its size.’ github_api_url: 'api.github.com' area-label: runs-on: ubuntu-latest steps: - uses: actions/labeler@v2 with: repo-token: "${{ secrets.GITHUB_TOKEN }}"
# This workflow will triage pull requests and apply a label based on the # paths that are modified in the pull request. # # To use this workflow, you will need to set up a .github/labeler.yml # file with configuration. For more information, see: # https://github.com/actions/labeler name: Labeler on: [pull_request_target] jobs: labels: runs-on: ubuntu-latest name: Label the PR size steps: - uses: actions/labeler@v2 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" - uses: codelytv/pr-size-labeler@v1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} xs_max_size: '10' s_max_size: '100' m_max_size: '500' l_max_size: '1000' fail_if_xl: 'false' message_if_xl: > 'This PR exceeds the recommended size of 1000 lines. Please make sure you are NOT addressing multiple issues with one PR. Note this PR might be rejected due to its size.’ github_api_url: 'api.github.com'
Fix github PR labeler to happen in the same job
[CI] Fix github PR labeler to happen in the same job
YAML
apache-2.0
libopenstorage/openstorage,libopenstorage/openstorage,libopenstorage/openstorage
da6c3377024fd8e20194b02d2bd8b47af927c12a
common/lib/xmodule/xmodule/templates/problem/string_response.yaml
common/lib/xmodule/xmodule/templates/problem/string_response.yaml
--- metadata: display_name: Text Input markdown: | A text input problem accepts a line of text from the student, and evaluates the input for correctness based on an expected answer. The answer is correct if it matches every character of the expected answer. This can be a problem with international spelling, dates, or anything where the format of the answer is not clear. >>Which US state has Lansing as its capital?<< = Michigan [explanation] Lansing is the capital of Michigan, although it is not Michigan's largest city, or even the seat of the county in which it resides. [explanation] data: | <problem> <p> A text input problem accepts a line of text from the student, and evaluates the input for correctness based on an expected answer. The answer is correct if it matches every character of the expected answer. This can be a problem with international spelling, dates, or anything where the format of the answer is not clear. </p> <p>Which US state has Lansing as its capital? </p> <stringresponse answer="Michigan" type="ci"> <textline size="20" label="Which US state has Lansing as its capital?"/> </stringresponse> <solution> <div class="detailed-solution"> <p>Explanation</p> <p>Lansing is the capital of Michigan, although it is not Michigan's largest city, or even the seat of the county in which it resides.</p> </div> </solution> </problem>
--- metadata: display_name: Text Input markdown: | A text input problem accepts a line of text from the student, and evaluates the input for correctness based on an expected answer. The answer is correct if it matches every character of the expected answer. This can be a problem with international spelling, dates, or anything where the format of the answer is not clear. >>Which US state has Lansing as its capital?<< = Michigan [explanation] Lansing is the capital of Michigan, although it is not Michgan's largest city, or even the seat of the county in which it resides. [explanation] data: | <problem> <p> A text input problem accepts a line of text from the student, and evaluates the input for correctness based on an expected answer. The answer is correct if it matches every character of the expected answer. This can be a problem with international spelling, dates, or anything where the format of the answer is not clear. </p> <p>Which US state has Lansing as its capital? </p> <stringresponse answer="Michigan" type="ci"> <textline size="20" label="Which US state has Lansing as its capital?"/> </stringresponse> <solution> <div class="detailed-solution"> <p>Explanation</p> <p>Lansing is the capital of Michigan, although it is not Michgan's largest city, or even the seat of the county in which it resides.</p> </div> </solution> </problem>
Revert "Fixes spelling of Michigan in template."
Revert "Fixes spelling of Michigan in template." This reverts commit 9e9e69ace3ee4cb5b768b8942aad9ff1984fc841.
YAML
agpl-3.0
franosincic/edx-platform,mbareta/edx-platform-ft,motion2015/edx-platform,MSOpenTech/edx-platform,ubc/edx-platform,dkarakats/edx-platform,edry/edx-platform,edx/edx-platform,nttks/jenkins-test,ubc/edx-platform,ubc/edx-platform,nikolas/edx-platform,jazkarta/edx-platform-for-isc,ak2703/edx-platform,motion2015/a3,DNFcode/edx-platform,jazztpt/edx-platform,atsolakid/edx-platform,ferabra/edx-platform,xuxiao19910803/edx-platform,Kalyzee/edx-platform,chauhanhardik/populo,xinjiguaike/edx-platform,rismalrv/edx-platform,cognitiveclass/edx-platform,utecuy/edx-platform,antoviaque/edx-platform,dcosentino/edx-platform,unicri/edx-platform,mushtaqak/edx-platform,wwj718/edx-platform,pomegranited/edx-platform,arbrandes/edx-platform,naresh21/synergetics-edx-platform,jelugbo/tundex,zhenzhai/edx-platform,vasyarv/edx-platform,shurihell/testasia,appliedx/edx-platform,Shrhawk/edx-platform,playm2mboy/edx-platform,lduarte1991/edx-platform,nttks/edx-platform,jelugbo/tundex,caesar2164/edx-platform,UOMx/edx-platform,doismellburning/edx-platform,jolyonb/edx-platform,B-MOOC/edx-platform,TeachAtTUM/edx-platform,leansoft/edx-platform,bigdatauniversity/edx-platform,raccoongang/edx-platform,pabloborrego93/edx-platform,10clouds/edx-platform,auferack08/edx-platform,rhndg/openedx,franosincic/edx-platform,AkA84/edx-platform,dcosentino/edx-platform,romain-li/edx-platform,zadgroup/edx-platform,analyseuc3m/ANALYSE-v1,UOMx/edx-platform,deepsrijit1105/edx-platform,sudheerchintala/LearnEraPlatForm,DNFcode/edx-platform,LearnEra/LearnEraPlaftform,antonve/s4-project-mooc,fly19890211/edx-platform,chauhanhardik/populo_2,Semi-global/edx-platform,chudaol/edx-platform,kursitet/edx-platform,marcore/edx-platform,doismellburning/edx-platform,kamalx/edx-platform,olexiim/edx-platform,don-github/edx-platform,chauhanhardik/populo_2,arifsetiawan/edx-platform,SravanthiSinha/edx-platform,xuxiao19910803/edx,don-github/edx-platform,synergeticsedx/deployment-wipro,xuxiao19910803/edx,eestay/edx-platform,ESOedX/edx-platform,carsongee/edx-platform,jswope00/griffinx,ferabra/edx-platform,doismellburning/edx-platform,rismalrv/edx-platform,AkA84/edx-platform,adoosii/edx-platform,IONISx/edx-platform,kxliugang/edx-platform,CredoReference/edx-platform,10clouds/edx-platform,louyihua/edx-platform,arbrandes/edx-platform,nttks/jenkins-test,chand3040/cloud_that,bitifirefly/edx-platform,rhndg/openedx,eemirtekin/edx-platform,synergeticsedx/deployment-wipro,eestay/edx-platform,waheedahmed/edx-platform,auferack08/edx-platform,simbs/edx-platform,halvertoluke/edx-platform,adoosii/edx-platform,J861449197/edx-platform,CredoReference/edx-platform,knehez/edx-platform,tiagochiavericosta/edx-platform,10clouds/edx-platform,eduNEXT/edunext-platform,valtech-mooc/edx-platform,IndonesiaX/edx-platform,carsongee/edx-platform,EDUlib/edx-platform,shubhdev/edxOnBaadal,don-github/edx-platform,marcore/edx-platform,unicri/edx-platform,devs1991/test_edx_docmode,shubhdev/edxOnBaadal,Livit/Livit.Learn.EdX,jbzdak/edx-platform,ubc/edx-platform,Kalyzee/edx-platform,nanolearningllc/edx-platform-cypress,Softmotions/edx-platform,nanolearningllc/edx-platform-cypress-2,nanolearningllc/edx-platform-cypress-2,ahmedaljazzar/edx-platform,rue89-tech/edx-platform,ampax/edx-platform,waheedahmed/edx-platform,nagyistoce/edx-platform,JioEducation/edx-platform,jazkarta/edx-platform,hamzehd/edx-platform,pabloborrego93/edx-platform,kxliugang/edx-platform,Edraak/edraak-platform,andyzsf/edx,ampax/edx-platform-backup,valtech-mooc/edx-platform,eestay/edx-platform,teltek/edx-platform,edry/edx-platform,cpennington/edx-platform,a-parhom/edx-platform,prarthitm/edxplatform,vikas1885/test1,LICEF/edx-platform,auferack08/edx-platform,arifsetiawan/edx-platform,solashirai/edx-platform,cecep-edu/edx-platform,kmoocdev2/edx-platform,vismartltd/edx-platform,lduarte1991/edx-platform,appliedx/edx-platform,shashank971/edx-platform,polimediaupv/edx-platform,jbzdak/edx-platform,CourseTalk/edx-platform,Stanford-Online/edx-platform,Edraak/edraak-platform,jamesblunt/edx-platform,beni55/edx-platform,Semi-global/edx-platform,mbareta/edx-platform-ft,andyzsf/edx,halvertoluke/edx-platform,MakeHer/edx-platform,jelugbo/tundex,jamiefolsom/edx-platform,mtlchun/edx,bdero/edx-platform,vismartltd/edx-platform,chand3040/cloud_that,jazkarta/edx-platform,msegado/edx-platform,MakeHer/edx-platform,antonve/s4-project-mooc,BehavioralInsightsTeam/edx-platform,appsembler/edx-platform,AkA84/edx-platform,IONISx/edx-platform,vikas1885/test1,4eek/edx-platform,dsajkl/reqiop,iivic/BoiseStateX,DefyVentures/edx-platform,proversity-org/edx-platform,jelugbo/tundex,Kalyzee/edx-platform,dsajkl/reqiop,Edraak/circleci-edx-platform,msegado/edx-platform,motion2015/a3,dkarakats/edx-platform,hastexo/edx-platform,ferabra/edx-platform,peterm-itr/edx-platform,Livit/Livit.Learn.EdX,eduNEXT/edx-platform,procangroup/edx-platform,shurihell/testasia,valtech-mooc/edx-platform,fly19890211/edx-platform,nikolas/edx-platform,kmoocdev/edx-platform,kamalx/edx-platform,shubhdev/edx-platform,itsjeyd/edx-platform,proversity-org/edx-platform,JioEducation/edx-platform,ampax/edx-platform-backup,polimediaupv/edx-platform,peterm-itr/edx-platform,pomegranited/edx-platform,LearnEra/LearnEraPlaftform,openfun/edx-platform,kursitet/edx-platform,UXE/local-edx,Ayub-Khan/edx-platform,caesar2164/edx-platform,BehavioralInsightsTeam/edx-platform,angelapper/edx-platform,y12uc231/edx-platform,chand3040/cloud_that,cselis86/edx-platform,ampax/edx-platform,fintech-circle/edx-platform,MSOpenTech/edx-platform,openfun/edx-platform,shubhdev/edx-platform,mushtaqak/edx-platform,RPI-OPENEDX/edx-platform,tanmaykm/edx-platform,jamiefolsom/edx-platform,Semi-global/edx-platform,B-MOOC/edx-platform,analyseuc3m/ANALYSE-v1,cecep-edu/edx-platform,stvstnfrd/edx-platform,rue89-tech/edx-platform,Edraak/edraak-platform,ZLLab-Mooc/edx-platform,analyseuc3m/ANALYSE-v1,mahendra-r/edx-platform,kursitet/edx-platform,iivic/BoiseStateX,alexthered/kienhoc-platform,pabloborrego93/edx-platform,procangroup/edx-platform,MSOpenTech/edx-platform,cognitiveclass/edx-platform,zubair-arbi/edx-platform,rismalrv/edx-platform,OmarIthawi/edx-platform,jswope00/griffinx,halvertoluke/edx-platform,pabloborrego93/edx-platform,polimediaupv/edx-platform,kxliugang/edx-platform,sudheerchintala/LearnEraPlatForm,Edraak/edx-platform,shashank971/edx-platform,playm2mboy/edx-platform,sameetb-cuelogic/edx-platform-test,nikolas/edx-platform,tanmaykm/edx-platform,cognitiveclass/edx-platform,eemirtekin/edx-platform,romain-li/edx-platform,sudheerchintala/LearnEraPlatForm,mtlchun/edx,jolyonb/edx-platform,don-github/edx-platform,DNFcode/edx-platform,xingyepei/edx-platform,openfun/edx-platform,amir-qayyum-khan/edx-platform,angelapper/edx-platform,zerobatu/edx-platform,simbs/edx-platform,Edraak/circleci-edx-platform,mcgachey/edx-platform,ESOedX/edx-platform,Semi-global/edx-platform,amir-qayyum-khan/edx-platform,ahmadiga/min_edx,msegado/edx-platform,arifsetiawan/edx-platform,MSOpenTech/edx-platform,alexthered/kienhoc-platform,Softmotions/edx-platform,deepsrijit1105/edx-platform,ampax/edx-platform,cselis86/edx-platform,raccoongang/edx-platform,OmarIthawi/edx-platform,SivilTaram/edx-platform,valtech-mooc/edx-platform,JCBarahona/edX,martynovp/edx-platform,motion2015/edx-platform,jjmiranda/edx-platform,mushtaqak/edx-platform,philanthropy-u/edx-platform,UXE/local-edx,bitifirefly/edx-platform,leansoft/edx-platform,devs1991/test_edx_docmode,mahendra-r/edx-platform,Edraak/edx-platform,ahmadio/edx-platform,motion2015/a3,ovnicraft/edx-platform,antonve/s4-project-mooc,DNFcode/edx-platform,zofuthan/edx-platform,beni55/edx-platform,ampax/edx-platform-backup,MakeHer/edx-platform,beacloudgenius/edx-platform,motion2015/edx-platform,simbs/edx-platform,mjirayu/sit_academy,Unow/edx-platform,atsolakid/edx-platform,jjmiranda/edx-platform,edx-solutions/edx-platform,Ayub-Khan/edx-platform,andyzsf/edx,DefyVentures/edx-platform,appsembler/edx-platform,fintech-circle/edx-platform,philanthropy-u/edx-platform,dcosentino/edx-platform,stvstnfrd/edx-platform,unicri/edx-platform,ZLLab-Mooc/edx-platform,Unow/edx-platform,teltek/edx-platform,stvstnfrd/edx-platform,eduNEXT/edunext-platform,xuxiao19910803/edx-platform,zhenzhai/edx-platform,IndonesiaX/edx-platform,zubair-arbi/edx-platform,nanolearningllc/edx-platform-cypress,utecuy/edx-platform,xingyepei/edx-platform,chudaol/edx-platform,ovnicraft/edx-platform,ahmadio/edx-platform,franosincic/edx-platform,arifsetiawan/edx-platform,philanthropy-u/edx-platform,waheedahmed/edx-platform,zerobatu/edx-platform,jazkarta/edx-platform-for-isc,zerobatu/edx-platform,J861449197/edx-platform,DefyVentures/edx-platform,SravanthiSinha/edx-platform,devs1991/test_edx_docmode,devs1991/test_edx_docmode,zerobatu/edx-platform,LICEF/edx-platform,eduNEXT/edx-platform,4eek/edx-platform,SivilTaram/edx-platform,shubhdev/openedx,wwj718/edx-platform,cpennington/edx-platform,chauhanhardik/populo_2,chauhanhardik/populo,benpatterson/edx-platform,shabab12/edx-platform,etzhou/edx-platform,xingyepei/edx-platform,shashank971/edx-platform,JCBarahona/edX,benpatterson/edx-platform,y12uc231/edx-platform,sameetb-cuelogic/edx-platform-test,y12uc231/edx-platform,alexthered/kienhoc-platform,UXE/local-edx,OmarIthawi/edx-platform,tanmaykm/edx-platform,bitifirefly/edx-platform,polimediaupv/edx-platform,hastexo/edx-platform,RPI-OPENEDX/edx-platform,IndonesiaX/edx-platform,MakeHer/edx-platform,B-MOOC/edx-platform,SravanthiSinha/edx-platform,BehavioralInsightsTeam/edx-platform,zadgroup/edx-platform,lduarte1991/edx-platform,atsolakid/edx-platform,devs1991/test_edx_docmode,jazztpt/edx-platform,rue89-tech/edx-platform,tiagochiavericosta/edx-platform,mjirayu/sit_academy,tanmaykm/edx-platform,tiagochiavericosta/edx-platform,utecuy/edx-platform,ampax/edx-platform,kursitet/edx-platform,mjirayu/sit_academy,zadgroup/edx-platform,sameetb-cuelogic/edx-platform-test,jamesblunt/edx-platform,knehez/edx-platform,CredoReference/edx-platform,LICEF/edx-platform,kamalx/edx-platform,polimediaupv/edx-platform,eemirtekin/edx-platform,jbassen/edx-platform,kmoocdev/edx-platform,ahmadiga/min_edx,Edraak/edx-platform,stvstnfrd/edx-platform,leansoft/edx-platform,nagyistoce/edx-platform,cpennington/edx-platform,atsolakid/edx-platform,chand3040/cloud_that,don-github/edx-platform,nttks/edx-platform,Endika/edx-platform,jolyonb/edx-platform,appsembler/edx-platform,ak2703/edx-platform,jjmiranda/edx-platform,ZLLab-Mooc/edx-platform,hastexo/edx-platform,Shrhawk/edx-platform,shubhdev/openedx,eduNEXT/edx-platform,sudheerchintala/LearnEraPlatForm,vasyarv/edx-platform,gsehub/edx-platform,Edraak/circleci-edx-platform,bigdatauniversity/edx-platform,inares/edx-platform,ak2703/edx-platform,raccoongang/edx-platform,chrisndodge/edx-platform,arbrandes/edx-platform,benpatterson/edx-platform,edx-solutions/edx-platform,mjirayu/sit_academy,longmen21/edx-platform,prarthitm/edxplatform,Kalyzee/edx-platform,franosincic/edx-platform,TeachAtTUM/edx-platform,EDUlib/edx-platform,chrisndodge/edx-platform,gymnasium/edx-platform,Edraak/circleci-edx-platform,chauhanhardik/populo,peterm-itr/edx-platform,playm2mboy/edx-platform,mtlchun/edx,longmen21/edx-platform,4eek/edx-platform,shashank971/edx-platform,pepeportela/edx-platform,benpatterson/edx-platform,jonathan-beard/edx-platform,doganov/edx-platform,mcgachey/edx-platform,louyihua/edx-platform,jazztpt/edx-platform,cselis86/edx-platform,itsjeyd/edx-platform,adoosii/edx-platform,devs1991/test_edx_docmode,knehez/edx-platform,nagyistoce/edx-platform,LICEF/edx-platform,Unow/edx-platform,mcgachey/edx-platform,nttks/edx-platform,doganov/edx-platform,Softmotions/edx-platform,xingyepei/edx-platform,pepeportela/edx-platform,Lektorium-LLC/edx-platform,iivic/BoiseStateX,nanolearningllc/edx-platform-cypress-2,adoosii/edx-platform,mahendra-r/edx-platform,MSOpenTech/edx-platform,synergeticsedx/deployment-wipro,shurihell/testasia,longmen21/edx-platform,simbs/edx-platform,amir-qayyum-khan/edx-platform,dsajkl/123,cselis86/edx-platform,appliedx/edx-platform,abdoosh00/edraak,Ayub-Khan/edx-platform,wwj718/edx-platform,zofuthan/edx-platform,edx-solutions/edx-platform,leansoft/edx-platform,gymnasium/edx-platform,openfun/edx-platform,beni55/edx-platform,eemirtekin/edx-platform,louyihua/edx-platform,bigdatauniversity/edx-platform,mahendra-r/edx-platform,romain-li/edx-platform,jzoldak/edx-platform,ahmadio/edx-platform,jamiefolsom/edx-platform,tiagochiavericosta/edx-platform,waheedahmed/edx-platform,abdoosh00/edraak,rhndg/openedx,kmoocdev/edx-platform,jswope00/griffinx,SivilTaram/edx-platform,shashank971/edx-platform,dsajkl/123,zubair-arbi/edx-platform,ahmadio/edx-platform,rhndg/openedx,10clouds/edx-platform,martynovp/edx-platform,chudaol/edx-platform,DefyVentures/edx-platform,sameetb-cuelogic/edx-platform-test,Edraak/edraak-platform,miptliot/edx-platform,chauhanhardik/populo,EDUlib/edx-platform,jruiperezv/ANALYSE,xuxiao19910803/edx,zhenzhai/edx-platform,kmoocdev2/edx-platform,simbs/edx-platform,jazztpt/edx-platform,doismellburning/edx-platform,martynovp/edx-platform,bdero/edx-platform,gsehub/edx-platform,Stanford-Online/edx-platform,a-parhom/edx-platform,utecuy/edx-platform,Endika/edx-platform,SivilTaram/edx-platform,mushtaqak/edx-platform,iivic/BoiseStateX,zhenzhai/edx-platform,ovnicraft/edx-platform,playm2mboy/edx-platform,y12uc231/edx-platform,chauhanhardik/populo_2,CourseTalk/edx-platform,nanolearningllc/edx-platform-cypress-2,ferabra/edx-platform,jazkarta/edx-platform-for-isc,BehavioralInsightsTeam/edx-platform,cecep-edu/edx-platform,fly19890211/edx-platform,devs1991/test_edx_docmode,SravanthiSinha/edx-platform,eduNEXT/edx-platform,edry/edx-platform,UOMx/edx-platform,appliedx/edx-platform,nttks/jenkins-test,edry/edx-platform,miptliot/edx-platform,utecuy/edx-platform,pepeportela/edx-platform,jazkarta/edx-platform-for-isc,Endika/edx-platform,defance/edx-platform,jamesblunt/edx-platform,DefyVentures/edx-platform,chrisndodge/edx-platform,bigdatauniversity/edx-platform,kmoocdev2/edx-platform,CourseTalk/edx-platform,etzhou/edx-platform,jbassen/edx-platform,wwj718/edx-platform,dcosentino/edx-platform,unicri/edx-platform,jonathan-beard/edx-platform,appsembler/edx-platform,jzoldak/edx-platform,zubair-arbi/edx-platform,EDUlib/edx-platform,auferack08/edx-platform,Ayub-Khan/edx-platform,motion2015/a3,waheedahmed/edx-platform,shubhdev/edx-platform,mcgachey/edx-platform,defance/edx-platform,ampax/edx-platform-backup,chauhanhardik/populo,IndonesiaX/edx-platform,xuxiao19910803/edx,carsongee/edx-platform,UOMx/edx-platform,mitocw/edx-platform,nttks/edx-platform,kxliugang/edx-platform,rhndg/openedx,doganov/edx-platform,motion2015/edx-platform,lduarte1991/edx-platform,IONISx/edx-platform,CredoReference/edx-platform,carsongee/edx-platform,y12uc231/edx-platform,halvertoluke/edx-platform,arifsetiawan/edx-platform,shurihell/testasia,jruiperezv/ANALYSE,LearnEra/LearnEraPlaftform,eduNEXT/edunext-platform,andyzsf/edx,ampax/edx-platform-backup,B-MOOC/edx-platform,xuxiao19910803/edx,JCBarahona/edX,J861449197/edx-platform,zofuthan/edx-platform,gymnasium/edx-platform,rismalrv/edx-platform,JCBarahona/edX,jamiefolsom/edx-platform,Shrhawk/edx-platform,chrisndodge/edx-platform,ubc/edx-platform,eestay/edx-platform,amir-qayyum-khan/edx-platform,jonathan-beard/edx-platform,beacloudgenius/edx-platform,inares/edx-platform,olexiim/edx-platform,atsolakid/edx-platform,shabab12/edx-platform,jruiperezv/ANALYSE,RPI-OPENEDX/edx-platform,jswope00/griffinx,procangroup/edx-platform,jzoldak/edx-platform,vismartltd/edx-platform,pomegranited/edx-platform,zadgroup/edx-platform,motion2015/a3,rue89-tech/edx-platform,mitocw/edx-platform,etzhou/edx-platform,Ayub-Khan/edx-platform,jazztpt/edx-platform,chudaol/edx-platform,xuxiao19910803/edx-platform,nttks/edx-platform,antonve/s4-project-mooc,B-MOOC/edx-platform,kursitet/edx-platform,gsehub/edx-platform,beacloudgenius/edx-platform,zadgroup/edx-platform,shubhdev/edx-platform,MakeHer/edx-platform,romain-li/edx-platform,abdoosh00/edraak,edx-solutions/edx-platform,wwj718/edx-platform,longmen21/edx-platform,leansoft/edx-platform,xinjiguaike/edx-platform,ahmadiga/min_edx,etzhou/edx-platform,jjmiranda/edx-platform,iivic/BoiseStateX,alexthered/kienhoc-platform,caesar2164/edx-platform,vismartltd/edx-platform,hamzehd/edx-platform,kxliugang/edx-platform,itsjeyd/edx-platform,jamesblunt/edx-platform,Lektorium-LLC/edx-platform,defance/edx-platform,jamiefolsom/edx-platform,cselis86/edx-platform,msegado/edx-platform,Livit/Livit.Learn.EdX,Lektorium-LLC/edx-platform,franosincic/edx-platform,ahmadio/edx-platform,louyihua/edx-platform,prarthitm/edxplatform,mtlchun/edx,bigdatauniversity/edx-platform,CourseTalk/edx-platform,kamalx/edx-platform,martynovp/edx-platform,xinjiguaike/edx-platform,Semi-global/edx-platform,zhenzhai/edx-platform,OmarIthawi/edx-platform,JioEducation/edx-platform,TeachAtTUM/edx-platform,bdero/edx-platform,Kalyzee/edx-platform,chudaol/edx-platform,deepsrijit1105/edx-platform,shabab12/edx-platform,kmoocdev/edx-platform,cognitiveclass/edx-platform,ahmedaljazzar/edx-platform,jbassen/edx-platform,mahendra-r/edx-platform,naresh21/synergetics-edx-platform,shubhdev/openedx,inares/edx-platform,doganov/edx-platform,shubhdev/openedx,gymnasium/edx-platform,teltek/edx-platform,naresh21/synergetics-edx-platform,antoviaque/edx-platform,bitifirefly/edx-platform,edx/edx-platform,vikas1885/test1,teltek/edx-platform,mitocw/edx-platform,antoviaque/edx-platform,ahmadiga/min_edx,itsjeyd/edx-platform,martynovp/edx-platform,eemirtekin/edx-platform,xingyepei/edx-platform,nagyistoce/edx-platform,valtech-mooc/edx-platform,nanolearningllc/edx-platform-cypress,dsajkl/reqiop,doismellburning/edx-platform,devs1991/test_edx_docmode,defance/edx-platform,jruiperezv/ANALYSE,shubhdev/edxOnBaadal,jamesblunt/edx-platform,ak2703/edx-platform,dkarakats/edx-platform,edx/edx-platform,mtlchun/edx,wwj718/ANALYSE,nttks/jenkins-test,vikas1885/test1,Softmotions/edx-platform,fly19890211/edx-platform,4eek/edx-platform,bdero/edx-platform,jazkarta/edx-platform,rismalrv/edx-platform,cecep-edu/edx-platform,hamzehd/edx-platform,knehez/edx-platform,angelapper/edx-platform,openfun/edx-platform,alu042/edx-platform,LICEF/edx-platform,cecep-edu/edx-platform,edry/edx-platform,caesar2164/edx-platform,cyanna/edx-platform,shabab12/edx-platform,Stanford-Online/edx-platform,mbareta/edx-platform-ft,jbzdak/edx-platform,xuxiao19910803/edx-platform,hamzehd/edx-platform,cpennington/edx-platform,pomegranited/edx-platform,abdoosh00/edraak,peterm-itr/edx-platform,jbzdak/edx-platform,solashirai/edx-platform,jbassen/edx-platform,ahmadiga/min_edx,pepeportela/edx-platform,mjirayu/sit_academy,xinjiguaike/edx-platform,cyanna/edx-platform,jruiperezv/ANALYSE,doganov/edx-platform,JioEducation/edx-platform,miptliot/edx-platform,AkA84/edx-platform,shubhdev/edx-platform,beni55/edx-platform,jzoldak/edx-platform,vikas1885/test1,eestay/edx-platform,J861449197/edx-platform,ESOedX/edx-platform,dkarakats/edx-platform,mbareta/edx-platform-ft,wwj718/ANALYSE,raccoongang/edx-platform,synergeticsedx/deployment-wipro,cyanna/edx-platform,mcgachey/edx-platform,shubhdev/edxOnBaadal,nikolas/edx-platform,inares/edx-platform,shubhdev/edxOnBaadal,jonathan-beard/edx-platform,RPI-OPENEDX/edx-platform,Shrhawk/edx-platform,RPI-OPENEDX/edx-platform,dcosentino/edx-platform,marcore/edx-platform,zofuthan/edx-platform,dsajkl/123,kmoocdev2/edx-platform,ahmedaljazzar/edx-platform,shubhdev/openedx,wwj718/ANALYSE,olexiim/edx-platform,inares/edx-platform,appliedx/edx-platform,beni55/edx-platform,etzhou/edx-platform,eduNEXT/edunext-platform,wwj718/ANALYSE,cyanna/edx-platform,halvertoluke/edx-platform,Edraak/edx-platform,hamzehd/edx-platform,Stanford-Online/edx-platform,J861449197/edx-platform,benpatterson/edx-platform,vasyarv/edx-platform,jazkarta/edx-platform,ovnicraft/edx-platform,SivilTaram/edx-platform,romain-li/edx-platform,chauhanhardik/populo_2,ak2703/edx-platform,Shrhawk/edx-platform,IndonesiaX/edx-platform,nanolearningllc/edx-platform-cypress,analyseuc3m/ANALYSE-v1,zerobatu/edx-platform,fintech-circle/edx-platform,nanolearningllc/edx-platform-cypress,4eek/edx-platform,sameetb-cuelogic/edx-platform-test,hastexo/edx-platform,proversity-org/edx-platform,nagyistoce/edx-platform,IONISx/edx-platform,DNFcode/edx-platform,pomegranited/edx-platform,longmen21/edx-platform,wwj718/ANALYSE,alexthered/kienhoc-platform,antonve/s4-project-mooc,adoosii/edx-platform,dsajkl/123,jelugbo/tundex,olexiim/edx-platform,kamalx/edx-platform,beacloudgenius/edx-platform,proversity-org/edx-platform,Edraak/edx-platform,vismartltd/edx-platform,IONISx/edx-platform,antoviaque/edx-platform,deepsrijit1105/edx-platform,dsajkl/123,TeachAtTUM/edx-platform,solashirai/edx-platform,ZLLab-Mooc/edx-platform,olexiim/edx-platform,kmoocdev2/edx-platform,fintech-circle/edx-platform,solashirai/edx-platform,LearnEra/LearnEraPlaftform,Softmotions/edx-platform,bitifirefly/edx-platform,a-parhom/edx-platform,miptliot/edx-platform,arbrandes/edx-platform,Endika/edx-platform,procangroup/edx-platform,kmoocdev/edx-platform,ferabra/edx-platform,Unow/edx-platform,gsehub/edx-platform,nikolas/edx-platform,rue89-tech/edx-platform,cognitiveclass/edx-platform,vasyarv/edx-platform,cyanna/edx-platform,jbassen/edx-platform,shurihell/testasia,prarthitm/edxplatform,edx/edx-platform,marcore/edx-platform,dsajkl/reqiop,naresh21/synergetics-edx-platform,alu042/edx-platform,Lektorium-LLC/edx-platform,jswope00/griffinx,zofuthan/edx-platform,xuxiao19910803/edx-platform,jazkarta/edx-platform-for-isc,SravanthiSinha/edx-platform,unicri/edx-platform,motion2015/edx-platform,ovnicraft/edx-platform,msegado/edx-platform,JCBarahona/edX,nanolearningllc/edx-platform-cypress-2,mushtaqak/edx-platform,a-parhom/edx-platform,Edraak/circleci-edx-platform,Livit/Livit.Learn.EdX,jazkarta/edx-platform,beacloudgenius/edx-platform,AkA84/edx-platform,xinjiguaike/edx-platform,nttks/jenkins-test,solashirai/edx-platform,jolyonb/edx-platform,alu042/edx-platform,vasyarv/edx-platform,ahmedaljazzar/edx-platform,tiagochiavericosta/edx-platform,chand3040/cloud_that,UXE/local-edx,angelapper/edx-platform,zubair-arbi/edx-platform,philanthropy-u/edx-platform,alu042/edx-platform,mitocw/edx-platform,knehez/edx-platform,dkarakats/edx-platform,jonathan-beard/edx-platform,playm2mboy/edx-platform,fly19890211/edx-platform,jbzdak/edx-platform,ESOedX/edx-platform,ZLLab-Mooc/edx-platform
302541cf09d95ee0ef65b854f3c724915667fcd8
.github/workflows/stale.yml
.github/workflows/stale.yml
name: Mark stale issues on: schedule: - cron: "30 1 * * *" workflow_dispatch: jobs: stale: runs-on: ubuntu-latest steps: - uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: "This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 10 days." close-issue-message: "This issue was closed because it has been stalled for 10 days with no activity. This does not necessarily mean that the issue is bad, but it most likely means that nobody is willing to take the time to fix it. If you have found Locust useful, then consider contributing a fix yourself!" stale-pr-message: "This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 10 days." close-pr-message: "This PR was closed because it has been stalled for 10 days with no activity." days-before-close: 10
name: Mark stale issues on: schedule: - cron: "30 1 * * *" workflow_dispatch: permissions: contents: read jobs: stale: permissions: issues: write # for actions/stale to close stale issues pull-requests: write # for actions/stale to close stale PRs runs-on: ubuntu-latest steps: - uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: "This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 10 days." close-issue-message: "This issue was closed because it has been stalled for 10 days with no activity. This does not necessarily mean that the issue is bad, but it most likely means that nobody is willing to take the time to fix it. If you have found Locust useful, then consider contributing a fix yourself!" stale-pr-message: "This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 10 days." close-pr-message: "This PR was closed because it has been stalled for 10 days with no activity." days-before-close: 10
Set permissions for GitHub actions
chore: Set permissions for GitHub actions Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much. - Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/) Signed-off-by: naveen <3ee6d032cf0e2168c09d055a780f32b07cd47cf5@users.noreply.github.com>
YAML
mit
locustio/locust,locustio/locust,locustio/locust,locustio/locust
3cb085ecef72190ccad0d59e7f420a2983575c4b
.github/workflows/test.yaml
.github/workflows/test.yaml
name: dotfiles on: push jobs: archlinux: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Build and push Docker images uses: docker/build-push-action@v1 with: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} repository: ${{ github.actor }}/dotfiles/archlinux-dotfiles registry: docker.pkg.github.com tag_with_ref: true tag_with_sha: true osx: runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: Cache homebrew packages uses: actions/cache@v2 env: cache-name: cache-installed-packages with: path: | $HOME/Library/Caches/Homebrew $HOME/.pyenv $HOME/Library/Caches/pip /usr/local/Caskroom /usr/local/opt key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**') }} restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }}- ${{ runner.os }}-build- ${{ runner.os }}- - name: Homebrew cleanup run: brew cleanup - name: Install Ansible run: brew install ansible - name: Install Ansible galaxies run: ansible-galaxy install -r requirements.yml - name: Run Ansible run: ansible-playbook -i inventory osx.yml
name: dotfiles on: push jobs: archlinux: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Build and push Docker images uses: docker/build-push-action@v1 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.GITHUB_TOKEN }} repository: benmezger/dotfiles registry: docker.pkg.github.com tag_with_ref: true tag_with_sha: true osx: runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: Cache homebrew packages uses: actions/cache@v2 env: cache-name: cache-installed-packages with: path: | $HOME/Library/Caches/Homebrew $HOME/.pyenv $HOME/Library/Caches/pip /usr/local/Caskroom /usr/local/opt key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**') }} restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }}- ${{ runner.os }}-build- ${{ runner.os }}- - name: Homebrew cleanup run: brew cleanup - name: Install Ansible run: brew install ansible - name: Install Ansible galaxies run: ansible-galaxy install -r requirements.yml - name: Run Ansible run: ansible-playbook -i inventory osx.yml
Revert "Chore: Fix Docker's GH name requirement"
Revert "Chore: Fix Docker's GH name requirement" This reverts commit 5c851a31a689c2322a088c2664b9d719494fdc5d.
YAML
mit
benmezger/dotfiles,benmezger/dotfiles,benmezger/dotfiles,benmezger/dotfiles
1b9656883bd8a76adc0894ea5bc609ac51784b9a
azure-pipelines/build.yml
azure-pipelines/build.yml
parameters: windowsPool: Hosted Windows 2019 with VS2019 jobs: - job: Windows pool: ${{ parameters.windowsPool }} steps: - template: install-dependencies.yml - template: dotnet.yml - job: Linux pool: vmImage: Ubuntu 18.04 steps: - template: install-dependencies.yml - template: dotnet.yml - job: macOS pool: vmImage: macOS 10.13 steps: - template: install-dependencies.yml - template: dotnet.yml - job: WrapUp dependsOn: - Windows - Linux - macOS pool: vmImage: Ubuntu 18.04 condition: succeededOrFailed() steps: - template: install-dependencies.yml parameters: initArgs: -NoRestore - template: publish-codecoverage.yml - template: publish-deployables.yml - job: leak_check pool: vmImage: Ubuntu 18.04 steps: - template: install-dependencies.yml - task: DotNetCoreCLI@2 displayName: dotnet test -f netcoreapp2.1 inputs: command: test arguments: --no-restore -c $(BuildConfiguration) -f netcoreapp2.1 --filter "TestCategory!=FailsInCloudTest" -v m /p:ExtraDefine=LEAKS_IDENTIFYING testRunTitle: netcoreapp2.1-$(Agent.JobName)
parameters: windowsPool: Hosted Windows 2019 with VS2019 jobs: - job: Windows pool: ${{ parameters.windowsPool }} steps: - template: install-dependencies.yml - template: dotnet.yml - job: Linux pool: vmImage: Ubuntu 18.04 steps: - template: install-dependencies.yml - template: dotnet.yml - job: macOS pool: vmImage: macOS-10.15 steps: - template: install-dependencies.yml - template: dotnet.yml - job: WrapUp dependsOn: - Windows - Linux - macOS pool: vmImage: Ubuntu 18.04 condition: succeededOrFailed() steps: - template: install-dependencies.yml parameters: initArgs: -NoRestore - template: publish-codecoverage.yml - template: publish-deployables.yml - job: leak_check pool: vmImage: Ubuntu 18.04 steps: - template: install-dependencies.yml - task: DotNetCoreCLI@2 displayName: dotnet test -f netcoreapp2.1 inputs: command: test arguments: --no-restore -c $(BuildConfiguration) -f netcoreapp2.1 --filter "TestCategory!=FailsInCloudTest" -v m /p:ExtraDefine=LEAKS_IDENTIFYING testRunTitle: netcoreapp2.1-$(Agent.JobName)
Update macOS image on Azure Pipelines
Update macOS image on Azure Pipelines This resolves the warning we see on Azure Pipelines about the soon-to-be-removed image.
YAML
mit
libgit2/libgit2sharp,PKRoma/libgit2sharp
b94a3380f25394450921576c671453bcbb37beb9
data/styles/default.yaml
data/styles/default.yaml
# based on Eclipse theme for Notepad++ # Copyright (c) 2009 Fesenko Alexander <http://return0x000.blogspot.com/> # MIT licensed Default: id: 32 background: ffffff foreground: 000000 Current line: background: e8f2fe Whitespace: foreground: 7f9fbf Selected text: background: d4d4d4 Caret: foreground: 000000 Edge: foreground: 80ffff Fold: foreground: 808080 background: f3f3f3 Indent guideline: id: 37 foreground: c0c0c0 background: ffffff Brace highlight: id: 34 foreground: ff0000 background: ffffff style: [ bold ] Bad brace: id: 35 foreground: 0000ff background: ffffff style: [ bold ] Line number: id: 33 foreground: 808080 background: e4e4e4 Smart highlight: id: 29 background: a3a3a3 Find mark: id: 31 background: ff0000 Incremental highlight: id: 28 background: ffff00 Tags match highlight: id: 27 background: ffff00 Tags attributes: id: 26 background: ffffff
# based on Eclipse theme for Notepad++ # Copyright (c) 2009 Fesenko Alexander <http://return0x000.blogspot.com/> # MIT licensed Default: id: 32 background: ffffff foreground: 000000 Current line: background: e8f2fe Whitespace: foreground: 7f9fbf Selected text: background: d4d4d4 Caret: foreground: 000000 Edge: foreground: 7f9fbf Fold: foreground: 808080 background: f3f3f3 Indent guideline: id: 37 foreground: c0c0c0 background: ffffff Brace highlight: id: 34 foreground: ff0000 background: ffffff style: [ bold ] Bad brace: id: 35 foreground: 0000ff background: ffffff style: [ bold ] Line number: id: 33 foreground: 808080 background: e4e4e4 Smart highlight: id: 29 background: a3a3a3 Find mark: id: 31 background: ff0000 Incremental highlight: id: 28 background: ffff00 Tags match highlight: id: 27 background: ffff00 Tags attributes: id: 26 background: ffffff
Make line edge line more visible.
Make line edge line more visible.
YAML
mit
KapiX/Koder
b20a533fb3df6679d27e8da3adc2c8de2c49937b
codeception.yml
codeception.yml
actor: Tester paths: tests: tests log: tests/_output data: tests/_data helpers: tests/_support settings: bootstrap: _bootstrap.php colors: true memory_limit: 1024M coverage: remote: false enabled: true include: - lib/* modules: config: Db: dsn: '' user: '' password: '' dump: tests/_data/dump.sql
actor: Tester paths: tests: tests log: tests/_output data: tests/_data helpers: tests/_support settings: bootstrap: _bootstrap.php colors: true memory_limit: 1024M coverage: remote: false enabled: true include: - lib/* exclude: - lib/Jivoo/Core/assets/* - lib/Jivoo/Core/default/* - lib/Jivoo/Core/languages/* - lib/Jivoo/Core/templates/* modules: config: Db: dsn: '' user: '' password: '' dump: tests/_data/dump.sql
Exclude not class files from code coverage.
Exclude not class files from code coverage.
YAML
mit
jivoo/jivoo,jivoo/jivoo,jivoo/jivoo
fd8198a9dbecba04378421fb72ef2d4557ff4e13
config/inav.yml
config/inav.yml
:bcdatabase: :path: <%= RAILS_ROOT %>/config/bcdatabase :cas: :cas_base_url: https://localhost:8443/cas :proxy_retrieval_url: https://localhost:8443/cas_callback/cas_proxy_callback/retrieve_pgt :proxy_callback_url: https://localhost:8443/cas_callback/cas_proxy_callback/receive_pgt :psc: :psc_canonical_uri: http://127.0.0.1:8080/psc/ :psc_service_uri: http://127.0.0.1:8080/psc/auth/cas_security_check :psc_site: testsite :psc_rest_url: http://127.0.0.1:8080/psc/api/v1/ :smtp: :address: ns.northwestern.edu :port: 25 :domain: northwestern.edu :exception_notifier: :exception_recipients: - exception_recipient: m-gurley@northwestern.edu - exception_recipient: r-sutphin@northwestern.edu :sender_address: '"Inflection Navigator Application Error" <NO_REPLY@inflection-navigator.nubic.northwestern.edu>' :email_prefix: [Inflection Navigator]
:bcdatabase: :path: <%= RAILS_ROOT %>/config/bcdatabase :cas: :cas_base_url: https://localhost:8443/cas :proxy_retrieval_url: https://localhost:8443/inav_cas_callback/cas_proxy_callback/retrieve_pgt :proxy_callback_url: https://localhost:8443/inav_cas_callback/cas_proxy_callback/receive_pgt :psc: :psc_canonical_uri: http://127.0.0.1:8080/psc/ :psc_service_uri: http://127.0.0.1:8080/psc/auth/cas_security_check :psc_site: testsite :psc_rest_url: http://127.0.0.1:8080/psc/api/v1/ :smtp: :address: ns.northwestern.edu :port: 25 :domain: northwestern.edu :exception_notifier: :exception_recipients: - exception_recipient: m-gurley@northwestern.edu - exception_recipient: r-sutphin@northwestern.edu :sender_address: '"Inflection Navigator Application Error" <NO_REPLY@inflection-navigator.nubic.northwestern.edu>' :email_prefix: [Inflection Navigator]
Change urls to proxy callback application.
Change urls to proxy callback application.
YAML
mit
mgurley/inav,mgurley/inav
ecbfbdfe022eb76601b4c68d447f4e1205eace02
config/site.yml
config/site.yml
generation: paginated_posts: true day_archives: false date_formats: month: '%B %Y' paths: archives: 'interviews' posts: 'interviews' categories: 'categories' layouts: posts: 'interviews' category: 'interviews' year_archives: 'interviews' month_archives: 'interviews' pagination: per_page: 20 category_names: bsd: 'BSD' mac: 'Macintosh' class_overrides: site: 'UsesThis::Site' post: 'UsesThis::Interview'
generation: paginated_posts: true day_archives: false date_formats: month: '%B %Y' paths: archives: 'interviews' posts: 'interviews' categories: 'categories' layouts: posts: 'interviews' category: 'interviews' year_archives: 'interviews' month_archives: 'interviews' pagination: per_page: 15 category_names: bsd: 'BSD' mac: 'Macintosh' class_overrides: site: 'UsesThis::Site' post: 'UsesThis::Interview'
Switch to 15 posts per page.
Switch to 15 posts per page.
YAML
mit
ivuk/usesthis,waferbaby/usesthis,ivuk/usesthis,waferbaby/usesthis
653efa062019af2715b293a4cc7cf6db0e4b4153
src/mgate/StatBundle/Resources/config/routing.yml
src/mgate/StatBundle/Resources/config/routing.yml
mgate_indicateurs_index: path: /admin/indicateurs defaults: { _controller: mgateStatBundle:Indicateurs:index } methods: [GET, HEAD, POST] mgate_indicateurs_ajax_suivi: path: /admin/indicateurs/etudes defaults: { _controller: mgateStatBundle:Indicateurs:ajax } methods: [GET, HEAD, POST] mgate_indicateurs_debug: path: /admin/indicateurs/{get} defaults: { _controller: mgateStatBundle:Indicateurs:debug} methods: [GET, HEAD, POST]
mgate_indicateurs_index: path: /admin/indicateurs defaults: { _controller: mgateStatBundle:Indicateurs:index } methods: [GET, HEAD] mgate_indicateurs_ajax_suivi: path: /admin/indicateurs/etudes defaults: { _controller: mgateStatBundle:Indicateurs:ajax } methods: [GET, HEAD] mgate_indicateurs_debug: path: /admin/indicateurs/{get} defaults: { _controller: mgateStatBundle:Indicateurs:debug} methods: [GET, HEAD]
Remove post method from allowed methods when not required for statbundle
Remove post method from allowed methods when not required for statbundle
YAML
agpl-3.0
N7-Consulting/Incipio,n7consulting/Incipio,n7consulting/Incipio,M-GaTE/Jeyser,N7-Consulting/Incipio,M-GaTE/Jeyser,M-GaTE/Jeyser,M-GaTE/Jeyser,N7-Consulting/Incipio,n7consulting/Incipio,N7-Consulting/Incipio
0e2cca570ab5fd6124cc69f2abd76d83203d5be3
_config.yml
_config.yml
# Site settings title: Bút Chì Số url: "http://butchiso.com" baseurl: "" # the prefix of your site uri, eg. `/jekyll-theme-EasyBook` or just one slash `/` timezone: Europe/Helsinki description: > Professional keyboard masher and screen watcher | Web Developer. # Your information email: hungnq1989@gmail.com author: Hung Neo avatar: "//www.gravatar.com/avatar/4a44cc577eaca63e8eb110932f15bc0a?d=mm&s=135" profile: Full stack developer. twitter_username: hungneox github_username: hungneox # Comment Service # choose one and un-comment the line to active it disqus_shortname: butchiso permalink: /:year/:month/:title.html plugins: - jekyll-paginate - jekyll-gist - jemoji # Build settings paginate: 50 paginate_path: "page/:num" highlighter: rouge markdown: kramdown kramdown: input: GFM syntax_highlighter: rouge
# Site settings title: Hung Neox url: "http://butchiso.com" baseurl: "" # the prefix of your site uri, eg. `/jekyll-theme-EasyBook` or just one slash `/` timezone: Europe/Helsinki description: > Professional keyboard masher and screen watcher | Web Developer. # Your information email: hungnq1989@gmail.com author: Hung Neox avatar: "//www.gravatar.com/avatar/4a44cc577eaca63e8eb110932f15bc0a?d=mm&s=135" profile: Full stack developer. twitter_username: hungneox github_username: hungneox # Comment Service # choose one and un-comment the line to active it disqus_shortname: butchiso permalink: /:year/:month/:title.html plugins: - jekyll-paginate - jekyll-gist - jemoji # Build settings paginate: 50 paginate_path: "page/:num" highlighter: rouge markdown: kramdown kramdown: input: GFM syntax_highlighter: rouge
Change Butchiso to Hung Neox
Change Butchiso to Hung Neox
YAML
mit
hungnq1989/hungnq1989.github.io,hungnq1989/hungnq1989.github.io,hungnq1989/hungnq1989.github.io,hungnq1989/hungnq1989.github.io
192df452fd440ea01a9114ceae53e79e9379005b
_config.yml
_config.yml
url: https://justynaipiotrek.github.io baseurl: /slub # Site settings title: Justyna i Piotrek email: sadlojus@gmail.com description: "Slubna strona Justyny i Piotrka" # Color settings (hex-codes without the leading hash-tag) color: primary: cd3426 secondary: dd5549 secondary-dark: 333 # Team names, titles and social links people: - name: Justyna pic: 1 mail: sadlojus@gmail.com tel: 503 955 689 - name: Piotrek pic: 2 mail: pbetkier@gmail.com tel: 606 650 076
url: https://justynaipiotrek.pl baseurl: / # Site settings title: Justyna i Piotrek email: sadlojus@gmail.com description: "Slubna strona Justyny i Piotrka" # Color settings (hex-codes without the leading hash-tag) color: primary: cd3426 secondary: dd5549 secondary-dark: 333 # Team names, titles and social links people: - name: Justyna pic: 1 mail: sadlojus@gmail.com tel: 503 955 689 - name: Piotrek pic: 2 mail: pbetkier@gmail.com tel: 606 650 076
Make it work on custom domain.
Make it work on custom domain.
YAML
apache-2.0
justynaipiotrek/slub,justynaipiotrek/slub,justynaipiotrek/slub,justynaipiotrek/slub
5effcb2e9187643b690e7c35c3fcc34d67061bad
_config.yml
_config.yml
# Dependencies markdown: redcarpet highlighter: pygments # Permalinks # # Use of `relative_permalinks` ensures post links from the index work properly. permalink: pretty relative_permalinks: true # Setup title: Burak Aktas tagline: 'Software Engineer' description: All about programming url: http://buraktas.com baseurl: / paginate: 5 excerpt_separator: <!--more--> # About/contact author: name: Burak Aktas email: buraktas@gmail.com linkedin: burakaktas # url: https://twitter.com/mdo # Custom vars version: 1.0.0
# Dependencies plugins: [jekyll-paginate] markdown: redcarpet highlighter: pygments.rb # Permalinks # # Use of `relative_permalinks` ensures post links from the index work properly. permalink: pretty #relative_permalinks: true future: true # Setup title: Burak Aktas tagline: 'Software Engineer' description: All about programming url: http://buraktas.com baseurl: / paginate: 5 excerpt_separator: <!--more--> # About/contact author: name: Burak Aktas email: buraktas@gmail.com linkedin: burakaktas # url: https://twitter.com/mdo # Custom vars version: 1.0.0
Update config after moving to new jekyll version
Update config after moving to new jekyll version
YAML
mit
flexelem/flexelem.github.io,flexelem/flexelem.github.io,flexelem/flexelem.github.io,flexelem/flexelem.github.io
efe402c49e2196a78de26c24b1c9cf3aafd8e457
_config.yml
_config.yml
# http://jekyllrb.com/docs/github-pages/#project-page-url-structure baseurl: "" title: redsummernight sass: sass_dir: common/css/_sass kramdown: auto_id_stripping: true defaults: - scope: # All files in the project path: "" values: layout: default user_scalable: yes stylesheets: [] scripts: [] nav: [jump, credits] # Whether the page can be randomly jumped to jump_allowed: true # Credits/licenses in Markdown credits: "" # References/tutorial links in Markdown references: "" exclude: - bower.json - Gemfile - Gemfile.lock - README.md - script - tmp # Travis bundles all gems in 'vendor' - vendor
# http://jekyllrb.com/docs/github-pages/#project-page-url-structure # https://jekyllrb.com/docs/configuration/#serve-command-options # e.g. baseurl: "/wat" baseurl: "" title: redsummernight sass: sass_dir: common/css/_sass kramdown: auto_id_stripping: true defaults: - scope: # All files in the project path: "" values: layout: default user_scalable: yes stylesheets: [] scripts: [] nav: [jump, credits] # Whether the page can be randomly jumped to jump_allowed: true # Credits/licenses in Markdown credits: "" # References/tutorial links in Markdown references: "" exclude: - bower.json - Gemfile - Gemfile.lock - README.md - script - tmp # Travis bundles all gems in 'vendor' - vendor
Add another link to explain site.baseurl
Add another link to explain site.baseurl
YAML
mit
redsummernight/redsummernight.github.io,redsummernight/redsummernight.github.io,redsummernight/redsummernight.github.io,redsummernight/redsummernight.github.io,redsummernight/redsummernight.github.io
08666f1c6270c81ec36b60a18eaf40c9879e8c8a
_config.yml
_config.yml
# Site settings title: Restify email: wblankenship@netflix.com description: Jekyll Template for Project Websites providing documentation and blog post pages. baseurl: "" # the subpath of your site, e.g. /blog/ url: https://restify.github.io # the base hostname & protocol for your site git_address: https://github.com/restify/node-restify git_edit_address: https://github.com/restify/node-restify # Build settings markdown: kramdown highlighter: rouge gems: - jekyll-feed - jekyll-redirect-from - jekyll-seo-tag - jekyll-sitemap exclude: - Gemfile - Gemfile.lock - .idea/ - .gitignore - README.md timezone: America/Los_Angeles defaults: #- scope: # path: _posts # type: posts # values: # layout: post # sectionid: blog - scope: path: _docs/docs type: docs values: layout: docs sectionid: docs seo: type: "WebPage" collections: docs: permalink: /:collection/:path/ output: true posts: permalink: /blog/:year/:month/:day/:title/ output: true
# Site settings title: Restify email: wblankenship@netflix.com description: A Node.js web service framework optimized for building semantically correct RESTful web services ready for production use at scale. restify optimizes for introspection and perfromance, and is used in some of the largest Node.js deployments on Earth. baseurl: "" # the subpath of your site, e.g. /blog/ url: https://restify.github.io # the base hostname & protocol for your site git_address: https://github.com/restify/node-restify git_edit_address: https://github.com/restify/node-restify # Build settings markdown: kramdown highlighter: rouge gems: - jekyll-feed - jekyll-redirect-from - jekyll-seo-tag - jekyll-sitemap exclude: - Gemfile - Gemfile.lock - .idea/ - .gitignore - README.md timezone: America/Los_Angeles defaults: #- scope: # path: _posts # type: posts # values: # layout: post # sectionid: blog - scope: path: _docs/docs type: docs values: layout: docs sectionid: docs seo: type: "WebPage" collections: docs: permalink: /:collection/:path/ output: true posts: permalink: /blog/:year/:month/:day/:title/ output: true
Make it have a better description in the googles
Make it have a better description in the googles Yeah this is showing up in search, it annoyed me so heres a fix
YAML
mit
restify/restify.github.io,restify/restify.github.io,restify/restify.github.io
12787d2809f6bdc0fe542d64578768bdce69f854
_config.yml
_config.yml
# Dependencies markdown: kramdown highlighter: rouge # Permalinks permalink: pretty # Server source: docs destination: _gh_pages host: 0.0.0.0 port: 9001 url: http://getbootstrap.com encoding: UTF-8 # Custom vars current_version: 3.3.0 repo: https://github.com/twbs/bootstrap sass_repo: https://github.com/twbs/bootstrap-sass download: source: https://github.com/twbs/bootstrap/archive/v3.3.0.zip dist: https://github.com/twbs/bootstrap/releases/download/v3.3.0/bootstrap-3.3.0-dist.zip sass: https://github.com/twbs/bootstrap-sass/archive/v3.3.0.tar.gz blog: http://blog.getbootstrap.com expo: http://expo.getbootstrap.com cdn: css: https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css css_theme: https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap-theme.min.css js: https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js
# Dependencies markdown: kramdown highlighter: rouge # Permalinks permalink: pretty # Server source: docs destination: _gh_pages host: 0.0.0.0 port: 9001 url: http://getbootstrap.com encoding: UTF-8 # Custom vars current_version: 3.3.0 repo: https://github.com/twbs/bootstrap sass_repo: https://github.com/twbs/bootstrap-sass download: source: https://github.com/twbs/bootstrap/archive/v3.3.0.zip dist: https://github.com/twbs/bootstrap/releases/download/v3.3.0/bootstrap-3.3.0-dist.zip sass: https://github.com/twbs/bootstrap-sass/archive/v3.3.0.tar.gz blog: http://blog.getbootstrap.com expo: http://expo.getbootstrap.com cdn: css: https://cdn.jsdelivr.net/bootstrap/3.3.0/css/bootstrap.min.css css_theme: https://cdn.jsdelivr.net/bootstrap/3.3.0/css/bootstrap-theme.min.css js: https://cdn.jsdelivr.net/bootstrap/3.3.0/js/bootstrap.min.js
Use jsDelivr CDN until BootstrapCDN gets updated
Use jsDelivr CDN until BootstrapCDN gets updated
YAML
mit
ammula88/bootstrap,ammula88/bootstrap,ammula88/bootstrap,ammula88/bootstrap
6e23374b302f55571174e4ece4b99a3046d186bd
_config.yml
_config.yml
name: Derek Michael Frank markdown: kramdown gems: - jekyll-coffescript - jekyll-paginate - jekyll-watch - jekyll-sitemap
name: Derek Michael Frank markdown: kramdown theme: jekyll-theme-hacker gems: - jekyll-coffescript - jekyll-paginate - jekyll-watch - jekyll-sitemap
Change theme to Jekyll Hacker Theme
feat(theme): Change theme to Jekyll Hacker Theme
YAML
mit
defrank/defrank.github.io,defrank/defrank.github.io,defrank/defrank.github.io
0188b51711ef32e325b715f3fb662288c22f2886
_config.yml
_config.yml
name: dev etc url: http://devetc.org/ author: Jonathon Mah markdown: redcarpet pygments: true
name: dev etc url: http://devetc.org/ author: Jonathon Mah markdown: kramdown pygments: true
Switch Markdown parser to kramdown for footnotes
Switch Markdown parser to kramdown for footnotes
YAML
mit
devetc/devetc.github.io,devetc/devetc.github.io,devetc/devetc.github.io,devetc/devetc.github.io
93db85f559a8196e368f669b777bfb5c1aa3ad74
galaxyenv/group_vars/starforgebuilders.yml
galaxyenv/group_vars/starforgebuilders.yml
--- group_apt_keys: - keyserver: hkp://pgp.mit.edu:80 id: 58118E89F3A912897C070ADBF76221572C52609D group_apt_repositories: - repo: deb https://apt.dockerproject.org/repo debian-jessie main group_packages: - docker-engine - qemu-system-x86 # for building starforge docker images - make # starforge downloading packages with pip will run egg_info, which on at # least one package (mercurial) will fail if Python.h cannot be found - python-dev group_files: - content: "# This file is managed by Ansible. ALL CHANGES WILL BE OVERWRITTEN.\nw /sys/module/kvm/parameters/ignore_msrs - - - - 1\n" dest: '/etc/tmpfiles.d/qemu-ignore-msrs.conf' # user_subvol_rm_allowed has to be set on the / mount (and that does not mean # the btrfs root mounted at /btrfs). Could maybe do this with filesystems, but # for now I just did it by hand. local_users: - name: nate groups: kvm,docker - name: jenkins system: 'yes' groups: kvm,docker # Run /btrfs/snapshots/@starforge-<ver>/snap_for after creation
--- group_apt_keys: - keyserver: hkp://pgp.mit.edu:80 id: 58118E89F3A912897C070ADBF76221572C52609D group_apt_repositories: - repo: deb https://apt.dockerproject.org/repo debian-jessie main group_packages: - docker-engine - qemu-system-x86 # for building starforge docker images - make # starforge downloading packages with pip will run egg_info, which on at # least one package (mercurial) will fail if Python.h cannot be found - python-dev # for starforge/wheels/image/update-for-jenkins.sh - jq - uuid-runtime group_files: - content: "# This file is managed by Ansible. ALL CHANGES WILL BE OVERWRITTEN.\nw /sys/module/kvm/parameters/ignore_msrs - - - - 1\n" dest: '/etc/tmpfiles.d/qemu-ignore-msrs.conf' # user_subvol_rm_allowed has to be set on the / mount (and that does not mean # the btrfs root mounted at /btrfs). Could maybe do this with filesystems, but # for now I just did it by hand. local_users: - name: nate groups: kvm,docker - name: jenkins system: 'yes' groups: kvm,docker # Run /btrfs/snapshots/@starforge-<ver>/snap_for after creation
Add starforge image build deps
Add starforge image build deps
YAML
mit
galaxyproject/infrastructure-playbook,galaxyproject/infrastructure-playbook
5fb6869d83f88aa05041f5b304634b37573714a4
packages/cr/crypto-random.yaml
packages/cr/crypto-random.yaml
homepage: http://github.com/vincenthz/hs-crypto-random changelog-type: '' hash: 3fc8e0bf4e07591ce08bf4bf40b69100b8bcce786f3253130f46af0b61c4161d test-bench-deps: {} maintainer: Vincent Hanquez <vincent@snarc.org> synopsis: Simple cryptographic random related types changelog: '' basic-deps: bytestring: -any unix: -any base: ! '>=4 && <5' securemem: -any vector: -any all-versions: - 0.0.1 - 0.0.2 - 0.0.3 - 0.0.4 - 0.0.5 - 0.0.6 - 0.0.7 - 0.0.8 - 0.0.9 author: Vincent Hanquez <vincent@snarc.org> latest: 0.0.9 description-type: haddock description: Simple cryptographic random related types license-name: BSD-3-Clause
homepage: http://github.com/vincenthz/hs-crypto-random changelog-type: '' hash: c1092533ff771d20c041d4d0bed8efa8dff705c49b766be5ce6ce2b59c8aa1ab test-bench-deps: {} maintainer: Vincent Hanquez <vincent@snarc.org> synopsis: Simple cryptographic random related types changelog: '' basic-deps: bytestring: -any unix: -any base: ! '>=4 && <5' securemem: -any vector: ! '>=0.7' all-versions: - 0.0.1 - 0.0.2 - 0.0.3 - 0.0.4 - 0.0.5 - 0.0.6 - 0.0.7 - 0.0.8 - 0.0.9 author: Vincent Hanquez <vincent@snarc.org> latest: 0.0.9 description-type: haddock description: Simple cryptographic random related types license-name: BSD-3-Clause
Update from Hackage at 2019-01-12T11:57:22Z
Update from Hackage at 2019-01-12T11:57:22Z
YAML
mit
commercialhaskell/all-cabal-metadata
e48740e17194f5d6f7f5162f1a85c5cc0c696854
Configuration/Settings.yaml
Configuration/Settings.yaml
TYPO3: Flow: error: exceptionHandler: renderingGroups: notFoundExceptions: options: templatePathAndFilename: 'resource://MOC.NotFound/Private/Templates/404.html' variables: path: '404.html' # skip suffix if unset
TYPO3: Flow: error: exceptionHandler: renderingGroups: notFoundExceptions: matchingStatusCodes: [ 404, 410 ] options: templatePathAndFilename: 'resource://MOC.NotFound/Private/Templates/404.html' variables: path: '404.html' # skip suffix if unset
Enable not found pages for 410 status code (gone)
TASK: Enable not found pages for 410 status code (gone)
YAML
mit
mocdk/MOC.NotFound
4ea45ab58246d8dfd41c0a591667f006c9c1338b
Configuration/Settings.yaml
Configuration/Settings.yaml
TYPO3: Jobqueue: Beanstalkd: testing: # Set to TRUE to enable functional testing against a beanstalkd server # enabled: TRUE client: hostname: 127.0.0.1 port: 11300
TYPO3: Jobqueue: Beanstalkd: testing: # Set to TRUE to enable functional testing against a beanstalkd server # enabled: TRUE client: hostname: 127.0.0.1 port: 11300 Flow: # disable reflection for non psr-0 compliant pheanstalk package object: excludeClasses: 'pda.pheanstalk' : ['Pheanstalk.*']
Disable reflection for non psr-0 compliant pheanstalk package
[TASK] Disable reflection for non psr-0 compliant pheanstalk package
YAML
mit
Flowpack/jobqueue-beanstalkd,bwaidelich/jobqueue-beanstalkd