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
7d99b10c65bc65de860d422e5be835ebc0856ed1
appveyor.yml
appveyor.yml
version: '1.0.{build}' configuration: - Debug - Release platform: Any CPU environment: # Don't report back to the mothership DOTNET_CLI_TELEMETRY_OPTOUT: 1 init: - ps: $Env:LABEL = "CI" + $Env:APPVEYOR_BUILD_NUMBER.PadLeft(5, "0") before_build: - appveyor-retry dotnet restore -v Minimal build_script: - dotnet build "src\jmespath.net" -c %CONFIGURATION% --no-dependencies --version-suffix %LABEL% after_build: test_script: - dotnet test "test\jmespath.net.tests" -c %CONFIGURATION% cache: - '%USERPROFILE%\.nuget\packages' on_finish:
version: '1.0.{build}' configuration: - Debug - Release platform: Any CPU environment: # Don't report back to the mothership DOTNET_CLI_TELEMETRY_OPTOUT: 1 init: - ps: $Env:LABEL = "CI" + $Env:APPVEYOR_BUILD_NUMBER.PadLeft(5, "0") before_build: - appveyor-retry dotnet restore -v Minimal build_script: - dotnet build "src\jmespath.net" -c %CONFIGURATION% --no-dependencies --version-suffix %LABEL% after_build: test_script: - dotnet test "test\jmespath.net.tests" -c %CONFIGURATION% cache: - '%USERPROFILE%\.nuget\packages' on_finish:
Fix - Incorrect YAML syntax.
Fix - Incorrect YAML syntax.
YAML
apache-2.0
jdevillard/JmesPath.Net
5a4681d7dcfad60bcaa7a0299357c64596afa927
.travis.yml
.travis.yml
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 2.2.5 - 2.3.1 - jruby-9.1.2.0 - rbx cache: bundler sudo: false matrix: allow_failures: - rvm: rbx
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 2.2.5 - 2.3.1 - jruby - rbx cache: bundler sudo: false matrix: allow_failures: - rvm: rbx - rvm: jruby
Change Travis JRuby to default and allow failures.
Change Travis JRuby to default and allow failures.
YAML
unlicense
ruby-rdf/ld-patch,gkellogg/ld-patch,ruby-rdf/ld-patch,gkellogg/ld-patch
d7610a1646441a26d02d833e4af376e5012e4c6d
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.3 - 2.0.0 - ruby-head before_script: - gem install minitest - sh bootstrap - ruby extconf.rb - make script: rake matrix: allow_failures: - rvm: ruby-head
rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 - ruby-head before_script: - gem install minitest - sh bootstrap - ruby extconf.rb - make script: rake matrix: allow_failures: - rvm: ruby-head
Build against Ruby 2.1 on Travis
Build against Ruby 2.1 on Travis
YAML
bsd-2-clause
der-scheme/rice,der-scheme/rice,der-scheme/rice,der-scheme/rice
658580c271d724a310c73d1e70c7ab80aadf52fb
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.2 xcode_project: Haneke.xcodeproj xcode_scheme: Haneke xcode_sdk: iphonesimulator9.2 branches: only: - master
language: objective-c osx_image: xcode7.2 xcode_workspace: Haneke.xcworkspace xcode_scheme: Haneke xcode_sdk: iphonesimulator9.2 branches: only: - master
Use workspace instead of project in Travis config
Use workspace instead of project in Travis config
YAML
apache-2.0
pollarm/HanekeSwift,Haneke/HanekeSwift,meteochu/HanekeSwift,Haneke/HanekeSwift,dcharbonnier/HanekeSwift,pollarm/HanekeSwift,dcharbonnier/HanekeSwift,szehnder/HanekeSwift,yoller/HanekeSwift,meteochu/HanekeSwift,szehnder/HanekeSwift,yoller/HanekeSwift
92296823c2e38f83330ff7452c1bfbb8f4787ed2
appveyor.yml
appveyor.yml
environment: matrix: - PYTHON: "C:\\Python27" - PYTHON: "C:\\Python33" - PYTHON: "C:\\Python34" - PYTHON: "C:\\Python35" - PYTHON: "C:\\Python27-x64" - PYTHON: "C:\\Python33-x64" - PYTHON: "C:\\Python34-x64" - PYTHON: "C:\\Python35-x64" install: - "%PYTHON%\\python.exe -m pip install wheel" - "%PYTHON%\\python.exe -m pip install -r requirements-dev.txt" build: off test_script: - "%PYTHON%\\python.exe setup.py test" - "%PYTHON%\\python.exe tests/integration_test_udp.py" - "%PYTHON%\\python.exe tests/integration_test_tcp.py" after_test: - "%PYTHON%\\python.exe setup.py bdist_wheel -d dist" - "%PYTHON%\\python.exe -m pip install dist\\*.whl" - "%PYTHON%\\python.exe -c 'import statsdmetrics'" - "%PYTHON%\\python.exe -c 'from statsdmetrics.client import Client'" - "%PYTHON%\\python.exe -c 'from import statsdmetrics.client.tcp import TCPClient'" artifacts: - path: "dist\\*"
environment: matrix: - PYTHON: "C:\\Python27" - PYTHON: "C:\\Python33" - PYTHON: "C:\\Python34" - PYTHON: "C:\\Python35" - PYTHON: "C:\\Python27-x64" - PYTHON: "C:\\Python33-x64" - PYTHON: "C:\\Python34-x64" - PYTHON: "C:\\Python35-x64" install: - "%PYTHON%\\python.exe -m pip install wheel" - "%PYTHON%\\python.exe -m pip install -r requirements-dev.txt" build: off test_script: - "%PYTHON%\\python.exe setup.py test" - "%PYTHON%\\python.exe tests/integration_test_udp.py" - "%PYTHON%\\python.exe tests/integration_test_tcp.py" after_test: - "%PYTHON%\\python.exe setup.py bdist_wheel -d dist" artifacts: - path: "dist\\*"
Remove installing the wheel from on AppVeyor
Remove installing the wheel from on AppVeyor Using the wildcard character to tell pip to install the newly built wheel file is not helpful. So for now just build the wheel on AppVeyor and don't install it.
YAML
mit
farzadghanei/statsd-metrics
2f99cc76fce8cc2052e62241ed6f44ac21b98557
_config.yml
_config.yml
# Site settings title: My Name author: My Name # This is the author that will be used for highlighting the author in # publication entries. pubauthor: My Name url: "http://www.cl.cam.ac.uk" baseurl: /~crsid123 createdyear: 2014 destination: public_html collections: projects: output: false people: output: false # Build settings markdown: kramdown kramdown: toc_levels: "2,3" scholar: bibliography_template: bib style: ./_bibliography/cl-pubs bibliography: publications.bib sort_by: year order: descending
# Site settings title: My Name author: My Name # This is the author that will be used for highlighting the author in # publication entries. pubauthor: My Name url: "//www.cl.cam.ac.uk" baseurl: /~crsid123 createdyear: 2014 destination: public_html collections: projects: output: false people: output: false # Build settings markdown: kramdown kramdown: toc_levels: "2,3" scholar: bibliography_template: bib style: ./_bibliography/cl-pubs bibliography: publications.bib sort_by: year order: descending
Use // instead of an explicit protocol.
Use // instead of an explicit protocol.
YAML
mit
CompilerTeaching/CompilerTeaching.github.io,CompilerTeaching/CompilerTeaching.github.io,CompilerTeaching/CompilerTeaching.github.io
320ab13435ff0a2e2c4a4805ef344ad982e3be75
appveyor.yml
appveyor.yml
install: - choco install HaskellPlatform -version 2014.2.0.0 - SET PATH=C:\Program Files\Haskell Platform\2014.2.0.0\bin;C:\Program Files\Haskell Platform\2014.2.0.0\mingw\bin;C:\Program Files\Haskell Platform\2014.2.0.0\lib\extralibs\bin;%PATH% - cabal update build_script: - cd Cabal - ghc --make -threaded -i -i. Setup.hs -Wall -Werror # 'echo "" |' works around an AppVeyor issue: # https://github.com/commercialhaskell/stack/issues/1097#issuecomment-145747849 - echo "" | cabal install --only-dependencies --enable-tests - Setup configure --user --ghc-option=-Werror --enable-tests - Setup build - Setup test unit-tests --show-details=streaming # - Setup test package-tests --show-details=streaming --test-options=--skip-shared-library-tests - Setup install - cd ..\cabal-install - ghc --make -threaded -i -i. Setup.hs -Wall -Werror - echo "" | cabal install --only-dependencies --enable-tests --force-reinstalls - Setup configure --user --ghc-option=-Werror --enable-tests - Setup build # - Setup test unit-tests --show-details=streaming
install: - choco install HaskellPlatform -version 2014.2.0.0 - SET PATH=C:\Program Files\Haskell Platform\2014.2.0.0\bin;C:\Program Files\Haskell Platform\2014.2.0.0\mingw\bin;C:\Program Files\Haskell Platform\2014.2.0.0\lib\extralibs\bin;%PATH% - cabal update build_script: - cd Cabal - ghc --make -threaded -i -i. Setup.hs -Wall -Werror # 'echo "" |' works around an AppVeyor issue: # https://github.com/commercialhaskell/stack/issues/1097#issuecomment-145747849 - echo "" | cabal install --only-dependencies --enable-tests - Setup configure --user --ghc-option=-Werror --enable-tests - Setup build - Setup test unit-tests --show-details=streaming - Setup test package-tests --show-details=streaming --test-options=--skip-shared-library-tests - Setup install - cd ..\cabal-install - ghc --make -threaded -i -i. Setup.hs -Wall -Werror - echo "" | cabal install --only-dependencies --enable-tests --force-reinstalls - Setup configure --user --ghc-option=-Werror --enable-tests - Setup build # - Setup test unit-tests --show-details=streaming
Enable Cabal package tests on AppVeyor
Enable Cabal package tests on AppVeyor
YAML
bsd-3-clause
headprogrammingczar/cabal,gbaz/cabal,garetxe/cabal,themoritz/cabal,kolmodin/cabal,bennofs/cabal,headprogrammingczar/cabal,mydaum/cabal,sopvop/cabal,thomie/cabal,thomie/cabal,themoritz/cabal,Heather/cabal,themoritz/cabal,sopvop/cabal,gbaz/cabal,Heather/cabal,garetxe/cabal,bennofs/cabal,sopvop/cabal,kolmodin/cabal,mydaum/cabal
d1931a356eaad9f3a0724e8f5aad5f9115ebb829
.travis.yml
.travis.yml
language: csharp sudo: required dist: trusty addons: apt: packages: - gettext - libcurl4-openssl-dev - libicu-dev - libssl-dev - libunwind8 - zlib1g env: global: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - DOTNET_CLI_TELEMETRY_OPTOUT: 1 mono: none os: - linux - osx branches: only: - master - release - dev - /^(.*\/)?ci-.*$/ before_install: - if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi script: - ./build.sh notifications: webhooks: secure: "QLltxzNQ+TUgMurX3FuWB37LVsRx6kZBTXk4JG/BELqO5/Xuwzf8ChElW29d4AbwOeYv5ONYyrvdnLtel8MJCMs8rCxZ2kZZtmUtGdUpPeMavmrvDYQeNqHhFYpLu+bEjxuilGoVI2qonI29S3Q9fC+grXsktGPwPmhyulHbwkk=" on_success: always on_failure: always on_start: always
language: csharp sudo: false dist: trusty env: global: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - DOTNET_CLI_TELEMETRY_OPTOUT: 1 mono: none os: - linux - osx osx_image: xcode8.2 branches: only: - master - release - dev - /^(.*\/)?ci-.*$/ before_install: - if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi script: - ./build.sh
Update Travis to macOS Sierra
Update Travis to macOS Sierra [skip appveyor]
YAML
apache-2.0
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
13e6545b87e9df240fbf4fc52f52b016ac7034a6
_config.yml
_config.yml
# Site settings title: Christian Deinert email: [email protected] description: > I'm a Web- & Software Developer based in Singen(Hohentwiel) - Germany, focusing on PHP Backend development, but I'm not afraid to get my hands dirty in the Front-End! timezone: Europe/Berlin baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://ChDeinert.github.io" # the base hostname & protocol for your site twitter_username: ChDeinert github_username: ChDeinert # Build settings markdown: kramdown # Site areas links: - {title: 'Resume', url: '/resume.html'} - {title: 'Projects', url: '/projects/'} - {title: 'Imprint', url: '/imprint.html'}
# Site settings title: Christian Deinert email: [email protected] description: > I'm a Web- & Software Developer based in Singen(Hohentwiel) - Germany, focusing on PHP Backend development, but I'm not afraid to get my hands dirty in the Front-End! timezone: Europe/Berlin baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://ChDeinert.github.io" # the base hostname & protocol for your site twitter_username: ChDeinert github_username: ChDeinert # Build settings markdown: kramdown # Site areas links: - {title: 'Resume', url: '/resume.html'} - {title: 'Imprint', url: '/imprint.html'}
Remove Projects for the time being
Remove Projects for the time being There will be something coming
YAML
mit
ChDeinert/chdeinert.github.io
aa49fc4400ac0d972f3088a086b8cefb5ee5af0f
_config.yml
_config.yml
# Site settings title: DEB.SURY.ORG email: [email protected] tag_text: Debian and Ubuntu packaging description: Debian and Ubuntu packaging baseurl: "/" # the subpath of your site, e.g. /blog url: "https://deb.sury.org" # the base hostname & protocol for your site twitter_username: oerdnj github_username: oerdnj font-awesome-include: true # make this false if you don't need font-awesome # Build settings markdown: kramdown exclude: ["README.md"]
# Site settings title: DEB.SURY.ORG email: [email protected] tag_text: Debian and Ubuntu packaging description: Debian and Ubuntu packaging baseurl: "" # the subpath of your site, e.g. /blog url: "https://deb.sury.org" # the base hostname & protocol for your site twitter_username: oerdnj github_username: oerdnj font-awesome-include: true # make this false if you don't need font-awesome # Build settings markdown: kramdown exclude: ["README.md"]
Remove trailing / from url
Remove trailing / from url
YAML
mit
oerdnj/oerdnj.github.io
ab62837b72d516bea86c0218429b585da61df009
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 matrix: fast_finish: true before_script: - composer update-all script: - composer test after_script: - composer coveralls notifications: slack: jbzoo:lKYRTvAF36tRDfKTOK5zhFh9
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 matrix: fast_finish: true include: - php: 5.6 env: XDEBUG_OFF="yes" - php: 7.0 env: XDEBUG_OFF="yes" before_script: - if [[ $XDEBUG_OFF = yes ]]; then phpenv config-rm xdebug.ini; fi; script: - composer update-all - composer test after_script: - composer coveralls notifications: slack: jbzoo:lKYRTvAF36tRDfKTOK5zhFh9
Add matrix - disable xdebug PHP module
Add matrix - disable xdebug PHP module
YAML
mit
JBZoo/Utils
b147888e95287666fe6cd56f88cd64d317809281
_config.yml
_config.yml
# Site settings title: Your awesome title email: [email protected] description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description. baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://yourdomain.com" # the base hostname & protocol for your site twitter_username: jekyllrb github_username: jekyll # Build settings markdown: kramdown
# Site settings title: Your awesome title email: [email protected] description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description. baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://yourdomain.com" # the base hostname & protocol for your site twitter_username: jekyllrb github_username: jekyll # Build settings markdown: kramdown exclude: ["vendor"]
Exclude local vendor directory from building
Exclude local vendor directory from building
YAML
cc0-1.0
rovansteen/rovansteen.com,rovansteen/rovansteen.com
8dac66b2521b5d4583dbd56a9730951d427c8bd9
appveyor.yml
appveyor.yml
version: '{build}' environment: COVERALLSAPIKEY: secure: w6ojRE0he/6J2qd8sgq1kwSl3YlgLXaGJbiLvWfAdf8KtWAfSobZwSFwu3nCBLWJ build_script: - ps: .\build.ps1 -target=CoveragePublish -configuration=Debug "-coverallsApiKey=$env:COVERALLSAPIKEY" test: off
version: '{build}' image: Visual Studio 2017 environment: COVERALLSAPIKEY: secure: w6ojRE0he/6J2qd8sgq1kwSl3YlgLXaGJbiLvWfAdf8KtWAfSobZwSFwu3nCBLWJ build_script: - ps: .\build.ps1 -target=CoveragePublish -configuration=Debug "-coverallsApiKey=$env:COVERALLSAPIKEY" test: off
Use Visual Studio 2017 with Appveyor.
Use Visual Studio 2017 with Appveyor.
YAML
mit
FacilityApi/Facility
d766599959acb62b67de44627441629a4d819c97
.travis.yml
.travis.yml
language: go go: - 1.7 - 1.8 - tip
language: go go: - 1.7 - 1.8 - 1.9 - tip
Add Go 1.9 to Travis
Add Go 1.9 to Travis
YAML
mit
scottdware/go-bigip
30aadd15379de8b0718e25c7b989aa368387e70a
appveyor.yml
appveyor.yml
version: 0.9.1.{build} configuration: Release skip_tags: true nuget: disable_publish_on_pr: true clone_depth: 1 test: off build_script: - ps: .\build.ps1 Package All artifacts: - path: build\packages\**\*.nupkg name: NuGet
version: 0.9.1.{build} configuration: Release image: Visual Studio 2019 skip_tags: true nuget: disable_publish_on_pr: true clone_depth: 1 test: off build_script: - ps: .\build.ps1 Package All artifacts: - path: build\packages\**\*.nupkg name: NuGet
Use VS 2019 image in CI
Use VS 2019 image in CI
YAML
mit
NRules/NRules
b15aecd31ddad90f78f9b0ad13b7f7a872ae29dc
_config.yml
_config.yml
title: Hi! description: Daniel Cruz - Software developer exclude: ['LICENSE', 'README.md', '.rbenv-version', 'nbproject', '*.sass'] markdown: kramdown highlighter: pygments
title: Hi! description: Daniel Cruz - Software developer exclude: ['LICENSE', 'README.md', '.rbenv-version', 'nbproject', '*.sass'] markdown: kramdown highlighter: rouge
Use rouge as pygments is deprecated
Use rouge as pygments is deprecated
YAML
unlicense
dncrht/dncrht.github.io,dncrht/dncrht.github.io
916bf59325a99df9a43ca6b2f3c81c422becc0b4
appveyor.yml
appveyor.yml
os: unstable build_script: - ps: .\Source\Scripts\CI.InstallPrereqs.ps1;.\CI Build artifacts: - name: Logs path: Artifacts\Logs deploy_script: - ps: .\CI Deploy
os: unstable build_script: - ps: .\Source\Scripts\CI.InstallSystemPrereqs.ps1;.\CI Build artifacts: - name: Logs path: Artifacts\Logs deploy_script: - ps: .\CI Deploy
Correct the path to the CI script.
Correct the path to the CI script.
YAML
mit
rakutensf-malex/slinqy,rakutensf-malex/slinqy
1bafc92b34accde8de2e2ee4e2c444bae8c9184b
.travis.yml
.travis.yml
language: node_js node_js: - "0.8" - "0.10" notifications: irc: channels: - "chat.freenode.net#montage" on_success: false template: - "%{author} broke the %{repository} tests on %{branch}: %{build_url}"
language: node_js node_js: - "0.10" notifications: irc: channels: - "chat.freenode.net#montage" on_success: false template: - "%{author} broke the %{repository} tests on %{branch}: %{build_url}"
Disable Node.js v0.8 integration tests
Disable Node.js v0.8 integration tests Travis now errors because of a bad npm certificate.
YAML
mit
kriskowal/collections,kriskowal/collections
835c31454f0002916b50a9bf98777796d1f6fae2
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler services: postgresql bundler_args: --jobs=3 --retry=3 --without development rvm: - 2.4.1 before_install: - gem update --system - gem install bundler before_script: - psql -c 'CREATE DATABASE evemonk_test;' -U postgres - bundle exec rake db:create db:migrate - bundle exec bundle-audit update script: - bundle exec rake - bundle exec codeclimate-test-reporter - bundle exec bundle-audit
language: ruby sudo: false cache: bundler services: postgresql bundler_args: --jobs=3 --retry=3 --without development rvm: - 2.4.1 before_install: - gem update --system - gem install bundler - gem --version - bundle --version before_script: - psql -c 'CREATE DATABASE evemonk_test;' -U postgres - bundle exec rake db:create db:migrate - bundle exec bundle-audit update script: - bundle exec rake - bundle exec codeclimate-test-reporter - bundle exec bundle-audit
Add gem and bundler versions to log after update
Add gem and bundler versions to log after update
YAML
mit
biow0lf/evemonk,biow0lf/evemonk,biow0lf/evemonk
26962b2af4f5598dba6b181fa0c7073a186bffbc
_config.yml
_config.yml
# Site settings title: neiro λ Web development professional email: [email protected] description: > # this means to ignore newlines until "baseurl:" My personal website, blog and portfolio baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://neiro.io" # the base hostname & protocol for your site twitter_username: ne1ro github_username: ne1ro # Build settings markdown: kramdown exclude: - bower.json - LICENSE - Gemfile - Guardile - Gemfile.lock - vendor # Jekyll assets configuration assets: js_compressor: uglifier css_compressor: sass navigation: - title: Blog url: /index.html - title: Projects url: /projects.html - title: About me url: /about.html
# Site settings title: neiro λ Web development professional email: [email protected] description: > # this means to ignore newlines until "baseurl:" My personal website, blog and portfolio baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://neiro.io" # the base hostname & protocol for your site twitter_username: ne1ro github_username: ne1ro # Build settings markdown: kramdown exclude: - bower.json - LICENSE - Gemfile - Guardile - Gemfile.lock - vendor # Jekyll assets configuration assets: js_compressor: uglifier css_compressor: sass navigation: - title: Blog url: /index.html - title: Projects url: /projects.html - title: About me url: /about.html - title: Contact url: /contact.html
Add contact page to config
Add contact page to config
YAML
mit
ne1ro/neiro.io,ne1ro/neiro.io
85cb2509e2ec097f2d43c24cca1f0e96d3c8b9d1
_config.yml
_config.yml
# Site settings title: Ben Ilegbodu description: "{priorities:['Christ','Family','Work'], work:'@Eventbrite', title:'Sr UI Engineer', tech:['#ES6,'#CSS3','#HTML5'], passions:['#Jesus','@NBA']}" url: "https://benmvp.github.io" paginate: 4 paginate_path: "/page/:num/" # Build settings permalink: pretty gems: [jekyll-paginate, jekyll-redirect-from, jekyll-feed, jekyll-sitemap] highlighter: rouge markdown: kramdown kramdown: input: GFM # Site owner owner: name: Ben Ilegbodu email: [email protected] disqus-shortname: benmvp twitter: benmvp github: benmvp linkedin: benmvp google: analytics: UA-65375615-1
# Site settings title: Ben Ilegbodu description: "Christ follower, husband & father of ✌. UI Architect & Speaker. ES6+, React & CSS3. Basketball, DIY & movies. Frontend Platform Manager @ Eventbrite" url: "http://www.benmvp.com" paginate: 4 paginate_path: "/page/:num/" # Build settings permalink: pretty gems: [jekyll-paginate, jekyll-redirect-from, jekyll-feed, jekyll-sitemap] highlighter: rouge markdown: kramdown kramdown: input: GFM # Site owner owner: name: Ben Ilegbodu email: [email protected] disqus-shortname: benmvp twitter: benmvp github: benmvp linkedin: benmvp google: analytics: UA-65375615-1
Update some meta info for the blog
Update some meta info for the blog
YAML
mit
benmvp/benmvp.github.io
1efc8831ef7f8924cf4c5b68db15c1707afa97f2
appveyor.yml
appveyor.yml
os: Visual Studio 2017 version: 2.1.{build} environment: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true NUGET_XMLDOC_MODE: skip branches: only: - master cache: - src\API\node_modules - '%APPDATA%\npm\node_modules' - '%APPDATA%\npm-cache' install: - ps: npm install -g [email protected] --loglevel=error - ps: npm install -g [email protected] --loglevel=error build_script: - ps: .\Build.ps1 artifacts: - path: artifacts\publish nuget: disable_publish_on_pr: true skip_tags: false test: off
os: Visual Studio 2017 version: 2.1.{build} environment: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true NUGET_XMLDOC_MODE: skip branches: only: - master cache: - src\API\node_modules - '%APPDATA%\npm\node_modules' - '%APPDATA%\npm-cache' install: - ps: npm install -g npm - ps: npm install -g [email protected] build_script: - ps: .\Build.ps1 artifacts: - path: artifacts\publish nuget: disable_publish_on_pr: true skip_tags: false test: off
Install latest npm in AppVeyor
Install latest npm in AppVeyor Always install latest npm in AppVeyor. Remove logLevel switch from npm commands.
YAML
mit
martincostello/api,martincostello/api,martincostello/api
8b3c15215b5bfa63d382dde90b991db91eec1e65
appveyor.yml
appveyor.yml
build: false environment: global: BINSTAR_USER: menpo BINSTAR_KEY: secure: mw1Fz5a5C0lT4CXzsOCADoo/Xa9YymZI3yjVZNR8f5GwYrVAOC2YXxyEG6NaSWZY matrix: - PYTHON_VERSION: 2.7 - PYTHON_VERSION: 3.4 matrix: fast_finish: true platform: - x86 - x64 init: - ps: Start-FileDownload 'https://raw.githubusercontent.com/menpo/condaci/v0.4.6/condaci.py' C:\\condaci.py; echo "Done" - cmd: python C:\\condaci.py setup install: - cmd: "set tmp_cmd=\"python C:\\condaci.py miniconda_dir\" && FOR /F %i IN (' %tmp_cmd% ') DO SET APPV_MINICONDA_DIR=%i" - cmd: set APPV_MINICONDA_EXE="%APPV_MINICONDA_DIR%\python.exe" - cmd: "%APPV_MINICONDA_EXE% C:\\condaci.py build conda" notifications: - provider: Slack auth_token: secure: Jyd2NTPkBrrwBnl1C0mkNp5sUPGXzKrDgpZVDvPj72OUJtovXsO3795UsvktLucG channel: general on_build_status_changed: true on_build_success: false on_build_failure: false
build: false environment: global: BINSTAR_USER: menpo BINSTAR_KEY: secure: mw1Fz5a5C0lT4CXzsOCADoo/Xa9YymZI3yjVZNR8f5GwYrVAOC2YXxyEG6NaSWZY matrix: - PYTHON_VERSION: 2.7 - PYTHON_VERSION: 3.4 matrix: fast_finish: true platform: - x86 - x64 init: - ps: Start-FileDownload 'https://raw.githubusercontent.com/menpo/condaci/v0.4.6/condaci.py' C:\\condaci.py; echo "Done" - cmd: python C:\\condaci.py setup install: - cmd: set tmp_cmd=python C:\\condaci.py miniconda_dir - cmd: "FOR /F %i IN (' %tmp_cmd% ') DO SET APPV_MINICONDA_DIR=%i" - cmd: set APPV_MINICONDA_EXE="%APPV_MINICONDA_DIR%\python.exe" - cmd: "%APPV_MINICONDA_EXE% C:\\condaci.py build conda" notifications: - provider: Slack auth_token: secure: Jyd2NTPkBrrwBnl1C0mkNp5sUPGXzKrDgpZVDvPj72OUJtovXsO3795UsvktLucG channel: general on_build_status_changed: true on_build_success: false on_build_failure: false
Split command over two lines
Split command over two lines
YAML
bsd-3-clause
patricksnape/menpo,menpo/menpo,yuxiang-zhou/menpo,mozata/menpo,menpo/menpo,patricksnape/menpo,yuxiang-zhou/menpo,menpo/menpo,grigorisg9gr/menpo,mozata/menpo,patricksnape/menpo,grigorisg9gr/menpo,mozata/menpo,mozata/menpo,grigorisg9gr/menpo,yuxiang-zhou/menpo
cc7c9f51685d4c06230af3a23163d140dafda84a
appveyor.yml
appveyor.yml
version: 3.0.{build} # The above also controls the VSIX Version. For any dlls which are intended to be referenced from # 3rd parties, eg, any contract DLLs, those have their own AssemblyInfo/AssemblyVersioning. # If there are any breaking changes it recommended that the below assembly_version is changed as well. configuration: Release platform: Any CPU build: parallel: true verbosity: minimal artifacts: - path: Binaries\Release12.0\PowerShellTools.vsix name: PowerShellTools.vsix assembly_info: patch: true file: Build\AssemblyVersion.cs assembly_version: '3.0.0.0' assembly_file_version: '{version}' assembly_informational_version: '{version}-{branch}'
version: 3.0.{build} # The above also controls the VSIX Version. For any dlls which are intended to be referenced from # 3rd parties, eg, any contract DLLs, those have their own AssemblyInfo/AssemblyVersioning. configuration: Release platform: Any CPU build: parallel: true verbosity: minimal artifacts: - path: Binaries\Release12.0\PowerShellTools.vsix name: PowerShellTools.vsix assembly_info: patch: true file: Build\AssemblyVersion.cs assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}-{branch}'
Revert "Set AssemblyVersion to a fixed 3.0.0.0"
Revert "Set AssemblyVersion to a fixed 3.0.0.0" This reverts commit b6457a4d4abea5ae94c2c488cdd5cc0c3dab6f6a.
YAML
apache-2.0
adamdriscoll/poshtools,mgreenegit/poshtools,SpotLabsNET/poshtools,zbrad/poshtools,KevinHorvatin/poshtools,daviwil/poshtools,erwindevreugd/poshtools,YOTOV-LIMITED/poshtools,Microsoft/poshtools
ab9ec0e4abde2c2cb999719ff43af2d3b5830f75
.travis.yml
.travis.yml
language: go go: - 1.10.x - 1.11.x - tip install: - mkdir -p $GOPATH/src/github.com/prometheus $GOPATH/src/github.com/opencontainers - cd $GOPATH/src/github.com/opencontainers && git clone https://github.com/opencontainers/runtime-spec && cd runtime-spec && git checkout fa4b36aa9c99e00c2ef7b5c0013c84100ede5f4e - cd $GOPATH/src/github.com/containerd/cgroups - go get -t ./... - go get -u github.com/vbatts/git-validation - go get -u github.com/kunalkushwaha/ltag before_script: - pushd ..; git clone https://github.com/containerd/project; popd script: - DCO_VERBOSITY=-q ../project/script/validate/dco - ../project/script/validate/fileheader ../project/ - go test -race -coverprofile=coverage.txt -covermode=atomic after_success: - bash <(curl -s https://codecov.io/bash)
language: go go: - 1.10.x - 1.11.x install: - mkdir -p $GOPATH/src/github.com/prometheus $GOPATH/src/github.com/opencontainers $GOPATH/src/github.com/coreos $GOPATH/src/github.com/godbus - cd $GOPATH/src/github.com/opencontainers && git clone https://github.com/opencontainers/runtime-spec && cd runtime-spec && git checkout fa4b36aa9c99e00c2ef7b5c0013c84100ede5f4e - cd $GOPATH/src/github.com/coreos && git clone https://github.com/coreos/go-systemd && cd go-systemd && git checkout 48702e0da86bd25e76cfef347e2adeb434a0d0a6 - cd $GOPATH/src/github.com/godbus && git clone https://github.com/godbus/dbus && cd dbus && git checkout c7fdd8b5cd55e87b4e1f4e372cdb1db61dd6c66f - cd $GOPATH/src/github.com/containerd/cgroups - go get -d -t ./... - go get -u github.com/vbatts/git-validation - go get -u github.com/kunalkushwaha/ltag before_script: - pushd ..; git clone https://github.com/containerd/project; popd script: - DCO_VERBOSITY=-q ../project/script/validate/dco - ../project/script/validate/fileheader ../project/ - go test -race -coverprofile=coverage.txt -covermode=atomic after_success: - bash <(curl -s https://codecov.io/bash)
Add go-systemd dep for CI testing
Add go-systemd dep for CI testing The underlying package changed and we need to depend on a specific version now for testing with the CI Signed-off-by: Michael Crosby <[email protected]>
YAML
apache-2.0
containerd/cgroups
216306ce2e35d09a45021c0c26416daaa2e967d2
_config.yml
_config.yml
name: Ryan Davies - 📱 Engineer description: iOS Engineer @ notonthehighstreet.com meta_description: "Ryan Davies, iOS Engineer at notonthehighstreet.com. Blogging about iOS, Mac, and tvOS development – all things Swift and Objective-C." theme: minima markdown: kramdown highlighter: rouge gems: [jekyll-paginate] paginate: 20 baseurl: / domain_name: 'http://ryanjdavies.com' # Details for the RSS feed generator url: 'http://ryanjdavies.com' author: 'Ryan Davies' authorTwitter: 'iotize' permalink: /:year/:title/ defaults: - scope: path: "" # empty string for all files type: pages values: layout: default - scope: path: "" # empty string for all files type: posts values: layout: post - scope: path: "" type: drafts values: layout: post
name: Ryan Davies - 📱 Engineer description: iOS Engineer @ notonthehighstreet.com meta_description: "Ryan Davies, iOS Engineer at notonthehighstreet.com. Blogging about iOS, Mac, and tvOS development – all things Swift and Objective-C." theme: minima markdown: kramdown highlighter: rouge gems: [jekyll-paginate] paginate: 20 baseurl: / domain_name: 'http://iotize.github.com' # Details for the RSS feed generator url: 'http://iotize.github.com' author: 'Ryan Davies' authorTwitter: 'iotize' permalink: /:year/:title/ defaults: - scope: path: "" # empty string for all files type: pages values: layout: default - scope: path: "" # empty string for all files type: posts values: layout: post - scope: path: "" type: drafts values: layout: post
Change domain name to iotize.github.io
Change domain name to iotize.github.io
YAML
mit
iotize/iotize.github.io
b2c7d861fb096638961bbf4687483e95c5e43342
.travis.yml
.travis.yml
language: ruby services: mongodb rvm: - 2.0.0 - 1.9.3 - 1.8.7 gemfile: - Gemfile - Gemfile.mongoid-two
language: ruby services: mongodb rvm: - 2.0.0 - 1.9.3 - 1.9.2 gemfile: - Gemfile - Gemfile.mongoid-two
Test for 1.9.2, 1.9.3, and 2.0.0
Test for 1.9.2, 1.9.3, and 2.0.0
YAML
mit
bezugen/mongoid_alize,pranav-g10/mongoid_alize,burgalon/mongoid_alize,kayakyakr/mongoid_alize,pranav-g10/mongoid_alize
49fbceee7ee2e28a82db16c1c78ed0cf90376b8c
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 script: "bundle exec rake"
language: ruby rvm: - 2.0.0 - 2.3.3 - 2.4.0 script: "bundle exec rake"
Enable newer ruby versions and disable deprecated 1.9.3
Enable newer ruby versions and disable deprecated 1.9.3
YAML
mit
cantino/reckon,cantino/reckon
5d8b3d35f3b9605bd0aa42c37a31c9188578a41f
_config.yml
_config.yml
# Site settings title: Hydra-In-a-Box email: [email protected] description: > # this means to ignore newlines until "baseurl:" Digital Public Library of America, Stanford University, and DuraSpace, with funding from the Institute of Museum and Library Services, are working together to build a next-generation repository solution baseurl: # the subpath of your site, e.g. /blog/ url: "http://hydrainabox.projecthydra.org" # the base hostname & protocol for your site twitter_username: HydraInABox github_username: hybox # Build settings markdown: kramdown
# Site settings title: Hydra-In-a-Box email: [email protected] description: > # this means to ignore newlines until "baseurl:" Digital Public Library of America, Stanford University, and DuraSpace, with funding from the Institute of Museum and Library Services, are working together to build a next-generation repository solution baseurl: # the subpath of your site, e.g. /blog/ url: "http://hydrainabox.org" # the base hostname & protocol for your site twitter_username: HydraInABox github_username: hybox # Build settings markdown: kramdown
Change configuration to post to correct hostname
Change configuration to post to correct hostname
YAML
apache-2.0
hybox/hybox.github.io,hybox/hybox.github.io
8b583322e88de437e2da5393cee62c30cf52f423
.travis.yml
.travis.yml
language: php php: - 7.0 cache: directories: - vendor - $HOME/.composer/cache sudo: required dist: trusty install: - chmod a+x $TRAVIS_BUILD_DIR/install.sh - $TRAVIS_BUILD_DIR/install.sh script: - php codecept run
language: php php: - 7.0 cache: directories: - vendor - $HOME/.composer/cache sudo: required dist: trusty install: - chmod a+x $TRAVIS_BUILD_DIR/install.sh - $TRAVIS_BUILD_DIR/install.sh script: - chmod a+rx -R $TRAVIS_BUILD_DIR - cd $TRAVIS_BUILD_DIR && ./vendor/bin/codecept run
Make build directory readable/executable to all users (for Travis).
Make build directory readable/executable to all users (for Travis).
YAML
agpl-3.0
SlvrEagle23/AzuraCast,AzuraCast/AzuraCast,AzuraCast/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast,AzuraCast/AzuraCast,AzuraCast/AzuraCast,SlvrEagle23/AzuraCast
7502a27c344393a7e391924cf30f03f380058482
_config.yml
_config.yml
# Site settings title: NewMe header-img: img/home-bg.png email: [email protected] copyright_name: Dom-Mc description: > # this means to ignore newlines until "baseurl:" The infancy of life in web development baseurl: "" # the subpath of your site, e.g. /blog twitter_username: _dom_mc github_username: Dom-Mc learn_profile: Dom-Mc email_username: [email protected] # Build settings markdown: kramdown highlighter: rouge permalink: pretty paginate: 5 exclude: ["less","node_modules","Gruntfile.js","package.json","README.md"] gems: [jekyll-paginate, jekyll-feed]
# Site settings title: NewMe header-img: img/home-bg.jpeg email: [email protected] copyright_name: Dom-Mc description: > # this means to ignore newlines until "baseurl:" The infancy of life in web development baseurl: "" # the subpath of your site, e.g. /blog twitter_username: _dom_mc github_username: Dom-Mc learn_profile: Dom-Mc email_username: [email protected] # Build settings markdown: kramdown highlighter: rouge permalink: pretty paginate: 5 exclude: ["less","node_modules","Gruntfile.js","package.json","README.md"] gems: [jekyll-paginate, jekyll-feed]
Change header image to bay bridge
Change header image to bay bridge
YAML
mit
Dom-Mc/Dom-Mc.github.io,Dom-Mc/Dom-Mc.github.io,Dom-Mc/Dom-Mc.github.io,Dom-Mc/Dom-Mc.github.io
cdff9a228f7031937656540147d317df1520338a
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 env: - - ACTION_MAILER_VERSION=3.0.0 - ACTION_MAILER_VERSION=3.1.0 - ACTION_MAILER_VERSION=3.2.0 - ACTION_MAILER_VERSION=4.0.0 - ACTION_MAILER_VERSION=4.1.0 - ACTION_MAILER_VERSION=4.2.0 script: "bundle exec rake spec" branches: only: - master
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 env: - - ACTION_MAILER_VERSION=3.0.0 - ACTION_MAILER_VERSION=3.1.0 - ACTION_MAILER_VERSION=3.2.0 - ACTION_MAILER_VERSION=4.0.0 - ACTION_MAILER_VERSION=4.1.0 - ACTION_MAILER_VERSION=4.2.0 script: "bundle exec rake spec" branches: only: - master
Add test in CI for ruby 2.2
Add test in CI for ruby 2.2
YAML
mit
dtaniwaki/mandriller
2ed6b173e173edb33e78c58037c2d2c0ab3621ce
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "5" - "4" before_script: - npm install -g gulp karma-cli - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start branches: only: - master
language: node_js node_js: - "6" - "5" - "4" addons: firefox: "latest" before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start branches: only: - master
Add Firefox in Travis CI.
Add Firefox in Travis CI.
YAML
mit
gluons/trapjs2
6cd0177f348766ff9785f67cecca7bd5e8e539e4
_config.yml
_config.yml
# Permalinks # # Use of `relative_permalinks` ensures post links from the index work properly. permalink: pretty relative_permalinks: true # Setup title: Zhiyi's Blog tagline: 'Great things take time' description: 'I am Zhiyi Sun<a href="https://google.com/+ZhiyiSun" target="_blank">(+zhiyisun)</a>. I like <a href="http://opensource.org/docs/definition.php" target="_blank">Open Source Software(OSS)</a>, especially Linux. I am also a big fan of electronics gadgets. I listen <a href="http://en.wikipedia.org/wiki/Pingtan_(art_form)" target="_blank">评弹</a> sometimes.' url: http://zhiyisun.github.io baseurl: / paginate: 5 # About/contact author: name: Zhiyi Sun url: https://cn.linkedin.com/in/zhiyisun email: [email protected] # Custom vars version: 1.0.0
# Permalinks # # Use of `relative_permalinks` ensures post links from the index work properly. permalink: pretty # Setup title: Zhiyi's Blog tagline: 'Great things take time' description: 'I am Zhiyi Sun<a href="https://google.com/+ZhiyiSun" target="_blank">(+zhiyisun)</a>. I like <a href="http://opensource.org/docs/definition.php" target="_blank">Open Source Software(OSS)</a>, especially Linux. I am also a big fan of electronics gadgets. I listen <a href="http://en.wikipedia.org/wiki/Pingtan_(art_form)" target="_blank">评弹</a> sometimes.' url: http://zhiyisun.github.io baseurl: / paginate: 5 # About/contact author: name: Zhiyi Sun url: https://cn.linkedin.com/in/zhiyisun email: [email protected] # Custom vars version: 1.0.0
Remove relative permalinks which is not supported by github and Jekyll.
Remove relative permalinks which is not supported by github and Jekyll.
YAML
mit
zhiyisun/zhiyisun.github.io
b4c956d3921e7f4197ddeb00d312c76b9abd8e14
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 1.8.7 bundler_args: --path=vendor
language: ruby rvm: - 1.8.7 bundler_args: --path=vendor
Remove Ruby 1.9.3 from CI build
Remove Ruby 1.9.3 from CI build
YAML
apache-2.0
arnetogo/opennebula-puppet-module,endocode/opennebula-puppet-module,rwaffen/opennebula-puppet-module,rwaffen/opennebula-puppet-module,pdrakeweb/opennebula-puppet-module,arnetogo/opennebula-puppet-module,endocode/opennebula-puppet-module,arnetogo/opennebula-puppet-module,mattthias/opennebula-puppet-module,pdrakeweb/opennebula-puppet-module,epost-dev/opennebula-puppet-module,mattthias/opennebula-puppet-module,fasrc/opennebula-puppet-module,tuxmea/opennebula-puppet-module,mattthias/opennebula-puppet-module,epost-dev/opennebula-puppet-module,tuxmea/opennebula-puppet-module,camptocamp/opennebula-puppet-module,mattthias/opennebula-puppet-module,fasrc/opennebula-puppet-module,gerald1248/opennebula-puppet-module,endocode/opennebula-puppet-module,gerald1248/opennebula-puppet-module,endocode/opennebula-puppet-module,fasrc/opennebula-puppet-module,arnetogo/opennebula-puppet-module,epost-dev/opennebula-puppet-module,tuxmea/opennebula-puppet-module,fasrc/opennebula-puppet-module,epost-dev/opennebula-puppet-module,rwaffen/opennebula-puppet-module,gerald1248/opennebula-puppet-module,gerald1248/opennebula-puppet-module,rwaffen/opennebula-puppet-module,pdrakeweb/opennebula-puppet-module,camptocamp/opennebula-puppet-module,pdrakeweb/opennebula-puppet-module,tuxmea/opennebula-puppet-module
d8ff46d57c8271b0ae881ddbd88788d11504b07e
.travis.yml
.travis.yml
language: ruby notifications: email: false rvm: - 2.0.0 - 2.1.10 - 2.2.7 - 2.3.4 - 2.4.1
language: ruby addons: code_climate: repo_token: 2df66540ac895ba609ec19665a233e73dc7b4d3f3e0c788c4b99ed974765d4bf notifications: email: false rvm: - 2.0.0 - 2.1.10 - 2.2.7 - 2.3.4 - 2.4.1
Add CodeClimate repo token, for test coverage reports
Add CodeClimate repo token, for test coverage reports
YAML
mit
mntnorv/puttext
ad7ee0e575316c7b72f2d5e91b0c1d5ce61bf73e
.travis.yml
.travis.yml
language: node_js node_js: - 'node' before_install: - rvm install 2.2.2 install: - npm install --global awesome-lint - gem install awesome_bot script: # - awesome-lint README.md - awesome_bot README.md --allow-redirect --allow-dupe
language: node_js node_js: - 'node' before_install: - rvm install 2.2.2 install: - npm install --global awesome-lint - gem install awesome_bot script: # - awesome-lint README.md - awesome_bot README.md --allow-redirect --allow-dupe notifications: email: on_failure: always
Add email notifications to failed builds
Add email notifications to failed builds
YAML
cc0-1.0
carlosperate/awesome-microbit,carlosperate/awesome-microbit
185ce44329df6880f4084a24384b705ce815fd4a
.travis.yml
.travis.yml
language: smalltalk sudo: false os: linux smalltalk: - GemStone-3.5.0 - Pharo-5.0 - Squeak-5.1 - GemStone-2.4.8 - GemStone-3.1.0.6 - GemStone-3.2.17 - GemStone-3.3.9 - GemStone-3.4.3 - Pharo-3.0 - Pharo-4.0 - Pharo-6.0 - Pharo-6.1 - Squeak-4.5 - Squeak-4.6 - Squeak-5.0 - Squeak-trunk smalltalk_config: - .smalltalkA.ston - .smalltalkB.ston matrix: allow_failures: - smalltalk: Squeak-4.4 - smalltalk: Squeak-4.5 - smalltalk: Squeak-4.6 - smalltalk: Squeak-5.0 - smalltalk: Squeak-5.1 - smalltalk: Squeak-trunk - smalltalk: GemStone-2.4.8 - smalltalk: Pharo-6.1 cache: directories: - $SMALLTALK_CI_CACHE
language: smalltalk sudo: false os: linux smalltalk: - GemStone-3.5.0 - Pharo-5.0 - Squeak-5.1 - GemStone-2.4.8 - GemStone-3.1.0.6 - GemStone-3.2.17 - GemStone-3.3.9 - GemStone-3.4.3 - Pharo-3.0 - Pharo-4.0 - Pharo-6.0 - Pharo-6.1 - Squeak-5.0 - Squeak-5.1 - Squeak-5.2 - Squeak-5.3 - Squeak-trunk smalltalk_config: - .smalltalkA.ston - .smalltalkB.ston matrix: allow_failures: - smalltalk: Squeak-4.4 - smalltalk: Squeak-4.5 - smalltalk: Squeak-4.6 - smalltalk: Squeak-5.0 - smalltalk: Squeak-5.1 - smalltalk: Squeak-trunk - smalltalk: GemStone-2.4.8 - smalltalk: Pharo-6.1 cache: directories: - $SMALLTALK_CI_CACHE
Drop CI for squeak4.x, add support for all current 5.x
Drop CI for squeak4.x, add support for all current 5.x
YAML
mit
Metacello/metacello
2ebb9f5e65b9b5f8a52e83aa55c756b34d713c8b
_config.yml
_config.yml
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely edit after that. If you find # yourself editing these this file very often, consider using Jekyll's data files # feature for the data you need to update frequently. # # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the server process. # Site settings # These are used to personalize your new site. If you look in the HTML files, # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. # You can create any custom variable you would like, and they will be accessible # in the templates via {{ site.myvariable }}. title: Emmanuel Corrales email: [email protected] description: > # this means to ignore newlines until "baseurl:" baseurl: "" # the subpath of your site, e.g. /blog url: "http://emmanuelcorrales.com" # the base hostname & protocol for your site twitter_username: emcorrales22 github_username: EmmanuelCorrales google_analytics: UA-80537045-1 disqus: shortname: emmanuel-corrales # Build settings markdown: kramdown theme: minima permalink: /posts/:title
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely edit after that. If you find # yourself editing these this file very often, consider using Jekyll's data files # feature for the data you need to update frequently. # # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the server process. # Site settings # These are used to personalize your new site. If you look in the HTML files, # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. # You can create any custom variable you would like, and they will be accessible # in the templates via {{ site.myvariable }}. title: Emmanuel Corrales email: [email protected] description: > # this means to ignore newlines until "baseurl:" baseurl: "" # the subpath of your site, e.g. /blog url: "http://emmanuelcorrales.com" # the base hostname & protocol for your site twitter_username: emcorrales22 github_username: EmmanuelCorrales google_analytics: UA-80537045-2 disqus: shortname: emmanuel-corrales # Build settings markdown: kramdown theme: minima permalink: /posts/:title
Change the google analytics id.
Change the google analytics id.
YAML
mit
EmmanuelCorrales/EmmanuelCorrales.github.io,EmmanuelCorrales/blog.emmanuelcorrales.com,EmmanuelCorrales/blog.emmanuelcorrales.com
ae8005ed2cd6857d085a0b36ea29fdcecfed1bc2
_config.yml
_config.yml
# Website settings title: 1upnote tagline: Web design, development and UX description: >- 1upnote is a blog that focuses on standards-based design techniques, useful UX information and expert tips for building effective user interfaces. baseurl: '' url: https://1upnote.com permalink: /:title timezone: Asia/Seoul version: 0.0.1 # Language and locale settings language: code: ko locale: ko_KR name: Korean # Author information author: name: 1UP location: Seoul, Korea email: [email protected] twitter: 1upz github: woneob # File pathes path: css: /assets/styles js: /assets/scripts img: /assets/images # Exclude files from the production build exclude: - README.md - Gemfile - Gemfile.lock - CNAME - LICENSE # Markdown settings markdown: kramdown # Code highlighter settings highlighter: pygments # Sass settings # http://sass-lang.com/ # http://jekyllrb.com/docs/assets/#sassscss sass: add_charset: true sass_dir: assets/styles/_scss style: compressed # Compress HTML # https://github.com/penibelst/jekyll-compress-html compress_html: clippings: all comments: - "<!-- " - " -->"
# Website settings title: 1upnote tagline: Web design, development and UX description: >- 1upnote is a blog that focuses on standards-based design techniques, useful UX information and expert tips for building effective user interfaces. baseurl: '' url: https://1upnote.com permalink: /:title timezone: Asia/Seoul version: 0.0.1 # Language and locale settings language: code: ko locale: ko_KR name: Korean # Author information author: name: 1UP location: Seoul, Korea email: [email protected] twitter: 1upz github: woneob # File pathes path: css: /assets/styles js: /assets/scripts img: /assets/images # Exclude files from the production build exclude: - README.md - Gemfile - Gemfile.lock - CNAME - LICENSE # Markdown settings markdown: kramdown # Code highlighter settings highlighter: rouge # Sass settings # http://sass-lang.com/ # http://jekyllrb.com/docs/assets/#sassscss sass: add_charset: true sass_dir: assets/styles/_scss style: compressed # Compress HTML # https://github.com/penibelst/jekyll-compress-html compress_html: clippings: all comments: - "<!-- " - " -->"
Switch from Pygments to Rouge for syntax highlight
Switch from Pygments to Rouge for syntax highlight
YAML
mit
woneob/1upnote,woneob/woneob.github.io,woneob/woneob.github.io,woneob/1upnote,woneob/1upnote,woneob/woneob.github.io
54a7d98755af8b54b8b36402b66a1ecbd8d3afda
_config.yml
_config.yml
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely edit after that. If you find # yourself editing this file very often, consider using Jekyll's data files # feature for the data you need to update frequently. # # For technical reasons, this file is *NOT* reloaded automatically when you use # 'bundle exec jekyll serve'. If you change this file, please restart the server process. # Site settings # These are used to personalize your new site. If you look in the HTML files, # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. # You can create any custom variable you would like, and they will be accessible # in the templates via {{ site.myvariable }}. title: Something I Learned Today email: [email protected] description: > # this means to ignore newlines until "baseurl:" Dropping Knowledge Bombs since 2016. You a homie if you like Zen Arcade, too. baseurl: "" # the subpath of your site, e.g. /blog url: "" # the base hostname & protocol for your site, e.g. http://example.com # twitter_username: jekyllrb github_username: FTLam11 author: Frosted Fronks tag_page: '/meta/tags/' # Build settings markdown: kramdown theme: minima plugins: - jekyll-feed exclude: - Gemfile - Gemfile.lock
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely edit after that. If you find # yourself editing this file very often, consider using Jekyll's data files # feature for the data you need to update frequently. # # For technical reasons, this file is *NOT* reloaded automatically when you use # 'bundle exec jekyll serve'. If you change this file, please restart the server process. # Site settings # These are used to personalize your new site. If you look in the HTML files, # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. # You can create any custom variable you would like, and they will be accessible # in the templates via {{ site.myvariable }}. title: Shit From An Old Notebook email: [email protected] description: > # this means to ignore newlines until "baseurl:" ITS FRONKIN TIMEEEEEEEEEEEE baseurl: "" # the subpath of your site, e.g. /blog url: "" # the base hostname & protocol for your site, e.g. http://example.com # twitter_username: jekyllrb github_username: FTLam11 author: Frosted Fronks tag_page: '/meta/tags/' # Build settings markdown: kramdown theme: minima plugins: - jekyll-feed exclude: - Gemfile - Gemfile.lock
Update blog title and flavour text
Update blog title and flavour text
YAML
mit
FTLam11/FTLam11.github.io,FTLam11/FTLam11.github.io,FTLam11/FTLam11.github.io
49f495a53a12f6125af9c8226e770e56222853ed
.travis.yml
.travis.yml
language: python python: - "3.4" # command to install dependencies # install: "pip install -r requirements.txt" # command to run tests script: bash ./test.sh env: global: - TESTMODULE: birthday.py - GH_REPO: github.com/HHS-IntroProgramming/tests.git
language: python python: - "3.7" # command to install dependencies # install: "pip install -r requirements.txt" # command to run tests script: bash ./test.sh env: global: - TESTMODULE: birthday.py - GH_REPO: github.com/Runpython-IntroProgramming/tests.git
Update python version, organization name.
Update python version, organization name.
YAML
mit
HHS-IntroProgramming/Birthday-quiz,HHS-IntroProgramming/Birthday-quiz
f0b528582e20d0075dc530251f4d4c4666f8eaa4
.travis.yml
.travis.yml
env: global: - TERM=dumb - secure: "ZDQTgoiKtNrUzqBTMGQFMji1fgBKJLnqQ1AzfHJbnF3xg2GtZ0gvJtDEVgD+nB7U6f0hdMDn4yc5Y5sPtEhreBFI5vdYqckUJssvjQM9jWbB4wmm1NjJHu7lcmTwGKnvkdrvCRDGLwErOq+7CLbAjjaghweG6F6ZmcSoaW/Slf0=" language: java script: gradle -Djava.awt.headless=true clean check publishGhPages branches: only: - master
env: global: - TERM=dumb - secure: "ZDQTgoiKtNrUzqBTMGQFMji1fgBKJLnqQ1AzfHJbnF3xg2GtZ0gvJtDEVgD+nB7U6f0hdMDn4yc5Y5sPtEhreBFI5vdYqckUJssvjQM9jWbB4wmm1NjJHu7lcmTwGKnvkdrvCRDGLwErOq+7CLbAjjaghweG6F6ZmcSoaW/Slf0=" language: java script: gradle -Djava.awt.headless=true clean check after_success: gradle -Djava.awt.headless=true publishGhPages branches: only: - master
Move the gh-pages publishing to the after_success stage
Move the gh-pages publishing to the after_success stage
YAML
isc
gsson/katydid
f5961e1b07b83a9a66c5b34fe5fa29601f8608cd
.travis.yml
.travis.yml
# Use Travis's cointainer based infrastructure sudo: false dist: trusty addons: apt: sources: - chef-stable-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" script: - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/cookstyle --version - /opt/chefdk/embedded/bin/foodcritic --version - /opt/chefdk/bin/chef exec delivery local all
# Use Travis's cointainer based infrastructure sudo: false dist: trusty addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(chef shell-init bash)" script: - chef --version - cookstyle --version - foodcritic --version - chef exec delivery local all
Simplify Travis config and fix ChefDK 2.0 failures
Simplify Travis config and fix ChefDK 2.0 failures
YAML
apache-2.0
opscode-cookbooks/enterprise-chef-common,chef-cookbooks/enterprise-chef-common,opscode-cookbooks/enterprise-chef-common,chef-cookbooks/enterprise-chef-common
c541606333aa77d1c0ffbbf499ba3e63ecbe8d2c
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "iojs" notifications: irc: channels: - "irc.freenode.org#sailsjs" on_success: never on_failure: always template: - "Build by %{author} has failed:" - "Git Info: %{branch} - %{commit}" - "Travis states: %{message}" - "Build Details: %{build_url}" - "Change View: %{compare_url}" skip_join: true # whitelisted branches branches: only: - master - stable - beta
language: node_js node_js: - "0.10" - "0.12" notifications: irc: channels: - "irc.freenode.org#sailsjs" on_success: never on_failure: always template: - "Build by %{author} has failed:" - "Git Info: %{branch} - %{commit}" - "Travis states: %{message}" - "Build Details: %{build_url}" - "Change View: %{compare_url}" skip_join: true # whitelisted branches branches: only: - master - stable - beta
Remove iojs from Travis config Microtime can't be built with it and just stalls Travis until it fails
Remove iojs from Travis config Microtime can't be built with it and just stalls Travis until it fails
YAML
mit
jianpingw/sails,hellowin/sails,jsisaev1/sails,krishnaglick/sails,listepo/sails,zand3rs/sails,hokkoo/sails,Benew/sails,JumpLink/sails,justsml/sails,t2013anurag/sails,ctartist621/sails,AnyPresence/sails,jenalgit/sails,Hanifb/sails,winlolo/sails,haavardw/sails,apowers313/sails,cazulu/sails,saronwei/sails,janladaking/sails,vip-git/sails,adrianha/sails,dbuentello/sails,jianpingw/sails,mauricionr/sails,yangchuoxian/sails,metidia/sails,rlugojr/sails,alex-zhang/sails,anweiss/sails,leobudima/sails,pmq20/sails,alexferreira/sails,dylannnn/sails,corbanb/sails,prssn/sails,scippio/sails,rlugojr/sails,jakutis/sails,antodoms/sails,EdisonSu768/sails,vip-git/sails,Karnith/sails-for-gulp,wsaccaco/sails,tempbottle/sails,yinhe007/sails,balderdashy/sails,artBrown/sails,boarderdav/sails,sunnycmf/sails,Josebaseba/sails,harrissoerja/sails,shaunstanislaus/sails,tjwebb/sails,taogb/sails,konstantinzolotarev/sails,antoniopol06/sails,youprofit/sails,calling/sails,hokkoo/sails
05c04a24a2131ad591352910bd71b8fd0acb958e
_config.yml
_config.yml
title: loustler 블로그 email: [email protected] description: | 아직은 모르는 것이 많고 부족한 주니어 개발자 모르는 것이 많기에 항상 학구열에 불타는 개발자 baseurl: "" # the subpath of your site, e.g. /blog url: "http://loustler.io" # the base hostname & protocol for your site timezone: Asia/Seoul repository: loustler/loustler.github.io permalink: /:year/:month/:day/:title/ excerpt_separator: <!--more--> markdown: kramdown kramdown: input: GFM highlighter: rouge gems: - jekyll-paginate paginate: 5 paginate_path: '/page/:num/' collections: tags: output: true permalink: /tags/:path/ defaults: - scope: path: '' type: tags values: layout: tag exclude: [README.md, LICENSE.md, Gemfile, Gemfile.lock] keep_files: [assets, files] author: loustler asset_url: /assets image: '/assets/images/default_blog_cover.jpg' google_analytics: ua: 'UA-82439081-2' github: username: loustler
title: loustler 블로그 email: [email protected] description: | 아직은 모르는 것이 많고 부족한 주니어 개발자 모르는 것이 많기에 항상 학구열에 불타는 개발자 baseurl: "" # the subpath of your site, e.g. /blog url: http://loustler.io # the base hostname & protocol for your site timezone: Asia/Seoul repository: loustler/loustler.github.io permalink: /:categories/:title/ excerpt_separator: <!--more--> markdown: kramdown kramdown: input: GFM highlighter: rouge gems: - jekyll-paginate paginate: 5 paginate_path: '/page/:num/' collections: tags: output: true permalink: /tags/:path/ defaults: - scope: path: '' type: tags values: layout: tag exclude: [README.md, LICENSE.md, Gemfile, Gemfile.lock] keep_files: [assets, files] author: loustler asset_url: /assets image: /assets/images/default_blog_cover.jpg google_analytics: ua: UA-82439081-2 github: username: loustler
Remove quote and change permalink on configuration.
Remove quote and change permalink on configuration.
YAML
apache-2.0
loustler/loustler.github.io,loustler/loustler.github.io,loustler/loustler.github.io
b1be6b60101baef000a0ba70ccd7c04a46892068
.travis.yml
.travis.yml
language: c++ compiler: - gcc before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update -qq - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-6; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-6" CC="gcc-6"; fi - $CXX --version - sudo apt-get install libcppunit-dev - ls /usr/share/ | grep -i cmake - cmake --version - sudo wget http://raw.github.com/Kitware/CMake/master/Modules/FindGLEW.cmake -O /usr/share/cmake-3.9/Modules/FindGLEW.cmake - chmod +x ".travis-scripts/before-install-sfml.sh" - chmod +x ".travis-scripts/before-install-tinyxml2.sh" install: - .travis-scripts/before-install-sfml.sh - .travis-scripts/before-install-tinyxml2.sh script: cmake . && make
language: c++ compiler: - gcc before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update -qq - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-6; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-6" CC="gcc-6"; fi - sudo apt-get install libcppunit-dev - $CXX --version - cmake --version - chmod +x ".travis-scripts/before-install-sfml.sh" - chmod +x ".travis-scripts/before-install-tinyxml2.sh" - wget http://raw.github.com/Kitware/CMake/master/Modules/FindGLEW.cmake -O cmake/Modules/FindGLEW.cmake install: - .travis-scripts/before-install-sfml.sh - .travis-scripts/before-install-tinyxml2.sh script: cmake . && make
Install FindGLEW to local cmake modules
Install FindGLEW to local cmake modules
YAML
mit
namelessvoid/qrwar,namelessvoid/qrwar
45376f350bbdaaa1bce191535401e9dcff5b2a07
.travis.yml
.travis.yml
sudo: required language: node_js node_js: - '8' cache: directories: - node_modules # NPM packages addons: chrome: stable script: - 'if [ "${D3VER}" = "4" ]; then npm i "d3@^4"; npm list d3; fi' - 'if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then grunt ci; else grunt ci-pull; fi' env: global: - secure: Kt+5IJDJRVwr28xRnmR5YDsJceXDcDR21/JUBfk6DYFixPbIq7LCPnZUmiSZQs8akU95ucXwB5hsirUAdEhXdYKilec6go70lticVlZBLy8IdJ+Di1uPwMOeMHvalC2P0woIRJSMzP8u5E+e+5ASggTjsXID7/p1rE0jXtoOueQ= - secure: TED5eLMxEsyIGzKP8xxhyRDbKlIX9POzj1qgan40a8rkwIVzkdglkviLAXJJeP0ilc1GeGz1ctXyA6NAZt7RHB79mdQbH9iV1AsR29ItH4jdBs7eWRybDRKYRlmOntH0n7zlJDB4qQMxvNdI8BKYrPQymgZ3jtRJ/INOvLerg1g= - CHROME_BIN: chromium-browser matrix: - D3VER: 4 - D3VER: 5
language: node_js node_js: - '11' cache: directories: - node_modules # NPM packages script: - 'if [ "${D3VER}" = "4" ]; then npm i "d3@^4"; npm list d3; fi' - 'if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then grunt ci; else grunt ci-pull; fi' env: global: - secure: Kt+5IJDJRVwr28xRnmR5YDsJceXDcDR21/JUBfk6DYFixPbIq7LCPnZUmiSZQs8akU95ucXwB5hsirUAdEhXdYKilec6go70lticVlZBLy8IdJ+Di1uPwMOeMHvalC2P0woIRJSMzP8u5E+e+5ASggTjsXID7/p1rE0jXtoOueQ= - secure: TED5eLMxEsyIGzKP8xxhyRDbKlIX9POzj1qgan40a8rkwIVzkdglkviLAXJJeP0ilc1GeGz1ctXyA6NAZt7RHB79mdQbH9iV1AsR29ItH4jdBs7eWRybDRKYRlmOntH0n7zlJDB4qQMxvNdI8BKYrPQymgZ3jtRJ/INOvLerg1g= matrix: - D3VER: 4 - D3VER: 5
Update Node to v11, cleanup Chrome related settings
Update Node to v11, cleanup Chrome related settings
YAML
apache-2.0
dc-js/dc.js,dc-js/dc.js,dc-js/dc.js,dc-js/dc.js,dc-js/dc.js
3619e5f4a17f237643ef02bb15c7787643d8c3e2
.travis.yml
.travis.yml
bundler_args: "--without development production" rvm: - ree - 1.9.2 before_script: - "sudo aptitude -q -y install firefox" - "sudo cp config/ci/xvfb /etc/init.d/xvfb" - "sh -e /etc/init.d/xvfb start" - "sass --update public/stylesheets/sass/:public/stylesheets/" - "cp config/database.yml.example config/database.yml" - "rake db:create" - "rake db:schema:load" script: "bundle exec rake travis" env: "TRAVIS=true" notifications: disable: true
bundler_args: "--without development production" rvm: - ree - 1.9.2 before_script: - ruby -e "system('rm Gemfile.lock') if RUBY_VERSION.include?('1.9')" - "sudo aptitude -q -y install firefox" - "sudo cp config/ci/xvfb /etc/init.d/xvfb" - "sh -e /etc/init.d/xvfb start" - "sass --update public/stylesheets/sass/:public/stylesheets/" - "cp config/database.yml.example config/database.yml" - "rake db:create" - "rake db:schema:load" script: "bundle exec rake travis" env: "TRAVIS=true" notifications: disable: true
Add a remove of Gemfile.lock for the 1.9 build.
Add a remove of Gemfile.lock for the 1.9 build.
YAML
agpl-3.0
SuperTux88/diaspora,Muhannes/diaspora,jhass/diaspora,diaspora/diaspora,despora/diaspora,spixi/diaspora,despora/diaspora,KentShikama/diaspora,Flaburgan/diaspora,spixi/diaspora,geraspora/diaspora,geraspora/diaspora,Flaburgan/diaspora,spixi/diaspora,Flaburgan/diaspora,diaspora/diaspora,KentShikama/diaspora,Flaburgan/diaspora,diaspora/diaspora,Muhannes/diaspora,SuperTux88/diaspora,despora/diaspora,geraspora/diaspora,Muhannes/diaspora,Amadren/diaspora,Amadren/diaspora,geraspora/diaspora,KentShikama/diaspora,Muhannes/diaspora,SuperTux88/diaspora,jhass/diaspora,jhass/diaspora,despora/diaspora,Amadren/diaspora,KentShikama/diaspora,SuperTux88/diaspora,spixi/diaspora,Amadren/diaspora,diaspora/diaspora,jhass/diaspora
9dd7828c8d0c3548d205ef6d2bce027cfa44285f
.travis.yml
.travis.yml
language: python cache: pip script: - tox install: - pip install tox tox-travis matrix: include: - python: "2.7" - python: "3.5" - python: "3.6" - python: "3.7" - python: "3.8" - python: "pypy2.7-6.0" - python: "pypy3.5-6.0" # Documentation - python: "3.8" env: TOXENV=docs - python: "3.8" env: TOXENV=linkcheck # Linting - python: "3.8" env: TOXENV=examples - python: "3.8" env: TOXENV=lint services: - mongodb notifications: email: false irc: "irc.freenode.org#factory_boy"
language: python cache: pip script: - tox install: - pip install tox tox-travis matrix: include: - python: "2.7" - python: "3.5" - python: "3.6" - python: "3.7" - python: "3.8" - python: "pypy" - python: "pypy3" # Documentation - python: "3.8" env: TOXENV=docs - python: "3.8" env: TOXENV=linkcheck # Linting - python: "3.8" env: TOXENV=examples - python: "3.8" env: TOXENV=lint services: - mongodb notifications: email: false irc: "irc.freenode.org#factory_boy"
Use Travis alias to latest PyPy releases
Use Travis alias to latest PyPy releases Helps ensure factory_boy remains compatible as new PyPy releases roll out.
YAML
mit
FactoryBoy/factory_boy
4f3d80ef4c14983f458a7e97408c7e4e7a59d8c1
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" sudo: required before_install: - "curl -L http://git.io/ejPSng | /bin/sh"
language: node_js node_js: - "0.10" sudo: required before_install: - "curl -L http://git.io/ejPSng | /bin/sh" - "rm -r node.js/benchmark/ node.js/deps/ node.js/doc/ node.js/src/ node.js/test/ node.js/tools/"
Make node.js smaller so that testing can finish in time.
Make node.js smaller so that testing can finish in time.
YAML
bsd-3-clause
peerlibrary/meteor-util
d912f8292a10e48be848af5bf9ddae8459966386
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.2 env: - DB=sqlite - DB=mysql - DB=postgres before_script: - "cp config/database.$DB.travis.yml config/database.yml; fi" - sh -c "if [ '$DB' = 'postgres' ]; then psql -c 'create database firefly_test;' -U postgres; fi" - sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'create database firefly_test;'; fi" - "RACK_ENV=test bundle exec rake db:migrate"
language: ruby rvm: - 1.9.2 env: - DB=sqlite - DB=mysql - DB=postgres before_script: - "cp config/database.$DB.travis.yml config/database.yml" - sh -c "if [ '$DB' = 'postgres' ]; then psql -c 'create database firefly_test;' -U postgres; fi" - sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'create database firefly_test;'; fi" - "RACK_ENV=test bundle exec rake db:migrate"
Fix mistake in cp before_script command
Fix mistake in cp before_script command
YAML
mit
ariejan/firefly,ariejan/firefly,hayksaakian/rxlcc,ariejan/firefly,codehire/cdh.re,cupcicm/firefly,cupcicm/firefly
09de2f9fd4a677d4f0f2dd5c99383d0b14309dda
_config.yml
_config.yml
name: Robaiatul Islam, kuttumiah markdown: kramdown baseurl: /learning-github-pages url: http://kuttumiah.github.io
name: Robaiatul Islam, kuttumiah markdown: kramdown baseurl: /learning-github-pages url: http://kuttumiah.github.io permalink: /blog/:year/:month/:day/:title
Modify permalink for blog posts.
Modify permalink for blog posts.
YAML
mit
kuttumiah/learning-github-pages,kuttumiah/learning-github-pages
38e13686a0292f9fc082ae187441bf4becdad56d
_config.yml
_config.yml
theme: jekyll-theme-midnight title: Pandentia's Site description: Misecellaneous projects and other tidbits show_downloads: false
theme: minima title: Pandentia's Site description: Misecellaneous projects and other tidbits show_downloads: false
Change the website theme (again)
Change the website theme (again)
YAML
mit
Pandentia/pandentia.github.io
20d530e64f2f8803f56da55f988efd69fcfbbd3d
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.4" before_install: - source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list - wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add - - sudo apt-get update -qq - sudo apt-get install rethinkdb -y install: - pip install . before_script: - rethinkdb --daemon script: py.test tests/ deploy: provider: pypi user: $PYPI_USER password: $PYPI_PASSWORD on: tags: true
language: python python: - "2.7" - "3.4" before_install: - source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list - wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add - - sudo apt-get update -qq - sudo apt-get install rethinkdb -y - rethinkdb --version install: - pip install . before_script: - rethinkdb --daemon script: py.test tests/ deploy: provider: pypi user: $PYPI_USER password: $PYPI_PASSWORD on: tags: true
Print RethinkDB version when building with Travis
Print RethinkDB version when building with Travis
YAML
mit
linkyndy/remodel,resmio/remodel
bd0d7800172e2cbcb953531334b6acffa4b6ad17
.travis.yml
.travis.yml
language: python python: - '2.6' - '2.7' - '3.3' - pypy install: - pip install pep8 coveralls script: - python setup.py test - python setup.py build install - coverage erase - nosetests --with-coverage --cover-package=flask_cors after_success: - pep8 flask_cors.py - coveralls deploy: provider: pypi user: wcdolphin password: secure: PrKEfSZX/IBwy/1TtocCDVNE9inepYeCoChFQ7MXxC49ytbEjLL8xcv57MSnFgOtMuVxzikjkrplBlDe0+gNtTW8vQQWMg6n2I/rkgI8tIJ+RAwWMBvVDNjtdziBkVlkcfOFHYZ6NHZ1SH/FQ1GCicQF8LSsBnMLJZOJ+RVjs5Q= on: all_branches: true tags: true repo: wcdolphin/flask-cors
language: python python: - '2.6' - '2.7' - '3.3' - pypy install: - pip install pep8 coveralls script: - python setup.py test - python setup.py build install - coverage erase - nosetests --with-coverage --cover-package=flask_cors after_success: - pep8 flask_cors.py - coveralls deploy: provider: pypi user: wcdolphin password: secure: PrKEfSZX/IBwy/1TtocCDVNE9inepYeCoChFQ7MXxC49ytbEjLL8xcv57MSnFgOtMuVxzikjkrplBlDe0+gNtTW8vQQWMg6n2I/rkgI8tIJ+RAwWMBvVDNjtdziBkVlkcfOFHYZ6NHZ1SH/FQ1GCicQF8LSsBnMLJZOJ+RVjs5Q= distributions: "sdist bdist_wheel" # Your distribtuions here on: all_branches: true tags: true repo: wcdolphin/flask-cors
Include wheel distribution when pushing to Pypi
Include wheel distribution when pushing to Pypi
YAML
mit
ashleysommer/sanic-cors,corydolphin/flask-cors
74971c106a2cea88aecb218903894e592588a740
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7 - hhvm matrix: fast_finish: true allow_failures: - php: 7 - php: hhvm before_script: - composer self-update - composer install --dev --prefer-source script: # Only run code coverage and CS checks on 5.6 - if [[ $TRAVIS_PHP_VERSION != '5.6' ]]; then ./vendor/bin/phpunit ; fi - if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then ./vendor/bin/phpunit --coverage-clover=coverage.clover ; fi - if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then ./vendor/bin/phpcs --standard=PSR2 --ignore=test/Bootstrap.php src test ; fi after_script: # Only upload code coverage to scrutinizer for 5.6 - if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then wget https://scrutinizer-ci.com/ocular.phar ; fi - if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; php ocular.phar code-coverage:upload --format=php-clover ./test/coverage.clover ; fi notifications: email: true
language: php php: - 5.4 - 5.5 - 5.6 - 7 - hhvm matrix: fast_finish: true allow_failures: - php: 7 - php: hhvm before_script: - composer self-update - composer install --prefer-source script: # Only run code coverage and CS checks on 5.6 - if [[ $TRAVIS_PHP_VERSION != '5.6' ]]; then ./vendor/bin/phpunit ; fi - if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then ./vendor/bin/phpunit --coverage-clover=coverage.clover ; fi - if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then ./vendor/bin/phpcs --standard=PSR2 --ignore=test/Bootstrap.php src test ; fi after_script: # Only upload code coverage to scrutinizer for 5.6 - if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then wget https://scrutinizer-ci.com/ocular.phar ; fi - if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; php ocular.phar code-coverage:upload --format=php-clover ./test/coverage.clover ; fi notifications: email: true
Remove "--dev" from composer install
Remove "--dev" from composer install - Deprecated, as that's the default behavior now.
YAML
mit
phly/conduit,martinezdelariva/conduit
f89458c12a10740fbf5dc3579cbccc2fa2bc712b
.travis.yml
.travis.yml
language: node_js cache: directories: - node_modules notifications: email: false node_js: - '7' - '6' - '4' script: - npm test - npm run coverage before_script: - npm prune after_script: - 'cat coverage/lcov.info | ./node_modules/.bin/coveralls' # sends the coverage report to coveralls after_success: - npm run semantic-release branches: except: - /^v\d+\.\d+\.\d+$/
language: node_js cache: directories: - node_modules notifications: email: false node_js: - '8' - '7' - '6' script: - npm test - npm run coverage before_script: - npm prune after_script: - 'cat coverage/lcov.info | ./node_modules/.bin/coveralls' # sends the coverage report to coveralls after_success: - npm run semantic-release branches: except: - /^v\d+\.\d+\.\d+$/
Update Node versions on Travis
Update Node versions on Travis
YAML
mit
r24y/tf-hcl
bd4e4ca934fb7f5d31f36ad71f658b0dcdf4e2b5
.travis.yml
.travis.yml
sudo: required services: - docker language: node_js node_js: - "stable" - "4.1" - "4.0" - "0.12" - "0.11" - "0.10" before_install: - docker run -d --name kong-database -e "POSTGRES_USER=kong" -e "POSTGRES_DB=kong" postgres:9.4 - sleep 5 - docker run -d --name kong --link kong-database:kong-database -e "KONG_DATABASE=postgres" -e "KONG_PG_HOST=kong-database" -p 127.0.0.1:8001:8001 -p 127.0.0.1:8000:8000 kong:latest - sleep 5 - curl localhost:8001
sudo: required services: - docker language: node_js node_js: - "stable" - "4" - "6" before_install: - docker run -d --name kong-database -e "POSTGRES_USER=kong" -e "POSTGRES_DB=kong" postgres:9.4 - sleep 5 - docker run -d --name kong --link kong-database:kong-database -e "KONG_DATABASE=postgres" -e "KONG_PG_HOST=kong-database" -p 127.0.0.1:8001:8001 -p 127.0.0.1:8000:8000 kong:latest - sleep 5 - curl localhost:8001
Test only against active LTS and current stable node versions
Test only against active LTS and current stable node versions
YAML
mit
mybuilder/kongfig,JnMik/kongfig,JnMik/kongfig
544e121129ba5fd1aee0592ef76c8d0d8a6c8de4
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm matrix: allow_failures: - php: hhvm before_script: - bash tests/before_script.sh script: - bash tests/script.sh
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm - nightly matrix: allow_failures: - php: hhvm - php: nightly before_script: - bash tests/before_script.sh script: - bash tests/script.sh
Add PHP nightly builds to continuous integration tests
Add PHP nightly builds to continuous integration tests
YAML
unlicense
hebaoxia/php-curl-class,Savageman/php-curl-class,ptrnov/php-curl-class,sebwas/php-curl-class,jahanzaibbahadur/php-curl-class,ptrnov/php-curl-class,VolCh/php-curl-class,thebeline/php-curl-class,heatery/php-curl-class,petewatts/php-curl-class,taohaoge/php-curl-class,hebaoxia/php-curl-class,Jiangyoung/php-curl-class,Savageman/php-curl-class,petewatts/php-curl-class,heatery/php-curl-class,Jiangyoung/php-curl-class,php-curl-class/php-curl-class,zachborboa/php-curl-class,sebwas/php-curl-class,ValerioOnGithub/php-curl-class,SahilDude89ss/php-curl-class,taohaoge/php-curl-class,jahanzaibbahadur/php-curl-class,ValerioOnGithub/php-curl-class,marius321967/php-curl-class,VolCh/php-curl-class,smartkey86/php-curl-class,thebeline/php-curl-class,evcehiack/php-curl-class,tillz/php-curl-class,smartkey86/php-curl-class,php-curl-class/php-curl-class,php-curl-class/php-curl-class,SahilDude89ss/php-curl-class,evcehiack/php-curl-class,zachborboa/php-curl-class,tillz/php-curl-class,zachborboa/php-curl-class
e38f5985fe69df494ff6ec1c01efbbfdf6a9b089
.travis.yml
.travis.yml
language: php php: - hhvm - 7 - 5.6 - 5.5 - 5.4 matrix: fast_finish: true before_script: - composer self-update - composer install -n script: - composer test
language: php php: - hhvm - 7 - 5.6 - 5.5 - 5.4 matrix: fast_finish: true before_script: - if [ $TRAVIS_PHP_VERSION != "hhvm" ]; then phpenv config-rm xdebug.ini ; fi - composer self-update - composer install -n script: - composer test
Improve build runtime by disabling Xdebug.
Improve build runtime by disabling Xdebug.
YAML
mit
raphaelstolt/construct,jonathantorres/construct,jonathantorres/construct,raphaelstolt/construct
2e03cdceb0351b38a457cb7c3a0dbd7b90bf98da
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "7" - "8" - "9" - "10" - "11" script: - "npm run lint" - "npm run test-with-coverage" after_success: - "npm run coveralls" sudo: false
language: node_js node_js: - "7" - "8" - "9" - "10" - "11" script: - "npm run lint" - "npm run test-with-coverage" after_success: - "npm run coveralls" sudo: false
Remove support for node 6
Remove support for node 6
YAML
mit
FidelLimited/serverless-plugin-warmup
a0cb1c5a479fecf2bcf0116d9864342335413721
.travis.yml
.travis.yml
language: python python: - 2.7 before_install: - sudo apt-get install libcairomm-1.0-dev libboost-all-dev - wget http://www.cairographics.org/releases/py2cairo-1.10.0.tar.bz2 - tar xf py2cairo-1.10.0.tar.bz2 - cd py2cairo-1.10.0 - ./waf configure --prefix=$(python -c "import sys; print(sys.prefix)") - ./waf build - ./waf install - cd .. - pip install sphinx coveralls - ls /home/travis/virtualenv/python2.7/lib/pkgconfig - export PKG_CONFIG_PATH=PKG_CONFIG_PATH:/home/travis/virtualenv/python2.7/lib/pkgconfig install: - python setup.py install - cd script: - python -m DrawTurksHead
language: python python: - 2.7 before_install: - sudo apt-get install libcairomm-1.0-dev libboost-all-dev - wget http://www.cairographics.org/releases/py2cairo-1.10.0.tar.bz2 - tar xf py2cairo-1.10.0.tar.bz2 - cd py2cairo-1.10.0 - ./waf configure --prefix=$(python -c "import sys; print(sys.prefix)") - ./waf build - ./waf install - cd .. - pip install sphinx coveralls - ls /home/travis/virtualenv/python2.7/lib/pkgconfig - export PKG_CONFIG_PATH=PKG_CONFIG_PATH:/home/travis/virtualenv/python2.7/lib/pkgconfig install: - python setup.py install - cd script: - python -m DrawTurksHead deploy: provider: pypi user: jacquev6 password: secure: IxZkM+jLb2kdI836H4h5dAXFu33D7J1FUuJw/Os752XqH0wBK5Xkk/LFz383Nw6auz6ppwjgmnvKdogH+KZwZ/9E5UaNb3cA0veJJDxwdl1c3iZP8z5i0Bk+KsnqJgaUnNuEIWO46Y9LB6VzazhOwE3Ftc+5kzrnEXUU7285iE8= on: tags: true repo: jacquev6/DrawTurksHead python: 2.7
Deploy to PyPI from Travis
Deploy to PyPI from Travis
YAML
mit
jacquev6/DrawTurksHead,jacquev6/DrawTurksHead,jacquev6/DrawTurksHead
a058d6c510bc9d8e55a397775361d124ac8e4612
.travis.yml
.travis.yml
language: cpp script: make compiler: clang addons: apt: sources: - ubuntu-toolchain-r-test - llvm-toolchain-precise-3.6 packages: - gcc-5 - g++-5 - clang-3.6
language: cpp script: make compiler: - clang - gcc matrix: include: - compiler: gcc addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-5 env: COMPILER=g++-5 - compiler: clang addons: apt: sources: - ubuntu-toolchain-r-test - llvm-toolchain-precise-3.7 packages: - clang-3.7 env: COMPILER=clang++-3.7 addons: apt: sources: - ubuntu-toolchain-r-test - llvm-toolchain-precise-3.7 packages: - gcc-5 - g++-5 - clang-3.7
Change Travis CI config to use clang-3.7 and gcc-5
Change Travis CI config to use clang-3.7 and gcc-5
YAML
mit
rv8-io/rv8,rv8-io/rv8,rv8-io/rv8
20bff2b3e0e83dcf4412cb0b1fcb3e8cf114ea49
.travis.yml
.travis.yml
language: ruby rvm: - "1.9.3" - "2.0.0" - jruby-20mode - jruby-19mode - rbx script: bundle exec rspec spec
language: ruby rvm: - "1.9.3" - "2.0.0" - jruby-19mode - ree script: bundle exec rspec spec
Remove troublesome rubies and add REE for kicks
Remove troublesome rubies and add REE for kicks
YAML
mit
copyhacker/diligent
6c8ebd8fdf6f0684d64e184608b19d468b83f6dd
.travis.yml
.travis.yml
language: "node_js" node_js: - 0.4 - 0.6
language: "node_js" node_js: - 0.4 - 0.6 - 0.8
Test on node 0.8 using Travis CI.
Test on node 0.8 using Travis CI.
YAML
mit
jaredhanson/passport-tumblr
62087b64e831ef32a1b26fe3e47681d9cb129513
.travis.yml
.travis.yml
language: ruby rvm: - "1.8.7" - "1.9.2" - "1.9.3" script: bundle exec rspec
language: ruby rvm: - "1.9.2" - "1.9.3" script: bundle exec rspec
Remove test support for Ruby 1.8.7
Remove test support for Ruby 1.8.7
YAML
mit
kmcphillips/affairs_of_state
c763c469efdda912fce1294968678b086f43b055
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" install: "pip install -r requirements.txt" script: py.test
language: python python: - "2.6" - "2.7" install: "pip install -r requirements_tests.txt" script: py.test
Install from correct requirements file, Travis
Install from correct requirements file, Travis
YAML
mit
bluecap-se/yarr.client,bluecap-se/yarr.client,bluecap-se/yarr.client
cd7584888230a8a537e445ab7f9e8a436d0ee427
.travis.yml
.travis.yml
language: node_js node_js: - "10.11.0" script: - ./travis.sh
language: node_js node_js: - "10.11.0" before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.13.0 - export PATH=$HOME/.yarn/bin:$PATH script: - ./travis.sh
Use modern Yarn version on Travis CI
Use modern Yarn version on Travis CI Travis CI uses a quite old version of Yarn by default. This adds Yarn's recommended incantation for using the latest stable version.
YAML
apache-2.0
matrix-org/matrix-js-sdk,krombel/matrix-js-sdk,matrix-org/matrix-js-sdk,matrix-org/matrix-js-sdk,krombel/matrix-js-sdk,krombel/matrix-js-sdk,matrix-org/matrix-js-sdk
dbd15a59d5815a70399c183084f2dd67a9f16e43
.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 # command to install dependencies install: # older versions of pip won't work - sudo apt-get install libyaml-dev - pip install nose - pip install -U setuptools pip - pip install -r requirements.txt - pip --version - "VEXT_RELOAD_HACK=1 python setup.py install" - vext -s # command to run tests script: nosetests
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 # command to install dependencies install: # older versions of pip won't work - sudo apt-get install libyaml-dev - pip install nose - pip install -U setuptools pip - pip install -r requirements.txt - pip --version - "VEXT_RELOAD_HACK=1 python setup.py install" - vext -s # command to run tests script: - which nosetests - export VEXT_DEBUG_LOG=1 - nosetests
Enable more logging from vext
Enable more logging from vext
YAML
mit
stuaxo/vext
ae13d0bcb4ca681b0726559cdaa4c1e61383fe7e
.travis.yml
.travis.yml
language: python python: - 2.7 env: - TOX_ENV=lint - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=py35 - TOX_ENV=py36 - TOX_ENV=py37 - TOX_ENV=pypy - TOX_ENV=pypy3 install: - pip install tox script: - tox -e $TOX_ENV notifications: email: - [email protected]
language: python python: - 2.7 env: - TOX_ENV=lint - TOX_ENV=py27 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=py35 - TOX_ENV=py36 - TOX_ENV=py37 - TOX_ENV=pypy - TOX_ENV=pypy3 install: - pip install tox script: - tox -e $TOX_ENV notifications: email: - [email protected]
Drop Python 2.6 from various.
Drop Python 2.6 from various.
YAML
bsd-3-clause
Kami/python-yubico-client
42ef966fbc0cbd64ec150d047e9826b76435b054
.travis.yml
.travis.yml
language: python sudo: false cache: - pip python: - "2.7" - "3.5" env: - DJANGO_VERSION=1.10.* - DJANGO_VERSION=1.11.* install: - pip install -r requirements.txt - pip uninstall -y Django - pip install -q Django==$DJANGO_VERSION - pip list before_script: - psql -c 'create database access_mo_django;' -U postgres - cp am/am/settings_local.py.template am/settings_local.py script: - make test after_success: - coveralls addons: postgresql: "9.4" notifications: slack: accessmissouri:RBS1G1vbgVLJalHdSL1s82Zh
language: python sudo: false cache: - pip python: - "2.7" - "3.5" env: - DJANGO_VERSION=1.10.* - DJANGO_VERSION=1.11.* install: - pip install -r requirements.txt - pip uninstall -y Django - pip install -q Django==$DJANGO_VERSION - pip list before_script: - psql -c 'create database access_mo_django;' -U postgres - cp am/am/settings_local.py.template am/am/settings_local.py script: - make test after_success: - coveralls addons: postgresql: "9.4" notifications: slack: accessmissouri:RBS1G1vbgVLJalHdSL1s82Zh
Fix path on copied settings_local file
Fix path on copied settings_local file
YAML
bsd-2-clause
access-missouri/am-django-project,access-missouri/am-django-project,access-missouri/am-django-project,access-missouri/am-django-project
4dfe0f817f517ccec4a582caacea8290ce75fff0
.travis.yml
.travis.yml
dist: xenial sudo: required language: python python: - "3.7" services: - docker env: global: - PREFIX=gtcg/sv-callers - TAG=depr matrix: - ECHO=0 MODE=s PORT=10020 SCH=gridengine - ECHO=0 MODE=p PORT=10021 SCH=gridengine - ECHO=0 MODE=s PORT=10022 SCH=slurm - ECHO=0 MODE=p PORT=10023 SCH=slurm install: - pip install -r test-requirements.txt - docker run -d -p $PORT:22 --name $SCH-$MODE $PREFIX-$SCH:$TAG - sleep 10 - docker ps -a script: - cd snakemake && pytest --cov=helper_functions --cov-report=xml - docker exec -u xenon -t $SCH-$MODE bash -c "cd sv-callers && ./run.sh $ECHO $MODE $SCH" after_success: - python-codacy-coverage -r coverage.xml
dist: xenial sudo: required language: python python: - "3.7" services: - docker env: global: - PREFIX=gtcg/sv-callers - TAG=1.1.2 matrix: - ECHO=0 MODE=s PORT=10020 SCH=gridengine - ECHO=0 MODE=p PORT=10021 SCH=gridengine - ECHO=0 MODE=s PORT=10022 SCH=slurm - ECHO=0 MODE=p PORT=10023 SCH=slurm install: - pip install -r test-requirements.txt - docker run -d -p $PORT:22 --name $SCH-$MODE $PREFIX-$SCH:$TAG - sleep 10 - docker ps -a script: - cd snakemake && pytest --cov=helper_functions --cov-report=xml - docker exec -u xenon -t $SCH-$MODE bash -c "cd sv-callers && ./run.sh $ECHO $MODE $SCH" after_success: - python-codacy-coverage -r coverage.xml
Update CI: pin docker images.
Update CI: pin docker images.
YAML
apache-2.0
GooglingTheCancerGenome/sv-callers,GooglingTheCancerGenome/sv-callers
43ad28b3f84ab7d2f56a27a576d9d2c182cd6ee2
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.1 - 2.0.0 - 1.9.3
language: ruby rvm: - 2.1.2 - 2.0.0 - 1.9.3
Upgrade Ruby on Travis to 2.1.2
Upgrade Ruby on Travis to 2.1.2
YAML
mit
BookingSync/bookingsync-api
73f8e32393a247e668c1a7840683c7e1176a6a72
.travis.yml
.travis.yml
language: ruby rvm: - 2.3.4 cache: bundler branches: only: - master install: - bundle install script: - git config --global user.email "[email protected]" - git config --global user.name "Travis CI" - JEKYLL_ENV=production jgd -u https://[email protected]/grab/engineering-blog.git
language: ruby rvm: - 2.6.1 cache: bundler branches: only: - master before_install: - gem install bundler install: - bundle install script: - git config --global user.email "[email protected]" - git config --global user.name "Travis CI" - JEKYLL_ENV=production jgd -u https://[email protected]/grab/engineering-blog.git
Upgrade RVM to v2.6.1 and install Bundler 2.0
Upgrade RVM to v2.6.1 and install Bundler 2.0
YAML
mit
grab/engineering-blog,grab/engineering-blog,grab/engineering-blog,grab/engineering-blog,grab/engineering-blog,grab/engineering-blog,grab/engineering-blog,grab/engineering-blog,grab/engineering-blog
eb972019ff0ef9d5528f867ee8f47ed7d841b822
.travis.yml
.travis.yml
os: - linux - osx language: node_js sudo: required dist: trusty osx_image: xcode9.3 env: - SWIFT_VERSION=3.0.2 - SWIFT_VERSION=3.1 - SWIFT_VERSION=4.0.3 install: - eval "$(curl -sL https://swiftenv.fuller.li/install.sh)" - npm install --global --no-optional dredd script: - swift test - make test
os: - linux - osx language: node_js node_js: 8 sudo: required dist: trusty osx_image: xcode9.3 env: - SWIFT_VERSION=3.0.2 - SWIFT_VERSION=3.1 - SWIFT_VERSION=4.0.3 install: - eval "$(curl -sL https://swiftenv.fuller.li/install.sh)" - npm install --global --no-optional dredd script: - swift test - make test
Use Node 8 on CI as Dredd requires newer node
chore: Use Node 8 on CI as Dredd requires newer node
YAML
bsd-2-clause
kylef/Curassow
a934d02d050839c0d2544ef59a07addd4aa418a8
.travis.yml
.travis.yml
language: rust sudo: false rust: - stable - beta - nightly notifications: email: false
language: rust sudo: false rust: - stable - beta - nightly script: - cargo run -- --database tests/fixtures/blackscholes.sqlite3 --table static --cores 4 notifications: email: false
Make Travis run the tool
Make Travis run the tool
YAML
mit
learning-on-chip/planner
b0f62957013abe2d18eeb61600576ea971218999
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.10" - "0.12" - "iojs" before_script: - npm install -g grunt-cli matrix: fast_finish: true
sudo: false language: node_js node_js: - "0.10" - "0.12" - "iojs" before_script: - npm install -g grunt-cli matrix: fast_finish: true cache: directories: - node_modules
Make use of Travis CI caching.
Make use of Travis CI caching.
YAML
mit
GerHobbelt/grunt-banner
9023354547a91bfc24c0b0bf9e131dc4959ac3ca
.travis.yml
.travis.yml
language: java sudo: false jdk: - openjdk7 - oraclejdk7
language: java sudo: false jdk: - oraclejdk8 ## # When a release is tagged, push to GitHub Releases. deploy: provider: releases api_key: $GITHUB_OAUTH_TOKEN file: ./build/libs/storm-websockets.jar skip_cleanup: true on: tags: true
Add auto-release and Oracle JDK 8 to Travis config
Add auto-release and Oracle JDK 8 to Travis config
YAML
mit
themasterchef/storm-websockets
c57c76f22cef64e1b026c0844f030a938a4f70a9
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "pypy" # command to install dependencies install: - ./bootstrap.sh - fab develop # command to run tests script: fab test
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "pypy" # command to install dependencies install: python setup.py install # command to run tests script: python setup.py test
Switch to using python's distutils for isntalling and testing since Fabric doesn't support Python 3+ at this time :/
Switch to using python's distutils for isntalling and testing since Fabric doesn't support Python 3+ at this time :/
YAML
mit
treemo/circuits,treemo/circuits,nizox/circuits,eriol/circuits,eriol/circuits,treemo/circuits,eriol/circuits
7b5a78e205ea2e0d0f6fb4ebfddfebfdb05f2215
.travis.yml
.travis.yml
language: python cache: pip env: global: - PILLOW_VERSION=3.2.0 matrix: include: - python: 2.7 env: PILLOW_VERSION=2.9.0 - python: 2.7 env: PILLOW_VERSION=3.0.0 - python: 2.7 - python: 3.3 - python: 3.4 - python: 3.5 - python: 3.6 before_install: # Dependencies to build PIL - sudo apt-get update -qq - sudo apt-get install -qq ubuntu-restricted-extras - sudo apt-get install -qq libfreetype6-dev libjpeg8-dev zlib1g-dev ffmpeg - sudo locale-gen fr_FR.UTF-8 - ffmpeg -version install: - pip install -q Pillow==$PILLOW_VERSION - pip install pytest pytest-cov coveralls - pip install . script: py.test -sv --cov sigal --cov-report term-missing tests/ after_success: coveralls notifications: irc: "chat.freenode.net#sigal"
language: python cache: pip env: global: - PILLOW="Pillow" matrix: include: - python: 2.7 - python: 3.4 env: PILLOW="Pillow==2.9.0" - python: 3.5 env: PILLOW="Pillow==3.0.0" - python: 3.6 before_install: # Dependencies to build PIL - sudo apt-get update -qq - sudo apt-get install -qq ubuntu-restricted-extras - sudo apt-get install -qq libfreetype6-dev libjpeg8-dev zlib1g-dev ffmpeg - sudo locale-gen fr_FR.UTF-8 - ffmpeg -version install: - pip install -q $PILLOW - pip install pytest pytest-cov coveralls - pip install . script: py.test -sv --cov sigal --cov-report term-missing tests/ after_success: coveralls notifications: irc: "chat.freenode.net#sigal"
Decrease the number of Travis build and use latest version of Pillow
Decrease the number of Travis build and use latest version of Pillow
YAML
mit
jasuarez/sigal,jasuarez/sigal,t-animal/sigal,saimn/sigal,saimn/sigal,xouillet/sigal,xouillet/sigal,saimn/sigal,xouillet/sigal,t-animal/sigal,t-animal/sigal,jasuarez/sigal
c9d2f60e61c507d831917b1b866e1ebb7b29d685
.travis.yml
.travis.yml
language: node_js cache: yarn node_js: - stable - "8" - "6" - "4" install: - YARN_IGNORE_ENGINES=true yarn
language: node_js cache: yarn node_js: - node - "8" - "6" - "4" install: - YARN_IGNORE_ENGINES=true yarn
Rename stable to node in Travis CI Node.js versions
Rename stable to node in Travis CI Node.js versions
YAML
mit
logux/logux-core
1130bc64ef605429e19ea9fda381e49d0f888858
.travis.yml
.travis.yml
language: go services: - rabbitmq env: - AMQP_URL=amqp://guest:[email protected]:5672/ GOMAXPROCS=2 script: go test -v -tags integration ./... before_script: - sh -c "sleep 120 && killall -QUIT amqp.test" &
language: go go: - 1.0 - 1.1 - tip services: - rabbitmq env: - AMQP_URL=amqp://guest:[email protected]:5672/ GOMAXPROCS=2 script: go test -v -tags integration ./... before_script: - sh -c "sleep 120 && killall -QUIT amqp.test" &
Test under multiple go versions
Test under multiple go versions
YAML
bsd-2-clause
z00223295/amqp,StephaneP/amqp,vektra/amqp,TeamFairmont/amqp,beni55/amqp,z00223295/amqp,akrennmair/amqp,aviau/amqp,streadway/amqp,gcnonato/amqp,streadway/amqp,beni55/amqp,TeamFairmont/amqp,ChannelMeter/amqp,akrennmair/amqp,gcnonato/amqp,vektra/amqp,StephaneP/amqp,ChannelMeter/amqp,aviau/amqp
f71799b638e738cc7c8a5fcc3671e96d731b7f9e
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" env: - PYTHONPATH='.' branches: only: - master - next before_install: - sudo apt-get update - sudo apt-get install nodejs - curl http://npmjs.org/install.sh | sh - npm install zombie install: - pip install . --use-mirrors - pip install nose - pip install fudge script: - nosetests --where=zombie
language: python python: - "2.6" - "2.7" env: - PYTHONPATH='.' branches: only: - master - next before_install: - sudo apt-get update - sudo apt-get install nodejs - curl http://npmjs.org/install.sh | sh - npm install zombie install: - pip install . --use-mirrors - pip install nose - pip install fudge script: - nosetests --where=zombie
Revert "More TravisCI head-against-wall action."
Revert "More TravisCI head-against-wall action." This reverts commit 2ca1c412ac0e488cd8ae7d725a08ee69e9b07f01.
YAML
mit
ryanpetrello/python-zombie,ryanpetrello/python-zombie
c35e2ce26b3cf2357fe0270be8b3c867b3ff67f1
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 before_script: - composer self-update - composer install --dev -o - mkdir tests/files script: phpunit --coverage-text --coverage-clover /tmp/flysystem/coverage.xml
language: php php: - 5.3 - 5.4 - 5.5 - hhmv matrix: allow_failures: - php: hhmv before_script: - composer self-update - composer install --dev -o - mkdir tests/files script: phpunit --coverage-text --coverage-clover /tmp/flysystem/coverage.xml
Add HHMV as a test php version but allow it to fail
Add HHMV as a test php version but allow it to fail
YAML
mit
hannesvdvreken/flysystem,concrete5/flysystem,rossriley/flysystem,mapyo/flysystem,farmisen/flysystem,twistor/flysystem,mhlavac/flysystem,twistor/flysystem,dshafik/flysystem,mhlavac/flysystem,nao-pon/flysystem,sachintaware/flysystem,sohelrana820/flysystem,oswaldderiemaecker/flysystem,CarsonF/flysystem,dstockto/flysystem,Amrit01/flysystem,barryvdh/flysystem
7d7a4f5d94e2dc0aaa0a18e117acd3128764a389
.travis.yml
.travis.yml
# .travis.yml # Build Options language: ruby rvm: - 2.3.1 before_script: - cp .rspec.example .rspec script: - bundle exec thor ci:steps # Travis-CI Configuration cache: bundler sudo: false # Enable containerized builds. services: - mongodb addons: apt: sources: - mongodb-3.0-precise packages: - mongodb-org-server
# .travis.yml # Build Options language: ruby rvm: - 2.3.1 before_script: - cp .rspec.example .rspec script: - bundle exec thor ci:steps # Travis-CI Configuration cache: bundler sudo: false # Enable containerized builds. services: - mongodb
Use bundled MongoDB for TravisCI.
Use bundled MongoDB for TravisCI.
YAML
mit
sleepingkingstudios/bronze
e9fc4750d427196754bebb0e2e1e38d68893490a
.travis.yml
.travis.yml
# Not really c++, but stops travis from listing a language. language: c++ matrix: include: # ----------------------------------------------------------------- # Linux hosted tests - os: linux dist: trusty sudo: false env: BAZEL=HEAD - os: linux dist: trusty sudo: false env: BUILDIFER=RELEASE # ----------------------------------------------------------------- # macOS hosted tests - os: osx osx_image: xcode9.3 env: BAZEL=HEAD # No need for a BUILDIFER run on mac, the results will be the same. # And linux boxes test faster on travis, so just use the one. before_install: - ./.travis_install.sh script: - ./.travis_build.sh notifications: email: false
# Not really c++, but stops travis from listing a language. language: c++ matrix: include: # ----------------------------------------------------------------- # Linux hosted tests - os: linux dist: trusty sudo: false env: BAZEL=HEAD - os: linux dist: trusty sudo: false env: BUILDIFER=RELEASE # ----------------------------------------------------------------- # macOS hosted tests - os: osx osx_image: xcode9.4 env: BAZEL=HEAD # No need for a BUILDIFER run on mac, the results will be the same. # And linux boxes test faster on travis, so just use the one. before_install: - ./.travis_install.sh script: - ./.travis_build.sh notifications: email: false
Move to Xcode 9.4 for testing.
Move to Xcode 9.4 for testing.
YAML
apache-2.0
bazelbuild/bazel-skylib,bazelbuild/bazel-skylib,bazelbuild/bazel-skylib
2f10e4097dd4c9e91ff6fdda35d745805f40843f
.travis.yml
.travis.yml
language: node_js node_js: - '0.10' - '0.12' - '4' - '5' - '6' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4' - '5' - '6' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
Build with latest Node.js 6 on Travis CI.
Build with latest Node.js 6 on Travis CI.
YAML
mit
bigeasy/twiddle,bigeasy/twiddle
379ad0426da4b2aea5a959fee453c3409855cd85
.travis.yml
.travis.yml
language: python python: - '2.7' before_install: - openssl aes-256-cbc -K $encrypted_c50ef8f16548_key -iv $encrypted_c50ef8f16548_iv -in uxgraph-client-secret.json.enc -out uxgraph-client-secret.json -d deploy: provider: gae keyfile: "uxgraph-client-secret.json" project: "tessa3-uxgraph" script: "main_test.py"
language: python python: - '2.7' before_install: - openssl aes-256-cbc -K $encrypted_c50ef8f16548_key -iv $encrypted_c50ef8f16548_iv -in uxgraph-client-secret.json.enc -out uxgraph-client-secret.json -d deploy: provider: gae keyfile: "uxgraph-client-secret.json" project: "tessa3-uxgraph"
Revert "Debugging Travis failing builds"
Revert "Debugging Travis failing builds" This reverts commit fcaffa76c82ec9b6d8f1da997cb6657c5bba48ab.
YAML
mit
tessa3/uxgraph,tessa3/uxgraph,tessa3/uxgraph,tessa3/uxgraph
f166c109b9d6bec769635d43be5aa1c04d4f3de7
.travis.yml
.travis.yml
language: go go: - 1.1 - 1.2 - 1.3 - release - tip
language: go go: - 1.1 - 1.2 - 1.3 - release - tip -install: - - go get launchpad.net/gocheck
Add back explicit install of gocheck for Go 1.1
Add back explicit install of gocheck for Go 1.1
YAML
isc
agaurav/maxminddb-golang,oschwald/maxminddb-golang,adjust/maxminddb-golang,viki-org/maxminddb-golang
6f1686b081c94746a0315f66a3b593bb727c3e57
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.0 - 2.1.0
language: ruby rvm: - 2.2.0 - 2.1.0 - 2.0.0
Test on a really old Ruby version
Test on a really old Ruby version
YAML
mit
codequest-eu/codequest_pipes,codequest-eu/codequest_pipes
eb09b366d2fde25587ca42ebee2d8b1761e68617
.travis.yml
.travis.yml
language: php php: - 5.3.3 - 5.4 before_install: - wget http://cs.sensiolabs.org/get/php-cs-fixer.phar before_script: - composer self-update - composer install script: - (cd test; phpunit -c phpunit.xml.dist) - output=$(php php-cs-fixer.phar fix -v --dry-run --level=psr2 .); if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; false; fi;
language: php php: - 5.3 - 5.4 before_install: - wget http://cs.sensiolabs.org/get/php-cs-fixer.phar before_script: - composer self-update - composer install script: - (cd test; phpunit -c phpunit.xml.dist) - output=$(php php-cs-fixer.phar fix -v --dry-run --level=psr2 .); if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; false; fi;
Remove testing against 5.3.3 - still does not work
Remove testing against 5.3.3 - still does not work
YAML
bsd-2-clause
zionsg/ZnZend
25795c0efc39734129757c5a75618c6edab5cd59
.travis.yml
.travis.yml
language: node_js node_js: - '0.10' - '0.11' - '0.12' - '4.1.1'
sudo: false language: node_js node_js: - '4.1.1' - '0.12' - '0.11' - '0.10'
Enable fast containers on Travis CI
build: Enable fast containers on Travis CI <https://docs.travis-ci.com/user/ci-environment/> <https://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/> <https://docs.travis-ci.com/user/migrating-from-legacy/>
YAML
mit
kof/node-qunit
6591e0379960777a13e52f3b90212fb180680ae0
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10"
language: node_js node_js: - "0.11" - "0.10" before_install: - npm install -g grunt-cli
Update Travis CI to install Grunt before running tests.
Update Travis CI to install Grunt before running tests.
YAML
mit
cedaro/grunt-wp-css
7767f7a5be25c4aca25b53cc38ebfadb6c4d2c09
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" install: - pip install coveralls --use-mirrors # Commands to run tests. # Force nose to process test files in alphabetical order so that # test000.py is first (it changes sys.path which is needed for # other tests) by explicitly ordering parameters for nosetests command. # Then run coverage. script: - nosetests `ls -d test/*.py` - coverage erase - coverage run -a test/test000.py - coverage run -a test/testAverager.py - coverage run -a test/testConfig.py - coverage run -a test/testRateTicker.py - coverage run -a test/testRing.py - coverage run -a test/testSortedList.py - coverage run -a test/testTimer.py after_success: - coveralls
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" install: - pip install coveralls --use-mirrors # Commands to run tests. # Force nose to process test files in alphabetical order so that # test000.py is first (it changes sys.path which is needed for # other tests) by explicitly ordering parameters for nosetests command. script: - nosetests `ls -d test/*.py` # - coverage erase # - coverage run -a test/test000.py # - coverage run -a test/testAverager.py # - coverage run -a test/testConfig.py # - coverage run -a test/testRateTicker.py # - coverage run -a test/testRing.py # - coverage run -a test/testSortedList.py # - coverage run -a test/testTimer.py #after_success: # - coveralls
Remove coverage.py from Travis file -- "coverage run" command behaves differently on Travis worker.
Remove coverage.py from Travis file -- "coverage run" command behaves differently on Travis worker.
YAML
mit
vmlaker/coils
c8fe98e2b03d9562fb6908e9c5331c07ab109577
.travis.yml
.travis.yml
# Language options language: python python: - "3.6" # Install dependencies install: - git clone git://github.com/astropy/ci-helpers.git - source ci-helpers/travis/setup_conda.sh - "pip install -r requirements/base.txt" # Run the tests script: coverage run -m pytest # Assess test coverage after_success: - coveralls # Hook travis into matrix channel for notifications notifications: webhooks: urls: - "https://scalar.vector.im/api/neb/services/hooks/dHJhdmlzLWNpLyU0MFNvbGFyRHJldyUzQW1hdHJpeC5vcmcvJTIxaGtXQ2l5aFF5eGlZSmxVdEtGJTNBbWF0cml4Lm9yZw" on_success: change # always|never|change on_failure: always on_start: never
# Language options language: python python: - "3.6" # Install dependencies install: - git clone git://github.com/astropy/ci-helpers.git - source ci-helpers/travis/setup_conda.sh - "pip install -r requirements/base.txt" - pip install flake8 # Run flake8 tests before_script: # stop the build if there are Python syntax errors or undefined names - time flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - time flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics # Run the tests script: coverage run -m pytest # Assess test coverage after_success: - coveralls # Hook travis into matrix channel for notifications notifications: webhooks: urls: - "https://scalar.vector.im/api/neb/services/hooks/dHJhdmlzLWNpLyU0MFNvbGFyRHJldyUzQW1hdHJpeC5vcmcvJTIxaGtXQ2l5aFF5eGlZSmxVdEtGJTNBbWF0cml4Lm9yZw" on_success: change # always|never|change on_failure: always on_start: never
Add flake8 to the testing
Add flake8 to the testing
YAML
bsd-3-clause
StanczakDominik/PlasmaPy
2365e7a7ac35886847c05506cb8af175157b088a
.travis.yml
.travis.yml
language: python python: - 2.7 - 3.3 - 3.4 - 3.5 sudo: false addons: apt: packages: - python-numpy - python-sphinx install: - pip install nose-cov python-coveralls - pip install -r requirements.txt # Run test script: - nosetests --with-cov --cov properties --cov-config .coveragerc -v -s # Calculate coverage after_success: - coveralls notifications: slack: 3point:n4uGopqXrpbYFbslpV5z0tyO email: false
language: python python: - 2.7 - 3.3 - 3.4 - 3.5 sudo: false addons: apt: packages: - python-numpy install: - pip install nose-cov python-coveralls sphinx - pip install -r requirements.txt # Run test script: - nosetests --with-cov --cov properties --cov-config .coveragerc -v -s # Calculate coverage after_success: - coveralls notifications: slack: 3point:n4uGopqXrpbYFbslpV5z0tyO email: false
Make sure to get the right version for this Python...?
Make sure to get the right version for this Python...?
YAML
mit
aranzgeo/properties,3ptscience/properties
47ba5a5b47ce46b40c59821ea9f0e0f3daf0ef1b
.travis.yml
.travis.yml
language: objective-c before_install: - sudo gem install cocoapods - sudo easy_install cpp-coveralls script: - make coverage after_success: - make send-to-coveralls
language: objective-c before_install: - sudo easy_install cpp-coveralls - sudo gem install cocoapods - brew update - brew upgrade xctool script: - make coverage after_success: - make send-to-coveralls
Add upgrade xctool at build on Travis CI
Add upgrade xctool at build on Travis CI
YAML
mit
nowsprinting/iosAppsTestAutomationSamples,nowsprinting/iosAppsTestAutomationSamples,nowsprinting/iosAppsTestAutomationSamples,nowsprinting/iosAppsTestAutomationSamples
f028e428bee377b64627eefdec4082b37e66bd21
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm branches: except: - v0.5 - v0.6 - php5.2_backport - documentation services: redis-server before_script: - composer self-update - composer install --no-interaction --prefer-source --dev script: - vendor/bin/phpunit -c phpunit.xml.travisci matrix: allow_failures: - php: hhvm fast_finish: true
language: php sudo: false php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm branches: except: - v0.5 - v0.6 - php5.2_backport - documentation services: redis-server before_script: - composer self-update - composer install --no-interaction --prefer-source --dev script: - vendor/bin/phpunit -c phpunit.xml.travisci matrix: allow_failures: - php: hhvm fast_finish: true
Switch to container-based builds on Travis CI.
Switch to container-based builds on Travis CI. We do not need "sudo" anyway. See http://docs.travis-ci.com/user/migrating-from-legacy/ for details.
YAML
mit
WalterShe/predis,dzung2t/predis,moria/predis,gencer/predis,quangnguyen90/predis,gopalindians/predis,mrkeng/predis,lvbaosong/predis,SecureCloud-biz/predis,protomouse/predis,CloudSide/predis,zhangyancoder/predis,nguyenthaihan/predis,RudyJessop/predis
f39eb0b8df9b0d9d4a9a6782c0531468e2c65fe5
.travis.yml
.travis.yml
language: php php: - 7.2 services: - mysql before_script: - mysql -e 'create database budget_testing;' - cp .env.travis .env - composer install --no-interaction - php artisan key:generate - php artisan migrate --database=testing jobs: include: - stage: test name: "PHPUnit" script: vendor/bin/phpunit - stage: test name: "PHPCS" script: vendor/bin/phpcs
language: php php: - 7.2 services: - mysql before_script: - mysql -e 'create database budget_testing;' - cp .env.travis .env - composer install --no-interaction - php artisan key:generate - php artisan migrate --database=testing jobs: include: - stage: test name: "PHPUnit" script: vendor/bin/phpunit - stage: test name: "Dusk" script: php artisan serve & php artisan dusk - stage: test name: "PHPCS" script: vendor/bin/phpcs
Create job in Travis configuration for Laravel Dusk
Create job in Travis configuration for Laravel Dusk
YAML
mit
pix3ly/budget,pix3ly/budget