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
e7f3499a4b5588c0bd1a63113b7a3b3fed51a095
.travis.yml
.travis.yml
sudo: required dist: trusty language: ruby rvm: - 2.0.0 - 2.1 - 2.2 - 2.3.0
sudo: required before_install: gem update --system dist: trusty language: ruby rvm: - 2.0.0 - 2.1 - 2.2 - 2.3.0
Use latest Rubygems in Travis
Use latest Rubygems in Travis A bug in Rubgems < 2.6.9 prevents the rainbow gem from being installed. See: sickill/rainbow#44
YAML
mit
mmozuras/pronto-scss
bcc223d5c7dc56e1523e8eef08ac933bf18c73d7
.travis.yml
.travis.yml
language: objective-c xcode_workspace: onetimepassword.xcworkspace xcode_scheme: OneTimePassword xcode_sdk: - iphonesimulator8.1 script: xcodebuild -workspace onetimepassword.xcworkspace -scheme OneTimePassword -sdk iphonesimulator8.1 build test
language: objective-c xcode_workspace: onetimepassword.xcworkspace xcode_scheme: - OneTimePassword - OneTimePasswordLegacy xcode_sdk: - iphonesimulator8.1 script: - xcodebuild -workspace onetimepassword.xcworkspace -scheme OneTimePassword -sdk iphonesimulator8.1 build test - xcodebuild -workspace onetimepassword.xcworkspace -scheme OneTimePasswordLegacy -sdk iphonesimulator8.1 build test
Build both targets in Travis
Build both targets in Travis
YAML
mit
mattrubin/onetimepassword,mattrubin/onetimepassword
1d380cc4b0c7a183db351d23b9a3f639e71c7e09
.travis.yml
.travis.yml
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage osx_image: xcode7.3 language: objective-c # cache: cocoapods # podfile: Example/Podfile # before_install: # - gem install cocoapods # Since Travis is not always on latest version # - pod install --project-directory=Example script: - set -o pipefail && xcodebuild test -workspace Example/YMValidator.xcworkspace -scheme YMValidator-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty - pod lib lint
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage osx_image: xcode7.3 language: objective-c # cache: cocoapods # podfile: Example/Podfile # before_install: # - gem install cocoapods # Since Travis is not always on latest version # - pod install --project-directory=Example script: - set -o pipefail && xcodebuild build -workspace Example/YMValidator.xcworkspace -scheme YMValidator-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty - pod lib lint
Update the commande line test to build
[Travis] Update the commande line test to build
YAML
mit
YMonnier/YMValidator,YMonnier/YMValidator,YMonnier/YMValidator
45a6f13f191ee7d2abb645642f0d888043a5cb40
.travis.yml
.travis.yml
sudo: false addons: apt: sources: - hvr-ghc packages: - cabal-install-1.22 - ghc-7.10.1 install: - travis_retry cabal update - runhaskell BuildFromSource.hs build - cabal sandbox init --sandbox="`pwd`"/Elm-Platform/build/.cabal-sandbox - cabal install --only-dependencies --enable-tests script: - cabal configure - cabal build - cabal install - ./tests/run-tests.sh
sudo: false addons: apt: sources: - hvr-ghc packages: - cabal-install-1.22 - ghc-7.10.1 before_install: - export PATH=/opt/ghc/7.10.1/bin:/opt/cabal/1.22/bin:$PATH install: - travis_retry cabal update - runhaskell BuildFromSource.hs build - cabal sandbox init --sandbox="`pwd`"/Elm-Platform/build/.cabal-sandbox - cabal install --only-dependencies --enable-tests script: - cabal configure - cabal build - cabal install - ./tests/run-tests.sh
Migrate to Travis-CI container-based infrastructure (2nd attempt)
Migrate to Travis-CI container-based infrastructure (2nd attempt)
YAML
bsd-3-clause
fredcy/elm-format,nukisman/elm-format-short,fredcy/elm-format,nukisman/elm-format-short,nukisman/elm-format-short,avh4/elm-format,avh4/elm-format,avh4/elm-format,fredcy/elm-format,nukisman/elm-format-short,nukisman/elm-format-short,avh4/elm-format
7fc25c337bf90a942dd7d94a9c4e4e20602d5f7f
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '7' - '6' - '4'
sudo: false language: node_js node_js: - '8' - '6' - '4'
Update Node versions on Travis
Test(config): Update Node versions on Travis
YAML
unlicense
fvdm/nodejs-geolocation
b6417d215c799d7849a454e12a4e9d8f17d82c91
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby - jruby-19mode - rbx-18mode - rbx-19mode - ree - ruby-head
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby - rbx-18mode - rbx-19mode - ree - ruby-head
Revert "Test JRuby's 1.9 mode"
Revert "Test JRuby's 1.9 mode" posix-spawn doesn't compile for JRuby's 1.9 mode This reverts commit 8ece8f49d546379e9408796a7fcc338030f6f99e.
YAML
bsd-3-clause
koraktor/metior
031f55c96b85881a356255015ca64a1ebc7bb85c
.travis.yml
.travis.yml
language: haskell script: wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --quiet | LANG=C sh
language: haskell script: wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --quiet | sh
Remove the LANG=C on Travis
Remove the LANG=C on Travis
YAML
bsd-3-clause
ndmitchell/shake,ndmitchell/shake,ndmitchell/shake,ndmitchell/shake,ndmitchell/shake,ndmitchell/shake
c07d98e5f2c0bd681e5dd95457de5cafd67b0c33
.travis.yml
.travis.yml
language: go go: - 1.1 - 1.2 - 1.3 - 1.4 - tip script: go test -v ./...
language: go go: - 1.1 - 1.2 - 1.3 - 1.4 - 1.5 - tip script: go test -v ./...
Test against go 1.5 as well
Test against go 1.5 as well
YAML
mit
erik/mixport
8f8454e44588df71b19ab798a43e4012f967aff2
.travis.yml
.travis.yml
language: node_js node_js: - '0.12' before_script: install: true script: - npm install grunt-cli -g - npm install - grunt travis after_success: - node deploy-docs.js notifications: slack: secure: aQXFk2/MxX5eR2JM90xWAA9YX03QArY1ejUmnP/NkFHbB4zzKZblACjEeDTDTDCThZpXhrganX2nDWrWFrrXbOG28wKrRhEZSULPAgyiWGpfkMoT44fKmgh+eZ5C/isMF2eeQCrYo3EQCMxfCKxNaBhyLc+jr/Sm232zU2LaXo8=
sudo: false language: node_js node_js: - '0.12' before_script: install: true script: - npm install grunt-cli -g - npm install - grunt travis after_success: - node deploy-docs.js notifications: slack: secure: aQXFk2/MxX5eR2JM90xWAA9YX03QArY1ejUmnP/NkFHbB4zzKZblACjEeDTDTDCThZpXhrganX2nDWrWFrrXbOG28wKrRhEZSULPAgyiWGpfkMoT44fKmgh+eZ5C/isMF2eeQCrYo3EQCMxfCKxNaBhyLc+jr/Sm232zU2LaXo8=
Update to new Travis infrastructure
Update to new Travis infrastructure
YAML
bsd-2-clause
excaliburjs/Excalibur,htalat/Excalibur,htalat/Excalibur,excaliburjs/Excalibur,excaliburjs/Excalibur,htalat/Excalibur
a3a7e3e8fe85c74fdaff24fc054a8fe69ec2bab7
.travis.yml
.travis.yml
language: node_js node_js: - "0.10"
language: node_js node_js: - '0.10' deploy: provider: npm email: [email protected] on: tags: true api_key: secure: XqIdL8v1nJnc6Bs/+0YKEethWw6git8L2fRvXT6hGpnlBSwIpIcOG9V4PokBmcpCaNJcVPL4/RshcSepxsJ3/fnDLtH6zydnuAi/nyYxmG7Ko2YjSJrHOXXQnwkjXQKxzHz1FJTCCipt7pFkwsCN1fqevknIUF4szOv5czq5F6E=
Add npm publish to tagged releases
Add npm publish to tagged releases
YAML
mit
ndhoule/metalsmith-asciidoc
d5b794825fa3152864c7a96d9772cdb5ed19260c
.travis.yml
.travis.yml
language: python # Python versions to test python: - "2.7" - "3.3" - "3.4" # Manually define here the combinations of django and db versions to test env: - DJANGO_VERSION=1.6.6 DB=postgresql - DJANGO_VERSION=1.6.6 DB=sqlite # Install the application install: - sh -c "if [ '$DB' = 'postgresql' ]; then pip install psycopg2; fi" - pip install -r requirements_devel.txt - pip install -q Django==$DJANGO_VERSION - pip install --upgrade django-tastypie - python extras/scripts/create_local_settings.py # Create test databases before_script: - sh -c "if [ '$DB' = 'postgresql' ]; then psql -c 'DROP DATABASE IF EXISTS test_wger;' -U postgres; fi" - sh -c "if [ '$DB' = 'postgresql' ]; then psql -c 'CREATE DATABASE test_wger;' -U postgres; fi" # Do the tests script: # Regular application - coverage run --source='.' ./manage.py test # Mobile version - TEST_MOBILE=True ./manage.py test # Formatting - pep8 --max-line-length=100 --exclude="urls.py,*migrations*" wger # Code coverage - coverage report
language: python # Python versions to test python: - "2.7" - "3.3" - "3.4" # Manually define here the combinations of django and db versions to test env: - DJANGO_VERSION=1.6.8 DB=postgresql - DJANGO_VERSION=1.6.8 DB=sqlite # Install the application install: - sh -c "if [ '$DB' = 'postgresql' ]; then pip install psycopg2; fi" - pip install -r requirements_devel.txt - pip install -q Django==$DJANGO_VERSION - pip install --upgrade django-tastypie - python extras/scripts/create_local_settings.py # Create test databases before_script: - sh -c "if [ '$DB' = 'postgresql' ]; then psql -c 'DROP DATABASE IF EXISTS test_wger;' -U postgres; fi" - sh -c "if [ '$DB' = 'postgresql' ]; then psql -c 'CREATE DATABASE test_wger;' -U postgres; fi" # Do the tests script: # Regular application - coverage run --source='.' ./manage.py test # Mobile version - TEST_MOBILE=True ./manage.py test # Formatting - pep8 --max-line-length=100 --exclude="urls.py,*migrations*" wger # Code coverage - coverage report
Update django version used for tests
Update django version used for tests
YAML
agpl-3.0
petervanderdoes/wger,wger-project/wger,rolandgeider/wger,rolandgeider/wger,petervanderdoes/wger,kjagoo/wger_stark,DeveloperMal/wger,DeveloperMal/wger,wger-project/wger,DeveloperMal/wger,DeveloperMal/wger,petervanderdoes/wger,wger-project/wger,petervanderdoes/wger,kjagoo/wger_stark,kjagoo/wger_stark,rolandgeider/wger,rolandgeider/wger,wger-project/wger,kjagoo/wger_stark
edd8e1a8da872f18bbf9ed14ccf3b0b3a5d9705c
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" install: "pip install -r requirements-dev.txt" script: "nose2"
dist: bionic language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" install: "pip install -r requirements-dev.txt" script: "nose2"
Update Ubuntu distribution on Travis to support python 3.7
Update Ubuntu distribution on Travis to support python 3.7
YAML
mit
zach-taylor/splunk_handler
ff18ab917e3be07ddd184e3c8178a273b9c3c7ed
.travis.yml
.travis.yml
dist: precise language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 install: - composer install --prefer-dist --no-interaction --no-suggest
dist: precise language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 install: - composer install --prefer-dist --prefer-lowest --no-interaction --no-suggest
Install lowest version on composer
Install lowest version on composer
YAML
mit
A5hleyRich/wp-queue
93949aff34d6d2a1d07a969bb62d99edb060ca9e
.travis.yml
.travis.yml
language: go go: - 1.7
language: go go: - 1.7 addons: code_climate: repo_token: 86a92217dd8d70fe4af3cf0005b109d3a98320ac60110a757fe2e27ce7517a4f
Add test coverage to Code climate
Add test coverage to Code climate
YAML
mit
ustrajunior/minion
0e4be3529b94adeabca8de596a2921fe00bd8eb6
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 1.9.3 gemfile: - gemfiles/Gemfile.activemodel-4.2 - gemfiles/Gemfile.activemodel-4.1 - gemfiles/Gemfile.activemodel-4.0 - gemfiles/Gemfile.activemodel-3.2.x script: "echo 'COME ON!' && bundle exec rake spec"
language: ruby sudo: false rvm: - 2.0.0 - 1.9.3 gemfile: - gemfiles/Gemfile.activemodel-4.2 - gemfiles/Gemfile.activemodel-4.1 - gemfiles/Gemfile.activemodel-4.0 - gemfiles/Gemfile.activemodel-3.2.x script: "echo 'COME ON!' && bundle exec rake spec"
Use new Travis container-based infrastructure
Use new Travis container-based infrastructure
YAML
mit
valo/her,spanner/her,marshall-lee/her,practicefusion/her,remiprev/her,danimashu/her,fandor/her,hubert/her,chewi/her,ticktricktrack/her,WizardOfOgz/her,tippenein/her,alexchumak/her,jkappers/her,mallikarjunayaddala/her,zacharywelch/her,ekampp/her,crv/her,kylezeng/her
b78b8277f4b8d758ed29fe54ed3a768f26c9ca99
.travis.yml
.travis.yml
language: ruby rvm: - ruby-head - 2.6.0 - 2.5.3 - 2.5.1 - 2.4.5 - 2.4.4 - 2.3.7 - 2.2.10 - 2.1.8 - 1.9.3 before_install: - gem update --system - gem --version - gem install bundler env: global: - CC_TEST_REPORTER_ID=92655ba2c8b47200f80e996afb80c410b9491514845d414d7517108ad35a5178 before_script: - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - ./cc-test-reporter before-build script: - bundle exec rspec after_script: - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
language: ruby rvm: - ruby-head - 2.6.0 - 2.5.3 - 2.5.1 - 2.4.5 - 2.4.4 - 2.3.7 - 2.2.10 - 2.1.8 - 1.9.3 before_install: - 'if [[ `ruby -v` =~ 2.2.10 ]]; gem update --system; then gem update --system; else gem update --system 2.7.8; fi' - 'gem --version' - 'gem install bundler' env: global: - CC_TEST_REPORTER_ID=92655ba2c8b47200f80e996afb80c410b9491514845d414d7517108ad35a5178 before_script: - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - ./cc-test-reporter before-build script: - bundle exec rspec after_script: - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
Add rubygems workaround for old Ruby versions
Add rubygems workaround for old Ruby versions
YAML
mit
krmbzds/turkish_id,krmbzds/turkish_id
3a302f3d80944da413b6e3232b6a404a8aaf4f26
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.3 script: xcrun xcodebuild -project BTree.xcodeproj -scheme BTree-Mac test after_success: bash <(curl -s https://codecov.io/bash)
language: objective-c osx_image: xcode8 script: xcrun xcodebuild -project BTree.xcodeproj -scheme BTree-Mac test after_success: bash <(curl -s https://codecov.io/bash)
Update Travis config for Xcode 8.
Update Travis config for Xcode 8.
YAML
mit
lorentey/BTree,eonil/BTree,eonil/BTree,lorentey/BTree,Maaimusic/BTree,lorentey/BTree,eonil/BTree,Maaimusic/BTree,Maaimusic/BTree
6c0eeb3e1265e41258289c13a1b5158aabf16ef2
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" before_script: - npm install -g grunt-cli
language: node_js node_js: - "0.12" - "0.10" - "iojs" - "iojs-v1.1.0" before_script: - npm install -g grunt-cli
Update runtimes to extend test coverage.
Update runtimes to extend test coverage.
YAML
mit
FinalDevStudio/fi-aegis
29b34ec4907dd87d2f8c4e906f85b0fce96b7ca6
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.3 install: - composer install script: - ./bin/phpspec run
language: php php: - '5.4' - '5.3' install: - composer install script: - ./bin/phpspec run
Change PHP version nums in Travis to strings
Change PHP version nums in Travis to strings
YAML
mit
BenConstable/phpspec-laravel
04263cd3e49156579ea1d77d829cbb660fd6b7ee
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.4" install: "pip install -r requirements-dev.txt" script: - make test - make lint - make docs
language: python python: - "2.7" - "3.4" - "3.5" install: "pip install -r requirements-dev.txt" script: - make test - make lint - make docs
Add python 3.5 to the build matrix
Add python 3.5 to the build matrix
YAML
mit
IATI/iati.core,IATI/iati.core
3b917930ae7f63427b142d1fcdb76084fab912d4
.travis.yml
.travis.yml
language: groovy sudo: false dist: precise jdk: - openjdk7 - oraclejdk8 env: global: - JAVA_OPTS="-Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2" - GRADLE_OPTS="-Xmx1024m" script: - ./gradlew check uploadArchives --full-stacktrace - cd samples/example && ./gradlew clean webResourceCompile --full-stacktrace && cd ../../ after_success: - ./gradlew coveralls --full-stacktrace
language: groovy sudo: false dist: precise jdk: #- openjdk7 - oraclejdk8 env: global: - GRADLE_OPTS="-Xmx1024m" script: - ./gradlew check uploadArchives --full-stacktrace - cd samples/example && ./gradlew clean webResourceCompile --full-stacktrace && cd ../../ after_success: - ./gradlew coveralls --full-stacktrace
Disable JDK7 builds temporarily on Travis CI
Disable JDK7 builds temporarily on Travis CI Seems not working on JDK7... https://github.com/gradle/gradle/issues/5740 Download fails with this error: ``` Received fatal alert: protocol_version ``` and setting -Dhttps.protocols does not affect.
YAML
apache-2.0
ksoichiro/gradle-web-resource-plugin
b927292327f2361222f82a496d95ea06c70068df
.travis.yml
.travis.yml
language: go go: - 1.8 sudo: required services: - docker before_install: # libseccomp in trusty is not new enough, need backports version. - sudo sh -c "echo 'deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse' > /etc/apt/sources.list.d/backports.list" - sudo apt-get update install: - sudo apt-get install btrfs-tools - sudo apt-get install libseccomp2/trusty-backports - sudo apt-get install libseccomp-dev/trusty-backports - docker run --rm -v /usr/local/bin:/target jpetazzo/nsenter - make install.tools - make install.deps before_script: - export PATH=$HOME/gopath/bin:$PATH jobs: include: - stage: Static Check script: - make .gitvalidation - make verify - stage: Build script: make binaries - stage: Unit Test script: make test - stage: Integration Test script: - make binaries - make test-cri after_script: # Abuse travis to preserve the log. # TODO(random-liu): Use prow for integration test. - cat /tmp/cri-containerd.log - cat /tmp/containerd.log
language: go go: - 1.8 sudo: required services: - docker before_install: # libseccomp in trusty is not new enough, need backports version. - sudo sh -c "echo 'deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse' > /etc/apt/sources.list.d/backports.list" - sudo apt-get update install: - sudo apt-get install btrfs-tools - sudo apt-get install libseccomp2/trusty-backports - sudo apt-get install libseccomp-dev/trusty-backports - docker run --rm -v /usr/local/bin:/target jpetazzo/nsenter before_script: - export PATH=$HOME/gopath/bin:$PATH jobs: include: - stage: Build script: - make install.tools - make .gitvalidation - make verify - make binaries - stage: Test script: - make install.deps - make test - make binaries - make test-cri after_script: # Abuse travis to preserve the log. # TODO(random-liu): Use prow for integration test. - cat /tmp/cri-containerd.log - cat /tmp/containerd.log
Update stage as per suggestion
Update stage as per suggestion Signed-off-by: asifdxtreme <[email protected]>
YAML
apache-2.0
estesp/containerd,mikebrow/containerd,mikebrow/cri-containerd,mikebrow/cri-containerd,zhangzhenhao/cri-containerd,dmcgowan/containerd,mikebrow/cri-containerd,zhangzhenhao/cri-containerd,containerd/containerd,w9n/cri-containerd,zhangzhenhao/cri-containerd,dmcgowan/containerd,containerd/containerd,vdemeester/containerd,mikebrow/containerd,estesp/containerd,thaJeztah/containerd,w9n/cri-containerd,vdemeester/containerd,thaJeztah/containerd,w9n/cri-containerd
bd2faec524101685dbfaf227ec817cf7f9bbff63
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - "1.9.3" - "2.0" - "2.1" - "2.2" - "jruby-9.0.4.0" - "rbx-2.5.8" cache: bundler
language: ruby sudo: false rvm: - "1.9.3" - "2.0" - "2.1" - "2.2" - "jruby-9.0.4.0" - "rubinius-3.9" cache: bundler
Use Rubinius to 3.9 on CI
Use Rubinius to 3.9 on CI Rubinius 2.5.8 doesn't exist on Travis anymore.
YAML
mit
janko-m/down
bd053321cecdf61c2f8a1c83128f0383718f3229
.travis.yml
.travis.yml
dist: xenial language: ruby services: - postgresql rvm: - '2.6.1' - '2.3.8' before_install: export TZ=Europe/Berlin before_script: bundle exec rake ci:setup script: bundle exec rake ci:spec
dist: xenial language: ruby services: - postgresql rvm: - '2.6.2' before_install: export TZ=Europe/Berlin before_script: bundle exec rake ci:setup script: bundle exec rake ci:spec
Update ruby versions on CI
Update ruby versions on CI
YAML
agpl-3.0
openmensa/openmensa,openmensa/openmensa,openmensa/openmensa,openmensa/openmensa
8f5080e78d1c2aff5f5b34689d212397843f7625
.travis.yml
.travis.yml
language: go go: - 1.8 os: linux dist: trusty sudo: required env: global: - BUILD_GOARCH=amd64 matrix: - BUILD_GOOS=linux - BUILD_GOOS=darwin - BUILD_GOOS=windows script: - env GOARCH=${BUILD_GOARCH} GOOS=${BUILD_GOOS} go build -o ${GOPATH}/bin/hello-${BUILD_GOOS}-${BUILD_GOARCH} - if [[ "$BUILD_GOOS" == "linux" ]]; then hello-${BUILD_GOOS}-${BUILD_GOARCH} Odaceo ; fi deploy: provider: bintray file: bintray.json user: ${BINTRAY_USER} key: ${BINTRAY_PASS}
language: go go: - 1.8 os: linux dist: trusty env: global: - BUILD_GOARCH=amd64 matrix: - BUILD_GOOS=linux - BUILD_GOOS=darwin - BUILD_GOOS=windows script: - env GOARCH=${BUILD_GOARCH} GOOS=${BUILD_GOOS} go build -o ${GOPATH}/bin/hello-${BUILD_GOOS}-${BUILD_GOARCH} - if [[ "$BUILD_GOOS" == "linux" ]]; then hello-${BUILD_GOOS}-${BUILD_GOARCH} Odaceo ; fi deploy: provider: bintray file: bintray.json user: ${BINTRAY_USER} key: ${BINTRAY_PASS}
Disable sudo on Travis CI
Disable sudo on Travis CI
YAML
apache-2.0
odaceo/lab-hello-world-go
51d442ffdcc2d5e9fd9b39d545d9b2a80b05f244
.travis.yml
.travis.yml
language: node_js node_js: - '11' addons: chrome: 'stable'
language: node_js node_js: - "11" addons: firefox: "latest" before_script: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 # give xvfb some time to start
Revert "Update Travis CI config"
Revert "Update Travis CI config" This reverts commit 88e707cef0ec7cb080d6a1532094cdcae230f306.
YAML
mit
akfish/node-vibrant,akfish/node-vibrant,akfish/node-vibrant
3ea34bcb368add77580ade52a2422b388d641f6c
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 notifications: irc: channels: - "irc.freenode.org#berkshelf" skip_join: true use_notice: true before_install: - sudo apt-get install -qq libarchive12 libarchive-dev before_script: - git config --global user.email "[email protected]" - git config --global user.name "Berkshelf" script: 'bundle exec thor spec'
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 notifications: irc: channels: - "irc.freenode.org#berkshelf" skip_join: true use_notice: true before_install: - sudo apt-get install -qq libarchive12 libarchive-dev before_script: - git config --global user.email "[email protected]" - git config --global user.name "Berkshelf" script: 'bundle exec thor spec'
Add Ruby 2.1 to Travis
Add Ruby 2.1 to Travis
YAML
apache-2.0
pingworks/berkshelf-api-binrepo-store,damacus/berkshelf-api,gueux/berkshelf-api,damacus/berkshelf-api,pantheon-systems/berkshelf-api,gueux/berkshelf-api,pingworks/berkshelf-api-binrepo-store,gueux/berkshelf-api,pantheon-systems/berkshelf-api,pantheon-systems/berkshelf-api,pingworks/berkshelf-api-binrepo-store,damacus/berkshelf-api
e5347cf27010a7d9e6ff25784d78af210cd1d086
.travis.yml
.travis.yml
language: julia julia: - 0.4 - 0.5 - nightly os: - linux - osx notifications: email: false before_script: - export PATH=$HOME/.local/bin:$PATH script: - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("DataFrames"); Pkg.test("DataFrames"; coverage=true)' after_success: - julia -e 'cd(Pkg.dir("DataFrames")); Pkg.clone("https://github.com/MichaelHatherly/Documenter.jl"); Pkg.add("Query"); include(joinpath("docs", "make.jl"))' - julia -e 'cd(Pkg.dir("DataFrames")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
language: julia julia: - 0.4 - 0.5 - nightly os: - linux - osx notifications: email: false before_script: - export PATH=$HOME/.local/bin:$PATH script: - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("DataFrames"); Pkg.test("DataFrames"; coverage=true)' after_success: - julia -e 'cd(Pkg.dir("DataFrames")); Pkg.add("Documenter"); Pkg.add("Query"); include(joinpath("docs", "make.jl"))' - julia -e 'cd(Pkg.dir("DataFrames")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
Use registered Documenter.jl instead of cloning directly from repository
Use registered Documenter.jl instead of cloning directly from repository
YAML
mit
campanja-forks/DataFrames.jl,JuliaStats/DataFrames.jl
5614acb9346944a2190a1440920228e57d6e87d2
.travis.yml
.travis.yml
language: php php: - 7 - 7.1 - nightly matrix: allow_failures: - php: nightly fast_finish: true before_script: - phpenv config-rm xdebug.ini || echo "xdebug not available" - travis_retry composer self-update - travis_retry composer install --no-interaction script: - phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml after_success: - travis_retry composer require satooshi/php-coveralls dev-master - travis_retry php vendor/bin/coveralls -v
language: php php: - 7 - 7.1 - nightly - hhvm matrix: allow_failures: - php: nightly - php: hhvm fast_finish: true env: - DEPS=lowest - DEPS=highest before_install: - phpenv config-rm xdebug.ini || echo "xdebug not available" install: - if [ "$DEPS" = "lowest" ]; then travis_retry composer update --no-interaction --prefer-source --prefer-lowest; else travis_retry composer update --no-interaction --prefer-source; fi; - composer show script: - phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml after_success: - travis_retry composer require satooshi/php-coveralls dev-master - travis_retry php vendor/bin/coveralls -v cache: directories: - $HOME/.composer/cache
Add hhvm, high/low dependency matrix testing
Add hhvm, high/low dependency matrix testing
YAML
mit
pcrov/JsonReader
873e7d44eda7209b506cc108a04650d40907c2dd
.travis.yml
.travis.yml
language: haskell before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo add-apt-repository -y ppa:h-rayflood/llvm - sudo apt-get update -qq - sudo apt-get install -qq g++-4.8 - sudo apt-get install --allow-unauthenticated -qq clang-3.4 install: # - cabal install hsc2hs cabal-dev # - cd engine && cabal install --only-dependencies --enable-tests - cabal install split script: # - cabal configure && cabal build && ./dist/build/shakefile/shakefile test - cd engine && ./stir update --force-reinstalls && ./stir test env: CC=clang TOOLCHAIN_VARIANT=clang
language: haskell before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo add-apt-repository -y ppa:h-rayflood/llvm - sudo apt-get update -qq - sudo apt-get install -qq g++-4.8 - sudo apt-get install --allow-unauthenticated -qq clang-3.4 install: # - cabal install hsc2hs cabal-dev # - cd engine && cabal install --only-dependencies --enable-tests - cabal install split script: # - cabal configure && cabal build && ./dist/build/shakefile/shakefile test - cd engine && ./stir update --force-reinstalls && ./stir test env: CC=clang-3.4 TOOLCHAIN_VARIANT=clang
Use clang-3.4 on Travis CI
Use clang-3.4 on Travis CI
YAML
apache-2.0
samplecount/methcla,samplecount/methcla,samplecount/methcla,samplecount/methcla,samplecount/methcla,samplecount/methcla
89a6ae467a7c4fa2fcd8888d26887cf5b737700d
.travis.yml
.travis.yml
language: go install: - "pip install --user -r requirements-dev.txt" - bash scripts/gitcookie.sh go: - 1.5 - 1.5.1 - 1.5.2
language: go install: - "pip install --user -r requirements-dev.txt" - bash scripts/gitcookie.sh go: - 1.6 - 1.5 - 1.5.1 - 1.5.2
Add support for compiling against golang 1.6
Add support for compiling against golang 1.6
YAML
apache-2.0
mikepea/fullerite,baris/fullerite,mikepea/fullerite,Yelp/fullerite,venkey-ariv/fullerite,Yelp/fullerite,venkey-ariv/fullerite,baris/fullerite,Yelp/fullerite,venkey-ariv/fullerite,baris/fullerite,baris/fullerite,mikepea/fullerite,Yelp/fullerite,mikepea/fullerite,venkey-ariv/fullerite
577468a0da38129c8b84c18721e7ba3ce5e60d62
.travis.yml
.travis.yml
language: c compiler: - gcc - clang notifications: recipients: - [email protected] branches: only: - master - develop before_script: - curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh - git submodule update --init --recursive - ./autogen.sh script: - ./configure --with-sylpheed-build-dir=`pwd`/sylpheed - make V=1
language: c compiler: - gcc - clang notifications: recipients: - [email protected] branches: only: - master - develop env: - SYLPHEED_STAGE=master - SYLPHEED_STAGE=3.5 - SYLPHEED_STAGE=3.4 before_script: - curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh - git submodule update --init --recursive - ./autogen.sh script: - ./configure --with-sylpheed-build-dir=`pwd`/sylpheed - make V=1
Add supported version of Sylpheed
Add supported version of Sylpheed
YAML
bsd-2-clause
kenhys/sylpheed-replyto,kenhys/sylpheed-replyto
12f0815d74954eae3f6e33f2577eea998c424154
.travis.yml
.travis.yml
language: generic sudo: required env: globaL: - COMPOSE_HTTP_TIMEOUT=3600 #env: # - test: Ubuntu 14.04 Apache # distribution: ubuntu # version: 14.04 # init: /sbin/init # run_opts: "" addons: hosts: - aegir.local.computer - sitetest.aegir.local.computer services: - docker before_install: # list docker-engine versions # - apt-cache madison docker-engine # upgrade docker-engine to specific version # - sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION} # reinstall docker-compose at specific version # - sudo rm /usr/local/bin/docker-compose # - curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose # - chmod +x docker-compose # - sudo mv docker-compose /usr/local/bin - cd travis - sudo bash prepare-docker.sh - docker --version - docker-compose --version - sudo mkdir vendor - sudo chmod 777 vendor - sudo mkdir bin - sudo chmod 777 bin script: # The test run is included in the docker-entrypoint-tests.sh file. - sudo docker-compose -f docker-compose-tests.yml run hostmaster --rm
language: generic sudo: required env: globaL: - COMPOSE_HTTP_TIMEOUT=3600 #env: # - test: Ubuntu 14.04 Apache # distribution: ubuntu # version: 14.04 # init: /sbin/init # run_opts: "" addons: hosts: - aegir.local.computer - sitetest.aegir.local.computer services: - docker before_install: # list docker-engine versions # - apt-cache madison docker-engine # upgrade docker-engine to specific version # - sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION} # reinstall docker-compose at specific version # - sudo rm /usr/local/bin/docker-compose # - curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose # - chmod +x docker-compose # - sudo mv docker-compose /usr/local/bin - cd travis - sudo bash prepare-docker.sh - docker --version - docker-compose --version - sudo mkdir vendor - sudo chmod 777 vendor - sudo mkdir bin - sudo chmod 777 bin script: # The test run is included in the docker-entrypoint-tests.sh file. - sudo -E docker-compose -f docker-compose-tests.yml run hostmaster --rm
Use -E to keep environment variables.
Use -E to keep environment variables.
YAML
mit
aegir-project/tests,aegir-project/tests
f4d4e3054b117319224263d3ba32de66b6d56266
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - "0.10" - "0.11" - "0.12" - "4" - "5" - "6" - "7" - "8" install: npm install
language: node_js sudo: false os: - osx node_js: - "0.10" - "0.11" - "0.12" - "4" - "5" - "6" - "7" - "8" install: npm install
Set Travis to run on OSX
Set Travis to run on OSX
YAML
mit
danyshaanan/osx-wifi-cli
494a6d62bbbd2eb9bc59198ea2c6b868af9cc848
.travis.yml
.travis.yml
sudo: false language: cpp compiler: - gcc # - clang addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.8 - g++-4.8 - openmpi-bin - libopenmpi-dev # - clang notifications: email: recipients: - [email protected] on_success: change on_failure: always before_install: - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi - PREFIX=$HOME/.local - export PATH=$PREFIX/bin:$PATH install: - pip install cpp-coveralls --user `whoami` - ./.install/boost.sh serialization script: - ./install.sh after_success: - coveralls -E ".*examples.*" -E ".*lib.*" -E ".*usr.*" -E ".*boost.*" --gcov-options '\-lp' --gcov /usr/bin/gcov-4.8
sudo: false language: cpp compiler: - gcc # - clang addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.8 - g++-4.8 - openmpi-bin - libopenmpi-dev # - clang notifications: email: recipients: - [email protected] on_success: change on_failure: always before_install: - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi - PREFIX=$HOME/.local - export PATH=$PREFIX/bin:$PATH install: - pip install cpp-coveralls --user `whoami` - ./.install/boost.sh serialization script: - ./install.sh --build=Debug after_success: - coveralls -E ".*examples.*" -E ".*lib.*" -E ".*usr.*" -E ".*boost.*" --gcov-options '\-lp' --gcov /usr/bin/gcov-4.8
Debug build in Travis for coveralls analysis
Debug build in Travis for coveralls analysis
YAML
mit
shaunharker/cluster-delegator,shaunharker/cluster-delegator,shaunharker/cluster-delegator,shaunharker/cluster-delegator
a01d19cbc838ec18e854d14deeb32593a1f09f64
.travis.yml
.travis.yml
language: ruby install: - sudo apt-get install ffmpeg - sudo apt-get install imagemagick command: bundle exec rake rvm: - 2.1.0 - 2.0.0 - 1.9.3
language: ruby install: - sudo apt-get install ffmpeg - sudo apt-get install imagemagick - bundle install command: bundle exec rake rvm: - 2.1.0 - 2.0.0 - 1.9.3
Add bundle install to install step.
Add bundle install to install step.
YAML
mit
ecmendenhall/wgif
766934cf39907640d746070a0a918088512ff10a
.travis.yml
.travis.yml
language: python python: 2.7 sudo: required dist: xenial env: - PY=e ANGR_REPO=pyvex - PY=e ANGR_REPO=cle - PY=e ANGR_REPO=simuvex - PY=e ANGR_REPO=angr - PY=e ANGR_REPO=angr-doc - PY=e ANGR_REPO=angrop - PY=e ANGR_REPO=fuzzer - PY=e ANGR_REPO=driller - PY=p ANGR_REPO=colorguard - PY=e ANGR_REPO=fidget - PY=e ANGR_REPO=patcherex # - PY=e ANGR_REPO=tracer NOSE_OPTIONS="-x" NOSE_PROCESSES=1 # - PY=p ANGR_REPO=rex NOSE_OPTIONS="-x" NOSE_PROCESSES=1 install: ( curl https://raw.githubusercontent.com/angr/angr-dev/$TRAVIS_BRANCH/travis-install.sh | grep -v 404 || curl https://raw.githubusercontent.com/angr/angr-dev/master/travis-install.sh ) | bash script: ~/angr-dev/travis-test.sh
language: python python: 2.7 sudo: required dist: xenial env: - PY=e ANGR_REPO=cle - PY=e ANGR_REPO=simuvex - PY=e ANGR_REPO=angr - PY=e ANGR_REPO=angr-doc - PY=e ANGR_REPO=angrop - PY=e ANGR_REPO=fuzzer - PY=e ANGR_REPO=driller - PY=p ANGR_REPO=colorguard - PY=e ANGR_REPO=fidget - PY=e ANGR_REPO=patcherex # - PY=e ANGR_REPO=tracer NOSE_OPTIONS="-x" NOSE_PROCESSES=1 # - PY=p ANGR_REPO=rex NOSE_OPTIONS="-x" NOSE_PROCESSES=1 install: ( curl https://raw.githubusercontent.com/angr/angr-dev/$TRAVIS_BRANCH/travis-install.sh | grep -v 404 || curl https://raw.githubusercontent.com/angr/angr-dev/master/travis-install.sh ) | bash script: ~/angr-dev/travis-test.sh
Disable pyvex tests. there are no pyvex tests. there is no war in ba sing se
Disable pyvex tests. there are no pyvex tests. there is no war in ba sing se
YAML
bsd-2-clause
0xbc/pyvex,angr/pyvex,angr/pyvex,0xbc/pyvex
4dd8facc26020b545ca90320e4651a66a8c04b38
.travis.yml
.travis.yml
sudo: false cache: bundler language: ruby rvm: - 2.2.5 - 2.3.1 - 2.3.3 before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - "sleep 5" script: - bundle exec rspec - bundle exec rubocop
sudo: false cache: bundler language: ruby rvm: - 2.2.6 - 2.3.3 - 2.4.0 before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - "sleep 5" script: - bundle exec rspec - bundle exec rubocop
Update the Ruby build matrix for Travis CI.
Update the Ruby build matrix for Travis CI.
YAML
mit
Tybot204/pusher-fake,Tybot204/pusher-fake,tristandunn/pusher-fake,tristandunn/pusher-fake
d8a2d5c55d73cd64351664a756024285867d555b
.travis.yml
.travis.yml
before_install: - gem install bundler rvm: - 2.1.10 - 2.2.8 - 2.3.7 - 2.4.5 - 2.5.3 - 2.6.0 - ruby-head - rbx - jruby gemfile: - Gemfile - gemfiles/Gemfile.rails-5.0.x - gemfiles/Gemfile.rails-5.1.x - gemfiles/Gemfile.rails-5.2.x - gemfiles/Gemfile.rails-master matrix: exclude: # Rails 5.0 requires Ruby >= 2.2 - rvm: 2.1.10 gemfile: gemfiles/Gemfile.rails-5.0.x # Rails 5.1 requires Ruby >= 2.2 - rvm: 2.1.10 gemfile: gemfiles/Gemfile.rails-5.1.x # Rails 5.2 requires Ruby >= 2.2 - rvm: 2.1.10 gemfile: gemfiles/Gemfile.rails-5.2.x # Rails 6+ requires Ruby >= 2.5 - rvm: 2.1.10 gemfile: gemfiles/Gemfile.rails-master - rvm: 2.2.8 gemfile: gemfiles/Gemfile.rails-master - rvm: 2.3.7 gemfile: gemfiles/Gemfile.rails-master - rvm: 2.4.5 gemfile: gemfiles/Gemfile.rails-master allow_failures: - rvm: rbx fast_finish: true
before_install: - gem install bundler rvm: - 2.3.7 - 2.4.5 - 2.5.3 - 2.6.0 - ruby-head - rbx - jruby gemfile: - Gemfile - gemfiles/Gemfile.rails-5.0.x - gemfiles/Gemfile.rails-5.1.x - gemfiles/Gemfile.rails-5.2.x - gemfiles/Gemfile.rails-master matrix: exclude: - rvm: 2.3.7 gemfile: gemfiles/Gemfile.rails-master - rvm: 2.4.5 gemfile: gemfiles/Gemfile.rails-master allow_failures: - rvm: rbx fast_finish: true
Drop support for Ruby < 2.3
Drop support for Ruby < 2.3 Bundler has done this now, as has recent versions of Rails. It's time.
YAML
mit
svenfuchs/i18n
d474eb17606bb00545b92715d740bd40469573f0
.travis.yml
.travis.yml
env: global: - DOCKER_VERSION=1.10.1-0~trusty sudo: required services: - docker before_install: - sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION} script: - docker version - docker login --email="$DOCKER_EMAIL" --username="$DOCKER_USERNAME" --password="$DOCKER_PASSWORD" - ./build.sh
env: global: - DOCKER_VERSION=1.10.1-0~trusty sudo: required services: - docker before_install: - sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION} script: - docker version - sudo docker login --email="$DOCKER_EMAIL" --username="$DOCKER_USERNAME" --password="$DOCKER_PASSWORD" - sudo ./build.sh
Use latest Docker and login the Docker Hub in Travis build.
Use latest Docker and login the Docker Hub in Travis build.
YAML
mit
sappho/docker-build-tarsnap
665ea0864596a3ce42714da519c657f0fa36931b
.travis.yml
.travis.yml
language: node_js node_js: - 0.6 - 0.8 - '0.10'
language: node_js node_js: - 0.6 - 0.8 - '0.10' - '0.12' - '4.2' - 'node'
Support latest LTS and Stable versions of node
Support latest LTS and Stable versions of node
YAML
mit
revington/xsdurationjs
6b794e63e350306344b037ed77fe98cca6470e8f
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install stomp.py - pip install python-daemon - pip install python-ldap - pip install dirq - pip install unittest2 # command to run tests, e.g. python setup.py test script: - export PYTHONPATH=$PYTHONPATH:`pwd -P` - cd test - unit2 discover
language: python python: - "2.6" - "2.7" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install stomp.py - pip install python-daemon - pip install python-ldap - pip install dirq - pip install unittest2 # command to run tests, e.g. python setup.py test script: - export PYTHONPATH=$PYTHONPATH:`pwd -P` - cd test #- unit2 discover # Just run test_brokers for the moment until other tests are worked on - unit2 test_brokers
Set Travis file to only run test_brokers
Set Travis file to only run test_brokers - Set Travis file to only run test_brokers (and exclude crypto and ssm tests) as they haven't been tweaked to work with Travis yet.
YAML
apache-2.0
apel/ssm,tofu-rocketry/ssm,stfc/ssm,stfc/ssm,apel/ssm,tofu-rocketry/ssm
879d9538929077ff5d23f430508174b0900dfdf0
.travis.yml
.travis.yml
rvm: - 1.9.3 - 2.0.0 gemfile: - gemfiles/Gemfile.activemodel-3.0.x - gemfiles/Gemfile.activemodel-3.1.x - gemfiles/Gemfile.activemodel-3.2.x - gemfiles/Gemfile.activemodel-4.0.x
rvm: - 1.9.3 - 2.0.0 - 2.1.0 gemfile: - gemfiles/Gemfile.activemodel-3.0.x - gemfiles/Gemfile.activemodel-3.1.x - gemfiles/Gemfile.activemodel-3.2.x - gemfiles/Gemfile.activemodel-4.0.x
Build against 2.1.0 as well
Build against 2.1.0 as well
YAML
mit
petebrowne/basic_model,petebrowne/basic_model
3a84fb3d13f5db51b876c0f79d64beb329a1dccf
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" before_script: - npm i -g grunt-cli - npm i cache: directories: - node_modules
language: node_js node_js: - "0.10" - "0.12" before_script: - npm i -g grunt-cli - npm i cache: directories: - node_modules
Add node.js 0.12 to Travis file
Add node.js 0.12 to Travis file
YAML
mit
domtronn/grunt-release,nwronski/grunt-release,geddski/grunt-release,juliangarritano/grunt-release
dbfb8fee8a7b6e4a329eea95a74755195b212d6b
.travis.yml
.travis.yml
env: - GHCVER=7.4.2 - GHCVER=7.6.3 - GHCVER=7.8.3 before_install: - travis_retry sudo add-apt-repository -y ppa:hvr/ghc - travis_retry sudo add-apt-repository -y ppa:openstack-ubuntu-testing/icehouse - travis_retry sudo apt-get update - travis_retry sudo apt-get install cabal-install-1.20 ghc-$GHCVER libleveldb-dev libsnappy-dev - export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/1.20/bin:$PATH install: - cabal update - cabal install -j --only-dependencies --enable-tests script: - cabal check - cabal sdist - export SRC_TGZ=$(cabal info . | awk '{print $2 ".tar.gz";exit}'); cd dist/; if [ -f "$SRC_TGZ" ]; then cabal install -v2 --run-tests --enable-documentation -fexamples "$SRC_TGZ"; else echo "expected '$SRC_TGZ' not found"; exit 1; fi
env: - GHCVER=7.4.2 - GHCVER=7.6.3 - GHCVER=7.8.3 before_install: - travis_retry sudo add-apt-repository -y ppa:hvr/ghc - travis_retry sudo add-apt-repository -y ppa:openstack-ubuntu-testing/icehouse - travis_retry sudo apt-get update - travis_retry sudo apt-get install cabal-install-1.20 ghc-$GHCVER libleveldb-dev libsnappy-dev - export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/1.20/bin:$PATH install: - cabal update - cabal install -j --only-dependencies --enable-tests --enable-documentation script: - cabal check - cabal sdist - export SRC_TGZ=$(cabal info . | awk '{print $2 ".tar.gz";exit}'); cd dist/; if [ -f "$SRC_TGZ" ]; then cabal install --run-tests --enable-documentation -fexamples "$SRC_TGZ"; else echo "expected '$SRC_TGZ' not found"; exit 1; fi
Decrease verbosity, as there are no logs on stdout anyways
Decrease verbosity, as there are no logs on stdout anyways
YAML
bsd-3-clause
kernelim/leveldb-haskell,kernelim/leveldb-haskell,kernelim/leveldb-haskell,kernelim/leveldb-haskell
6c47f34bc8e0636c30aab39b098f3490272aacfc
.travis.yml
.travis.yml
language: objective-c osx_image: xcode61 before_install: - brew update install: - mkdir -p $(brew --repo)/Library/Taps/homebrew - ln -s $PWD $(brew --repo)/Library/Taps/homebrew/homebrew-truecrypt - brew tap --repair - brew tap script: - brew audit truecrypt - brew cask install -v truecrypt - /Applications/TrueCrypt.app/Contents/MacOS/TrueCrypt --text --create --encryption=AES --hash=SHA-512 --filesystem=FAT -k '' --password=test123 --size=500000 --random-source=/dev/urandom --volume-type=normal /tmp/testvolume.tc - /Applications/TrueCrypt.app/Contents/MacOS/TrueCrypt --text -k '' --password=test123 --protect-hidden=no --mount /tmp/testvolume.tc /Volumes/testvolume - [ -e '/Volumes/testvolume/' ] - /Applications/TrueCrypt.app/Contents/MacOS/TrueCrypt --text --dismount /tmp/testvolume.tc /Volumes/testvolume - rm /tmp/testvolume.tc matrix: fast_finish: true
language: objective-c osx_image: xcode61 before_install: - brew update install: - mkdir -p $(brew --repo)/Library/Taps/homebrew - ln -s $PWD $(brew --repo)/Library/Taps/trinitronx/homebrew-truecrypt/ - brew tap --repair - brew tap script: - brew audit truecrypt - brew cask install -v truecrypt - /Applications/TrueCrypt.app/Contents/MacOS/TrueCrypt --text --create --encryption=AES --hash=SHA-512 --filesystem=FAT -k '' --password=test123 --size=500000 --random-source=/dev/urandom --volume-type=normal /tmp/testvolume.tc - /Applications/TrueCrypt.app/Contents/MacOS/TrueCrypt --text -k '' --password=test123 --protect-hidden=no --mount /tmp/testvolume.tc /Volumes/testvolume - [ -e '/Volumes/testvolume/' ] - /Applications/TrueCrypt.app/Contents/MacOS/TrueCrypt --text --dismount /tmp/testvolume.tc /Volumes/testvolume - rm /tmp/testvolume.tc matrix: fast_finish: true
Fix homebrew Taps directory path to work with my repo
Fix homebrew Taps directory path to work with my repo
YAML
mit
trinitronx/homebrew-truecrypt
9638a8b4c593e79de2c17535e52777d714da667b
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.3 before_install: - DEVICE='iPhone 6' - IOS_VERSION='9.3' - SIMULATOR_ID=$(xcrun instruments -s | grep -o "$DEVICE ($IOS_VERSION) \[.*\]" | grep -o "\[.*\]" | sed "s/^\[\(.*\)\]$/\1/") script: - echo $SIMULATOR_ID - open -b com.apple.iphonesimulator --args -CurrentDeviceUDID $SIMULATOR_ID - set -o pipefail - xcodebuild clean build test -workspace Workspace/Gollum.xcworkspace -scheme Gollum -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO -destination "platform=iOS Simulator,name=$DEVICE,OS=$IOS_VERSION" | xcpretty -c after_success: - bash <(curl -s https://codecov.io/bash)
language: objective-c osx_image: xcode7.3 before_install: - DEVICE='iPhone 6' - IOS_VERSION='9.3' - SIMULATOR_ID=$(xcrun instruments -s | grep -o "$DEVICE ($IOS_VERSION) \[.*\]" | grep -o "\[.*\]" | sed "s/^\[\(.*\)\]$/\1/") script: - echo $SIMULATOR_ID - open -b com.apple.iphonesimulator --args -CurrentDeviceUDID $SIMULATOR_ID - set -o pipefail - xcodebuild clean build test -workspace Workspace/Gollum.xcworkspace -scheme Gollum -sdk iphonesimulator ONLY_ACTIVE_ARCH=YES -destination "platform=iOS Simulator,name=$DEVICE,OS=$IOS_VERSION" | xcpretty -c after_success: - bash <(curl -s https://codecov.io/bash)
Change trevis ONLY_ACTIVE_ARCH to true
Change trevis ONLY_ACTIVE_ARCH to true
YAML
mit
eduardoeof/Gollum,eduardoeof/Gollum
e3746768f94f376429d9043cef9b25238f3ac072
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 - php: hhvm fast_finish: true install: - composer install --dev --no-interaction script: - mkdir -p build/logs - phpunit after_script: - php vendor/bin/coveralls -v
language: php php: - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: # - php: 7.0 - php: hhvm fast_finish: true install: - composer install --dev --no-interaction script: - mkdir -p build/logs - phpunit after_script: - php vendor/bin/coveralls -v
Move to major PHP version 55+ need by external requirements
Move to major PHP version 55+ need by external requirements
YAML
mit
evaisse/SimpleHttpBundle,evaisse/SimpleHttpBundle
880d457487605cc25b59c0358e91ccea770aaaa0
.travis.yml
.travis.yml
language: ruby cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1 branches: only: - master
language: ruby cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 branches: only: - master
Add Ruby 2.2 env for testing
Add Ruby 2.2 env for testing
YAML
mit
kishikawakatsumi/xcjobs,soutaro/xcjobs,yashigani/xcjobs
b73c117c9e3c50ed34458b715f933c4b5b237fed
.travis.yml
.travis.yml
language: csharp install: # Clone, build and install ecsc - git clone --depth=5 https://github.com/jonathanvdc/ecsc - nuget restore ecsc/src/ecsc.sln - xbuild /p:Configuration=Release ecsc/src/ecsc.sln - chmod +x $(pwd)/ecsc/src/ecsc/bin/Release/*.exe - chmod +x $(pwd)/ecsc/src/ecsc/bin/Release/*.dll - wget https://gist.githubusercontent.com/jonathanvdc/f2fa3b5f8d5ece27b877fae439d944d0/raw/d021752c2b9c5dfe15393028e308a6ebdcdb613b/mono-ln.sh - chmod +x mono-ln.sh - ./mono-ln.sh ecsc.exe $(pwd)/ecsc/src/ecsc/bin/Release/ecsc - chmod +x $(pwd)/ecsc/src/ecsc/bin/Release/ecsc - export PATH=$PATH:$(pwd)/ecsc/src/ecsc/bin/Release script: # Build the project - make
language: csharp install: # Clone, build and install ecsc - git clone --depth=5 https://github.com/jonathanvdc/ecsc - nuget restore ecsc/src/ecsc.sln - xbuild /p:Configuration=Release ecsc/src/ecsc.sln - chmod +x $(pwd)/ecsc/src/ecsc/bin/Release/*.exe - chmod +x $(pwd)/ecsc/src/ecsc/bin/Release/*.dll - wget https://gist.githubusercontent.com/jonathanvdc/f2fa3b5f8d5ece27b877fae439d944d0/raw/d021752c2b9c5dfe15393028e308a6ebdcdb613b/mono-ln.sh - chmod +x mono-ln.sh - ./mono-ln.sh ecsc.exe $(pwd)/ecsc/src/ecsc/bin/Release/ecsc - chmod +x $(pwd)/ecsc/src/ecsc/bin/Release/ecsc - export PATH=$PATH:$(pwd)/ecsc/src/ecsc/bin/Release script: # Build the project with mcs - xbuild /p:Configuration=Release cs-wasm.sln # Build the project with ecsc - make
Make Travis perform an mcs build
Make Travis perform an mcs build
YAML
mit
jonathanvdc/cs-wasm,jonathanvdc/cs-wasm
feed4b945c9cd2775349c7faef926afdf884bbcc
.travis.yml
.travis.yml
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r language: r r: - release - devel sudo: false cache: packages
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r language: r r: - release - devel sudo: false cache: packages r_github_packages: - jimhester/covr - hadley/staticdocs after_success: - Rscript -e 'covr::codecov()' before_deploy: - R -e "staticdocs::build_site(examples = TRUE)"
Add codecov and staticdocs build
Add codecov and staticdocs build
YAML
mit
PirateGrunt/represtools
90934e3371e3d4973cbf7739c903b7a6daebba20
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "4.2" branches: only: - master
language: node_js node_js: - "0.12" - "4" - "5" branches: only: - master
Drop node 0.10 support and add 5.x
Drop node 0.10 support and add 5.x
YAML
mit
walmartreact/babel-plugin-i18n-id-hashing
e0f52bef62173ad06a545351fe294d4eabed1583
.travis.yml
.travis.yml
language: node_js node_js: - "node" - "6" - "4" - "0.12" - "0.10" - "0.8"
language: node_js node_js: - "node" - "6" - "4" - "0.12" - "0.10"
Stop testing on Node 0.8. Mocha 3 can’t run on it.
Stop testing on Node 0.8. Mocha 3 can’t run on it.
YAML
mit
myrne/performance-now
99443111277b627bfdf3c560d7838ee14bb373c5
.travis.yml
.travis.yml
language: go go: - 1.5 - 1.6 - tip
language: go go: - 1.5 - 1.6 - 1.7 - tip
Add Go 1.7 to Travis-CI build matrix.
Add Go 1.7 to Travis-CI build matrix.
YAML
mit
hectane/hectane,nathan-osman/go-cannon
40a15ce0ae83be3c0823080e1d94c3a3a4745251
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 notifications: recipients: - [email protected] irc: "irc.freenode.net#holderdeord" script: "RAILS_ENV=test bundle exec rake travis" before_script: - "sh -e /etc/init.d/xvfb start" - "npm install -g buster autolint" env: - DISPLAY=:99.0 COVERAGE_THRESHOLD=60
language: ruby rvm: - 1.9.3 notifications: recipients: - [email protected] irc: "irc.freenode.net#holderdeord" script: "RAILS_ENV=test bundle exec rake travis" before_script: - psql -c 'create database hdo_test;' -U postgres - "ruby -ryaml -e 'c = YAML.load_file(%{config/database.yml}); c[%{test}][%{username}] = %{postgres}; puts YAML.dump(c)' > config/database.yml" - sh -e /etc/init.d/xvfb start - "npm install -g buster autolint" env: - DISPLAY=:99.0 COVERAGE_THRESHOLD=60
Fix for postgres on Travis.
Fix for postgres on Travis.
YAML
bsd-3-clause
holderdeord/hdo-site,holderdeord/hdo-site,holderdeord/hdo-site,holderdeord/hdo-site
a563ee26880b4fa58201e294145867b38503a59a
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" # command to install dependencies install: - "pip install --pre pyusb" # command to run tests script: "python setup.py test -s test.soft"
language: python sudo: false python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" cache: directories: - $HOME/.cache/pip addons: apt: packages: - libusb-1.0-0 install: - pip install "pip>=7.0.2" wheel - pip install --pre pyusb script: "python setup.py test -s test.soft"
Use Travis container based infrastructure.
Use Travis container based infrastructure.
YAML
bsd-2-clause
Yubico/python-yubico
2126b99451ce788752c7bf6444ccbaa7dc225a1d
.travis.yml
.travis.yml
language: java install: true before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - chmod +x gradlew jdk: oraclejdk8 git: depth: false addons: sonarcloud: organization: "gurkenlabs-github" script: - ./gradlew fullbuild - if [ $TRAVIS_PULL_REQUEST = 'false' ]; then sonar-scanner; fi cache: directories: - '$HOME/.m2/repository' - '$HOME/.sonar/cache' - '$HOME/.gradle/caches/' - '$HOME/.gradle/wrapper/'
language: java install: true before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - chmod +x gradlew jdk: oraclejdk11 git: depth: false addons: sonarcloud: organization: "gurkenlabs-github" script: - ./gradlew fullbuild - jdk_switcher use oraclejdk8 - ./gradlew fullbuild - if [ $TRAVIS_PULL_REQUEST = 'false' ]; then sonar-scanner; fi cache: directories: - '$HOME/.m2/repository' - '$HOME/.sonar/cache' - '$HOME/.gradle/caches/' - '$HOME/.gradle/wrapper/'
Build against java 8 and java 11.
Build against java 8 and java 11.
YAML
mit
gurkenlabs/litiengine,gurkenlabs/litiengine
700dd5b266e8357aba4798ef517a5e50c7725677
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4' - '5.1' branches: only: - master - travis-ci before_install: - for dir in prolific*; do (cd $dir && npm install); done - npm install - npm install istanbul coveralls
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4' - '5' branches: only: - master - travis-ci before_install: - for dir in prolific*; do (cd $dir && npm install); done - npm install - npm install istanbul coveralls
Test with latest Node.js 5 on Travis CI.
Test with latest Node.js 5 on Travis CI.
YAML
mit
bigeasy/prolific,bigeasy/prolific
9ab19c812d40fb4061330b8d27ba6d3fa1ce0fee
.travis.yml
.travis.yml
language: cpp os: - linux sudo: required dist: trusty compiler: - clang - gcc addons: apt: sources: - sudo add-apt-repository ppa:george-edison55/cmake-3.x --yes packages: - cmake - cmake-data before_install: - git submodule update --init --recursive install: - $CXX --version - cmake --version before_script: - mkdir Build && cd Build - cmake .. script: - make
language: cpp os: - linux sudo: required dist: trusty compiler: - clang - gcc before_install: - git submodule update --init --recursive install: - wget -quiet http://www.cmake.org/files/v3.3/cmake-3.3.2.tar.gz - tar xf cmake-3.3.2.tar.gz - cd cmake-3.3.2 - ./configure - make - sudo make install - $CXX --version - cmake --version before_script: - mkdir Build && cd Build - cmake .. script: - make
Revert back to CMake manual install
Revert back to CMake manual install
YAML
mit
MrJaqbq/YAGE,MrJaqbq/Volkhvy,MrJaqbq/YAGE,MrJaqbq/Volkhvy
2d573dd88962379424908d21beae8153ff267d10
.travis.yml
.travis.yml
language: perl perl: - "5.20" - "5.10" services: - mysql before_script: - mysql -e "create database seccubus_create" - mysql -e "create database seccubus_upgrade"
language: perl perl: - "5.20" - "5.10" services: - mysql before_script: - mysql -e "create database seccubus_create" - mysql -e "create database seccubus_upgrade" - mysql -e "create database seccubus_issues"
Make sure DB is there
Make sure DB is there
YAML
apache-2.0
vlamer/Seccubus_v2,vlamer/Seccubus_v2,vlamer/Seccubus_v2,schubergphilis/Seccubus,vlamer/Seccubus_v2,vlamer/Seccubus_v2,schubergphilis/Seccubus,schubergphilis/Seccubus,vlamer/Seccubus_v2,schubergphilis/Seccubus,schubergphilis/Seccubus
26c895278c295e969b321142b9c32623f3393cc2
.travis.yml
.travis.yml
language: cpp sudo: false dist: xenial os: - linux addons: apt: packages: - g++-5 git: submodules: false branches: only: - master script: - cmake -D CMAKE_BUILD_TYPE=Debug -D CMAKE_CXX_FLAGS="-fprofile-arcs -ftest-coverage -fsanitize=address" ./ - make VERBOSE=1 -j 2 - ctest -VV after_script: - cd ${TRAVIS_BUILD_DIR} - lcov --directory . --capture --output-file coverage.info - lcov --remove coverage.info '/usr/*' --output-file coverage.info - lcov --list coverage.info - bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"
language: cpp sudo: false dist: xenial os: - linux addons: apt: packages: - g++-5 - lcov git: submodules: false branches: only: - master script: - cmake -D CMAKE_BUILD_TYPE=Debug -D CMAKE_CXX_FLAGS="-fprofile-arcs -ftest-coverage -fsanitize=address" ./ - make VERBOSE=1 -j 2 - ctest -VV after_script: - cd ${TRAVIS_BUILD_DIR} - lcov --directory . --capture --output-file coverage.info - lcov --remove coverage.info '/usr/*' '*/catch.hpp' --output-file coverage.info - lcov --list coverage.info - bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"
Remove catch.hpp from the codecov results. Also ensure lcov is installed
Remove catch.hpp from the codecov results. Also ensure lcov is installed
YAML
mit
mfdeakin/nd_array
8492b93297e670d9c7c99858b57c9ad01aeb5940
.travis.yml
.travis.yml
dist: xenial language: python python: - 3.8 install: - pip install -r requirements.txt - pip install -r requirements-dev.txt script: - bin/lint - bin/test after_success: - pip install coveralls - coveralls notifications: email: on_success: never
dist: xenial language: python python: - 3.6 - 3.7 - 3.8 install: - pip install -r requirements.txt - pip install -r requirements-dev.txt script: - bin/lint - bin/test after_success: - pip install coveralls - coveralls notifications: email: on_success: never
Test against multiple Python versions in CI
Test against multiple Python versions in CI
YAML
mit
olivertso/pde
962f58e32d3be99870d18de72c5f2cb37dfa622b
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - hhvm env: global: - CORE_BRANCH=master - APP_NAME=bookmarks matrix: - DB=sqlite branches: only: - master - /^stable\d+(\.\d+)?$/ before_install: # - composer install - wget https://raw.githubusercontent.com/owncloud/administration/master/travis-ci/before_install.sh - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB - cd ../core - php occ app:enable $APP_NAME script: # Test lint - cd apps/$APP_NAME - find . -name \*.php -exec php -l "{}" \; # Run phpunit tests - cd tests - phpunit --configuration phpunit.xml # Create coverage report - sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then wget https://scrutinizer-ci.com/ocular.phar; fi" - sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then php ocular.phar code-coverage:upload --format=php-clover clover.xml; fi" matrix: include: - php: 5.4 env: DB=mysql - php: 5.4 env: DB=pgsql allow_failures: - php: hhvm fast_finish: true
language: php php: - 5.4 - 5.5 - 5.6 - hhvm - 7 env: global: - CORE_BRANCH=master - APP_NAME=bookmarks matrix: - DB=sqlite branches: only: - master - /^stable\d+(\.\d+)?$/ before_install: # - composer install - wget https://raw.githubusercontent.com/owncloud/administration/master/travis-ci/before_install.sh - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB - cd ../core - php occ app:enable $APP_NAME script: # Test lint - cd apps/$APP_NAME - find . -name \*.php -exec php -l "{}" \; # Run phpunit tests - cd tests - phpunit --configuration phpunit.xml # Create coverage report - sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then wget https://scrutinizer-ci.com/ocular.phar; fi" - sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then php ocular.phar code-coverage:upload --format=php-clover clover.xml; fi" matrix: include: - php: 5.4 env: DB=mysql - php: 5.4 env: DB=pgsql allow_failures: - php: hhvm fast_finish: true
Add PHP 7 to test matrix
Add PHP 7 to test matrix
YAML
agpl-3.0
shtrom/bookmarks,owncloud/bookmarks,shtrom/bookmarks,owncloud/bookmarks
117cfd03d4a3da4ddbafd966243b2cefa3cd60a0
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - "0.12" - "0.10" - iojs before_install: - npm install -g npm@'>2.7.0' after_script: - CODECLIMATE_REPO_TOKEN=7b0cbee1382c968a036868d26ec04d0ddc7b7aeef25ceead5ff9ff50a3c2ae8b codeclimate < coverage/lcov.info - rm -rf ./coverage notifications: email: on_success: change on_failure: change
language: node_js sudo: false node_js: - "0.12" - "0.10" - "4" after_script: - CODECLIMATE_REPO_TOKEN=7b0cbee1382c968a036868d26ec04d0ddc7b7aeef25ceead5ff9ff50a3c2ae8b codeclimate < coverage/lcov.info - rm -rf ./coverage notifications: email: on_success: change on_failure: change
Update to test node stable and remove pre-install
Update to test node stable and remove pre-install The node version installed nowadays on Travis is good enough, so no need to install it before running the tests.
YAML
mit
sondr3/generator-jekyllized,sondr3/generator-jekyllized,sondr3/generator-jekyllized
585450db8a3f0d871084bd10e007508fcc3a80ac
.travis.yml
.travis.yml
language: go go: - 1.8.1 before_script: - go get github.com/alecthomas/gometalinter - gometalinter --install script: - go build -race -v -gcflags "-N -l" ./... - exec 5>&1 && output="$(gofmt -l -w "$@" | tee /dev/fd/5)" && [[ -z "$output" ]] - gometalinter --exclude=corefoundation.go --deadline=60s --vendor --cyclo-over=20 --dupl-threshold=100 --disable=gotype ./...
language: go go: - 1.8.1 before_script: - go get github.com/alecthomas/gometalinter - gometalinter --install script: - go build -race -v -gcflags "-N -l" ./... - exec 5>&1 && output="$(gofmt -l -w "$@" | tee /dev/fd/5)" && [[ -z "$output" ]] - gometalinter --exclude=corefoundation.go --deadline=60s --vendor --cyclo-over=30 --dupl-threshold=100 --disable=gotype ./...
Set gometalinter cyclo to 30
Set gometalinter cyclo to 30 Signed-off-by: Artur Troian <[email protected]>
YAML
apache-2.0
VolantMQ/volantmq,troian/surgemq,troian/surgemq,VolantMQ/volantmq
1bac4c2f40e99c50fb8d31f1b9dedc609baea4a2
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - hhvm install: - sudo apt-get purge riak - sudo curl https://packagecloud.io/install/repositories/basho/riak/script.deb | sudo bash - sudo apt-get install riak=2.0.0-1 - sudo sed -i -e "s/search = off/search = on/g" /etc/riak/riak.conf - sudo service riak start - composer self-update - composer --prefer-source --dev install before_script: - ./tests/travis/setup-riak.sh script: - ./vendor/bin/phpunit -v --coverage-clover ./build/logs/clover.xml - ./vendor/bin/phpcs -p --extensions=php --standard=ruleset.xml src after_script: - php ./vendor/bin/coveralls -v - php ./vendor/bin/apigen generate -s src -d build/api --title "PHP Riak Client" --template-theme bootstrap matrix: allow_failures: - php: hhvm
language: php php: - 5.4 - 5.5 - 5.6 - hhvm install: - sudo apt-get purge riak - sudo curl https://packagecloud.io/install/repositories/basho/riak/script.deb | sudo bash - sudo apt-get install riak=2.0.0-1 - sudo sed -i -e "s/search = off/search = on/g" /etc/riak/riak.conf - sudo sed -i -e "s/storage_backend = .*/storage_backend = memory/g" /etc/riak/riak.conf - sudo service riak start - composer self-update - composer --prefer-source --dev install before_script: - ./tests/travis/setup-riak.sh script: - ./vendor/bin/phpunit -v --coverage-clover ./build/logs/clover.xml - ./vendor/bin/phpcs -p --extensions=php --standard=ruleset.xml src after_script: - php ./vendor/bin/coveralls -v - php ./vendor/bin/apigen generate -s src -d build/api --title "PHP Riak Client" --template-theme bootstrap matrix: allow_failures: - php: hhvm
Use memory as storage backend
Use memory as storage backend
YAML
mit
php-riak/riak-client
c221325c0a2df53779cf0ed4cae566d1897b6819
.travis.yml
.travis.yml
language: ruby script: bundle exec rake test rvm: - 2.2 - 2.1 - 2.0.0 - ruby-head - jruby-head - rbx-2 addons: code_climate: repo_token: 6f4b7c1f44b29f414ffb9b243b1f83cf5fa40eb297b4cd0c7761bf960487a8eb
language: ruby script: bundle exec rake test rvm: - 2.2 - 2.1 - 2.0.0 - ruby-head - jruby-head - rbx-2 addons: code_climate: repo_token: 6f4b7c1f44b29f414ffb9b243b1f83cf5fa40eb297b4cd0c7761bf960487a8eb matrix: allow_failures: - rvm: ruby-head
Allow failures on Ruby head
Allow failures on Ruby head
YAML
mit
fny/interrobang
64afd8665da9c22aa13b2a79a9991ce860da3df8
.travis.yml
.travis.yml
sudo: required language: rust rust: - 1.0.0 - beta - nightly install: - sudo apt-get install opencc libopencc-dev script: - cargo build --verbose - cargo test --verbose
sudo: required language: rust rust: - 1.0.0 - beta - nightly install: - sudo apt-get install cmake - git clone https://github.com/BYVoid/OpenCC.git && cd OpenCC - make && sudo make install - sudo ldconfig - cd .. script: - cargo build --verbose - cargo test --verbose
Test again the latest OpenCC codes
Test again the latest OpenCC codes
YAML
mit
messense/opencc-rs
0d41df93d27ec1fb206e12866914c4484faaa4f3
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "6" - "7" - "8" - "9" - "10" install: - yarn install - yarn run compile script: - yarn run lint - yarn run test jobs: include: - stage: after_success script: yarn run coveralls node_js: 9
language: node_js node_js: - "6" - "7" - "8" - "9" - "10" install: - yarn install - yarn run compile script: - yarn run lint - yarn run test jobs: include: - stage: after_success script: yarn run coveralls node_js: 9
Remove Node 4 build target
Remove Node 4 build target
YAML
mit
Borewit/token-types
532032e489f113e62452dbf3bc909eb67964a447
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 notifications: email: on_success: always on_failure: always
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 notifications: email: on_success: always on_failure: always
Add Ruby 2.1 to Travis matrix
Add Ruby 2.1 to Travis matrix
YAML
mit
buckybox/crazy_money
e4516158521a091c96508435011e6c828a9439bb
.travis.yml
.travis.yml
language: python python: - "2.7" before_install: - sh -x ./install_depends/opensips.sh script: sh -x ./test_opensips.sh env: - MM_TYPE=opensips RTPPC_TYPE=udp - MM_TYPE=opensips RTPPC_TYPE=udp6 - MM_TYPE=opensips RTPPC_TYPE=unix - MM_TYPE=b2bua RTPPC_TYPE=udp - MM_TYPE=b2bua RTPPC_TYPE=udp6 - MM_TYPE=b2bua RTPPC_TYPE=unix - MM_TYPE=b2bua RTPPC_TYPE=cunix - MM_TYPE=kamailio RTPPC_TYPE=udp - MM_TYPE=kamailio RTPPC_TYPE=udp6 - MM_TYPE=kamailio RTPPC_TYPE=unix
language: python python: - "2.7" before_install: - sh -x ./install_depends/opensips.sh script: sh -x ./test_opensips.sh env: - MM_TYPE=b2bua RTPPC_TYPE=udp - MM_TYPE=b2bua RTPPC_TYPE=udp6 - MM_TYPE=b2bua RTPPC_TYPE=unix - MM_TYPE=b2bua RTPPC_TYPE=cunix - MM_TYPE=opensips MM_BRANCH=1.8 RTPPC_TYPE=udp - MM_TYPE=opensips MM_BRANCH=1.8 RTPPC_TYPE=udp6 - MM_TYPE=opensips MM_BRANCH=1.8 RTPPC_TYPE=unix - MM_TYPE=opensips MM_BRANCH=1.10 RTPPC_TYPE=udp - MM_TYPE=opensips MM_BRANCH=1.10 RTPPC_TYPE=udp6 - MM_TYPE=opensips MM_BRANCH=1.10 RTPPC_TYPE=unix - MM_TYPE=opensips MM_BRANCH=1.11 RTPPC_TYPE=udp - MM_TYPE=opensips MM_BRANCH=1.11 RTPPC_TYPE=udp6 - MM_TYPE=opensips MM_BRANCH=1.11 RTPPC_TYPE=unix - MM_TYPE=opensips MM_BRANCH=2.1.0 RTPPC_TYPE=udp - MM_TYPE=opensips MM_BRANCH=2.1.0 RTPPC_TYPE=udp6 - MM_TYPE=opensips MM_BRANCH=2.1.0 RTPPC_TYPE=unix - MM_TYPE=kamailio RTPPC_TYPE=udp - MM_TYPE=kamailio RTPPC_TYPE=udp6 - MM_TYPE=kamailio RTPPC_TYPE=unix
Test opensips 1.8, 1.10, 1.11 and 2.1.0.
Test opensips 1.8, 1.10, 1.11 and 2.1.0.
YAML
bsd-2-clause
sippy/voiptests,hongbinz/voiptests,hongbinz/voiptests,sippy/voiptests
f61f4b68c73b486d30543bdf11a7a0879855523f
.travis.yml
.travis.yml
--- language: ruby rvm: - 2.4.10 - 2.5.8 - 2.6.6 - 2.7.1 - ruby-head - jruby-9.2.11.1 before_install: - yes | gem update --system - gem update bundler script: bundle exec rake test
--- language: ruby rvm: - 2.5.8 - 2.6.6 - 2.7.1 - ruby-head - jruby-9.2.11.1 before_install: - yes | gem update --system - gem update bundler script: bundle exec rake test
Drop Ruby 2.4 due to EoL
Drop Ruby 2.4 due to EoL
YAML
mit
aycabta/deviantart,aycabta/deviantart
a6792d504e5df220b0cbe9abc3597b3f7ccff461
.travis.yml
.travis.yml
language: objective-c osx_image: xcode9 cache: - bundler env: matrix: - FASTLANE_ENV=iOS - FASTLANE_ENV=macOS script: - bundle exec fastlane test --env $FASTLANE_ENV after_success: - bash <(curl -s https://codecov.io/bash)
language: objective-c osx_image: xcode9.2 branches: - master cache: - bundler env: matrix: - FASTLANE_ENV=iOS - FASTLANE_ENV=macOS script: - bundle exec fastlane test --env $FASTLANE_ENV after_success: - bash <(curl -s https://codecov.io/bash)
Use Xcode 9.2 for tests
Use Xcode 9.2 for tests
YAML
mit
hoppenichu/HCImage-BPG,chuganzy/HCImage-BPG,chuganzy/HCImage-BPG,hoppenichu/HCImage-BPG,hoppenichu/HCImage-BPG,hoppenichu/HCImage-BPG,chuganzy/HCImage-BPG,chuganzy/HCImage-BPG
eb6896a4431b3cc131d8fc064e9ad7fd0b4829f7
.travis.yml
.travis.yml
sudo: true dist: trusty # Choose a lightweight base image language: c addons: apt: packages: npm before_install: - ./.travis/install-dependencies/cpp-install-dependencies.sh - ./.travis/install-dependencies/haskell-install-dependencies.sh - ./.travis/install-dependencies/java-install-dependencies.sh - ./.travis/install-dependencies/js-install-dependencies.sh - ./.travis/install-dependencies/python-install-dependencies.sh - ./.travis/install-dependencies/ruby-install-dependencies.sh - ./.travis/install-dependencies/rust-install-dependencies.sh script: - ./.travis/test-all.sh - ./.travis/test-java.sh - ./.travis/test-python.sh - ./.travis/test-haskell.sh
sudo: true dist: trusty # Choose a lightweight base image language: c addons: apt: packages: npm before_install: # - ./.travis/install-dependencies/cpp-install-dependencies.sh # - ./.travis/install-dependencies/haskell-install-dependencies.sh # - ./.travis/install-dependencies/java-install-dependencies.sh # - ./.travis/install-dependencies/js-install-dependencies.sh - ./.travis/install-dependencies/python-install-dependencies.sh # - ./.travis/install-dependencies/ruby-install-dependencies.sh # - ./.travis/install-dependencies/rust-install-dependencies.sh script: # - ./.travis/test-all.sh # - ./.travis/test-java.sh - ./.travis/test-python.sh # - ./.travis/test-haskell.sh
Comment out everything except python install and tests
Comment out everything except python install and tests
YAML
mit
bjpop/biotool,bjpop/biotool,biotool-paper/biotool,drpowell/biotool,drpowell/biotool,drpowell/biotool,biotool-paper/biotool,bjpop/biotool,bjpop/biotool,drpowell/biotool,bjpop/biotool,lonsbio/biotool,drpowell/biotool,drpowell/biotool,biotool-paper/biotool,biotool-paper/biotool,biotool-paper/biotool,biotool-paper/biotool,drpowell/biotool,biotool-paper/biotool,lonsbio/biotool,biotool-paper/biotool,biotool-paper/biotool,bionitio-team/bionitio,bjpop/biotool,bjpop/biotool,bjpop/biotool,lonsbio/biotool,bjpop/biotool,drpowell/biotool,lonsbio/biotool,bjpop/biotool,drpowell/biotool,biotool-paper/biotool,drpowell/biotool
859343a3cc404ce0bd89159f2c2d0a3a5911c52d
.travis.yml
.travis.yml
language: php sudo: true dist: trusty php: - 7.1.0 - 7.0 install: - sudo apt-get -qq update - sudo apt-get install -y asciidoc libarchive-dev curl libgpgme11-dev - curl -O https://sources.archlinux.org/other/pacman/pacman-5.0.1.tar.gz - tar -xzvf pacman-5.0.1.tar.gz - cd pacman-5.0.1 && ./configure --prefix=/usr && make && sudo make install - cd .. script: - export TEST_PHP_EXECUTABLE=`which php` - phpize - ./configure --with-alpm && make - php run-tests.php -d extension=alpm.so -d extension_dir=modules -n ./tests/*.phpt - for i in `ls tests/*.out 2> /dev/null`; do echo "-- START ${i}"; cat $i; echo "-- END"; done
language: php sudo: true dist: trusty php: - 7.1 - 7.0 - 5.6 - 5.5 - 5.4 - 5.3 install: - sudo apt-get -qq update - sudo apt-get install -y asciidoc libarchive-dev curl libgpgme11-dev - curl -O https://sources.archlinux.org/other/pacman/pacman-5.0.1.tar.gz - tar -xzvf pacman-5.0.1.tar.gz - cd pacman-5.0.1 && ./configure --prefix=/usr && make && sudo make install - cd .. script: - export TEST_PHP_EXECUTABLE=`which php` - phpize - ./configure --with-alpm && make - php run-tests.php -d extension=alpm.so -d extension_dir=modules -n ./tests/*.phpt - for i in `ls tests/*.out 2> /dev/null`; do echo "-- START ${i}"; cat $i; echo "-- END"; done
Add PHP5 versions to TravisCI
Add PHP5 versions to TravisCI Now, this should make an otherwise boring day fun to find out what the heck is wrong with the PHP<5.6 builds... Signed-off-by: Mark Weiman <[email protected]>
YAML
lgpl-2.1
markzz/php-alpm,markzz/php-alpm,markzz/php-alpm
37b733fea7fe3f9eb8e91ab215db4d4da634cd10
.travis.yml
.travis.yml
language: node_js node_js: - 0.8 before_install: "npm install -g bob" script: "bob build"
language: node_js node_js: - "0.11" - "0.10" - 0.8 before_install: "npm install -g bob" script: "bob build"
Add 0.10 and 0.11 to CI run.
Add 0.10 and 0.11 to CI run.
YAML
mit
cliffano/datagen
3a8f82cd881ced1e65faa9184eccc90d74d497a9
.travis.yml
.travis.yml
# Make sure we run in the docker container sudo: false language: c dist: trusty addons: apt: packages: # Libraries needed to build cross compiler - libgmp-dev - libmpfr-dev - python-virtualenv - libclang1-3.4 - clang - yasm - xorriso - grub2 cache: directories: - compiler/x86_64-none-elf before_script: - virtualenv ~/venv - source ~/venv/bin/activate - pip install cldoc script: - if [[ ! -e compiler/x86_64-none-elf/bin/x86_64-elf-gcc ]]; then bash ./scripts/build_cross_compiler.sh; fi - make debug - make clean - make release - make iso
# Make sure we run in the docker container sudo: false language: c dist: trusty addons: apt: packages: # Libraries needed to build cross compiler - libgmp-dev - libmpfr-dev - python-virtualenv - libclang1-3.4 - clang - yasm - xorriso - grub2 cache: directories: - compiler/x86_64-none-elf before_script: - virtualenv ~/venv - source ~/venv/bin/activate - pip install cldoc script: - if [[ ! -e compiler/x86_64-none-elf/bin/x86_64-elf-gcc ]]; then bash ./scripts/build_cross_compiler.sh; fi - export PATH=$PATH:compiler/x86_64-elf/bin/ - make debug - make clean - make release - make iso
Bring Travis up to date with Makefile improvements
Bring Travis up to date with Makefile improvements
YAML
mit
iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth
3bac376ec870f0e433cd4f37711dc93672bfa3fd
.travis.yml
.travis.yml
env: global: - secure: "W3PaYhPnJFCaG6TW5Xc0wtggdEqcreTQcHThmIo5Eqs/jUL2toiUiv3ZWlhzR3tkphLvt2KeaQe83BR6RTifYjSmnmAePj0Gw5res1AXzN95OsKEk3nMiTZbVP+PuTTbQZJga8B31nRUBiAMQ6FsNlpGq7E8sp9N65lnR3mGHAE=" - PIP_DOC_DEPENDENCIES="six sphinx sphinx_bootstrap_theme jsonschema pyyaml mistune" - ASDF_MASTER="git+git://github.com/spacetelescope/asdf" sudo: false addons: apt: packages: - graphviz language: python python: - 3.6 branches: only: - master jobs: include: # Build documentation - before_install: - pip install $PIP_DOC_DEPENDENCIES install: python setup.py script: make html # Run schema validation and example tests using pytest - before_install: - pip install $ASDF_MASTER pytest install: echo Nothing to install script: pytest
env: global: - secure: "W3PaYhPnJFCaG6TW5Xc0wtggdEqcreTQcHThmIo5Eqs/jUL2toiUiv3ZWlhzR3tkphLvt2KeaQe83BR6RTifYjSmnmAePj0Gw5res1AXzN95OsKEk3nMiTZbVP+PuTTbQZJga8B31nRUBiAMQ6FsNlpGq7E8sp9N65lnR3mGHAE=" - PIP_DOC_DEPENDENCIES="six sphinx sphinx_bootstrap_theme jsonschema pyyaml mistune" - ASDF_MASTER="git+git://github.com/spacetelescope/asdf" sudo: false addons: apt: packages: - graphviz language: python python: - 3.6 branches: only: - master jobs: include: # Build documentation - before_install: - pip install $PIP_DOC_DEPENDENCIES install: python setup.py script: make html # Run schema validation and example tests using pytest - before_install: - pip install $ASDF_MASTER pytest # We need to install these packages because they contain the canonical # implementations for some of the schemas we need to test - pip install astropy gwcs install: echo Nothing to install script: pytest
Install astropy and gwcs when running schema tests...
Install astropy and gwcs when running schema tests... Since these packages contain the ASDF extensions that are used to run some of the types that implement our schemas.
YAML
bsd-3-clause
spacetelescope/asdf-standard
8a120cc7927615705138e1b4d39fda28887ceea9
.travis.yml
.travis.yml
dist: trusty os: linux language: cpp install: sudo apt-get install libboost-all-dev libdb++-dev libminiupnpc-dev libqrencode-dev libssl-dev script: qmake bunnycoin-qt.pro USE_QRCODE=1 USE_UPNP=1 && make notifications: slack: $SLACK_WORKSPACE:$SLACK_KEY
dist: trusty os: linux language: cpp install: sudo apt-get install libboost-all-dev libdb++-dev libminiupnpc-dev libqrencode-dev libssl-dev script: qmake bunnycoin-qt.pro USE_QRCODE=1 USE_UPNP=1 && make notifications: slack: rooms: secure: kicq+PakRDw1En6D+PF5EEggzAEWCgANmrEmOfpWXwWtpXaFwL/2C7NuY1Ts5YJ2O/REqxtFcCqohGnL5zPo1pSDWUISFZLbJTkRygYb/2BREHbZh9FKIRCzHIcPfeHGE8eT6rytiSv9NVzMYQB8dhvSvTEUwScJc5IwllR+MP7JOkgGHUk8keoDbDa2Fz/zWLiR4pHgGRAZAlUYsON+6Pc1GXuPIbfDwid/2GxswWw0r9rtKXgRZDmJ76FWJzoazGJdJoLHthPzoeEs0B6kBt2FPJvz7H44kmJgR9x4MrOOMZIBO0jVsyqwcTqlplCodJvkPxg1Z1/nFCWOueErWnztrMKKzLvw5O9exi8kYATL68w6eprVbXhCJ1NCo82kQ1laFMv/jh9RwYtGku/k+Pct17MJwytX4bRvWSiIKUNh+YNxZgCM9jg1dgYUIOeFJenvYImKC23yeRUSCzZsCem/AIq4HRaLN4ZtD6xsaBj+IpFn2l5jy/v0vSWv+WiYb1Io+Rw1GWYvQ4DjCCqlQuyqimWCnitBuAn6fdQg5v8dFIc6A/9WMYFkuhlqlI04dm3MfTcM54v5G4t4v6t1XpsZW0AFriT0+poa0YHdGrM+EAAeyTEmqkiBGsyNP3Ocb/KB/i3kV0VEkDbEfXpSAGjcg88n+Q9T14zNzcL3p80=
Use encrypted key for Travis-Slack integration
Use encrypted key for Travis-Slack integration
YAML
mit
bunnycoin/bunnycoin,bunnycoin/bunnycoin,bunnycoin/bunnycoin,bunnycoin/bunnycoin,bunnycoin/bunnycoin
048d5a9ab49ce78dec4e92528b13308a7450f2b2
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8
language: java # copy from wix-embedded-mysql project before_install: # os x - workaround for JAVA_HOME not set and mvn missing # - if [ "$TRAVIS_OS_NAME" == "osx" ]; then export JAVA_HOME=$(/usr/libexec/java_home); fi # linux - installing libaio1 - if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get update -qq && sudo apt-get install -y libaio1; fi # linux - fixing hostname issue and jdk segfaulting on linux - sudo hostname "$(hostname | cut -c1-63)" - sed -e "s/^\\(127\\.0\\.0\\.1.*\\)/\\1 $(hostname | cut -c1-63)/" /etc/hosts | sudo tee /etc/hosts matrix: include: - os: linux sudo: required jdk: oraclejdk8 # - os: osx # language: java
Add fixes for running in Travis
Add fixes for running in Travis
YAML
mit
dkomanov/mysql-streaming
a35d83e56222a6b39aa5a0637c7248153eda9cfc
.travis.yml
.travis.yml
language: ruby os: - osx osx_image: xcode8.3 rvm: - 2.4.1 - 2.3.5 - 2.2.8 - 2.1.10 branches: except: - gh-pages - /\/v\d/ script: - gem install bundler - bundle exec rake travis:build notifications: slack: secure: Ksji5MDNOWnuzuyu9Hblbxse6kGLdH4kXyYkF98C+wawIGLSONWWkuA65wpdqSLtBN/79RCLMWoBzKAGX4xy9BL6Rxb3rLjAMT+FVur6II2yaApzyJ0dmTVeTXnkchPcrO27FK5taPb0Ghr86DUiG3OViY/q1N0AVALDYce5tfE=
language: ruby os: - osx osx_image: xcode8.3 rvm: - 2.5.0 - 2.4.3 - 2.3.6 - 2.2.9 - 2.1.10 branches: except: - gh-pages - /\/v\d/ script: - gem install bundler - bundle exec rake travis:build notifications: slack: secure: Ksji5MDNOWnuzuyu9Hblbxse6kGLdH4kXyYkF98C+wawIGLSONWWkuA65wpdqSLtBN/79RCLMWoBzKAGX4xy9BL6Rxb3rLjAMT+FVur6II2yaApzyJ0dmTVeTXnkchPcrO27FK5taPb0Ghr86DUiG3OViY/q1N0AVALDYce5tfE=
Add Ruby 2.5 to Travis-CI
Add Ruby 2.5 to Travis-CI
YAML
apache-2.0
landrito/google-cloud-ruby,landrito/google-cloud-ruby,CloudVLab/google-cloud-ruby,landrito/google-cloud-ruby,quartzmo/google-cloud-ruby,dazuma/google-cloud-ruby,quartzmo/gcloud-ruby,blowmage/gcloud-ruby,landrito/google-cloud-ruby,googleapis/google-cloud-ruby,dazuma/google-cloud-ruby,googleapis/google-cloud-ruby,googleapis/google-cloud-ruby,landrito/google-cloud-ruby,dazuma/google-cloud-ruby,CloudVLab/google-cloud-ruby,quartzmo/google-cloud-ruby,quartzmo/google-cloud-ruby,CloudVLab/google-cloud-ruby,dazuma/google-cloud-ruby,quartzmo/google-cloud-ruby,dazuma/google-cloud-ruby,CloudVLab/google-cloud-ruby,quartzmo/google-cloud-ruby,CloudVLab/google-cloud-ruby,googleapis/google-cloud-ruby,dazuma/google-cloud-ruby,quartzmo/google-cloud-ruby,googleapis/google-cloud-ruby,googleapis/google-cloud-ruby
f014f3ec4d21bdee079e20255fa7f675efa83ee1
.travis.yml
.travis.yml
# Use macOS with XCode 10 os: osx osx_image: xcode10 # Use Node 10.x and yarn language: node_js node_js: - "10" cache: yarn install: # Set up RVM, RubyGems, Bundler # - rvm install 2.6.3 # Use 2.4.3, the most recent preinstalled on Travis # (also no longer receiving bug fixes, only security updates). - rvm use 2.4.3 --default - gem update --system - gem install bundler - bundle check || bundle install # Install NPM deps - yarn script: # Requires Android SDK # - bundle exec fastlane android test # scan failing in Fastlane runs - bundle exec fastlane ios test - yarn lint # Pending update to jest # - yarn test
# Use macOS with XCode 10 os: osx osx_image: xcode10 # Use Node 10.x and yarn language: node_js node_js: - "10" cache: yarn install: # Set up RVM, RubyGems, Bundler # - rvm install 2.6.3 # Use 2.4.3, the most recent preinstalled on Travis # (also no longer receiving bug fixes, only security updates). - rvm use 2.4.3 --default - gem update --system - gem install bundler - bundle check || bundle install # Install NPM deps - yarn script: # Requires Android SDK # - bundle exec fastlane android test # scan failing in Fastlane runs # - bundle exec fastlane ios test - yarn lint # Pending update to jest # - yarn test
Disable iOS tests in CI again
Disable iOS tests in CI again
YAML
mit
BranchMetrics/react-native-branch-deep-linking,BranchMetrics/react-native-branch-deep-linking,BranchMetrics/react-native-branch-deep-linking,BranchMetrics/react-native-branch,BranchMetrics/react-native-branch,BranchMetrics/react-native-branch-deep-linking,BranchMetrics/react-native-branch,BranchMetrics/react-native-branch,BranchMetrics/react-native-branch,BranchMetrics/react-native-branch
33df410c77e7a164ad96264c90757c6e30630d2b
.travis.yml
.travis.yml
language: node_js addons: firefox: latest node_js: - "8" before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 script: - npm run test env: global: - FIREFOX_BINARY: firefox matrix: include: - script: npm run test env: global: - FIREFOX_BINARY: firefox before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 - script: npm run build env: BUILD_NOTES - script: npm run lint env: LINT before_script: npm run build before_install:
language: node_js addons: firefox: latest node_js: - "8" before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 - npm i -g npm@6 script: - npm run test env: global: - FIREFOX_BINARY: firefox matrix: include: - script: npm run test env: global: - FIREFOX_BINARY: firefox before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 - script: npm run build env: BUILD_NOTES - script: npm run lint env: LINT before_script: npm run build before_install:
Use npm 6 to install things
Use npm 6 to install things
YAML
mpl-2.0
cedricium/notes,cedricium/notes,cedricium/notes,cedricium/notes,cedricium/notes
2ca0247f2c65f82640cfbef568171f17e94817a3
.travis.yml
.travis.yml
sudo: required services: - docker before_install: - docker build -t zosconnectforswift . - docker run zosconenctforswift /bin/sh -c "swift test" script: - swift test
sudo: required services: - docker before_install: - docker build -t zosconnectforswift . - docker run zosconnectforswift /bin/sh -c "swift test" script: - swift test
Correct typo in docker run command
Correct typo in docker run command
YAML
apache-2.0
zosconnect/zosconnect-for-swift
6c653746cc951e5f07d74beb2e64278969d5f9c0
.travis.yml
.travis.yml
go: 1.6 language: go addons: postgresql: "9.4" install: - sudo apt-get install python-dev python-virtualenv - go get github.com/mozilla-services/autograph - psql -c "CREATE DATABASE dbname ENCODING 'UTF8' TEMPLATE template0;" -U postgres - psql -c "CREATE USER admin WITH PASSWORD 'pass';" -U postgres - psql -c "GRANT ALL PRIVILEGES ON DATABASE dbname TO admin;" -U postgres - make install - make migrate - .venv/bin/pip install uwsgi before_script: - UWSGI_VIRTUALENV=.venv .venv/bin/uwsgi --http :8888 config/kinto.ini & - autograph -c $TRAVIS_BUILD_DIR/.autograph.yml & script: - bash smoke-test.sh
go: 1.6 language: go addons: postgresql: "9.4" install: - sudo apt-get install python-dev python-virtualenv - go get github.com/mozilla-services/autograph - psql -c "CREATE DATABASE dbname ENCODING 'UTF8' TEMPLATE template0;" -U postgres - psql -c "CREATE USER admin WITH PASSWORD 'pass';" -U postgres - psql -c "GRANT ALL PRIVILEGES ON DATABASE dbname TO admin;" -U postgres - make install - make migrate - .venv/bin/pip install uwsgi before_script: - cd $HOME && UWSGI_VIRTUALENV=$TRAVIS_BUILD_DIR/.venv $TRAVIS_BUILD_DIR/.venv/bin/uwsgi --http :8888 $TRAVIS_BUILD_DIR/config/kinto.ini & - autograph -c $TRAVIS_BUILD_DIR/.autograph.yml & script: - bash $TRAVIS_BUILD_DIR/smoke-test.sh
Make sure kinto-admin is installed in venv
Make sure kinto-admin is installed in venv
YAML
apache-2.0
mozilla-services/kinto-dist,Kinto/kinto-dist,Kinto/kinto-dist,mozilla-services/kinto-dist
855a5e5f702035bf95663a6970c155237caf07f6
.travis.yml
.travis.yml
language: node_js node_js: - 8 before_install: - "npm install [email protected] [email protected] [email protected]"
language: node_js node_js: - 8 before_install: - "npm install [email protected] [email protected] [email protected]"
Update to styled components 4
Update to styled components 4
YAML
mit
LucasBassetti/react-simple-chatbot,LucasBassetti/react-simple-chatbot
8c01a5bb1baea6d360211faf49c4c0351e3e0108
.travis.yml
.travis.yml
language: python python: - "2.7" install: - pip install codecov script: - python setup.py install - coverage run tests/test.py after_success: - codecov --token $CODECOV_TOKEN
language: python python: - "2.7" install: - pip install codecov script: - python setup.py install - coverage run tests/test.py after_success: - codecov --token $CODECOV_TOKEN deploy: provider: pypi user: dpmcmlxxvi password: secure: UZ3ZOSFFpcmTfMnoFYh/KUIeQLGxvZpGH07sCBiblHfUtECpiq7FJ00GvyjNMqgjcxZm+THZJoGuPKgtfLsIX8qiarXNoht1yQ6dVuPzINocSMOi4bOW56d3x1XNo6WkYsyZrusp62CoP51fyM77uTrBrK/5wro0DnWTh6jlsP4tw+lx2S+KffgeYOiNf34Ck1vHMsMDmTTFXg6hwXZlFOhWGrHwcvWWH0iUmk3BkYGxALXawz19t2VudQQcpZnXKEZjFaijqr+pFhhhYVa/qMrJ/8QjVnm+Q2gctKEuPYicUvtAsL/fao4kVOpw+ls2e0zzWjmOLT7nMmoe2xSd6Cb/fgb50mUHEv6dOhcvFff2pOdPwUNms91Jzw5KvXbgVHOUqTmEG06bRKLmLHHLTf0r4QG7vghjdVDvJ/C6RxZcwOKGjTEAZ0wgK2GNZ7NwOTVJ85Bj8ddJd5Sz+9Hs4620lFo18K3AM7oWBD1QBCOSVXnYha5/Y7sOJQ1P4HevtC+RZCrEjE6RIif479PVxFvHrmrExEK+fneYLW9RkQ2UnySXgua0Cn20mFzSx+F8Fso3oW7xwiT9KXpZrHrpwPujsn0PSiZDlCfntkcy22ccYcO9z7xT5kttJh+6VAnuG3fGGzAN5Y4O2RLahS7c7zfgeBcIYT6RxknCTs30ZyI= on: tags: true repo: dpmcmlxxvi/pixelscan
Automate pypi deployment for new tags
Automate pypi deployment for new tags
YAML
mit
dpmcmlxxvi/pixelscan
c7684fd674fa142113347ab4b51fc67d68d2de29
.travis.yml
.travis.yml
rvm: - 1.9.3 - 2.0.0 before_script: - bundle exec berks install script: - bundle exec foodcritic -f any . - bundle exec rspec --color --format progress
rvm: - 1.9.3 - 2.0 - 2.1 before_script: - bundle exec berks install script: - bundle exec foodcritic -f any . - bundle exec rspec --color --format progress
Add ruby 2.1 as well as 2.0 and 1.9.3
Add ruby 2.1 as well as 2.0 and 1.9.3
YAML
mit
sportngin-cookbooks/loggly
186f6a2f6f59cd8712d0dff9bd82e04a66e89424
.travis.yml
.travis.yml
language: objective-c xcode_project: ProgressView.xcworkspace xcode_scheme: ProgressViewTests before_install: - gem install cocoapods - cd Example\ Project
language: objective-c xcode_project: PWProgressView.xcworkspace xcode_scheme: PWProgressViewTests before_install: - gem install cocoapods - cd Example\ Project
Fix incorrect xcode_project and xcode_scheme in Travis config
Fix incorrect xcode_project and xcode_scheme in Travis config
YAML
mit
pwillsey/PWProgressView,Igor-Palaguta/PWProgressView
00b25ad0a5b38986e4657509baee44217e7805d3
.travis.yml
.travis.yml
sudo: false cache: directories: - node_modules services: - mongodb node_js: - "8" before_script: - npm prune - mongo test --eval 'db.createUser({user:"admin",pwd:"admin",roles:["readWrite"]});' - npm run build notifications: disabled: true install: - npm install -g codecov - npm install branches: except: - /^v\d+\.\d+\.\d+$/ script: - npm test - codecov
sudo: false cache: directories: - node_modules services: - mongodb node_js: - "8" - "9" before_script: - npm prune - mongo test --eval 'db.createUser({user:"admin",pwd:"admin",roles:["readWrite"]});' - npm run build notifications: disabled: true install: - npm install -g codecov - npm install branches: except: - /^v\d+\.\d+\.\d+$/ script: - npm test - codecov
Add Node 9 to test builds
Add Node 9 to test builds
YAML
mit
JasonEtco/flintcms,JasonEtco/flintcms
9fc632f14d1fb282685424dfd0fa8159a64e035b
.travis.yml
.travis.yml
language: python python: # We don't actually use the Travis Python, but this keeps it organized. - "2.6" - "2.7" - "3.3" - "3.4" install: - sudo apt-get update # You may want to periodically update this, although the conda update # conda line below will keep everything up-to-date. We do this # conditionally because it saves us some downloading if the version is # the same. - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget http://repo.continuum.io/miniconda/Miniconda-3.4.2-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-3.4.2-Linux-x86_64.sh -O miniconda.sh; fi - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda # Useful for debugging any issues with conda - conda info -a # Replace dep1 dep2 ... with your dependencies - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION anaconda - source activate test-environment - conda build conda.recipe - conda install physicalproperty --use-local script: nosetests
language: python python: # We don't actually use the Travis Python, but this keeps it organized. - "2.6" - "2.7" - "3.3" - "3.4" install: - sudo apt-get update # You may want to periodically update this, although the conda update # conda line below will keep everything up-to-date. We do this # conditionally because it saves us some downloading if the version is # the same. - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget http://repo.continuum.io/miniconda/Miniconda-3.4.2-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-3.4.2-Linux-x86_64.sh -O miniconda.sh; fi - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda # Useful for debugging any issues with conda - conda info -a # Replace dep1 dep2 ... with your dependencies - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION anaconda - source activate test-environment - conda install conda-build - conda build conda.recipe - conda install physicalproperty --use-local script: nosetests
Add missing `conda-build` install command
Add missing `conda-build` install command
YAML
mit
jrsmith3/physicalproperty,jrsmith3/physicalproperty
85f342cf3df17f014d85c1357fd07dfc499eac56
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 - 7.3 - nightly sudo: false matrix: fast_finish: true include: - php: 7.1 env: COMPOSER_FLAGS="--prefer-lowest" - php: 7.3 env: SYMFONY_VERSION=^3.4 - php: 7.3 env: SYMFONY_VERSION=^4.0 allow_failures: - php: nightly cache: directories: - $HOME/.composer/cache before_install: - composer selfupdate - if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi; install: - composer update --prefer-dist --no-interaction $COMPOSER_FLAGS script: - mkdir -p build/logs - ./bin/phpunit --coverage-clover build/logs/clover.xml after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
language: php php: - 7.1 - 7.2 - 7.3 - 7.4snapshot sudo: false matrix: fast_finish: true include: - php: 7.1 env: COMPOSER_FLAGS="--prefer-lowest" - php: 7.3 env: SYMFONY_VERSION=^3.4 - php: 7.3 env: SYMFONY_VERSION=^4.0 allow_failures: - php: 7.4snapshot cache: directories: - $HOME/.composer/cache before_install: - if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi; install: - composer update --prefer-dist --no-interaction $COMPOSER_FLAGS script: - mkdir -p build/logs - ./bin/phpunit --coverage-clover build/logs/clover.xml after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
Build on PHP7.4, replacing nightly
Build on PHP7.4, replacing nightly
YAML
mit
scheb/two-factor-bundle,scheb/two-factor-bundle
5768f636b8dd4698e5cf8be38d39be8c7057c66b
.travis.yml
.travis.yml
language: node_js node_js: - "8" cache: yarn: true directories: - "node_modules" script: - yarn test
language: node_js node_js: - "8" script: - yarn test
Test Travis CI with no cache
Test Travis CI with no cache
YAML
mit
xcv58/Tab-Manager-v2,xcv58/Tab-Manager-v2,xcv58/Tab-Manager-v2,xcv58/Tab-Manager-v2
08b53eca4f3f00c7a5017324d211576ff6c3be28
.travis.yml
.travis.yml
# R for travis # https://docs.travis-ci.com/user/languages/r language: r sudo: false cache: packages warnings_are_errors: false # Temporarily enable when caching Bioconductor packages # script: true r: - bioc-release # - bioc-devel r_packages: - covr - rlang after_success: - Rscript -e 'covr::codecov()' - pwd - cd .. - git clone https://github.com/bcbio/bcbio_rnaseq_output_example.git - cd bcbio_rnaseq_output_example - Rscript -e 'devtools::install_local("../bcbioRNASeq")' - Rscript -e 'devtools::install_github("lpantano/DEGreport")' - Rscript -e 'install.packages("DT")' - Rscript -e 'install.packages("tidyverse")' - Rscript -e 'install.packages("formatR")' - Rscript -e 'install.packages("hexbin")' - Rscript -e 'testthat::test_file("test_reports.R")' - cd report - mv de.html de-${TRAVIS_BRANCH}.html - mv qc.html qc-${TRAVIS_BRANCH}.html - mv fa.html fa-${TRAVIS_BRANCH}.html - cd .. - cp ../bcbioRNASeq/.push.sh push.sh - chmod +x push.sh - ./push.sh
# R for travis # https://docs.travis-ci.com/user/languages/r language: r sudo: false cache: packages warnings_are_errors: false # Temporarily enable when caching Bioconductor packages # script: true r: - bioc-release # - bioc-devel r_packages: - covr - DT - formatR - hexbin - rlang - testthat - tidyverse after_success: - Rscript -e 'covr::codecov()' - pwd - cd .. - git clone https://github.com/bcbio/bcbio_rnaseq_output_example.git - cd bcbio_rnaseq_output_example - Rscript -e 'devtools::install_local("../bcbioRNASeq")' - Rscript -e 'testthat::test_file("test_reports.R")' - cd report - mv de.html de-${TRAVIS_BRANCH}.html - mv qc.html qc-${TRAVIS_BRANCH}.html - mv fa.html fa-${TRAVIS_BRANCH}.html - cd .. - cp ../bcbioRNASeq/.push.sh push.sh - chmod +x push.sh - ./push.sh
Simplify installed packages. Check against BioC version of DEGreport.
Simplify installed packages. Check against BioC version of DEGreport.
YAML
mit
hbc/bcbioRnaseq,roryk/bcbioRnaseq,hbc/bcbioRnaseq
8fc16d2e85ed335818b68874bc5371d1d711ae00
.travis.yml
.travis.yml
# https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options bundler_args: --without development script: "bundle exec rspec spec" rvm: - 1.8.7 - 1.8.7-p249 - 1.9.2 - rbx-2.0 - ree - ruby-head notifications: recipients: - [email protected] - [email protected] - [email protected]
# https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options bundler_args: --without development script: "bundle exec rspec spec" rvm: - 1.8.7 - 1.8.7-p249 - 1.9.2 - jruby - rbx-2.0 - ree - ruby-head notifications: recipients: - [email protected] - [email protected] - [email protected]
Revert "Disable CI on JRuby for now. amqp & amq-client CI is still run against JRuby, so"
Revert "Disable CI on JRuby for now. amqp & amq-client CI is still run against JRuby, so" This reverts commit 3acb6b66f7b63f3d2b96b3c8afa2eefefc121880. This seems to be affecting all the projects right now, so disabling JRuby makes little sense.
YAML
mit
ruby-amqp/amq-protocol,ruby-amqp/amq-protocol
5a3a049f4132e1476ea4ce0b9c0f805cb64075ff
.travis.yml
.travis.yml
language: c env: - PG=9.4 - PG=9.3 - PG=9.2 install: - sudo /etc/init.d/postgresql stop - sudo apt-get update -o Dir::Etc::sourcelist=/dev/null - sudo apt-get install postgresql-$PG postgresql-server-dev-$PG - sudo /etc/init.d/postgresql start $PG script: - psql postgres -xA -c 'select version()' - make - sudo make install - make installcheck || (cat regression.diffs && false)
language: c env: - PG=9.5 - PG=9.4 - PG=9.3 - PG=9.2 install: - PGPORT=5440 - sudo /etc/init.d/postgresql stop - sudo apt-get update -o Dir::Etc::sourcelist=/dev/null - sudo apt-get install postgresql-$PG postgresql-server-dev-$PG - sudo pg_createcluster -p $PGPORT $PG test - sudo sed -i '1i local all all trust' /etc/postgresql/$PG/test/pg_hba.conf - sudo /etc/init.d/postgresql start $PG script: - psql -p $PGPORT -U postgres postgres -xA -c 'select version()' - make - sudo make install - make installcheck PGUSER=postgres PGPORT=$PGPORT || (cat regression.diffs && false)
Add PostgreSQL 9.5 support for Travis CI.
Add PostgreSQL 9.5 support for Travis CI.
YAML
bsd-2-clause
arkhipov/temporal_tables
fabe85e9c365ee188ac4be713f9da944d8c7893a
.travis.yml
.travis.yml
language: node_js node_js: - '6' - '8' - '10' script: 'npm run ci' after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
language: node_js node_js: - '8' - '10' - '12' script: 'npm run ci' after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
Drop node.js 6 support, add 12
Drop node.js 6 support, add 12
YAML
bsd-3-clause
unexpectedjs/unexpected-resemble,unexpectedjs/unexpected-resemble
8a4d43c86de954ace1cc642a5e303c092548864a
.travis.yml
.travis.yml
language: python python: - "3.3" install: - "sudo apt-get install python3-sphinx" - "pip install -r .travis-requirements.txt" script: - "pep8 --ignore E501 i3pystatus tests" - "PYTHONPATH=. py.test" # run unit tests - "python setup.py install" # test install - "sphinx-build -W docs html" # test building docs
language: python python: - "3.3" install: - "sudo apt-get install -qq python3-sphinx" - "pip3 install -r .travis-requirements.txt" script: - "pep8 --ignore E501 i3pystatus tests" - "PYTHONPATH=. py.test" # run unit tests - "python setup.py -q install" # test install - "sphinx-build -W docs html" # test building docs
Make CI builds less noisy
Make CI builds less noisy
YAML
mit
MaicoTimmerman/i3pystatus,ismaelpuerto/i3pystatus,Arvedui/i3pystatus,teto/i3pystatus,ncoop/i3pystatus,plumps/i3pystatus,richese/i3pystatus,claria/i3pystatus,onkelpit/i3pystatus,Arvedui/i3pystatus,schroeji/i3pystatus,teto/i3pystatus,fmarchenko/i3pystatus,plumps/i3pystatus,asmikhailov/i3pystatus,eBrnd/i3pystatus,enkore/i3pystatus,paulollivier/i3pystatus,opatut/i3pystatus,Elder-of-Ozone/i3pystatus,yang-ling/i3pystatus,eBrnd/i3pystatus,ncoop/i3pystatus,asmikhailov/i3pystatus,paulollivier/i3pystatus,juliushaertl/i3pystatus,m45t3r/i3pystatus,m45t3r/i3pystatus,facetoe/i3pystatus,claria/i3pystatus,fmarchenko/i3pystatus,MaicoTimmerman/i3pystatus,Elder-of-Ozone/i3pystatus,facetoe/i3pystatus,schroeji/i3pystatus,onkelpit/i3pystatus,ismaelpuerto/i3pystatus,drwahl/i3pystatus,enkore/i3pystatus,juliushaertl/i3pystatus,yang-ling/i3pystatus,richese/i3pystatus,drwahl/i3pystatus,opatut/i3pystatus
a90f6a12c5607ed7ba5bf7d3d93c15676df8afad
.travis.yml
.travis.yml
language: go go: 1.1 install: - export PATH=$PATH:$HOME/gopath/bin # Annoyingly, we can not use go get revel/... because references to app/routes package fail - go get -v github.com/robfig/revel/revel - go get -v github.com/robfig/revel/harness - go get -v github.com/coopernurse/gorp - go get -v code.google.com/p/go.crypto/bcrypt - go get -v labix.org/v2/mgo - go get -v labix.org/v2/mgo/bson - go get github.com/jgraham909/revmgo script: - go test github.com/robfig/revel - go test github.com/robfig/revel/cache - go test github.com/robfig/revel/harness # Build & run the sample apps - revel test github.com/FunnyMonkey/sally
language: go go: 1.1 install: - export PATH=$PATH:$HOME/gopath/bin # Annoyingly, we can not use go get revel/... because references to app/routes package fail - go get -v github.com/robfig/revel/revel - go get -v github.com/robfig/revel/harness - go get -v github.com/coopernurse/gorp - go get -v code.google.com/p/go.crypto/bcrypt - go get -v labix.org/v2/mgo - go get -v labix.org/v2/mgo/bson - go get github.com/jgraham909/revmgo script: - go test github.com/robfig/revel - go test github.com/robfig/revel/harness # Build & run the sample apps - revel test github.com/FunnyMonkey/sally
Remove revel cache test we aren't using that
Remove revel cache test we aren't using that
YAML
mit
FunnyMonkey/sally
3f9d74deb95bcad31d4f8ebe903717c6c10a902f
.travis.yml
.travis.yml
language: python python: - "2.7.3" - "2.7" install: - "pip install ." script: - "python setup.py flake8" - "pytest -s"
language: python python: - "2.7.11" - "2.7" install: - "pip install ." script: - "python setup.py flake8" - "pytest -s"
Change minimal python version to test (2.7.11)
Change minimal python version to test (2.7.11)
YAML
lgpl-2.1
f2nd/yandex-tank,yandex/yandex-tank,nettorta/yandex-tank,fomars/yandex-tank,yandex/yandex-tank,fomars/yandex-tank,f2nd/yandex-tank,netortik/yandex-tank,nettorta/yandex-tank,netortik/yandex-tank