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
bdd78c190e3b8178f9084f681af261900a1b1149
.travis.yml
.travis.yml
language: python python: - "2.7" sudo: required services: - postgresql - docker before_install: - sudo apt-get install -y -q nodejs dh-autoreconf build-essential libarchive-dev squashfs-tools install: - pip install -r requirements-dev.txt - curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - - nodejs --version - npm --version - npm install - git clone https://github.com/singularityware/singularity.git - cd singularity - git checkout -q tags/2.5.2 - ./autogen.sh - ./configure --prefix=/usr/local - make - sudo make install - cd .. before_script: - sed -f travis_settings_modification.sed kive/kive/settings_default.py > kive/kive/settings.py script: - set -e - npm run test:travis - cd kive - pytest --ds kive.settings_mocked - coverage run pytest --ds kive.settings_test_pg - set +e after_success: - pip install codecov - codecov
language: python python: - "2.7" sudo: required services: - postgresql - docker before_install: - sudo apt-get install -y -q nodejs dh-autoreconf build-essential libarchive-dev squashfs-tools install: - pip install -r requirements-dev.txt - curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - - nodejs --version - npm --version - npm install - git clone https://github.com/singularityware/singularity.git - cd singularity - git checkout -q tags/2.5.2 - ./autogen.sh - ./configure --prefix=/usr/local - make - sudo make install - cd .. before_script: - sed -f travis_settings_modification.sed kive/kive/settings_default.py > kive/kive/settings.py script: - set -e - npm run test:travis - cd kive - pytest --ds kive.settings_mocked - coverage run -m pytest --ds kive.settings_test_pg - set +e after_success: - pip install codecov - codecov
Fix coverage call to pytest on Travis.
Fix coverage call to pytest on Travis.
YAML
bsd-3-clause
cfe-lab/Kive,cfe-lab/Kive,cfe-lab/Kive,cfe-lab/Kive,cfe-lab/Kive
4004481b0e3783e9b33101b0813a08a47a6236c6
.travis.yml
.travis.yml
language: perl6 env: AUTHOR_TESTING=1 perl6: - latest install: rakudobrew build-panda panda installdeps .
language: perl6 env: AUTHOR_TESTING=1 perl6: - latest install: - rakudobrew build-panda - panda installdeps .
Add missing hyphens for Travis "install" list
Add missing hyphens for Travis "install" list
YAML
artistic-2.0
paultcochrane/Perl6Mongers-Hannover
6a236c17dbdf61342c9c077c5c0d3f51bd15bcfc
.travis.yml
.travis.yml
language: android jdk: oraclejdk8 sudo: required android: components: - tools - platform-tools - tools - build-tools-25.0.1 - android-25 - extra-google-m2repository - extra-android-m2repository script: - ./gradlew build - ./gradlew test
language: android jdk: oraclejdk8 sudo: required android: components: - tools - platform-tools - tools - build-tools-25.0.1 - android-25 - extra-google-m2repository - extra-android-m2repository script: - ./gradlew build - ./gradlew test notifications: slack: sdsmdg:hvFSzqFNHm3t6NDR2H2Twiio
Enable notifications of builds on sdsmdg slack.
Enable notifications of builds on sdsmdg slack.
YAML
mit
sdsmdg/trianglify
207750d43ba75bf5652f6fc7a3f9f1a924b274bd
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 notifications: recipients: - jari.bakken@gmail.com irc: channels: - "irc.freenode.net#holderdeord" on_success: change on_failure: change template: - "%{author} | %{commit} | %{message} | %{build_url}" script: - ./bin/lint.sh - 'bundle exec puppet parser validate `find puppet/modules/{hdo,ruby,passenger} -name "*.pp"`'
language: ruby rvm: - 1.8.7 notifications: recipients: - jari@holderdeord.no irc: channels: - "irc.freenode.net#holderdeord" on_success: change on_failure: change template: - "%{author} | %{commit} | %{message} | %{build_url}" script: - ./bin/lint.sh - 'bundle exec puppet parser validate `find puppet/modules/{hdo,ruby,passenger} -name "*.pp"`'
Fix email recipient for build notifications.
Fix email recipient for build notifications.
YAML
bsd-3-clause
holderdeord/hdo-puppet,holderdeord/hdo-puppet,holderdeord/hdo-puppet,holderdeord/hdo-puppet,holderdeord/hdo-puppet
33bb9bd420cafaa8cbf3bfa50c7a115f524d0eba
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - 6 cache: directories: - $HOME/.npm - $HOME/.yarn-cache git: depth: 10 before_install: # Use exact Node version. - nvm use $TRAVIS_NODE_VERSION # Setup package managers. - npm set loglevel error - npm set progress false - npm i -g yarn - yarn -V install: # Install packages. - yarn script: - ./bin/docdown ./node_modules/lodash/lodash.js output.md toc=categories url=https://github.com/lodash/lodash/blob/master/lodash.js - cat output.md
language: node_js sudo: false node_js: - 6 cache: directories: - ~/.npm - ~/.yarn-cache git: depth: 10 before_install: # Use exact Node version. - nvm use $TRAVIS_NODE_VERSION # Setup package managers. - npm set loglevel error - npm set progress false - npm i -g yarn - yarn -V install: # Install packages. - yarn script: - ./bin/docdown ./node_modules/lodash/lodash.js output.md toc=categories url=https://github.com/lodash/lodash/blob/master/lodash.js - cat output.md
Use ~ instead of /Users/jdalton.
Use ~ instead of /Users/jdalton.
YAML
mit
jdalton/docdown
48ef1c3fd4613a9e4c68dc7de9787d5782514349
.travis.yml
.travis.yml
language: ruby before_install: - sudo apt-get install libhunspell-dev hunspell-en-us - gem install bundler -v "~> 2.0" rvm: - 2.5 - 2.6 - jruby - rbx matrix: allow_failures: - rvm: rbx script: bundle exec rake spec
language: ruby before_install: - sudo apt-get install libhunspell-dev hunspell-en-us - gem install bundler -v "~> 2.0" rvm: - 2.5 - 2.6 - jruby script: bundle exec rake spec
Remove rbx from the test matrix since it's 404ing.
Remove rbx from the test matrix since it's 404ing.
YAML
mit
postmodern/ffi-hunspell
640ff3ed287e307f0cc8eb32e7574b62721f9891
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "7" - "8" cache: directories: - node_modules install: - npm install script: - npm run lint - npm run coveralls - npm run build
language: node_js node_js: - "6" - "7" - "8" cache: directories: - node_modules install: - npm install script: - npm run lint - npm run coveralls - npm run build - npm run test
Add npm run test to Travis
Add npm run test to Travis
YAML
mit
prayerslayer/js.spec,prayerslayer/js.spec
fb89dc26d3dc01d6a4341abe222b6721335b1e18
.travis.yml
.travis.yml
before_install: - sudo apt-get install -qq graphviz rvm: - 1.9.3 matrix: include: # legacy build: Ruby 1.8.7, Rails 2.3, less features, smaller test set - rvm: 1.8.7 gemfile: gemfiles/Gemfile.rails-2.3.x # running a smaller test set for old Rails and Ruby script: rake test_without_new_versions
before_install: - sudo apt-get install -qq graphviz rvm: - 1.9.3 - 2.0.0 matrix: include: # legacy build: Ruby 1.8.7, Rails 2.3, less features, smaller test set - rvm: 1.8.7 gemfile: gemfiles/Gemfile.rails-2.3.x # running a smaller test set for old Rails and Ruby script: rake test_without_new_versions
Add Ruby 2.0.0 to Travis CI build
Add Ruby 2.0.0 to Travis CI build
YAML
mit
imlitech/workflow,lorefnon/workflow-orchestrator,anujgangwar/workflow,elsurudo/workflow,geekq/workflow,TwilightCoders/workflow,cosmindorobantu/workflow,meltheadorable/workflow
3c8262239e153bcd9bf0678cfe785f06bdade210
.travis.yml
.travis.yml
language: objective-c osx_image: xcode9.4 env: global: - LC_CTYPE=en_US.UTF-8 - LANG=en_US.UTF-8 - WORKSPACE=SwiftyNotifications.xcworkspace - FRAMEWORK_SCHEME="SwiftyNotifications" - SDK=iphonesimulator11.4 - RUN_TESTS="YES" - POD_LINT="NO" matrix: - DESTINATION="OS=11.4,name=iPhone 8" - DESTINATION="OS=10.3.1,name=iPhone SE" before_install: - rm -rf /Users/travis/Library/Developer/Xcode/DerivedData/SwiftyNotifications-*/ - rvm use $RVM_RUBY_VERSION install: - bundle install script: - set -o pipefail - xcodebuild -version - xcodebuild -showsdks # Build Framework in Debug and Run Tests if specified - if [ $RUN_TESTS == "YES" ]; then travis_retry xcodebuild -workspace "$WORKSPACE" -scheme "$FRAMEWORK_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=YES ENABLE_TESTABILITY=YES test | xcpretty; else xcodebuild -workspace "$WORKSPACE" -scheme "$FRAMEWORK_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=YES build | xcpretty; fi after_success: slather
language: objective-c osx_image: xcode9.4 env: global: - LC_CTYPE=en_US.UTF-8 - LANG=en_US.UTF-8 - WORKSPACE=SwiftyNotifications.xcworkspace - FRAMEWORK_SCHEME="SwiftyNotifications" - SDK=iphonesimulator11.4 - RUN_TESTS="YES" - POD_LINT="NO" matrix: - DESTINATION="OS=11.4,name=iPhone 8" - DESTINATION="OS=10.3.1,name=iPhone SE" - DESTINATION="OS=9.3,name=iPhone 5s" before_install: - rm -rf /Users/travis/Library/Developer/Xcode/DerivedData/SwiftyNotifications-*/ - rvm use $RVM_RUBY_VERSION install: - bundle install script: - set -o pipefail - xcodebuild -version - xcodebuild -showsdks # Build Framework in Debug and Run Tests if specified - if [ $RUN_TESTS == "YES" ]; then travis_retry xcodebuild -workspace "$WORKSPACE" -scheme "$FRAMEWORK_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=YES ENABLE_TESTABILITY=YES test | xcpretty; else xcodebuild -workspace "$WORKSPACE" -scheme "$FRAMEWORK_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=YES build | xcpretty; fi after_success: slather
Build also for iOS 9.
Build also for iOS 9.
YAML
mit
abdullahselek/SwiftyNotifications,abdullahselek/SwiftyNotifications,abdullahselek/SwiftyNotifications
19eae8bb7f01c71faa3e2a3b9caf92245256a538
.travis.yml
.travis.yml
language: node_js node_js: - 0.10 - 0.12 script: "npm run-script test-travis" after_script: "npm install coveralls@2.10.0 && cat ./coverage/lcov.info | coveralls"
language: node_js node_js: - 0.10 - 0.12 - 4 - 5 script: "npm run-script test-travis" after_script: "npm install coveralls@2.10.0 && cat ./coverage/lcov.info | coveralls"
Add Node 4 and 5 to the test suite.
Add Node 4 and 5 to the test suite.
YAML
mit
omichelsen/express-ab
b4085df19b4841299a1bc41e470793089125ffac
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch - "nightly" # currently points to 3.6-dev script: nosetests
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch - "nightly" # currently points to 3.6-dev script: - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then travis_retry pip install unittest2; fi - nosetests
Fix missing unittest2 and reenable testing on Python 2.6
Fix missing unittest2 and reenable testing on Python 2.6
YAML
lgpl-2.1
gbenson/i8c
458872c6615c29abdca41daadff128ecf37268e3
.travis.yml
.travis.yml
language: node_js node_js: - 8 - 10 script: - npm test
language: node_js node_js: - 8 - 10 - 12 script: - npm test
Add node 12 to CI engine list
Add node 12 to CI engine list
YAML
isc
CacheControl/json-rules-engine,CacheControl/json-rules-engine,CacheControl/json-rules-engine
f845dfaa15c85ac343c8821c20bd46d38394311b
.travis.yml
.travis.yml
language: python python: - "pypy" install: - python setup.py develop - pip install coverage nose mock moto python-coveralls script: nosetests after_success: - coveralls
language: python sudo: false python: - "pypy" install: - python setup.py develop - pip install coverage nose mock moto python-coveralls script: nosetests after_success: - coveralls
Add sudo false for faster container builds
Add sudo false for faster container builds
YAML
mpl-2.0
mozilla-services/autopush,mozilla-services/autopush
1c307ef1b954162d7d6bc89c2e9681a56c03ac74
.travis.yml
.travis.yml
sudo: false language: python dist: xenial python: - 2.7 - 3.6 - 3.7 matrix: include: - dist: trusty python: 2.6 addons: apt: packages: - scons cache: pip: true directories: - $HOME/perl5 install: - export PERL5LIB=~/perl5/lib/perl5 - export PYTHONPATH=$(echo $(dirname $(which python))/../lib/python*/site-packages) - export PATH=~/perl5/bin:$PATH - pip install coverage - curl -L https://cpanmin.us/ -o cpanm && chmod a+x cpanm - ./cpanm --local-lib=~/perl5 --quiet --notest --skip-satisfied Devel::Cover::Report::Codecov Test::Exception Test::Output Test::MockModule Devel::Cover MIME::Lite - git clone --depth=5 https://github.com/salilab/saliweb - (cd saliweb && scons modeller_key=UNKNOWN pythondir=$PYTHONPATH perldir=~/perl5/lib/perl5 prefix=~/usr webdir=~/www install && touch $PYTHONPATH/saliweb/frontend/config.py) script: - scons coverage=true python=$(which python) test after_success: - bash <(curl -s https://codecov.io/bash) - cover -report codecov
sudo: false language: python dist: xenial python: - 2.7 - 3.6 - 3.7 matrix: include: - dist: trusty python: 2.6 addons: apt: packages: - scons - libdbi-perl cache: pip: true directories: - $HOME/perl5 install: - export PERL5LIB=~/perl5/lib/perl5 - export PYTHONPATH=$(echo $(dirname $(which python))/../lib/python*/site-packages) - export PATH=~/perl5/bin:$PATH - pip install coverage - curl -L https://cpanmin.us/ -o cpanm && chmod a+x cpanm - ./cpanm --local-lib=~/perl5 --quiet --notest --skip-satisfied Devel::Cover::Report::Codecov Test::Exception Test::Output Test::MockModule Devel::Cover MIME::Lite - git clone --depth=5 https://github.com/salilab/saliweb - (cd saliweb && scons modeller_key=UNKNOWN pythondir=$PYTHONPATH perldir=~/perl5/lib/perl5 prefix=~/usr webdir=~/www install && touch $PYTHONPATH/saliweb/frontend/config.py) script: - scons coverage=true python=$(which python) test after_success: - bash <(curl -s https://codecov.io/bash) - cover -report codecov
Add missing perl DBI package
Add missing perl DBI package
YAML
lgpl-2.1
salilab/allosmod,salilab/allosmod,salilab/allosmod,salilab/allosmod
33e9f14f2c5695e06fe6612329b775948ed18092
.travis.yml
.travis.yml
sudo: required group: edge language: python services: - docker addons: apt: packages: - openvswitch-switch cache: directories: - /home/travis/docker/ before_install: - if [ -f ${DOCKER_CACHE_FILE} ]; then gunzip -c ${DOCKER_CACHE_FILE} | docker load; fi env: global: - DOCKER_CACHE_FILE=/home/travis/docker/cache.tar.gz python: - "3.5" install: - "pip3 install -r requirements.txt -r test-requirements.txt" - "python3 setup.py sdist" - "pip3 install dist/*tar.gz" - "pip3 show faucet" script: - "cd ./tests" - "PYTHONPATH='../faucet' ./test_min_pylint.sh" - "python3 ./test_config.py" - "python3 ./test_check_config.py" - "python3 ./test_valve.py" - "cd .." - "docker build -t reannz/faucet-tests -f Dockerfile.tests ." - "sudo docker run --privileged -ti reannz/faucet-tests" - if [[ ${TRAVIS_BRANCH} == "master" ]] && [[ ${TRAVIS_PULL_REQUEST} == "false" ]]; then mkdir -p $(dirname ${DOCKER_CACHE_FILE}) ; docker save $(docker history -q ${DOCKER_REPOSITORY}:${TRAVIS_COMMIT} | grep -v '<missing>') | gzip > ${DOCKER_CACHE_FILE}; fi
sudo: required group: edge language: python services: - docker addons: apt: packages: - openvswitch-switch python: - "3.5" install: - "pip3 install -r requirements.txt -r test-requirements.txt" - "python3 setup.py sdist" - "pip3 install dist/*tar.gz" - "pip3 show faucet" script: - "cd ./tests" - "PYTHONPATH='../faucet' ./test_min_pylint.sh" - "python3 ./test_config.py" - "python3 ./test_check_config.py" - "python3 ./test_valve.py" - "cd .." - "docker build -t reannz/faucet-tests -f Dockerfile.tests ." - "sudo docker run --privileged -ti reannz/faucet-tests"
Revert "Try to cache docker images."
Revert "Try to cache docker images." This reverts commit fa2d6c0a893ef8e41cb4cd154cb04ee33583724b.
YAML
apache-2.0
trungdtbk/faucet,trungdtbk/faucet,mwutzke/faucet,gizmoguy/faucet,faucetsdn/faucet,REANNZ/faucet,trentindav/faucet,Bairdo/faucet,anarkiwi/faucet,Bairdo/faucet,wackerly/faucet,faucetsdn/faucet,gizmoguy/faucet,byllyfish/faucet,trentindav/faucet,byllyfish/faucet,REANNZ/faucet,mwutzke/faucet,shivarammysore/faucet,shivarammysore/faucet,anarkiwi/faucet,wackerly/faucet
c3564a28ac5289465494c23a1ad763edec4737b2
.travis.yml
.travis.yml
language: php sudo: required php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: hhvm install: - eval `ssh-agent -s` - test/travis/setup-secure-shell.sh - composer self-update - composer install --no-interaction --prefer-source script: - phpunit notifications: webhooks: urls: - https://webhooks.gitter.im/e/3ffa605389816ec39774 on_success: change on_failure: always on_start: never
language: php sudo: required php: - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: hhvm include: - php: 5.4 env: COMPOSER_FLAGS="--prefer-lowest" install: - eval `ssh-agent -s` - test/travis/setup-secure-shell.sh - composer self-update - composer update --no-interaction --prefer-source $COMPOSER_FLAGS script: - phpunit notifications: webhooks: urls: - https://webhooks.gitter.im/e/3ffa605389816ec39774 on_success: change on_failure: always on_start: never
Allow using older symfony components for PHP 5.4
Allow using older symfony components for PHP 5.4 Symfony 3.0 components have a platform requirement to PHP >= 5.5. This change uses the `--prefer-lowest` flag in combination with composer update to be able to build on travis with PHP 5.4.
YAML
mit
deployphp/deployer,TheRatG/deployer,prosalov/deployer,mbrodala/deployer,oanhnn/deployer,cjsewell/deployer,deployphp/deployer,deployphp/deployer,robfrawley/deployer,torinaki/deployer,prosalov/deployer,robfrawley/deployer,jverdeyen/deployer
647a19609fdca0b4eb6a6260c316b0104e3fb144
.travis.yml
.travis.yml
language: go go: - "1.10.x" - "1.11.x" services: - postgresql before_install: - sudo apt-get install apache2-utils before_script: - ./prepare_travis_for_fork.sh - psql -c 'create database goby_test;' -U postgres script: - ./travis.sh env: - "GOBY_ROOT=$HOME/gopath/src/github.com/goby-lang/goby" after_success: - bash <(curl -s https://codecov.io/bash) notifications: slack: rooms: - goby-lang:Ler5Uge2Vlx3O8Yt2OFcKg5W#general on_success: always on_failure: always on_start: never webhooks: urls: - https://webhooks.gitter.im/e/149378fb1b44bbaf21f0 on_success: change on_failure: always on_start: never email: recipients: - stan001212@gmail.com on_failure: change on_success: never
language: go matrix: include: - go: 1.10.x dist: trusty - go: 1.10.x dist: xenial - go: 1.11.x # trusty builds with 1.11 are [currently broken](https://github.com/golang/go/issues/31293) dist: xenial services: - postgresql before_install: - sudo apt-get install apache2-utils before_script: - ./prepare_travis_for_fork.sh - psql -c 'create database goby_test;' -U postgres script: - ./travis.sh env: - "GOBY_ROOT=$HOME/gopath/src/github.com/goby-lang/goby" after_success: - bash <(curl -s https://codecov.io/bash) notifications: slack: rooms: - goby-lang:Ler5Uge2Vlx3O8Yt2OFcKg5W#general on_success: always on_failure: always on_start: never webhooks: urls: - https://webhooks.gitter.im/e/149378fb1b44bbaf21f0 on_success: change on_failure: always on_start: never email: recipients: - stan001212@gmail.com on_failure: change on_success: never
Add xenial to matrix of Travis builds
Add xenial to matrix of Travis builds With the current setup, the Trusty+1.11 build breaks, so it's excluded.
YAML
mit
goby-lang/goby,Maxwell-Alexius/goby,st0012/Rooby,goby-lang/goby,st0012/Rooby,goby-lang/goby,Maxwell-Alexius/goby,Maxwell-Alexius/goby
52a61df9d5657682313c48b0875f20137f20fe67
.travis.yml
.travis.yml
language: csharp solution: "./Extension Library/Extension Library.sln" #dotnet: 1.0.1 dist: trusty sudo: required install: - nuget restore "./Extension Library/Extension Library.sln" # - nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner # script: # - xbuild /p:Configuration=Release "./Extension Library/Extension Library.sln" # - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "./Extension Library/ArrayExtensionTests/bin/Release/ArrayExtensionTests.dll" # - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "../../../EnumerableExtensionTests/bin/Release/EnumerableExtensionTests.dll" # - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "../../../../StringExtensionTests/bin/Release/StringExtensionTests.dll" branches: only: - master
language: csharp solution: "./Extension Library/Extension Library.sln" #dotnet: 1.0.1 dist: trusty sudo: required # install: # - nuget restore "./Extension Library/Extension Library.sln" # - nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner # script: # - xbuild /p:Configuration=Release "./Extension Library/Extension Library.sln" # - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "./Extension Library/ArrayExtensionTests/bin/Release/ArrayExtensionTests.dll" # - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "../../../EnumerableExtensionTests/bin/Release/EnumerableExtensionTests.dll" # - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "../../../../StringExtensionTests/bin/Release/StringExtensionTests.dll" branches: only: - master
Update build script for Travis CI
Update build script for Travis CI
YAML
mit
gh0stter/CSharp-Extension-Library
350928c6214ead5a80b11d4346a971c0d3197194
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.3 - 2.0.0 - ree - ruby-head - jruby-18mode - jruby-19mode - jruby-head - rbx-18mode - rbx-19mode matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: rbx-18mode - rvm: rbx-19mode
rvm: - 1.8.7 - 1.9.3 - 2.0.0 - ree - ruby-head - jruby-18mode - jruby-19mode - jruby-head - rbx-18mode - rbx-19mode matrix: allow_failures: - 1.8.7 # not sure why 1.8 isn't passing, but it's dead - ree # also dead - rvm: ruby-head - rvm: jruby-head - rvm: rbx-18mode # sure would like to get this fixed! - rvm: rbx-19mode # ditto
Add 1.8 to allowed failures
Add 1.8 to allowed failures
YAML
mit
tpetchel/nio4r,tpetchel/nio4r,marshall-lee/nio4r,celluloid/nio4r,marshall-lee/nio4r,celluloid/nio4r,celluloid/nio4r,marshall-lee/nio4r,tpetchel/nio4r
f11517074719887116ee94c33b3e7e5e3a3ad36c
.travis.yml
.travis.yml
language: ruby branches: only: - master - travis rvm: - 2.1 - 2.2 - 2.3 - jruby - rbx env: - HANDLER=nokogiri - HANDLER=ox matrix: exclude: - rvm: jruby env: HANDLER=ox before_install: - gem update bundler
language: ruby branches: only: - master - travis rvm: - 2.1 - 2.2 - 2.3 - jruby - rbx env: - HANDLER=nokogiri - HANDLER=ox matrix: allow_failures: - rvm: jruby exclude: - rvm: jruby env: HANDLER=ox before_install: - gem update bundler
Allow JRuby to fail (for now)
Allow JRuby to fail (for now) The first step to JRuby support is getting Travis to properly run the tests, now I just have to figure out why they're failing. :laughing:
YAML
mit
jfiorato/feedjira
6e5a57d1bd733a466954ac8164e6c7aacbfdbec8
.travis.yml
.travis.yml
language: scala script: - sbt "$SCRIPTED_TEST" env: - SCRIPTED_TEST="scripted actions/*" - SCRIPTED_TEST="scripted api/*" - SCRIPTED_TEST="scripted compiler-project/*"" - SCRIPTED_TEST="scripted dependency-management/*1of2" - SCRIPTED_TEST="scripted dependency-management/*2of2" - SCRIPTED_TEST="scripted java/*" - SCRIPTED_TEST="scripted package/*" - SCRIPTED_TEST="scripted project/*1of2" - SCRIPTED_TEST="scripted project/*2of2" - SCRIPTED_TEST="scripted reporter/*" - SCRIPTED_TEST="scripted run/*" - SCRIPTED_TEST="scripted source-dependencies/*1of3" - SCRIPTED_TEST="scripted source-dependencies/*2of3" - SCRIPTED_TEST="scripted source-dependencies/*3of3" - SCRIPTED_TEST="scripted tests/*" - SCRIPTED_TEST="safeUnitTests" - SCRIPTED_TEST="checkBuildScala211" # TODO - we'd like to actually test everything, but the process library has a deadlock right now jdk: - openjdk6 # - oraclejdk7 notifications: email: - qbranch@typesafe.com before_script: - export JVM_OPTS="-Xms1024m -Xmx1024m -XX:ReservedCodeCacheSize=128m -XX:MaxPermSize=256m"
language: scala # TODO - we'd like to actually test everything, but the process library has a deadlock right now jdk: - openjdk6 # - oraclejdk7 sudo: false env: global: - JVM_OPTS="-Xms1024m -Xmx1024m -XX:ReservedCodeCacheSize=128m -XX:MaxPermSize=256m" matrix: - SCRIPTED_TEST="scripted actions/*" - SCRIPTED_TEST="scripted api/*" - SCRIPTED_TEST="scripted compiler-project/*"" - SCRIPTED_TEST="scripted dependency-management/*1of2" - SCRIPTED_TEST="scripted dependency-management/*2of2" - SCRIPTED_TEST="scripted java/*" - SCRIPTED_TEST="scripted package/*" - SCRIPTED_TEST="scripted project/*1of2" - SCRIPTED_TEST="scripted project/*2of2" - SCRIPTED_TEST="scripted reporter/*" - SCRIPTED_TEST="scripted run/*" - SCRIPTED_TEST="scripted source-dependencies/*1of3" - SCRIPTED_TEST="scripted source-dependencies/*2of3" - SCRIPTED_TEST="scripted source-dependencies/*3of3" - SCRIPTED_TEST="scripted tests/*" - SCRIPTED_TEST="safeUnitTests" - SCRIPTED_TEST="checkBuildScala211" script: - sbt "$SCRIPTED_TEST" notifications: email: - qbranch@typesafe.com
Use the new Docker queue on Travis
Use the new Docker queue on Travis faster, better, stronger vms boot in seconds, network is more stable also cleaned up the .travis.yml file a little :)
YAML
bsd-3-clause
Duhemm/sbt,dyx/sbt,Sciss/sbt,xuwei-k/xsbt,twitter-forks/sbt,Duhemm/compiler-bridge,dyx/sbt,mdedetrich/sbt,sbt/sbt,xuwei-k/xsbt,sbt/sbt,pocketberserker/sbt,Duhemm/sbt,pdalpra/sbt,jkinkead/sbt,dyx/sbt,twitter-forks/sbt,dyx/sbt,xuwei-k/xsbt,twitter-forks/sbt,jkinkead/sbt,mdedetrich/sbt,sbt/sbt,xuwei-k/xsbt,jkinkead/sbt,dansanduleac/sbt,jasonchaffee/sbt,som-snytt/xsbt,mdedetrich/sbt,mdedetrich/sbt,sbt/sbt,twitter-forks/sbt,sbt/sbt,twitter-forks/sbt,corespring/sbt,mdedetrich/sbt,jkinkead/sbt,sbt/sbt,sbt/sbt,adriaanm/sbt,dyx/sbt,mdedetrich/sbt,mdedetrich/sbt,xuwei-k/xsbt,jkinkead/sbt
6e44cf63e5d0901eaa26d6bdf352cf87025e0190
.travis.yml
.travis.yml
language: python python: - "3.4" install: - python setup.py script: - python common/shapp.py - python common/sheventhandler.py - python common/shutil.py - python common/shregistry.py - python engine/restinterface.py - python engine/memorymanager.py - python feed/feed.home.tracer.py --help - python feed/feed.home.apcups.py --help - python feed/feed.home.autelis.py --help
language: python python: - "3.4" install: - python setup.py script: - python common/shapp.py - python common/sheventhandler.py - python common/shutil.py - python common/shregistry.py - python engine/restinterface.py - python engine/memorymanager.py - python feed/feed.home.tracer.py --help - python feed/feed.home.apcups.py --help - python feed/feed.home.autelis.py --help - python feed/feed.home.eagle.py --help
Add eagle feed to Travis CI
Add eagle feed to Travis CI
YAML
apache-2.0
fxstein/SentientHome
34710734cbd93171d9bce1dbd60c4cf7899e7d24
.travis.yml
.travis.yml
sudo: required dist: trusty before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update ; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install libeigen3-dev libglew-dev libc++-dev libwayland-dev libxkbcommon-dev libegl1-mesa-dev; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then pyenv versions && pyenv global system 3.6; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install eigen glew ; fi language: cpp compiler: - gcc - clang os: - linux - osx env: - BUILD_TYPE=Release # - BUILD_TYPE=Debug script: - mkdir build - cd build - cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE .. - make -j4
sudo: required dist: trusty before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update ; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install libeigen3-dev libglew-dev libc++-dev libwayland-dev libxkbcommon-dev libegl1-mesa-dev; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then pyenv versions && pyenv global system 3.6; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install eigen glew ; fi addons: apt: sources: - ubuntu-toolchain-r-test packages: # install newer libstdc++ (from ubuntu-toolchain-r/test PPA), since otherwise clang fails with old libstdc++-4.8 - libstdc++-5-dev language: cpp compiler: - gcc - clang os: - linux - osx env: - BUILD_TYPE=Release # - BUILD_TYPE=Debug script: - mkdir build - cd build - cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE .. - make -j4
Install libstdc++-5 on Linux to for clang.
CI: Install libstdc++-5 on Linux to for clang.
YAML
mit
tschmidt23/Pangolin,stevenlovegrove/Pangolin,mp3guy/Pangolin,mp3guy/Pangolin,stevenlovegrove/Pangolin,stevenlovegrove/Pangolin,mp3guy/Pangolin,renzodenardi/Pangolin,tschmidt23/Pangolin,tschmidt23/Pangolin,renzodenardi/Pangolin
f2d8f0d46870a5e270aeeea4aa4e354dbe788d0b
.travis.yml
.travis.yml
language: python sudo: false python: - "2.7" - "3.4" env: - REQ="Django>=1.9,<1.10 django-mptt" - REQ="https://github.com/django/django/archive/master.zip django-mptt" install: - pip install $REQ flake8 - python setup.py -q install script: "cd tests && ./manage.py test testapp && flake8 ."
language: python sudo: false python: - "2.7" - "3.4" env: - REQ="Django>=1.9,<1.10 django-mptt" - REQ="https://github.com/django/django/archive/master.zip django-mptt" matrix: exclude: # Avoid "UnicodeEncodeError: 'ascii' codec can't encode character u'\u2297' in position 60: ordinal not in range(128)" ??? - python: "2.7" env: REQ="https://github.com/django/django/archive/master.zip django-mptt" install: - pip install $REQ flake8 - python setup.py -q install script: "cd tests && ./manage.py test testapp && flake8 ."
Exclude a stupidly failing config
Exclude a stupidly failing config
YAML
bsd-3-clause
matthiask/django-content-editor,matthiask/feincms2-content,matthiask/django-content-editor,matthiask/feincms2-content,matthiask/feincms2-content,matthiask/django-content-editor,matthiask/django-content-editor
1986acdeee892475cc59fd2fffd1718a7e8166a2
.travis.yml
.travis.yml
language: objective-c osx_image: xcode8
language: objective-c osx_image: xcode8 xcode_project: TDRedux.xcodeproj xcode_scheme: TDRedux script: - xcodebuild \ -project TDRedux.xcodeproj \ -scheme TDRedux \ -destination "OS=10.0,name=iPhone 6s Plus" \ GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES \ GCC_GENERATE_TEST_COVERAGE_FILES=YES \ test | xcpretty -c
Use xcodebuild + xcpretty because xctool is DEAD for Xcode 8
Use xcodebuild + xcpretty because xctool is DEAD for Xcode 8 Stole the snippet from [here](https://github.com/NicholasTD07/SwiftDailyAPI/blob/develop/.travis.yml)
YAML
mit
NicholasTD07/TDRedux.swift,NicholasTD07/TDRedux.swift,NicholasTD07/TDRedux.swift
5447ddd4928e396a6315f7bf073248498a9e2765
.travis.yml
.travis.yml
language: node_js node_js: - "7" - "6" before_script: - npm run download-flatlist script: - npm test - npm run lint
language: node_js node_js: - "7" - "6" before_script: - yarn run download-flatlist script: - yarn test - yarn run lint
Change all Travis commands from 'npm' to 'yarn'
:rocket: Change all Travis commands from 'npm' to 'yarn'
YAML
mit
cooperka/react-native-immutable-list-view
aab5788fc862ecb317cc72c04998941529320420
.travis.yml
.travis.yml
language: php sudo: false matrix: include: - php: 5.5 - php: 5.6 - php: 5.6 env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable' - php: 7.0 - php: hhvm - php: nightly allow_failures: - php: 7.0 - php: nightly fast_finish: true before_install: - travis_retry composer self-update && composer --version install: - travis_retry composer update $COMPOSER_FLAGS --prefer-source -n script: vendor/bin/phpunit --verbose --coverage-clover=coverage.clover after_script: - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi;'
language: php sudo: false matrix: include: - php: 5.6 - php: 5.6 env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable' - php: 7.0 - php: hhvm - php: nightly allow_failures: - php: 7.0 - php: nightly fast_finish: true before_install: - travis_retry composer self-update && composer --version install: - travis_retry composer update $COMPOSER_FLAGS --prefer-source -n script: vendor/bin/phpunit --verbose --coverage-clover=coverage.clover after_script: - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi;'
Remove PHP 5.5 from Travis
Remove PHP 5.5 from Travis
YAML
mit
cocur/vale
1b0dc332a36776df9f659f4c448266bf5b0a7e34
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12"
sudo: false language: node_js node_js: - 'iojs' - 'node' - '0.10'
Test on 'iojs' and use container based
Test on 'iojs' and use container based
YAML
mit
grncdr/merge-stream
711077e402f732d6fae6d873bc16b99e362a7b2f
.travis.yml
.travis.yml
--- language: perl perl: - "5.20" - "5.24" - "5.26" addons: apt: packages: - ffmpeg
--- language: perl perl: - "5.20" - "5.24" - "5.26" sudo: true install: - sudo apt-get install ffmpeg
Use sudo infra rather than containered
Use sudo infra rather than containered ffmpeg isn't whitelisted, apparently...
YAML
agpl-3.0
yoe/sreview,yoe/sreview,yoe/sreview,yoe/sreview
338fb6efdd9e9ad22c66fc11cd0d47728f11a08d
.travis.yml
.travis.yml
language: ruby env: global: - DISCOURSE_HOSTNAME=www.example.com - RUBY_GC_MALLOC_LIMIT=50000000 matrix: - "RAILS_MASTER=1" - "RAILS_MASTER=0" addons: postgresql: 9.3 matrix: allow_failures: - env: "RAILS_MASTER=1" - rvm: rbx-2 fast_finish: true rvm: - 2.0.0 - 2.1 - 2.2 - rbx-2 services: - redis-server sudo: false cache: bundler before_install: - npm i -g jshint - jshint . before_script: - bundle exec rake db:create db:migrate bundler_args: --without development --deployment --retry=3 --jobs=3 script: 'bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test'
language: ruby env: global: - DISCOURSE_HOSTNAME=www.example.com - RUBY_GC_MALLOC_LIMIT=50000000 matrix: - "RAILS42=1" - "RAILS_MASTER=1" - "RAILS_MASTER=0" addons: postgresql: 9.3 matrix: allow_failures: - env: "RAILS_MASTER=1" - env: "RAILS42=1" - rvm: rbx-2 fast_finish: true rvm: - 2.0.0 - 2.1 - 2.2 - rbx-2 services: - redis-server sudo: false cache: bundler before_install: - npm i -g jshint - jshint . before_script: - bundle exec rake db:create db:migrate install: - bash -c "if [ '$RAILS42' == '1' ]; then bundle update --retry=3 --jobs=3 rails rails-observers; fi" - bash -c "if [ '$RAILS_MASTER' == '1' ]; then bundle update --retry=3 --jobs=3 arel rails rails-observers seed-fu; fi" - bash -c "if [ '$RAILS_MASTER' == '0' ]; then bundle install --without development --deployment --retry=3 --jobs=3; fi" script: 'bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test'
Test on rails 4.2 and master
Test on rails 4.2 and master
YAML
mit
natefinch/discourse,natefinch/discourse
b581d7490388db5cb51c5830364e5b259ae10d1a
.travis.yml
.travis.yml
language: node_js node_js: - 0.9 - 0.8 - 0.6 before_install: "npm install -g bob" script: "bob clean lint complexity test"
language: node_js node_js: - 0.9 - 0.8 - 0.6 before_install: "npm install -g bob" script: "bob clean lint complexity test coverage"
Add coverage to CI run.
Add coverage to CI run.
YAML
mit
cliffano/nestor,cliffano/nestor
14ece7e4571daed881121848b1229b6056f2a7de
.travis.yml
.travis.yml
language: d sudo: false matrix: include: - d: dmd-nightly - d: dmd-2.092.0 - d: ldc-1.19.0 allow_failures: - d: dmd-nightly script: - build/ci.sh # - dub build -b ddox after_success: - bash <(curl -s https://codecov.io/bash)
language: d sudo: false matrix: include: - d: dmd-nightly - d: dmd-2.092.0 allow_failures: - d: dmd-nightly script: - build/ci.sh # - dub build -b ddox after_success: - bash <(curl -s https://codecov.io/bash)
Remove pesky ldc from Travis config
Remove pesky ldc from Travis config
YAML
bsd-3-clause
atilaneves/unit-threaded,atilaneves/unit-threaded
1b236f45ce2c83e8e75205dca8ff2b8783e1cb66
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 - 7.3 - nightly matrix: allow_failures: - php: nightly env: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" install: - composer self-update --snapshot - composer update $COMPOSER_OPTS script: - vendor/bin/phpunit - tests/lint.sh 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: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" install: - composer self-update --snapshot - composer update $COMPOSER_OPTS script: - vendor/bin/phpunit - tests/lint.sh jobs: include: - stage: coverage script: - vendor/bin/phpunit --coverage-clover=coverage.xml - bash <(curl -s https://codecov.io/bash) git: depth: 5 group: travis_latest
Remove the deprecated sudo option and run on the latest version
Remove the deprecated sudo option and run on the latest version
YAML
apache-2.0
duncan3dc/serial,duncan3dc/serial
6bd2d4430049d4d3d0da259b1039303149d45e78
.travis.yml
.travis.yml
language: python python: - "3.6" virtualenv: system_site_packages: true before_install: - sudo apt-get install -qq libgdal1h - sudo apt-get install -qq python-gdal script: py.test scarplet/tests
language: python python: - "3.2" virtualenv: system_site_packages: true before_install: - sudo apt-get install -qq libgdal1h - sudo apt-get install -qq python-gdal script: py.test scarplet/tests
Downgrade Travis Python version to test virtualenv
Downgrade Travis Python version to test virtualenv
YAML
mit
stgl/scarplet,rmsare/scarplet
b37afa53a82be8739e5f36428b3bcfe9e73f4689
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0 - jruby before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start script: - bundle exec rspec
language: ruby script: - bundle exec rspec spec rvm: - rbx-2 - jruby-head - ruby-head - ruby - jruby - 2.1.2 - 2.0.0 - 1.9.3
Add more rubies api_matchers compatibility. Yeah!
Add more rubies api_matchers compatibility. Yeah!
YAML
mit
tomas-stefano/api_matchers,tadjohnston/api_matchers
36bb70a95b2234407b1e6e1e2e531e0ad941a51b
.travis.yml
.travis.yml
sudo: false language: php php: - 7.0 - 7.1 - 7.2 - nightly matrix: allow_failures: - php: nightly fast_finish: true env: - AMP_DEBUG=true before_install: - phpenv config-rm xdebug.ini || echo "No xdebug config." install: - composer update -n --prefer-dist - travis/install-eio.sh - travis/install-uv.sh - wget https://github.com/php-coveralls/php-coveralls/releases/download/v1.0.2/coveralls.phar - chmod +x coveralls.phar script: - phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml - PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer --diff --dry-run -v fix after_script: - ./coveralls.phar cache: directories: - $HOME/.composer/cache
sudo: false language: php php: - 7.0 - 7.1 - 7.2 - nightly matrix: allow_failures: - php: nightly fast_finish: true env: - AMP_DEBUG=true before_install: - phpenv config-rm xdebug.ini || echo "No xdebug config." install: - composer update -n --prefer-dist - travis/install-eio.sh - travis/install-uv.sh - wget https://github.com/php-coveralls/php-coveralls/releases/download/v1.0.2/coveralls.phar - chmod +x coveralls.phar script: # PHPDBG segfaults on versions other than 7.0 currently - if [ "$TRAVIS_PHP_VERSION" = "7.0" ]; then phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml; else vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml; fi - PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer --diff --dry-run -v fix after_script: - if [ "$TRAVIS_PHP_VERSION" = "7.0" ]; then ./coveralls.phar; fi cache: directories: - $HOME/.composer/cache
Disable phpdbg where it segfaults
Disable phpdbg where it segfaults
YAML
mit
amphp/fs,amphp/file
1531268db13aabf1ebbe565d4d456eac45304ad1
.travis.yml
.travis.yml
sudo: false language: php php: - 5.5 - 5.6 - 7.0 - 7.1 - hhvm before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction script: - vendor/bin/phpcs --standard=psr2 ./src - vendor/bin/phpunit --coverage-text --bootstrap vendor/autoload.php --coverage-clover=coverage.xml after_success: - if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then bash <(curl -s https://codecov.io/bash); fi cache: directories: - $HOME/.composer/cache
sudo: false language: php php: - 5.5 - 5.6 - 7.0 - 7.1 - hhvm before_script: - travis_retry composer self-update - if [[ $TRAVIS_PHP_VERSION == "5.6" ]]; then composer remove --dev phpbench/phpbench; fi - if [[ $TRAVIS_PHP_VERSION == "hhvm" ]]; then composer remove --dev phpbench/phpbench; fi - travis_retry composer install --no-interaction script: - vendor/bin/phpcs --standard=psr2 ./src - vendor/bin/phpunit --coverage-text --bootstrap vendor/autoload.php --coverage-clover=coverage.xml after_success: - if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then bash <(curl -s https://codecov.io/bash); fi cache: directories: - $HOME/.composer/cache
Remove PHPBench from unsupported PHP versions
Remove PHPBench from unsupported PHP versions
YAML
mit
tuupola/base62
92febca0c88f13a8308a785ef3e6ae9aa7db3695
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '4' - '6' - '7'
sudo: false language: node_js node_js: - '9' - '8' - '6'
Update Travis CI node versions
Test(config): Update Travis CI node versions
YAML
unlicense
fvdm/nodejs-fibonacci
ecb4a52e22dbf3cb18e15caa9d323c90705711d5
.travis.yml
.travis.yml
language: common-lisp sudo: required os: - linux - osx env: - LISP=sbcl-bin - LISP=ccl-bin matrix: include: - language: nix os: linux env: script: nix-build default.nix && echo -shcl-run-tests | ./result/bin/shcl install: true install: - ./ci/install script: - make LISP='ros -s cffi-grovel run --' - echo -shcl-run-tests | ./run-shcl
sudo: required dist: bionic os: - linux - osx env: - LISP=sbcl-bin - LISP=ccl-bin matrix: include: - language: nix env: script: nix-build default.nix && echo -shcl-run-tests | ./result/bin/shcl install: true install: - ./ci/install script: - make LISP='ros -s cffi-grovel run --' - echo -shcl-run-tests | ./run-shcl
Update the ubuntu build for CI
Update the ubuntu build for CI The -no-pie build failure is caused by GCC being super old. Let's update it! Interestingly, travis limits the set of available operating systems based on what the language supports. Since common-lisp is unrecognized, it was limited to the default OS. In order to use a more recent Ubuntu variant, I needed to drop the language declaration.
YAML
apache-2.0
bradleyjensen/shcl,bradleyjensen/shcl,bradleyjensen/shcl
3ecdc6f4e150eacdf949574a1d7392872db20a04
.travis.yml
.travis.yml
sudo: false language: node_js branches: only: - master node_js: - '12' - '11' - '10' - '9' - '8'
sudo: false language: node_js branches: only: - master node_js: - '12' - '11' - '10'
Remove unused versions of Node.js for tests
Remove unused versions of Node.js for tests
YAML
mit
justcoded/web-starter-kit,justcoded/web-starter-kit
11a3f5e2960ea6c1547a71a161c801e96d73438d
.travis.yml
.travis.yml
language: php php: - "5.5" - "5.6" before_install: - sudo apt-get update -qq - sudo apt-get install -y phantomjs screen before_script: - mysql -e 'create database homestead;' - mysql -e "GRANT ALL PRIVILEGES ON homestead.* TO 'homestead'@'%' IDENTIFIED BY 'secret'" -uroot - screen -S server -d -m phantomjs --webdriver=4444 - cp .env.example .env - "composer self-update" - "composer install --dev --no-interaction" - php artisan migrate --force script: # - mkdir -p build/logs - ./vendor/bin/codecept run -vvv # - SECRET_KEY=mHu5hXL0NzteWE4wVlbJsah55o2LRpgF #after_script: # - vendor/bin/coveralls -v
language: php php: - "5.5" - "5.6" - "hhvm" - "7" before_install: - sudo apt-get update -qq - sudo apt-get install -y phantomjs screen before_script: - mysql -e 'create database homestead;' - mysql -e "GRANT ALL PRIVILEGES ON homestead.* TO 'homestead'@'%' IDENTIFIED BY 'secret'" -uroot - screen -S server -d -m phantomjs --webdriver=4444 - cp .env.example .env - "composer self-update" - "composer install --dev --no-interaction" - php artisan migrate --force script: # - mkdir -p build/logs - ./vendor/bin/codecept run -vvv # - SECRET_KEY=mHu5hXL0NzteWE4wVlbJsah55o2LRpgF #after_script: # - vendor/bin/coveralls -v
Test hhvm and php 7
Test hhvm and php 7
YAML
mit
svpernova09/NerdsAreDrinking,svpernova09/NerdsAreDrinking,svpernova09/NerdsAreDrinking
da219074f4a9b8098c2979d4ffcb7de82e6f73f3
.travis.yml
.travis.yml
language: node_js matrix: include: - env: TEST_TARGET=browser - env: TEST_TARGET=node node_js: 4 - env: TEST_TARGET=node node_js: 5 - env: TEST_TARGET=node node_js: 6 script: - npm install -g node-static - static -p 8081 & - npm run lint - npm run dist - npm test deploy: provider: npm email: marius@accoplex.com api_key: secure: jyOlnZKkGmt1/3YH3Gs00zkOD7R0iXmHhtSsWCXrtlWXr8XqjH5DH6WRNOvr2JnI1NJO2Zz0e1EAjKNbUVfS/SWELlR9GX+yJr9QtgWce92zizL4Finp3VeGtZ8ZBBukbPogQW80Dvc8zb2FhpnxdW83lGlqGqyL7o7BT+0S7tQ= skip_cleanup: true on: tags: true repo: tus/tus-js-client addons: sauce_connect: tunnel_domains: localhost no_ssl_bump_domains: www.google.com,www.gstatic.com,ssl.gstatic.com
language: node_js matrix: include: - env: TEST_TARGET=browser node_js: 6 - env: TEST_TARGET=node node_js: 4 - env: TEST_TARGET=node node_js: 5 - env: TEST_TARGET=node node_js: 6 script: - npm install -g node-static - static -p 8081 & - npm run lint - npm run dist - npm test deploy: provider: npm email: marius@accoplex.com api_key: secure: jyOlnZKkGmt1/3YH3Gs00zkOD7R0iXmHhtSsWCXrtlWXr8XqjH5DH6WRNOvr2JnI1NJO2Zz0e1EAjKNbUVfS/SWELlR9GX+yJr9QtgWce92zizL4Finp3VeGtZ8ZBBukbPogQW80Dvc8zb2FhpnxdW83lGlqGqyL7o7BT+0S7tQ= skip_cleanup: true on: tags: true repo: tus/tus-js-client addons: sauce_connect: tunnel_domains: localhost no_ssl_bump_domains: www.google.com,www.gstatic.com,ssl.gstatic.com
Use Node.js 6 for browser tests
Use Node.js 6 for browser tests
YAML
mit
tus/tus-js-client,tus/tus-js-client,tus/tus-js-client
7bf8f4dd5976d14e79176c7da759c6b6f34f6bcd
.travis.yml
.travis.yml
language: java script: - ./scripts/setup install: - /bin/true
language: java script: - ./scripts/setup before_install: chmod +x ./scripts/setup install: - /bin/true
Make sure scripts can run on Travis
Make sure scripts can run on Travis
YAML
apache-2.0
T145/magistics,T145/magistics
333fc112621509b7c7b780aeef11bed9c0e52310
.travis.yml
.travis.yml
language: node_js node_js: - "8" - "10" - "12" - "node"
language: node_js node_js: - "10" - "12" - "14" - "node"
Update node version for Travis
Update node version for Travis
YAML
mit
antoinejaussoin/redux-saga-testing,antoinejaussoin/redux-saga-testing
5547ed6e102b89d9c567098a4c526b0c1a4c756a
.travis.yml
.travis.yml
language: objective-c osx_image: xcode10.2 env: - LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 before_install: - pod repo update - brew install gnu-sed s3cmd - gem install xcpretty -N script: "./Tests/travis.sh" notifications: slack: secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI= deploy: provider: releases api_key: secure: a7osq2mGo9nnc/tb5SuWpB+CXmeWUqH3TIAyxWooe17KCcKJ4cFRZi5W7MORySSfi7IzSsJ3igWRbXx+P3cwk+/AEqDA1Gmv2ZiIBE7m4fee/wnuA1eIOrzpaBevcEO+s9ooS2Dlq4S3UUSsBB+2slRXZQOcIG2n5imHs9ckGWM= file_glob: true skip_cleanup: true file: Frameworks/packages/*.zip on: repo: AudioKit/AudioKit tags: true
language: objective-c osx_image: xcode11 env: - LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 before_install: - pod repo update - brew install gnu-sed s3cmd - gem install xcpretty -N script: "./Tests/travis.sh" notifications: slack: secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI= deploy: provider: releases api_key: secure: a7osq2mGo9nnc/tb5SuWpB+CXmeWUqH3TIAyxWooe17KCcKJ4cFRZi5W7MORySSfi7IzSsJ3igWRbXx+P3cwk+/AEqDA1Gmv2ZiIBE7m4fee/wnuA1eIOrzpaBevcEO+s9ooS2Dlq4S3UUSsBB+2slRXZQOcIG2n5imHs9ckGWM= file_glob: true skip_cleanup: true file: Frameworks/packages/*.zip on: repo: AudioKit/AudioKit tags: true
Switch Travis to Xcode 11 image
Switch Travis to Xcode 11 image
YAML
mit
eljeff/AudioKit,eljeff/AudioKit,eljeff/AudioKit,audiokit/AudioKit,adamnemecek/AudioKit,adamnemecek/AudioKit,eljeff/AudioKit,audiokit/AudioKit,audiokit/AudioKit,audiokit/AudioKit,adamnemecek/AudioKit,adamnemecek/AudioKit
e51c42d77e93ea3939c13686fcf3844b05297e9c
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - jruby-head - ruby-head - "2.2" - jruby-19mode - "2.1" - "2.0.0" - "1.9.3" env: - AR_VERSION="~>4.2.1" - AR_VERSION="~>4.1.10" - AR_VERSION="~>4.0.21" - AR_VERSION="~>3.2.21"
language: ruby sudo: false rvm: - jruby-head - ruby-head - "2.2" - jruby-19mode - "2.1" - "2.0.0" - "1.9.3" env: - AR_VERSION="~>4.2.1" - AR_VERSION="~>4.1.10" - AR_VERSION="~>4.0.13" - AR_VERSION="~>3.2.21"
Test MRI and JRuby with ActiveRecord 4.2, 4.1, 4.0, and 3.2
Test MRI and JRuby with ActiveRecord 4.2, 4.1, 4.0, and 3.2
YAML
mit
donv/activerecord-time
b0c6db8615db91fa245c635eb29f180e961c44e0
.travis.yml
.travis.yml
language: ruby rvm: - 2.5 - 2.6 - 2.7 - ruby-head env: - INTEGRATION=yes - INTEGRATION=no group: travis_lts cache: bundler before_install: - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - ./cc-test-reporter before-build - gem install bundler - bundle config set without 'vscode' - bundle config set jobs 4 script: - bundle exec rake after_script: - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT matrix: allow_failures: - rvm: ruby-head exclude: - rvm: 2.5 env: INTEGRATION=yes - rvm: 2.6 env: INTEGRATION=yes - rvm: 2.7 env: INTEGRATION=yes - rvm: ruby-head env: INTEGRATION=yes notifications: email: false webhooks: urls: - https://webhooks.gitter.im/e/059b85fcc75550b7bc39
language: ruby rvm: - 2.5 - 2.6 - 2.7 - ruby-head env: - INTEGRATION=yes - INTEGRATION=no group: travis_lts cache: bundler before_install: - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - ./cc-test-reporter before-build - gem install bundler - bundle config set without 'vscode' script: - bundle exec rake after_script: - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT matrix: allow_failures: - rvm: ruby-head exclude: - rvm: 2.5 env: INTEGRATION=yes - rvm: 2.6 env: INTEGRATION=yes - rvm: 2.7 env: INTEGRATION=yes - rvm: ruby-head env: INTEGRATION=yes notifications: email: false webhooks: urls: - https://webhooks.gitter.im/e/059b85fcc75550b7bc39
Remove setting jobs option since its value is overridden
Remove setting jobs option since its value is overridden
YAML
mit
rakuten-ws/rws-ruby-sdk
0d96eb5944f63e1a720f8e5a77c8dce06f717b5f
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.0.0-p647 - 2.1.7 - 2.2.3 - ruby-head install: - git clone https://github.com/ruby/mspec.git ../mspec script: - ../mspec/bin/mspec branches: only: - master
sudo: false language: ruby rvm: - 2.0.0-p648 - 2.1.8 - 2.2.4 - ruby-head install: - git clone https://github.com/ruby/mspec.git ../mspec script: - ../mspec/bin/mspec branches: only: - master
Use the latest rubies on Travis
Use the latest rubies on Travis
YAML
mit
eregon/rubyspec,ruby/spec,ruby/spec,ruby/rubyspec,eregon/rubyspec,kachick/rubyspec,ruby/spec,ruby/rubyspec,sgarciac/spec,nobu/rubyspec,wied03/rubyspec,kachick/rubyspec,nobu/rubyspec,eregon/rubyspec,sgarciac/spec,sgarciac/spec,nobu/rubyspec,wied03/rubyspec,kachick/rubyspec,wied03/rubyspec
2a27ebf70beb16581ea595b787ce7ba529acde1e
.travis.yml
.travis.yml
sudo: false language: ruby cache: bundler rvm: - 2.3.6 - 2.4.3 - 2.5.0 env: - DB=sqlite - DB=mysql - DB=postgresql install: - cp config/database.yml.$DB config/database.yml - bundle install --without development before_script: - bundle exec rake db:create db:migrate script: - bundle exec rake - 'cd $TRAVIS_BUILD_DIR/publify_core && bundle exec rake' - 'cd $TRAVIS_BUILD_DIR/publify_amazon_sidebar && bundle exec rake' - 'cd $TRAVIS_BUILD_DIR/publify_textfilter_code && bundle exec rake' #after_success: # - bundle exec codeclimate-test-reporter branches: only: - master addons: code_climate: repo_token: 8850bccc6911d74965627b1fafe753beb368fab00d33de0c7576c6598fc1220e notifications: webhooks: urls: - http://publify_hook.ookook.fr/travisci on_success: always on_failure: never on_start: never
sudo: false language: ruby cache: bundler rvm: - 2.3 - 2.4 - 2.5 env: - DB=sqlite - DB=mysql - DB=postgresql install: - cp config/database.yml.$DB config/database.yml - bundle install --without development before_script: - bundle exec rake db:create db:migrate script: - bundle exec rake - 'cd $TRAVIS_BUILD_DIR/publify_core && bundle exec rake' - 'cd $TRAVIS_BUILD_DIR/publify_amazon_sidebar && bundle exec rake' - 'cd $TRAVIS_BUILD_DIR/publify_textfilter_code && bundle exec rake' #after_success: # - bundle exec codeclimate-test-reporter branches: only: - master addons: code_climate: repo_token: 8850bccc6911d74965627b1fafe753beb368fab00d33de0c7576c6598fc1220e notifications: webhooks: urls: - http://publify_hook.ookook.fr/travisci on_success: always on_failure: never on_start: never
Use latest micro version for all Rubies for CI
Use latest micro version for all Rubies for CI
YAML
mit
publify/publify,publify/publify,publify/publify
1fdf3b72b56deb750c027ab328cf860f6a9fff3b
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - stable cache: directories: - node_modules branches: only: - master - next - /^greenkeeper-/ - v4
sudo: false language: node_js node_js: - stable cache: directories: - node_modules branches: only: - master - next - /^greenkeeper-/
Remove v4 from builds now that we're at 4.0.0
Remove v4 from builds now that we're at 4.0.0
YAML
mit
asaf/react-router,reactjs/react-router,DelvarWorld/react-router,ReactTraining/react-router,goblortikus/react-router,d-oliveros/react-router,reactjs/react-router,DelvarWorld/react-router,OpenGov/react-router,goblortikus/react-router,goblortikus/react-router,OpenGov/react-router,OpenGov/react-router,ReactTraining/react-router,rackt/react-router,ReactTraining/react-router,d-oliveros/react-router,ReactTraining/react-router,asaf/react-router,goblortikus/react-router,OpenGov/react-router,rackt/react-router,asaf/react-router
1ddd055291dfbf6e75117334eaa04c145e58ed40
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 services: - memcached before_script: - composer self-update - phpenv config-add travisconfig.ini - composer install --prefer-source --no-interaction --dev script: vendor/bin/phpunit -c phpunit_ci.xml
language: php php: - 5.6 - 7.0 services: - memcached before_script: - composer self-update - phpenv config-add travisconfig.ini - composer install --prefer-source --no-interaction --dev script: vendor/bin/phpunit -c phpunit_ci.xml
Remove support for php 5.4 and 5.5
Remove support for php 5.4 and 5.5
YAML
mit
karptonite/geekcache
76ab2c7445157b0b9e577ea92690c856c5a226cd
.travis.yml
.travis.yml
language: c sudo: required service: docker install: - wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-docker.sh - cp mocks/mock.ml lib/nvml.ml - cp mocks/mock.c stubs/nvml_stubs.c script: bash -ex .travis-docker.sh env: global: - PACKAGE=gpumon - PINS="gpumon:." - BASE_REMOTE="https://github.com/xapi-project/xs-opam.git" - BASE_REMOTE_BRANCH="feature/REQ-720/master" matrix: - DISTRO="debian-9-ocaml-4.07"
language: c sudo: required service: docker install: - wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-docker.sh - cp mocks/mock.ml lib/nvml.ml - cp mocks/mock.c stubs/nvml_stubs.c script: bash -ex .travis-docker.sh env: global: - PACKAGE=gpumon - PINS="gpumon:." - BASE_REMOTE="https://github.com/xapi-project/xs-opam.git" matrix: - DISTRO="debian-9-ocaml-4.07"
Revert "Temporary commit to pass CI."
Revert "Temporary commit to pass CI." This reverts commit f1b36e3bffa09ffa58f20e98ec71939b4bf78124.
YAML
isc
xenserver/gpumon
9ba155821e37ba6b5d3bee86205d1f26e66a4041
.travis.yml
.travis.yml
language: php script: make test php: - 5.3 - 5.4
language: php script: make test notifications: email: eng@basho.com php: - 5.3 - 5.4
Change notifications to just engineering list.
Change notifications to just engineering list. [ci skip]
YAML
apache-2.0
basho/riak-php-client,0x20h/riak-php-client
7751fd4974c2d538680fdfa261d0270d2e6a142b
.travis.yml
.travis.yml
language: c script: - bats test - ./lint.sh before_script: - git clone https://github.com/sstephenson/bats.git /tmp/bats - export PATH=/tmp/bats/bin:$PATH os: - linux - osx
language: c script: - bats test - ./lint.sh before_install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install shellcheck; fi before_script: - git clone https://github.com/sstephenson/bats.git /tmp/bats - export PATH=/tmp/bats/bin:$PATH os: - linux - osx
Add TravisCI instructions for osx setup of shellcheck
Add TravisCI instructions for osx setup of shellcheck
YAML
mit
Stratus3D/asdf,Jwashton/asdf,asdf-vm/asdf
31832a484f672397d4c98909d0143efebdaca124
.travis.yml
.travis.yml
rvm: - 1.8.6 - 1.8.7 - 1.9.2 - ruby-head - rbx - jruby only: - master notifications: disabled: true
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - ruby-head only: - master notifications: disabled: true
Stop supporting RVM Rubies 1.8.6, rbx and jruby
Stop supporting RVM Rubies 1.8.6, rbx and jruby
YAML
mit
venuenext/json_spec,collectiveidea/json_spec,irfanah/json_spec
d4088139d4698f76d30b4f6558d69cab55d2fa53
.travis.yml
.travis.yml
language: rust sudo: false addons: apt: packages: - libcurl4-openssl-dev - libelf-dev - libdw-dev - binutils-dev # optional: only required for the --verify flag of coveralls rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly # Load travis-cargo before_script: - | pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH # Main build script: - | travis-cargo build && travis-cargo test && travis-cargo bench && travis-cargo --only stable doc # Measure code coverage, upload to coveralls.io after_success: - travis-cargo coveralls --no-sudo --verify env: global: # override the default `--features unstable` used for the nightly branch (optional) - TRAVIS_CARGO_NIGHTLY_FEATURE=""
language: rust sudo: false cache: cargo addons: apt: packages: - libcurl4-openssl-dev - libelf-dev - libdw-dev - binutils-dev # optional: only required for the --verify flag of coveralls rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly # Load travis-cargo before_script: - | pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH # Main build script: - | travis-cargo build && travis-cargo test && travis-cargo bench && travis-cargo --only stable doc # Measure code coverage, upload to coveralls.io after_success: - travis-cargo coveralls --no-sudo --verify env: global: # override the default `--features unstable` used for the nightly branch (optional) - TRAVIS_CARGO_NIGHTLY_FEATURE=""
Add cargo build caching to Travis-CI
Add cargo build caching to Travis-CI
YAML
apache-2.0
jzhu98/telescope
c0058845e658f57fb415b6c16e2fa3db870a6bd9
.travis.yml
.travis.yml
sudo: required dist: precise group: edge language: android jdk: - oraclejdk7 - oraclejdk8 env: - TEST_SUITE=codenarc integTest - TEST_SUITE=perfTest android: components: - tools - build-tools-23.0.2 - android-23 branches: only: - development - staging - /^support-.*$/ script: - ./gradlew assemble $TEST_SUITE
sudo: required dist: precise group: edge language: android jdk: - oraclejdk7 - oraclejdk8 env: - TEST_SUITE="codenarc integTest" - TEST_SUITE=perfTest android: components: - tools - build-tools-23.0.2 - android-23 branches: only: - development - staging - /^support-.*$/ script: - ./gradlew assemble $TEST_SUITE
Make sure both, codenarc and integTest should run
Make sure both, codenarc and integTest should run
YAML
apache-2.0
Monits/static-code-analysis-plugin,Monits/static-code-analysis-plugin
0b970eea4ab7b55947a0eaa3816a15380255328c
.travis.yml
.travis.yml
language: php php: - 7.2 - 7.1 - 7.0 - 5.6 - 5.5 - 5.4 before_script: composer install
language: php php: - 7.2 - 7.1 - 7.0 - 5.6 before_script: composer install
Remove end of life PHP versions from Travis CI
Remove end of life PHP versions from Travis CI PHP 5.4 and 5.5 no longer receive updates from the PHP team. Maintaining backwards compatability for EOF PHP versions is an overhead I'm not committing to.
YAML
mit
adrianclay/php-git
eed87b8780536c5e8499e4a90fe708a8d51dd1be
.travis.yml
.travis.yml
language: c sudo: required os: [linux] compiler: [clang, gcc] install: - export DEBIAN_FRONTEND=noninteractive - sudo apt-get update -qq - sudo apt-get -y install lua5.2 lua5.1 liblua5.2-dev liblua5.1-dev script: - export VERBOSE=1 - make -j"$(nproc)" build-lua52 build-lua51 V=1 - make check-lib check-lua52 check-lua51 - make clean - make -j"$(nproc)" benchmark V=1 CFLAGS='-O3 -pipe -DNDEBUG'
language: c sudo: required os: [linux] compiler: [clang, gcc] arch: [amd64, arm64, ppc64le, s390x] install: - export DEBIAN_FRONTEND=noninteractive - sudo apt-get update -qq - sudo apt-get -y install lua5.2 lua5.1 liblua5.2-dev liblua5.1-dev script: - export VERBOSE=1 - make -j"$(nproc)" build-lua52 build-lua51 V=1 - make check-lib check-lua52 check-lua51 - make clean - make -j"$(nproc)" benchmark V=1 CFLAGS='-O3 -pipe -DNDEBUG'
Enable all CPU architectures for Travis CI builds
Enable all CPU architectures for Travis CI builds
YAML
apache-2.0
craigbarnes/lua-gumbo,craigbarnes/lua-gumbo,craigbarnes/lua-gumbo
4fd1d0ec2d98be0501877e61a0c3c738ac0d4d24
.travis.yml
.travis.yml
# http://docs.travis-ci.com/user/languages/go/ language: go install: true script: script/cibuild notifications: email: false
# http://docs.travis-ci.com/user/languages/go/ language: go install: true script: script/cibuild notifications: email: false before_install: - repo=`basename $PWD`; localDir=`dirname $PWD`; cfDir="`dirname $localDir`/github" - if [[ "$localDir" != "$cfDir" ]]; then mv "$localDir" "$cfDir"; cd ../../github/$repo; export TRAVIS_BUILD_DIR=`dirname $TRAVIS_BUILD_DIR`/$repo; fi
Make it possible to enable Travis on forks
Make it possible to enable Travis on forks Doesn't usually build with a fork because the clone path is $fork_user/git-lfs instead of github/git-lfs which breaks package references. This fixes that. Note that this code should work on any golang repo owned by github
YAML
mit
rubiojr/git-lfs,github/git-lfs,aleb/git-lfs,aleb/git-lfs,crealytics/git-lfs,ttaylorr/git-lfs,crealytics/git-lfs,iSC-Labs/git-lfs,modulexcite/git-lfs,Jericho25/-git-lfs_miilkyway,cnbin/git-lfs,ModernTechnologyPlayers01/git-lfs,rtyley/git-lfs,bozaro/git-lfs,clareliguori/git-lfs,jsroads/git-lfs,phungmy/git-lfs,larsxschneider/git-lfs,larsxschneider/git-lfs,cnbin/git-lfs,rubiojr/git-lfs,dakotahawkins/git-lfs,beni55/git-lfs,dakotahawkins/git-lfs,WillHipschman/git-lfs,jsroads/git-lfs,ttaylorr/git-lfs,JeckoHeroOrg/-git-lfs_miilkyway,iSC-Labs/git-lfs,bozaro/git-lfs,ryansimmen/git-lfs,yonglehou/git-lfs,engsoonhock1967/git-lfs,sanoursa/git-lfs,rubiojr/git-lfs,ModernTechnologyPlayers01/git-lfs,larsxschneider/git-lfs,michael-k/git-lfs,ttaylorr/git-lfs,jmatt/git-lfs,clareliguori/git-lfs,JeckoHeroOrg/-git-lfs_miilkyway,github/git-lfs,modulexcite/git-lfs,Jericho25/-git-lfs_miilkyway,beni55/git-lfs,yonglehou/git-lfs,rtyley/git-lfs,michael-k/git-lfs,andyneff/git-lfs,aleb/git-lfs,bozaro/git-lfs,engsoonhock1967/git-lfs,beni55/git-lfs,ryansimmen/git-lfs,ryansimmen/git-lfs,jmatt/git-lfs,andyneff/git-lfs,sanoursa/git-lfs,Jericho25/-git-lfs_miilkyway,phungmy/git-lfs,billygor/git-lfs,dakotahawkins/git-lfs,github/git-lfs,WillHipschman/git-lfs,WillHipschman/git-lfs,Aorjoa/git-lfs,Aorjoa/git-lfs,billygor/git-lfs,Aorjoa/git-lfs,andyneff/git-lfs
6b265cafd003e86ff0aec08cac29ccb159a9aef5
.travis.yml
.travis.yml
--- language: node_js node_js: - "10" services: - docker sudo: false # For testing environment addons: chrome: stable branches: only: - master - /^greenkeeper/.*$/ - dev-1 # Version Matrix # Testing needs to pass: test-release # Deployment needs to pass: build-release env: - EMBER_TRY_SCENARIO=test-release - EMBER_TRY_SCENARIO=build-release jobs: fast_finish: true #allow_failures: # - env: EMBER_TRY_SCENARIO=ember-3.8.0-beta.1 include: - stage: test script: ember try:one $EMBER_TRY_SCENARIO - stage: deploy if: (branch = dev-1) OR (branch = master) skip_cleanup: true env: - EMBER_TRY_SCENARIO=build-release script: chmod +x .travis/docker_push.sh && .travis/docker_push.sh install: - npm install --no-package-lock
--- language: node_js node_js: - "10" services: - docker sudo: false # For testing environment addons: chrome: stable branches: only: - master - /^greenkeeper/.*$/ - dev-1 # Version Matrix # Testing needs to pass: test-release # Deployment needs to pass: build-release jobs: fast_finish: true #allow_failures: # - env: EMBER_TRY_SCENARIO=ember-3.8.0-beta.1 include: - stage: test env: - EMBER_TRY_SCENARIO=test-release script: ember try:one $EMBER_TRY_SCENARIO - stage: deploy if: (branch = dev-1) OR (branch = master) skip_cleanup: true env: - EMBER_TRY_SCENARIO=build-release script: chmod +x .travis/docker_push.sh && .travis/docker_push.sh install: - npm install --no-package-lock
Simplify the config in TravisCI
Simplify the config in TravisCI
YAML
apache-2.0
ExplorViz/explorviz-ui-frontend,ExplorViz/explorviz-ui-frontend,ExplorViz/explorviz-ui-frontend
48a37a2c474537f17a30242a97571d5939980730
.travis.yml
.travis.yml
sudo: false language: node_js cache: directories: - node_modules notifications: email: false node_js: - '6' - '5' - '4' - iojs-v3 - iojs-v2 - iojs-v1 - '0.12' before_install: - npm i -g npm@^2.0.0 before_script: - npm prune script: - npm test - npm run build after_success: - 'curl -Lo travis_after_all.py https://git.io/travis_after_all' - python travis_after_all.py - export $(cat .to_export_back) &> /dev/null - npm run coveralls - npm run semantic-release branches: except: - /^v\d+\.\d+\.\d+$/
sudo: false language: node_js cache: directories: - node_modules notifications: email: false node_js: - '6' - '5' - '4' - iojs-v3 - iojs-v2 - iojs-v1 - '0.12' before_install: - npm i -g npm@^2.0.0 before_script: - npm prune script: - npm run build - npm test after_success: - 'curl -Lo travis_after_all.py https://git.io/travis_after_all' - python travis_after_all.py - export $(cat .to_export_back) &> /dev/null - npm run coveralls - npm run semantic-release branches: except: - /^v\d+\.\d+\.\d+$/
Build needs to happen before test
chore: Build needs to happen before test
YAML
mit
mrsteele/json-truncate
dd8904bbfaf18c45c418cdd4d14c9ee1ea4a43a0
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3-p551 - 2.0.0-p648 - 2.1.10 - 2.2.6 - 2.3.3 - 2.4.0 before_install: - gem update --system - gem install bundler -v 1.14.6
language: ruby rvm: - 1.9.3-p551 - 2.0.0-p648 - 2.1.10 - 2.2.7 - 2.3.4 - 2.4.1 before_install: - gem update --system - gem install bundler -v 1.14.6
Update Travis CI settings to latest Rubies
Update Travis CI settings to latest Rubies Signed-off-by: Grant Ramsay <4ab1b2fdb7784a8f9b55e81e3261617f44fd0585@gmail.com>
YAML
mit
seapagan/update_repo,seapagan/update_repo,seapagan/update_repo,seapagan/update_repo
03b64e894738ca0c99667405799242f051e47236
.travis.yml
.travis.yml
language: go go: - 1.5.1 install: - go get -v golang.org/x/tools/cmd/vet - go get -v github.com/tools/godep - go get -v github.com/onsi/ginkgo/ginkgo script: bin/test --compilers=2 branches: only: - master
language: go go: - 1.4.2 install: - go get -v golang.org/x/tools/cmd/vet - go get -v github.com/tools/godep - go get -v github.com/onsi/ginkgo/ginkgo script: bin/test --compilers=2 branches: only: - master
Downgrade to go 1.4.2 in Travis
Downgrade to go 1.4.2 in Travis It appears there is an issue with calling flag.Parse() in an init() function when running tests via ginkgo, which passes its own flags. Signed-off-by: Kris Hicks <6d3f751023bc04266d4da2ff94804f4240839fe2@pivotal.io>
YAML
apache-2.0
brybwy/cli-plugin-repo,cloudfoundry-incubator/cli-plugin-repo,kkellner/cli-plugin-repo,kkellner/cli-plugin-repo,brybwy/cli-plugin-repo,brybwy/cli-plugin-repo,cloudfoundry-incubator/cli-plugin-repo,guidowb/cli-plugin-repo,guidowb/cli-plugin-repo,brybwy/cli-plugin-repo,guidowb/cli-plugin-repo,cloudfoundry-incubator/cli-plugin-repo,cloudfoundry-incubator/cli-plugin-repo,kkellner/cli-plugin-repo,guidowb/cli-plugin-repo
9301eb01f62a9ec2962a4c556fa418e270fbdae3
.travis.yml
.travis.yml
language: haskell notifications: email: false before_script: - cabal configure --enable-tests - cabal build script: - cabal test --show-details=always --test-options="--color"
language: haskell notifications: email: false before_script: - cabal configure --enable-tests - cabal build script: - cabal test --show-details=always --test-options="--color" - cabal run Junior
Add run Junior haskell interpreter to Travis
Add run Junior haskell interpreter to Travis
YAML
apache-2.0
holoed/Junior,holoed/Junior,holoed/Junior,holoed/Junior
03aa3233e848971a98d44a769a88efa75c004b33
shippable.yml
shippable.yml
language: scala services: env: - SIREUM_PARALLEL_BUILD=false build: pre_ci: pre_ci_boot: image_name: sireum/v3 image_tag: latest pull: true options: "-e HOME=/root" ci: - export JAVA_OPTIONS=-Xmx2G -XX:+UseG1GC -XX:ReservedCodeCacheSize=1G -Xss1M -XX:+CMSClassUnloadingEnabled - bin/sbt-launch.sh clean test:compile test post_ci: on_success: on_failure: push: cache: true
language: scala services: env: global: - SIREUM_PARALLEL_BUILD=false - JAVA_OPTIONS=-Xmx2G -XX:+UseG1GC -XX:ReservedCodeCacheSize=1G -Xss1M -XX:+CMSClassUnloadingEnabled build: pre_ci: pre_ci_boot: image_name: sireum/v3 image_tag: latest pull: true options: "-e HOME=/root" ci: - bin/sbt-launch.sh clean test:compile test post_ci: on_success: on_failure: push: cache: true
Use env global for multiple env vars in one build matrix.
Use env global for multiple env vars in one build matrix.
YAML
bsd-2-clause
sireum/v3,sireum/v3,sireum/v3,sireum/v3
cfa3d34ab1e99203894ad8d21aff2030520742e6
ab_tests/ab_tests.yaml
ab_tests/ab_tests.yaml
# List the variants for your AB or multivariate test here. # Please leave the 'Example' test config in place. --- - Example: - A - B - TaskListBrowse: - A - B - TaskListHeader: - A - B - TaskListSidebar: - A - B - CivilPartnershipTaskListSidebar: - A - B - CivilPartnershipTaskListHeader: - A - B - GetADivorceTaskListSidebar: - A - B - GetADivorceTaskListHeader: - A - B
# List the variants for your AB or multivariate test here. # Please leave the 'Example' test config in place. --- - Example: - A - B - TaskListBrowse: - A - B - TaskListHeader: - A - B - TaskListSidebar: - A - B - CivilPartnershipTaskListSidebar: - A - B - CivilPartnershipTaskListHeader: - A - B - GetADivorceTaskListSidebar: - A - B - GetADivorceTaskListHeader: - A - B - GuideChapterNav: - A - B
Add Guide Chapter Nav AB test
Add Guide Chapter Nav AB test This will be to test a new style of chapter navigation on guides that does not use numbers, as we think this might clash with step by step navigation.
YAML
mit
alphagov/fastly-configure,alphagov/fastly-configure,alphagov/fastly-configure
ac367823466bf24ed4142ecf707ff49d0dba5756
.github/workflows/ci.yaml
.github/workflows/ci.yaml
name: Java CI on: [push, pull_request] jobs: test: runs-on: ${{ matrix.os }} strategy: matrix: java: [11, 17, 18-ea] os: [windows-2019, windows-latest] fail-fast: false max-parallel: 4 name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} steps: - uses: actions/checkout@v3 - name: Set up JDK uses: actions/setup-java@v2 with: java-version: ${{ matrix.java }} distribution: zulu - name: Test with Maven run: ./mvnw test -B -D"license.skip=true"
name: Java CI on: [push, pull_request] jobs: test: runs-on: ${{ matrix.os }} strategy: matrix: os: [windows-2019, windows-latest] java: [11, 17, 18] fail-fast: false max-parallel: 4 name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} steps: - uses: actions/checkout@v3 - name: Set up JDK uses: actions/setup-java@v2 with: java-version: ${{ matrix.java }} distribution: zulu - name: Test with Maven run: ./mvnw test -B -D"license.skip=true"
Move to jdk 18 proper
[actions] Move to jdk 18 proper
YAML
mit
Waffle/waffle,Waffle/waffle,hazendaz/waffle,dblock/waffle,dblock/waffle,dblock/waffle,hazendaz/waffle,dblock/waffle,hazendaz/waffle,Waffle/waffle
f782c042d0f56ace0060aa91fd9b2693dddc3b44
packages/bi/bittrex.yaml
packages/bi/bittrex.yaml
homepage: https://github.com/dmjio/bittrex changelog-type: markdown hash: 9beeb7edddc6e4072b9a78fd1bfa2b3d286efbbaa0ead52ac047d71fdd5cb6d5 test-bench-deps: {} maintainer: djohnson.m@gmail.com synopsis: API bindings to bittrex.com changelog: ! '# Revision history for bittrex ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. ' basic-deps: bytestring: -any lens-aeson: -any SHA: -any split: -any base: <5 time: -any text: -any wreq: -any bittrex: -any lens: -any http-client-tls: -any scientific: -any aeson: -any all-versions: - '0.1.0.0' - '0.2.0.0' - '0.3.0.0' - '0.4.0.0' - '0.5.0.0' author: David Johnson latest: '0.5.0.0' description-type: haddock description: Haskell bindings to the Bittrex exchange license-name: BSD3
homepage: https://github.com/dmjio/bittrex changelog-type: markdown hash: bcf5692eab266781b71915e7470ff8c82e527eaab8561cca9a715e3258ef2a04 test-bench-deps: {} maintainer: djohnson.m@gmail.com synopsis: Bindings for the Bittrex API changelog: ! '# Revision history for bittrex ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. ' basic-deps: bytestring: -any lens-aeson: -any SHA: -any split: -any flow: -any base: <5 time: -any text: -any turtle: -any wreq: -any bittrex: -any lens: -any http-client-tls: -any scientific: -any aeson: -any all-versions: - '0.1.0.0' - '0.2.0.0' - '0.3.0.0' - '0.4.0.0' - '0.5.0.0' - '0.6.0.0' author: David Johnson latest: '0.6.0.0' description-type: haddock description: Haskell bindings to the Bittrex exchange license-name: BSD3
Update from Hackage at 2018-01-08T05:53:14Z
Update from Hackage at 2018-01-08T05:53:14Z
YAML
mit
commercialhaskell/all-cabal-metadata
623cb6e1f0134c12eee1d3037e516d7610eb6ae9
.github/workflows/google-play.yaml
.github/workflows/google-play.yaml
name: Google Play Alpha on: push: tags: - "v[0-9]+.[0-9]+.[0-9]+" # Matches "v1.2.3" but not "v1.2.3.4" jobs: build: runs-on: ubuntu-latest steps: - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Read GitHub Secrets & Decrypt Encrypted Files env: GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }} run: | ./decrypt-secrets.sh echo "KEYSTORE_PASSWORD=$KEYSTORE_PASSWORD" >> $GITHUB_ENV - name: Gradle Publish APK run: ./gradlew publishReleaseApk
name: Google Play Alpha on: push: tags: - "v[0-9]+.[0-9]+.[0-9]+" # Matches "v1.2.3" but not "v1.2.3.4" jobs: build: runs-on: ubuntu-latest steps: - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Read GitHub Secrets & Decrypt Encrypted Files env: GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }} run: | pwd ls ./decrypt-secrets.sh echo "KEYSTORE_PASSWORD=$KEYSTORE_PASSWORD" >> $GITHUB_ENV - name: Gradle Publish APK run: ./gradlew publishReleaseApk
Print debug information `pwd` and `ls` to the output in GitHub Actions workflow.
Print debug information `pwd` and `ls` to the output in GitHub Actions workflow.
YAML
apache-2.0
google/evergreen-checker,google/evergreen-checker
706bee194fba5a4eb09f102cb34e3ed6e1d01c90
.github/workflows/publish-gem.yaml
.github/workflows/publish-gem.yaml
name: publish-gem on: push: tags: - v* jobs: publish-gem: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: '3.1' bundler-cache: true - name: Setup credentials run: | mkdir -p ~/.gem cat << EOF > ~/.gem/credentials --- :github: Bearer ${GITHUB_TOKEN} :rubygems_api_key: ${RUBYGEMS_API_KEY} EOF chmod 0600 ~/.gem/credentials env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }} - name: Release Gem run: | bundle exec rake release
name: publish-gem on: push: tags: - v* jobs: publish-gem: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: '3.1' bundler-cache: true - name: Setup credentials run: | mkdir -p ~/.gem cat << EOF > ~/.gem/credentials --- :github: Bearer ${GITHUB_TOKEN} :rubygems_api_key: ${RUBYGEMS_API_KEY} EOF chmod 0600 ~/.gem/credentials env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }} - name: Release Gem run: | bundle exec rake release
Update actions/checkout action to v3
Update actions/checkout action to v3
YAML
mit
yuya-takeyama/jr
a38411dbc3a428304497b86d5df73ec080a229c6
.github/workflows/windows_test.yml
.github/workflows/windows_test.yml
name: Test on windows on: push: branches: - master pull_request: jobs: ci-test: runs-on: windows-latest defaults: run: shell: msys2 {0} steps: - name: Checkout sources uses: actions/checkout@v1 - uses: msys2/setup-msys2@v2 with: msystem: MINGW64 update: false install: >- curl base-devel mingw-w64-x86_64-cfitsio mingw-w64-x86_64-pkg-config - name: Install toolchain uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: stable override: true components: rustfmt, clippy target: x86_64-pc-windows-gnu default: true - name: Checkout sources uses: actions/checkout@v1 - name: Test the code run: C:/Users/runneradmin/.cargo/bin/cargo.exe test -p fitsio --target x86_64-pc-windows-gnu continue-on-error: false env: PKG_CONFIG_SYSROOT_DIR: /mingw64 PKG_CONFIG_PATH: /mingw64/lib/pkgconfig PKG_CONFIG: /mingw64/bin/pkg-config PATH: /mingw64/bin:$PATH
name: Test on windows on: push: branches: - master pull_request: jobs: ci-test: runs-on: windows-latest defaults: run: shell: msys2 {0} steps: - name: Checkout sources uses: actions/checkout@v1 - uses: msys2/setup-msys2@v2 with: msystem: MINGW64 update: false install: >- curl base-devel mingw-w64-x86_64-cfitsio mingw-w64-x86_64-pkg-config - name: Install toolchain uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: stable override: true components: rustfmt, clippy target: x86_64-pc-windows-gnu default: true - name: Checkout sources uses: actions/checkout@v1 - name: Test the code run: C:/Users/runneradmin/.cargo/bin/cargo.exe --verbose test -p fitsio --target x86_64-pc-windows-gnu continue-on-error: false env: PKG_CONFIG_SYSROOT_DIR: /mingw64 PKG_CONFIG_PATH: /mingw64/lib/pkgconfig PKG_CONFIG: /mingw64/bin/pkg-config PATH: /mingw64/bin:$PATH
Print compile command in verbose mode
Print compile command in verbose mode This will help us diagnose problems.
YAML
apache-2.0
mindriot101/rust-fitsio,mindriot101/rust-fitsio,mindriot101/rust-fitsio,mindriot101/rust-fitsio,mindriot101/rust-fitsio
f01dec709bfcf718e5fc76c915b2a865dd610e11
packages/gr/gridbox.yaml
packages/gr/gridbox.yaml
homepage: https://github.com/zaidan/gridbox#readme changelog-type: '' hash: 2ae6773549fa0bf6f8667a15718835abf83fe704395fc4713a5c56e05cbc6e27 test-bench-deps: base: ! '>=4.9 && <5.0' hspec: -any gridbox: -any maintainer: firas@zaidan.de synopsis: A grid box model changelog: '' basic-deps: base: ! '>=4.9 && <5.0' all-versions: - '0.0.0.1' author: Firas Zaidan latest: '0.0.0.1' description-type: markdown description: ! "# GridBox - A grid box model\n[![Hackage](https://img.shields.io/hackage/v/gridbox.svg)](https://hackage.haskell.org/package/gridbox)\n\nSpans a 2D grid of n rows and m boxes with equal size. \n\n## Credits\n\n * [Firas Zaidan](https://github.com/zaidan)\n\n## License\n\nSee `LICENSE` file.\n" license-name: MIT
homepage: https://github.com/zaidan/gridbox#readme changelog-type: '' hash: 414b8f85afeace4d3489aa054bfe1e5213ddb43ba2c24997cbda1a4517dce8bf test-bench-deps: base: ! '>=4.9 && <5.0' hspec: -any gridbox: -any maintainer: firas@zaidan.de synopsis: A grid box model changelog: '' basic-deps: base: ! '>=4.9 && <5.0' all-versions: - '0.0.0.1' - '0.1.0.0' author: Firas Zaidan latest: '0.1.0.0' description-type: markdown description: ! "# GridBox - A grid box model\n[![Hackage](https://img.shields.io/hackage/v/gridbox.svg)](https://hackage.haskell.org/package/gridbox)\n\nSpans a 2D grid of n rows and m boxes with equal size. \n\n## Credits\n\n * [Firas Zaidan](https://github.com/zaidan)\n\n## License\n\nSee `LICENSE` file.\n" license-name: MIT
Update from Hackage at 2017-02-09T18:04:00Z
Update from Hackage at 2017-02-09T18:04:00Z
YAML
mit
commercialhaskell/all-cabal-metadata
0f806cd0597850a4ade558b347fae66e6d1ea387
packages/sw/swagger.yaml
packages/sw/swagger.yaml
homepage: '' changelog-type: '' hash: 853b4117cdc8e6059764fe8fcbdd9985e16dc221fe294df72253106567827010 test-bench-deps: bytestring: -any swagger: -any base: -any tasty-hunit: ! '>=0.8' tasty: ! '>=0.8' aeson: -any maintainer: Toralf Wittner <tw@dtex.org> synopsis: Implementation of swagger data model changelog: '' basic-deps: bytestring: ! '>=0.10.4 && <1.0' base: ==4.* time: ! '>=1.4 && <2.0' text: ! '>=0.11 && <2.0' transformers: ! '>=0.3 && <1.0' aeson: ! '>=0.6 && <1.0' all-versions: - '0.1' - '0.2' - '0.2.1' - '0.2.2' author: Toralf Wittner latest: '0.2.2' description-type: haddock description: ! 'Implementation of Swagger specification version 1.2 as defined in <https://github.com/wordnik/swagger-spec/blob/master/versions/1.2.md>' license-name: OtherLicense
homepage: '' changelog-type: '' hash: ecabd501ebebd2a344ed21f01adfa598fbe41d40c0619d04aaa611815b659006 test-bench-deps: bytestring: -any swagger: -any base: -any tasty-hunit: ! '>=0.8' tasty: ! '>=0.8' aeson: -any maintainer: Toralf Wittner <tw@dtex.org> synopsis: Implementation of swagger data model changelog: '' basic-deps: bytestring: ! '>=0.10.4' base: ! '>=4.6 && <5.0' time: ! '>=1.4' text: ! '>=0.11' transformers: ! '>=0.3' aeson: ! '>=0.6' all-versions: - '0.1' - '0.2' - '0.2.1' - '0.2.2' - '0.3.0' author: Toralf Wittner latest: '0.3.0' description-type: haddock description: ! 'Implementation of Swagger specification version 1.2 as defined in <https://github.com/wordnik/swagger-spec/blob/master/versions/1.2.md>' license-name: OtherLicense
Update from Hackage at 2016-09-18T21:59:35+00:00
Update from Hackage at 2016-09-18T21:59:35+00:00
YAML
mit
commercialhaskell/all-cabal-metadata
491abbde2652fe0bb6704ecd4cb8a2a4bf7150a3
packages/th/theatre.yaml
packages/th/theatre.yaml
homepage: https://github.com/nikita-volkov/theatre changelog-type: '' hash: f52a416f91a0f051b7bd29e0e55720209f15bb34e918fdd2189c3011316265e2 test-bench-deps: {} maintainer: Nikita Volkov <nikita.y.volkov@mail.ru> synopsis: Minimalistic actor library changelog: '' basic-deps: base-prelude: ! '>=0.1.19 && <2' base: ! '>=4.8 && <5' slave-thread: ==1.* semigroups: ! '>=0.18 && <0.20' contravariant: ! '>=1.3 && <2' unagi-chan: ==0.4.* all-versions: - '1' author: Nikita Volkov <nikita.y.volkov@mail.ru> latest: '1' description-type: haddock description: '' license-name: MIT
homepage: https://github.com/nikita-volkov/theatre changelog-type: '' hash: a61d0f49cf60632538dbe0e173e93481df6857ec0f96939983592375eac47722 test-bench-deps: {} maintainer: Nikita Volkov <nikita.y.volkov@mail.ru> synopsis: Minimalistic actor library changelog: '' basic-deps: base: '>=4.9 && <5' slave-thread: ==1.* semigroups: '>=0.18 && <0.20' contravariant: '>=1.3 && <2' unagi-chan: ==0.4.* all-versions: - '1' - 1.0.0.1 author: Nikita Volkov <nikita.y.volkov@mail.ru> latest: 1.0.0.1 description-type: haddock description: '' license-name: MIT
Update from Hackage at 2020-06-20T10:20:45Z
Update from Hackage at 2020-06-20T10:20:45Z
YAML
mit
commercialhaskell/all-cabal-metadata
6b8055adcdb5a1ba7cfdf399f027b317506adb48
packages/go/googlepolyline.yaml
packages/go/googlepolyline.yaml
homepage: https://github.com/lornap/googlepolyline changelog-type: '' hash: 49e5f8d6e9f1c8b97fcefdb4ddb7258399515166c7eea1b2536d164f5b72629c test-bench-deps: test-framework-hunit: ! '>=0.3 && <0.4' bytestring: ! '>=0.10 && <0.11' test-framework: ! '>=0.8 && <0.9' base: ! '>=4.7 && <4.8' googlepolyline: -any text: ! '>=1.2 && <1.3' test-framework-quickcheck2: ! '>=0.3 && <0.4' HUnit: ! '>=1.2 && <1.3' QuickCheck: ! '>=2.7 && <2.8' maintainer: me@lorne.me synopsis: Google Polyline Encoder/Decoder changelog: '' basic-deps: bytestring: ! '>=0.10 && <0.11' base: ! '>=4.7 && <4.8' text: ! '>=1.2 && <1.3' all-versions: - '0.1.0.0' - '0.1.0.1' author: Lorne Applebaum latest: '0.1.0.1' description-type: haddock description: Encoding and decoding functions for Google Maps' polyline format. license-name: MIT
homepage: https://github.com/lornap/googlepolyline changelog-type: '' hash: 5c43cf177cb2fac65bf499e60cea80bbedba361b1a068a0680c1ac8f671bffc7 test-bench-deps: test-framework-hunit: ! '>=0.3 && <0.4' bytestring: ! '>=0.10 && <0.11' test-framework: ! '>=0.8 && <0.9' base: ! '>=4.7 && <4.9' googlepolyline: -any text: ! '>=1.2 && <1.3' test-framework-quickcheck2: ! '>=0.3 && <0.4' HUnit: ! '>=1.2 && <1.4' QuickCheck: ! '>=2.7 && <2.9' maintainer: me@lorne.me synopsis: Google Polyline Encoder/Decoder changelog: '' basic-deps: bytestring: ! '>=0.10 && <0.11' base: ! '>=4.7 && <4.9' text: ! '>=1.2 && <1.3' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' author: Lorne Applebaum latest: '0.1.0.2' description-type: haddock description: Encoding and decoding functions for Google Maps' polyline format. license-name: MIT
Update from Hackage at 2016-04-16T20:20:22+0000
Update from Hackage at 2016-04-16T20:20:22+0000
YAML
mit
commercialhaskell/all-cabal-metadata
9f632698b51e2cad00a92b96899236a7380b8b84
config/config.example.yml
config/config.example.yml
client : # Twitterの設定 # CK,CS,AT,ATS twitter : consumer_key : "" consumer_secret : "" access_token : "" access_token_secret : "" # Slackの設定 # トークンとチャンネル名のみ slack : token : "" channel : "" data : log : file : "/log/log.log" level : :debug dump : file : "/data/dump.json"
client : # Twitterの設定 # CK,CS,AT,ATS twitter : consumer_key : "" consumer_secret : "" access_token : "" access_token_secret : "" # Slackの設定 # トークンとチャンネル名のみ slack : token : "" channel : "" data : log : file : "/log/log.log" level : :debug dump : file : "/data/dump.json" urls : 雨宮天 : url : "https://ameblo.jp/amamiyasorablog/" parser : TrySailBlogNotification::Parser::User::SoraAmamiya 麻倉もも : url : "https://ameblo.jp/asakuramomoblog/" parser : TrySailBlogNotification::Parser::User::MomoAsakura 夏川椎菜 : url : "https://ameblo.jp/natsukawashiinablog/" parser : TrySailBlogNotification::Parser::User::ShiinaNatsukawa
Add urls to config file
Add urls to config file
YAML
mit
Hiroto-K/trysail-blog-notification
574e37282bd7de773193627e29e275ee02b82e78
_config.yml
_config.yml
# Site settings title: Sébastien Maret header-img: img/home-bg.jpg email: sebastien.maret@icloud.com baseurl: "" url: "http://smaret.github.io" twitter_username: sebastienmaret github_username: smaret facebook_username: sebastienmaret # Build settings markdown: kramdown highlighter: pygments permalink: pretty paginate: 5 exclude: ["less","node_modules","Gruntfile.js","package.json","README.md"]
# Site settings title: Sébastien Maret header-img: img/home-bg.jpg email: sebastien.maret@icloud.com baseurl: "" url: "http://smaret.github.io" twitter_username: sebastienmaret github_username: smaret # Build settings markdown: kramdown highlighter: pygments permalink: pretty paginate: 5 exclude: ["less","node_modules","Gruntfile.js","package.json","README.md"]
Remove link to Facebook page
Remove link to Facebook page
YAML
mit
smaret/smaret.github.io,smaret/smaret.github.io
f2aea662cef19317c36dd5ef05548317a5a799ae
_config.yml
_config.yml
name: I. Am. Carrico. author: http://iamcarrico.com/about/ lsi: false debug: false permalink: /writings/:title/ url: http://iamcarrico.com paginate: 4 paginate_path: "writings/page/:num/" timezone: America/Chicago future: true category_dir: topics exclude: - CONTRIBUTING.md - README.md - config.rb - package.json - gulpfile.js - node_modules - Gemfile - Gemfile.lock - css - LICENSE markdown: redcarpet redcarpet: extensions: [with_toc_data] development: false gems: - jekyll-sitemap - jekyll-redirect-from assets: dirname: assets sources: - js - css - img - bower_components js_compressor: 'uglifier' css_compressor: 'yui' cache: true collections: talks: output: true permalink: /talks/:year/:path/
name: I. Am. Carrico. author: http://iamcarrico.com/about/ lsi: false debug: false # Temporarily in here while I debug stuff. minify_html: false permalink: /writings/:title/ url: http://iamcarrico.com paginate: 4 paginate_path: "writings/page/:num/" timezone: America/Chicago future: true category_dir: topics exclude: - CONTRIBUTING.md - README.md - config.rb - package.json - gulpfile.js - node_modules - Gemfile - Gemfile.lock - css - LICENSE markdown: redcarpet redcarpet: extensions: [with_toc_data] development: false gems: - jekyll-sitemap - jekyll-redirect-from assets: dirname: assets sources: - js - css - img - bower_components js_compressor: 'uglifier' css_compressor: 'yui' cache: true collections: talks: output: true permalink: /talks/:year/:path/
Remove HTML compression, might be messing up GA
Remove HTML compression, might be messing up GA
YAML
mit
iamcarrico/iamcarrico,iamcarrico/iamcarrico,iamcarrico/iamcarrico,iamcarrico/iamcarrico
4675e65b67516b1ca21f9e61eec38990e151a4b4
_config.yml
_config.yml
# Site settings title: "Paper Jekyll Theme" description: > Write a description of your website here. author: Johnny Appleseed email: johnny@appleseed.com twitter_username: github_username: baseurl: "/paper-jekyll-theme" # the subpath of your site, e.g. /blog url: "https://deadbeef.me" # the base hostname & protocol for your site google_analytics_id: UA-1111111111-1 disqus_id: # Build settings include: [_pages] markdown: kramdown permalink: /:year/:month/:title sass: style: compressed exclude: [vendor]
# Site settings title: "Paper Jekyll Theme" description: > Write a description of your website here. author: Johnny Appleseed email: johnny@appleseed.com twitter_username: _HairForceOne github_username: mkchoi212 baseurl: "/paper-jekyll-theme" # the subpath of your site, e.g. /blog url: "https://deadbeef.me" # the base hostname & protocol for your site google_analytics_id: UA-1111111111-1 disqus_id: # Build settings include: [_pages] markdown: kramdown permalink: /:year/:month/:title sass: style: compressed exclude: [vendor]
Add dummy twitter and github accounts
Add dummy twitter and github accounts
YAML
mit
surajsharma/surajsharma.github.io,surajsharma/surajsharma.github.io,surajsharma/surajsharma.github.io
7f5c6676d7fbbf8da0dc6152ae2adf73670b742a
_config.yml
_config.yml
name: Jekyll Index Config Plugin markdown: redcarpet highlighter: false index: home.markdown defaults: - scope: path: "" values: layout: default exclude: - LICENSE - README.md - spec
name: Jekyll Index Config Plugin markdown: redcarpet highlighter: false index: home.markdown defaults: - scope: path: "" values: layout: default exclude: - LICENSE - README.md - spec - Gemfile - Gemfile.lock
Add Gemfiles to jekyll ignore
Add Gemfiles to jekyll ignore
YAML
mit
ngmaloney/jekyll-index-config,ngmaloney/jekyll-index-config
45b85871f62154659216602645980722912669f7
_config.yml
_config.yml
markdown: redcarpet highlighter: pygments permalink: /:title url: "http://jonnyparris.github.io" baseurl: "" twitter_username: jonnyparris github_username: jonnyparris description: "Ruskin's tech blog" title: ruskindex.html email: ruskin.constant@gmail.com redcarpet: extensions: [strikethrough, tables] sass: sass_dir: public/css style: :compressed
highlighter: rouge permalink: /:title url: "http://jonnyparris.github.io" baseurl: "" twitter_username: jonnyparris github_username: jonnyparris description: "Ruskin's tech blog" title: ruskindex.html email: ruskin.constant@gmail.com redcarpet: extensions: [strikethrough, tables] sass: sass_dir: public/css style: :compressed
Address build errors from config file
Address build errors from config file
YAML
mit
jonnyparris/jonnyparris.github.io,jonnyparris/jonnyparris.github.io
8d44ffbd3958b24ddae0248de440f7c9baa1f86d
_config.yml
_config.yml
title: John Doe # your name (or website title) here logo: "/images/profile-pic-2.png?raw=true" # your photo (or logo) here description: > # your text below (remove <br> elements if you don't need line breaks) First description <br><br> Second description <br><br> <a href="https://www.linkedin.com/in/example/">View My LinkedIn Profile</a> theme: jekyll-theme-minimal google_analytics: UA-000000-0 # your Google Analytics tracking ID here
title: Darius Atmar # your name (or website title) here logo: "/images/profile-pic-2.png?raw=true" # your photo (or logo) here description: > # your text below (remove <br> elements if you don't need line breaks) Data Scientist <br><br> <a href="https://www.linkedin.com/in/dariusatmar/">View My LinkedIn Profile</a> theme: jekyll-theme-minimal google_analytics: UA-176995351-1 # your Google Analytics tracking ID here
Change personal info and add google analytics
Change personal info and add google analytics
YAML
mit
datmar/datmar.github.io
f5a0b1410218d71c85e3cb2a358d4280a4b1ce8a
_config.yml
_config.yml
# Site settings title: thirty-four email: blog@posnick.org description: "thirty-four is crafted with love in Brooklyn, by Jeff Posnick." baseurl: "" url: "https://jeffy.info" github: username: jeffposnick twitter: username: jeffposnick logo: /assets/images-min/34.png # Build settings markdown: kramdown exclude: ["node_modules", "Gemfile", "Gemfile.lock", "LICENSE", "package.json", "README.md", "src"]
# Site settings title: thirty-four email: blog@posnick.org description: "thirty-four is crafted with love in Brooklyn, by Jeff Posnick." baseurl: "" url: "https://jeffy.info" github: username: jeffposnick twitter: username: jeffposnick logo: /assets/images-min/34.png # Build settings markdown: kramdown exclude: ["node_modules", "Gemfile", "Gemfile.lock", "LICENSE", "package.json", "README.md", "src", "gulpfile.js"]
Exclude gulpfile.js from the build.
Exclude gulpfile.js from the build.
YAML
cc0-1.0
jeffposnick/jeffposnick.github.io,jeffposnick/jeffposnick.github.io,jeffposnick/jeffposnick.github.io
e46cbec28afb245b231780b49bcdf5a7ebfdfd5b
_config.yml
_config.yml
title: seattle.rs email: trey@seattle.rs description: > Seattle's Rust meetup group, seattle.rs. We have talks about learning and using Rust in today's industry. baseurl: "" url: "http://seattle.rs" twitter_username: seattlers github_username: seattlers # Build settings excerpt_separator: "<!--more-->" markdown: kramdown collections: - meetups timezone: America/Los_Angeles
title: seattle.rs email: joe@lemma.co description: > Seattle's Rust meetup group, seattle.rs. We have talks about learning and using Rust in today's industry. baseurl: "" url: "https://seattle.rs" twitter_username: seattlers github_username: seattlers # Build settings excerpt_separator: "<!--more-->" markdown: kramdown collections: - meetups timezone: America/Los_Angeles
Update URL scheme and contact
Update URL scheme and contact
YAML
mit
seattlers/seattle.rs
c0798ad19fdf84e9712beba54c794b677e266b85
data/building-hours/8-alh.yaml
data/building-hours/8-alh.yaml
name: Alumni Hall image: alumni-hall category: Academia schedule: - title: Hours hours: - {days: [Mo, Tu, We, Th, Fr], from: '7:00am', to: '5:00pm'} breakSchedule: fall: [] thanksgiving: [] winter: [] interim: [] spring: [] easter: [] summer: - title: Hours hours: - {days: [Mo, Tu, We, Th], from: '7:00am', to: '4:30pm'} - {days: [Fr], from: '7:00am', to: '12:00pm'}
name: Alumni Hall image: alumni-hall category: Academia schedule: - title: Hours hours: # - {days: [Mo, Tu, We, Th, Fr], from: '7:00am', to: '5:00pm'} breakSchedule: fall: [] thanksgiving: [] winter: [] interim: [] spring: [] easter: [] summer: - title: Hours hours: - {days: [Mo, Tu, We, Th], from: '7:00am', to: '4:30pm'} - {days: [Fr], from: '7:00am', to: '12:00pm'}
Comment out AY hours for ALH
Comment out AY hours for ALH
YAML
agpl-3.0
StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native
869447cbf3e1207f04bba116585af3cb02b6e3e1
generators/deployment/templates/manifest_master.yml
generators/deployment/templates/manifest_master.yml
--- applications: - instances: 1 timeout: 180 {{#if this.name }} name: {{{this.name}}} {{/if ~}} {{#if this.buildpack }} buildpack: {{{this.buildpack}}} {{/if ~}} {{#if this.command }} command: {{{this.command}}} {{/if ~}} {{#if this.path }} path: {{{this.path}}} {{/if ~}} {{#if this.disk_quota }} disk_quota: {{{this.disk_quota}}} {{/if ~}} {{#if this.memory }} memory: {{{this.memory}}} {{/if ~}} {{#if this.domain }} domain: {{{this.domain}}} {{/if ~}} {{#if this.host }} host: {{{this.host}}} {{else}} random-route: true {{/if ~}} {{#if this.services }} services: {{#each this.services}} - {{{this}}} {{/each}} {{/if ~}} {{#if this.env}} env: {{#each this.env}} {{{@key}}} : {{{this}}} {{/each}} {{/if ~}}
--- applications: - instances: 1 timeout: 180 {{#if this.name }} name: {{{this.name}}} {{/if ~}} {{#if this.buildpack }} buildpack: {{{this.buildpack}}} {{/if ~}} {{#if this.command }} command: {{{this.command}}} {{/if ~}} {{#if this.path }} path: {{{this.path}}} {{/if ~}} {{#if this.disk_quota }} disk_quota: {{{this.disk_quota}}} {{/if ~}} {{#if this.memory }} memory: {{{this.memory}}} {{/if ~}} {{#if this.domain }} domain: {{{this.domain}}} {{/if ~}} {{#if this.host }} host: {{{this.host}}} {{else}} random-route: true {{/if ~}} {{#if this.health-check-type}} health-check-type: {{{this.health-check-type}}} {{/if ~}} {{#if this.health-check-http-endpoint}} health-check-http-endpoint: {{{this.health-check-http-endpoint}}} {{/if ~}} {{#if this.services }} services: {{#each this.services}} - {{{this}}} {{/each}} {{/if ~}} {{#if this.env}} env: {{#each this.env}} {{{@key}}} : {{{this}}} {{/each}} {{/if ~}}
Add support for health check
Add support for health check
YAML
apache-2.0
ibm-developer/generator-ibm-cloud-enablement,ibm-developer/generator-ibm-cloud-enablement,ibm-developer/generator-ibm-cloud-enablement
1f1421a2fd3d5e286efc91578bcc46f574179e78
packages/sy/symantic-base.yaml
packages/sy/symantic-base.yaml
homepage: '' changelog-type: '' hash: dc696611471b6f0bb0de72b83d6ebd0e2c8f5e6eeee34afa36240fc3e0e53806 test-bench-deps: {} maintainer: Julien Moutinho <julm+symantic-base@sourcephile.fr> synopsis: Basic symantics for writing Embedded Domain-Specific Languages (EDSL). changelog: '' basic-deps: base: '>=4.10 && <5' all-versions: - 0.0.0.20200708 author: Julien Moutinho <julm+symantic-base@sourcephile.fr> latest: 0.0.0.20200708 description-type: haddock description: A collection of basic tagless-final combinators. license-name: GPL-3.0-only
homepage: '' changelog-type: '' hash: 1ccbb4ed274fb77cdfc345cf314fc6b9440230139bd98c5c6ddf3051c05b5e93 test-bench-deps: {} maintainer: Julien Moutinho <julm+symantic-base@sourcephile.fr> synopsis: Basic symantics for writing Embedded Domain-Specific Languages (EDSL). changelog: '' basic-deps: base: '>=4.10 && <5' all-versions: - 0.0.0.20200708 - 0.0.1.20200708 author: Julien Moutinho <julm+symantic-base@sourcephile.fr> latest: 0.0.1.20200708 description-type: haddock description: A collection of basic tagless-final combinators. license-name: GPL-3.0-only
Update from Hackage at 2020-08-18T09:27:06Z
Update from Hackage at 2020-08-18T09:27:06Z
YAML
mit
commercialhaskell/all-cabal-metadata
96f0c1128bc4683687f3abad67f070581cfc5864
app.yaml
app.yaml
application: kaffeeshare version: alpha2go runtime: go api_version: go1 instance_class: F1 automatic_scaling: min_idle_instances: 1 max_idle_instances: automatic # default value min_pending_latency: 30ms # default value max_pending_latency: automatic max_concurrent_requests: 15 default_expiration: "10m" inbound_services: - mail handlers: - url: /robots.txt static_files: static/robots.txt upload: static/robots.txt - url: /favicon.ico static_files: static/favicon.ico upload: static/favicon.ico expiration: "24h" - url: /static static_dir: static - url: /.* script: _go_app - url: /_ah/mail/ script: _go_app - url: /c/clear_test script: _go_app login: admin - url: /t/search/add_to_index script: _go_app login: admin # Just to prevent the queries to the old RSS feed URL hitting the app - url: /feed static_dir: static expiration: "48h"
application: kaffeeshare version: alpha2go runtime: go api_version: go1 instance_class: F1 automatic_scaling: min_idle_instances: 0 max_idle_instances: automatic # default value min_pending_latency: 30ms # default value max_pending_latency: automatic max_concurrent_requests: 15 default_expiration: "10m" inbound_services: - mail handlers: - url: /robots.txt static_files: static/robots.txt upload: static/robots.txt - url: /favicon.ico static_files: static/favicon.ico upload: static/favicon.ico expiration: "24h" - url: /static static_dir: static - url: /.* script: _go_app - url: /_ah/mail/ script: _go_app - url: /c/clear_test script: _go_app login: admin - url: /t/search/add_to_index script: _go_app login: admin # Just to prevent the queries to the old RSS feed URL hitting the app - url: /feed static_dir: static expiration: "48h"
Disable the instance that is always running.
Disable the instance that is always running.
YAML
mit
koffeinsource/kaffeeshare,koffeinsource/kaffeeshare,koffeinsource/kaffeeshare
41845e7a1700ec9f517c6c095f4e82cb176a598c
handlers/main.yml
handlers/main.yml
--- - name: restart mysql service: > name={{ mysql_daemon }} state=restarted
--- - name: restart mysql command: "service {{ mysql_daemon }} restart" # - name: restart mysql # service: > # name={{ mysql_daemon }} # state=restarted
Use command instead of service module for mysql restart.
Use command instead of service module for mysql restart.
YAML
mit
singleplatform-eng/ansible-role-mysql
17c041372536601d3d3f4b104589a5ec884d538e
rest-api/src/main/resources/paths/subpopulations/v3_subpopulations.yml
rest-api/src/main/resources/paths/subpopulations/v3_subpopulations.yml
get: operationId: getSubpopulations summary: Get all subpopulations in this study tags: - Subpopulations - _For Developers security: - BridgeSecurity: [] parameters: - name: includeDeleted in: query type: boolean default: false description: Should deleted items be returned in results? responses: 200: description: OK schema: $ref: ../../definitions/paged_resources/subpopulation.yml 401: $ref: ../../responses/401.yml 403: $ref: ../../responses/403_not_developer.yml post: operationId: createSubpopulation summary: Create a new subpopulation tags: - Subpopulations - _For Developers security: - BridgeSecurity: [] parameters: - name: Subpopulation in: body description: New subpopulation required: true schema: $ref: ../../definitions/subpopulation.yml responses: 201: description: Created schema: $ref: ../../definitions/guid_version_holder.yml 401: $ref: ../../responses/401.yml 403: $ref: ../../responses/403_not_developer.yml
get: operationId: getSubpopulations summary: Get all subpopulations in this study tags: - Subpopulations - _For Developers security: - BridgeSecurity: [] parameters: - $ref: ../../index.yml#/parameters/includeDeleted responses: 200: description: OK schema: $ref: ../../definitions/paged_resources/subpopulation.yml 401: $ref: ../../responses/401.yml 403: $ref: ../../responses/403_not_developer.yml post: operationId: createSubpopulation summary: Create a new subpopulation tags: - Subpopulations - _For Developers security: - BridgeSecurity: [] parameters: - name: Subpopulation in: body description: New subpopulation required: true schema: $ref: ../../definitions/subpopulation.yml responses: 201: description: Created schema: $ref: ../../definitions/guid_version_holder.yml 401: $ref: ../../responses/401.yml 403: $ref: ../../responses/403_not_developer.yml
Consolidate definition of includeDeleted flag.
Consolidate definition of includeDeleted flag.
YAML
apache-2.0
Sage-Bionetworks/BridgeJavaSDK,DwayneJengSage/BridgeJavaSDK,Sage-Bionetworks/BridgeJavaSDK,alxdarksage/BridgeJavaSDK,alxdarksage/BridgeJavaSDK,DwayneJengSage/BridgeJavaSDK
9876175c476bdd7fe0506f5eae407172b6815e26
app-go.yaml
app-go.yaml
# Use the go runtime for restoncoffeemachine. runtime: go api_version: go112 #env: flex version: 5 handlers: - url: /favicon\.ico static_files: img/favicon.ico upload: img/favicon\.ico - url: /img/(.*) static_files: img/\1 upload: img/(.*) mime_type: image/jpeg expiration: "30d" - url: /.* script: _go_app
# Use the go runtime for restoncoffeemachine. runtime: go api_version: go112 #env: flex version: 6 handlers: - url: /favicon\.ico static_files: img/favicon.ico upload: img/favicon\.ico - url: /img/(.*) static_files: img/\1 upload: img/(.*) mime_type: image/jpeg expiration: "30d" - url: /.* script: _go_app
Move the app version from 5 to 6 to pick up go112 changes.
Move the app version from 5 to 6 to pick up go112 changes.
YAML
apache-2.0
morrowc/restoncoffeemachine
6817963da801c5f5bcf4f2958159ab3291348ab0
.github/workflows/audit.yaml
.github/workflows/audit.yaml
name: Code Audit on: pull_request jobs: audit: runs-on: ubuntu-latest strategy: matrix: node-version: [ '12', '14' ] steps: - uses: actions/checkout@v2 - name: Setup Node.js uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - name: Use dependencies cache uses: actions/cache@v2 with: path: ~/.npm key: npm-${{ hashFiles('package-lock.json') }} restore-keys: npm- - name: Install dependencies run: npm ci --ignore-scripts - run: npm run test:ci
name: Code Audit on: pull_request jobs: audit: runs-on: ubuntu-latest strategy: matrix: node-version: [ '12', '14' ] steps: - uses: actions/checkout@v2 - name: Setup Node.js uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - name: Use dependencies cache uses: actions/cache@v2 with: path: ~/.npm key: npm-${{ hashFiles('package-lock.json') }} restore-keys: npm- - name: Install dependencies run: npm ci --ignore-scripts - name: Update CSS properties if: contains(github.head_ref, 'mdn-browser-compat-data') run: npm run scrape - run: npm run test:ci
Update CSS properties before running tests so CI fails when changed
Update CSS properties before running tests so CI fails when changed Closes #197
YAML
isc
Siilwyn/css-declaration-sorter
5b496539f222b295c323d727044c8806fc7ecaf7
src/Phlexible/Bundle/FrontendMediaBundle/Resources/config/services.yml
src/Phlexible/Bundle/FrontendMediaBundle/Resources/config/services.yml
services: # event listeners phlexible_frontend_media.listener.element: class: Phlexible\Bundle\FrontendMediaBundle\EventListener\ElementListener arguments: - "@phlexible_frontend_media.usage_updater" - "@phlexible_queue.job_manager" tags: - {name: kernel.event_subscriber} # fields phlexible_frontend_media.field.folder: class: Phlexible\Bundle\FrontendMediaBundle\Field\FolderField public: false tags: - {name: phlexible_elementtype.field, alias: folder} phlexible_frontend_media.field.file: class: Phlexible\Bundle\FrontendMediaBundle\Field\FileField public: false tags: - {name: phlexible_elementtype.field, alias: file} # twig extensions phlexible_media_manager.twig.media_extension: class: Phlexible\Bundle\FrontendMediaBundle\Twig\Extension\MediaExtension public: false arguments: - "@router" - "@phlexible_media_manager.volume_manager" - "@phlexible_media_manager.file_meta_set_resolver" - "@phlexible_media_manager.doctrine.file_meta_data_manager" tags: - {name: twig.extension}
services: # event listeners phlexible_frontend_media.listener.element: class: Phlexible\Bundle\FrontendMediaBundle\EventListener\ElementListener arguments: - "@phlexible_frontend_media.usage_updater" - "@phlexible_element.element_service" - "@phlexible_queue.job_manager" tags: - {name: kernel.event_subscriber} # fields phlexible_frontend_media.field.folder: class: Phlexible\Bundle\FrontendMediaBundle\Field\FolderField public: false tags: - {name: phlexible_elementtype.field, alias: folder} phlexible_frontend_media.field.file: class: Phlexible\Bundle\FrontendMediaBundle\Field\FileField public: false tags: - {name: phlexible_elementtype.field, alias: file} # twig extensions phlexible_media_manager.twig.media_extension: class: Phlexible\Bundle\FrontendMediaBundle\Twig\Extension\MediaExtension public: false arguments: - "@router" - "@phlexible_media_manager.volume_manager" - "@phlexible_media_manager.file_meta_set_resolver" - "@phlexible_media_manager.doctrine.file_meta_data_manager" tags: - {name: twig.extension}
Add element service as dependency for ElementListener
Add element service as dependency for ElementListener
YAML
mit
phlexible/phlexible,phlexible/phlexible,phlexible/phlexible
352a48d5628b226ea6637ce82c86e3ce792a4cc3
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "pypy-5.3.1" env: LIBGIT2=~/libgit2/_install/ LD_LIBRARY_PATH=~/libgit2/_install/lib before_install: "./.travis.sh" install: pip install -r requirements.txt . before_script: - git config --global user.name "travis-test" - git config --global user.email "travis@test.com" script: - nosetests --logging-level=WARN # nose doesn't like the number on test_e2e so it's not detected by the # previous command. - nosetests gitless/tests/test_e2e.py --logging-level=WARN branches: only: - master - develop sudo: false jobs: include: - stage: Pack snap env: EMPTY before_script: skip script: docker run -v $(PWD):$(PWD) -w $(PWD) snapcore/snapcraft snapcraft
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "pypy-5.3.1" env: LIBGIT2=~/libgit2/_install/ LD_LIBRARY_PATH=~/libgit2/_install/lib before_install: "./.travis.sh" install: pip install -r requirements.txt . before_script: - git config --global user.name "travis-test" - git config --global user.email "travis@test.com" script: - nosetests --logging-level=WARN # nose doesn't like the number on test_e2e so it's not detected by the # previous command. - nosetests gitless/tests/test_e2e.py --logging-level=WARN branches: only: - master - develop sudo: false jobs: include: - stage: Pack snap env: EMPTY before_script: skip script: docker run -v $(pwd):$(pwd) -w $(pwd) snapcore/snapcraft snapcraft
Fix $(PWD) should be $(pwd) or ${PWD}
Fix $(PWD) should be $(pwd) or ${PWD}
YAML
mit
sdg-mit/gitless,sdg-mit/gitless
db157c15e3a49d2204d14d20400d6dd143e690a8
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.3 - 2.0.0 - ruby-head - jruby - rbx - ree before_install: - sudo apt-get update -qq - sudo apt-get install -qq -y poppler-utils poppler-data matrix: allow_failures: - rvm: ruby-head - rvm: rbx
language: ruby rvm: - 1.8.7 - 1.9.3 - 2.0.0 - ruby-head - jruby - rbx - ree before_install: - sudo apt-get update -qq - sudo apt-get install -qq -y poppler-utils poppler-data matrix: allow_failures: - rvm: rbx
Support ruby-head in CI, and don't allow failures.
Support ruby-head in CI, and don't allow failures.
YAML
mit
newspaperclub/pdf_info
9bd07e9d56652d538d4c437c01d5f48d94885777
.travis.yml
.travis.yml
--- language: node_js node_js: - '4' - node sudo: false script: - npm test - npm run lint
--- language: node_js node_js: node sudo: false script: - npm test - npm run lint
Configure Travis CI to test only on latest Node.js
Configure Travis CI to test only on latest Node.js
YAML
apache-2.0
commonform/commonform-markup-parse
e85932d0e2d35ad112fae66ea809b62fb8f460b3
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 before_script: composer install --dev --prefer-source script: bin/phpspec run -fpretty --verbose
language: php php: - 5.5 - 5.6 - 7.0 before_script: composer install --no-interaction --prefer-source script: bin/phpspec run -fpretty --verbose
Fix invalid deps and move AttributeFactory to component
Fix invalid deps and move AttributeFactory to component
YAML
mit
Sylius/Storage
994ed8f8a876bdfabb3d7a05097c2179f8aae5d1
.travis.yml
.travis.yml
language: php matrix: allow_failures: - php: hhvm php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm before_script: - composer self-update - composer install --dev script: vendor/bin/phpunit --coverage-clover clover after_success: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover clover
language: php matrix: allow_failures: - php: hhvm php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 before_script: - composer self-update - composer install --dev script: vendor/bin/phpunit --coverage-clover clover after_success: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover clover
Add PHP 7 on Travis
Add PHP 7 on Travis
YAML
apache-2.0
kuborgh/serializer,scasei/serializer,ArteGEIE/serializer,mpoiriert/serializer,schmittjoh/serializer,progrupa/serializer,Soullivaneuh/serializer,sesch/serializer,megazoll/serializer,leberknecht/serializer,paali/serializer,sloba88/serializer,ahsanity/serializer,Nilead/serializer,Bluestart83/serializer,marcoleong/serializer,jmcclell/serializer,alexdesignworks/serializer,curzio-della-santa/serializer,nick4fake/serializer,gkocakaya/serializer,jms-serializer/serializer
3c753e26716d3b5de87c109b1a79e9de77b5ac93
.travis.yml
.travis.yml
language: julia os: - linux - osx julia: - release - nightly notifications: email: false script: - julia -e 'Pkg.clone(pwd()); Pkg.build("Julimaps")' - julia -e 'Pkg.test("Julimaps", coverage=true)' after_success: - julia -e 'cd(Pkg.dir("Julimaps")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
language: julia os: - linux - osx julia: - release - nightly notifications: email: false after_success: - julia -e 'cd(Pkg.dir("Julimaps")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
Update yml for Travis CI
Update yml for Travis CI
YAML
mit
seung-lab/Julimaps,seung-lab/Julimaps