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
be6e406b48f5d23bc536cac9d4117bdd3023e855
.travis.yml
.travis.yml
language: php env: global: - excludegroup=travis-ci-exclude matrix: include: - php: hhvm - php: nightly - php: 7.0 - php: 5.6 env: excludegroup=travis-ci-exclude-56 fast_finish: true allow_failures: - php: nightly - php: hhvm cache: directories: - $HOME/.composer/cache - $HOME/.php-cs-fixer notifications: email: false before_script: - if [[ $TRAVIS_PHP_VERSION != hhvm && $TRAVIS_PHP_VERSION != nightly ]]; then phpenv config-rm xdebug.ini; fi - travis_retry composer self-update - travis_retry composer install --no-interaction - travis_retry composer dump-autoload --optimize script: - if [[ $TRAVIS_PULL_REQUEST_BRANCH = master ]]; then echo "Please open pull request from a feature / topic branch." exit 1; fi # Verify application version and Git tag match - composer lpv:application-version-guard - composer lpv:cs-lint - if [[ $excludegroup = travis-ci-exclude ]]; then composer lpv:test -- --exclude-group travis-ci-exclude; fi - if [[ $excludegroup = travis-ci-exclude-56 ]]; then composer lpv:test -- --exclude-group travis-ci-exclude-56; fi
language: php env: global: - excludegroup=travis-ci-exclude matrix: include: - php: hhvm - php: nightly - php: 7.0 - php: 5.6 env: excludegroup=travis-ci-exclude-56 fast_finish: true allow_failures: - php: nightly - php: hhvm cache: directories: - $HOME/.composer/cache - $HOME/.php-cs-fixer notifications: email: false before_script: - if [[ $TRAVIS_PHP_VERSION != hhvm && $TRAVIS_PHP_VERSION != nightly ]]; then phpenv config-rm xdebug.ini; fi - travis_retry composer self-update - travis_retry composer install --no-interaction - travis_retry composer dump-autoload --optimize script: - if [[ $TRAVIS_PULL_REQUEST_BRANCH = master ]]; then echo "Please open pull request from a feature / topic branch." exit 1; fi # Verify application version and Git tag match on tagged builds - if [[ ! -z "$TRAVIS_TAG" ]]; then composer lpv:application-version-guard; fi - composer lpv:cs-lint - if [[ $excludegroup = travis-ci-exclude ]]; then composer lpv:test -- --exclude-group travis-ci-exclude; fi - if [[ $excludegroup = travis-ci-exclude-56 ]]; then composer lpv:test -- --exclude-group travis-ci-exclude-56; fi
Verify application version on tagged builds
Verify application version on tagged builds
YAML
mit
raphaelstolt/lean-package-validator,raphaelstolt/lean-package-validator
873d1cdbb762cc2f524ffa588895f4f12139036a
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.2" env: # we only test interpreters who have native python packages # since those tests are running on ubuntu 12.04, pyqt5 cannot be tested - TOXENV=py27-pyqt4 - TOXENV=py32-pyqt4 - TOXENV=cov - TOXENV=pep8 matrix: exclude: - python: "2.7" env: TOXENV=cov - python: "2.7" env: TOXENV=pep8 - python: "2.7" env: TOXENV=py32-pyqt4 - python: "3.2" env: TOXENV=py27-pyqt4 allow_failures: - env: TOXENV=cov - env: TOXENV=pep8 virtualenv: system_site_packages: true before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" install: - sudo apt-get install -qq python-qt4 --fix-missing - sudo apt-get install -qq python3-pyqt4 --fix-missing - pip install tox - pip install git+https://github.com/pyQode/pyqode.qt.git@develop script: - tox after_script: - if [ $TOXENV == "cov" ]; then pip install --quiet --use-mirrors coveralls; coveralls; fi
language: python python: - "2.7" - "3.2" env: # we only test interpreters who have native python packages # since those tests are running on ubuntu 12.04, pyqt5 cannot be tested - TOXENV=py27-pyqt4 - TOXENV=py32-pyqt4 - TOXENV=cov - TOXENV=pep8 matrix: exclude: - python: "2.7" env: TOXENV=cov - python: "2.7" env: TOXENV=pep8 - python: "2.7" env: TOXENV=py32-pyqt4 - python: "3.2" env: TOXENV=py27-pyqt4 allow_failures: - env: TOXENV=cov - env: TOXENV=pep8 virtualenv: system_site_packages: true before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" install: - sudo apt-get install -qq python-qt4 --fix-missing - sudo apt-get install -qq python3-pyqt4 --fix-missing - pip install tox script: - tox after_script: - if [ $TOXENV == "cov" ]; then pip install --quiet --use-mirrors coveralls; coveralls; fi
Remove useless install (this is specified in tox.ini)
Remove useless install (this is specified in tox.ini)
YAML
mit
pyQode/pyqode.core,pyQode/pyqode.core,zwadar/pyqode.core
3a1adc4502bddd33146ce392ba8d2c09cf9c8b28
.travis.yml
.travis.yml
language: python # Add or remove version for match with Travis support python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 - 3.5 - "pypy" sudo: false os: - linux - osx env: matrix: fast_finish: true allow_failures: - os: osx include: - python: 2.7 env: ENV=lint before_script: TOX_ENV=lint - python: 2.7 env: ENV=docs before_script: TOX_ENV=docs-travis install: - TOX_ENV=py$TRAVIS_PYTHON_VERSION - pip install tox after_success: # Trigger ReadTheDocs build - ./contrib/trigger_rtd_build.py 8284 script: - tox -e $TOX_ENV notifications: email: - notifications@libcloud.apache.org irc: - "chat.freenode.net#libcloud"
language: python # Add or remove version for match with Travis support python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 - 3.5 - "pypy" sudo: false os: - linux - osx env: matrix: fast_finish: true allow_failures: - os: osx include: - python: 2.7 env: ENV=lint before_script: TOX_ENV=lint - python: 2.7 env: ENV=docs before_script: TOX_ENV=docs-travis install: - TOX_ENV=py$TRAVIS_PYTHON_VERSION - pip install tox script: - tox -e $TOX_ENV after_success: # Trigger ReadTheDocs build - ./contrib/trigger_rtd_build.py 8284 notifications: # Disabled until ASF switches to new mailing list software # when we can whitelist addresses #email: # - "notifications@libcloud.apache.org" irc: - "chat.freenode.net#libcloud"
Disable email notifications - they won't work until ASF moves to the new mailing list software.
Disable email notifications - they won't work until ASF moves to the new mailing list software.
YAML
apache-2.0
t-tran/libcloud,techhat/libcloud,samuelchong/libcloud,illfelder/libcloud,lochiiconnectivity/libcloud,ZuluPro/libcloud,ByteInternet/libcloud,iPlantCollaborativeOpenSource/libcloud,mistio/libcloud,techhat/libcloud,apache/libcloud,StackPointCloud/libcloud,Scalr/libcloud,wuyuewen/libcloud,supertom/libcloud,vongazman/libcloud,SecurityCompass/libcloud,apache/libcloud,SecurityCompass/libcloud,mathspace/libcloud,ZuluPro/libcloud,mistio/libcloud,DimensionDataCBUSydney/libcloud,supertom/libcloud,watermelo/libcloud,pquentin/libcloud,mathspace/libcloud,pquentin/libcloud,Kami/libcloud,iPlantCollaborativeOpenSource/libcloud,t-tran/libcloud,cryptickp/libcloud,andrewsomething/libcloud,ByteInternet/libcloud,erjohnso/libcloud,illfelder/libcloud,NexusIS/libcloud,NexusIS/libcloud,wuyuewen/libcloud,wrigri/libcloud,erjohnso/libcloud,DimensionDataCBUSydney/libcloud,pquentin/libcloud,mgogoulos/libcloud,Scalr/libcloud,erjohnso/libcloud,lochiiconnectivity/libcloud,Kami/libcloud,iPlantCollaborativeOpenSource/libcloud,cryptickp/libcloud,lochiiconnectivity/libcloud,wrigri/libcloud,StackPointCloud/libcloud,watermelo/libcloud,andrewsomething/libcloud,SecurityCompass/libcloud,apache/libcloud,NexusIS/libcloud,mistio/libcloud,StackPointCloud/libcloud,samuelchong/libcloud,DimensionDataCBUSydney/libcloud,vongazman/libcloud,mgogoulos/libcloud,curoverse/libcloud,vongazman/libcloud,supertom/libcloud,samuelchong/libcloud,mgogoulos/libcloud,t-tran/libcloud,ZuluPro/libcloud,watermelo/libcloud,techhat/libcloud,wuyuewen/libcloud,niteoweb/libcloud,niteoweb/libcloud,curoverse/libcloud,curoverse/libcloud,mathspace/libcloud,ByteInternet/libcloud,Scalr/libcloud,cryptickp/libcloud,wrigri/libcloud,Kami/libcloud,andrewsomething/libcloud,niteoweb/libcloud,illfelder/libcloud
9e9f10c20d596582b27465594ca43f2d208efeb7
.travis.yml
.travis.yml
language: cpp os: - osx - linux osx_image: xcode7.2 sudo: required dist: trusty cache: directories: - node_modules before_install: - "export DISPLAY=:99.0" - scripts/bootstrap.py - sleep 3 install: - nvm --version - nvm install 5.9 - node --version - npm --version - npm install --progress false --depth 0 - npm install -g flow-bin script: - flow check - npm test after_success: - npm run package - npm run coverage branches: only: - master
language: cpp os: - osx - linux osx_image: xcode7.2 sudo: required dist: trusty cache: directories: - node_modules before_install: - "export DISPLAY=:99.0" - scripts/bootstrap.py - sleep 3 install: - nvm --version - nvm install 5.9 - node --version - npm --version - npm install --progress false --depth 0 script: - npm test after_success: - npm run package - npm run coverage branches: only: - master
Revert "Run flow check in CI." r=me
Revert "Run flow check in CI." r=me This reverts commit 5fa009784e7e51993542dd73e193decc3faa8937.
YAML
apache-2.0
bgrins/tofino,mozilla/tofino,bgrins/tofino,mozilla/tofino,jsantell/tofino,victorporof/tofino,bgrins/tofino,jsantell/tofino,mozilla/tofino,jsantell/tofino,jsantell/tofino,bgrins/tofino,victorporof/tofino,mozilla/tofino
1b4c0d585dc7aa8c5e35470c416b6bfd8f67f980
examples/persisted/habitat.yml
examples/persisted/habitat.yml
apiVersion: habitat.sh/v1beta1 kind: Habitat metadata: name: example-persistent-habitat spec: # the core/redis habitat service packaged as a Docker image image: kinvolk/redis-hab count: 3 # the presence of this key activates persistent storage persistence: # the size of the volume that will be mounted in each Pod size: 1Gi # a StorageClass object with name "standard" must be created beforehand by # the cluster administrator storageClassName: standard # the location under which the volume will be mounted mountPath: /tmp/foobar env: - name: HAB_REDIS value: '{ "protected-mode": "no" }' service: name: redis topology: leader # if not present, defaults to "default" group: foobar
apiVersion: habitat.sh/v1beta1 kind: Habitat metadata: name: example-persistent-habitat spec: # the core/redis habitat service packaged as a Docker image image: kinvolk/redis-hab count: 3 # the presence of this key activates persistent storage persistence: # the size of the volume that will be mounted in each Pod size: 1Gi # a StorageClass object with name "standard" must be created beforehand by # the cluster administrator storageClassName: standard # the location under which the volume will be mounted mountPath: /tmp/foobar env: - name: HAB_REDIS # this is needed to make redis accept connections from other hosts # see https://redis.io/topics/security#protected-mode # NOTE: do not use this setting in a production environment value: '{ "protected-mode": "no" }' service: name: redis topology: leader # if not present, defaults to "default" group: foobar
Add comment about redis protected mode
Add comment about redis protected mode Signed-off-by: Lorenzo Manacorda <86995a091f8a1385082bd10715048b52ee386a6a@kinvolk.io>
YAML
apache-2.0
kinvolk/habitat-operator,kinvolk/habitat-operator
c87e09c3691a87adeab0ea144de9ac11868e65f4
.travis.yml
.travis.yml
language: node_js node_js: - "0.12" - "0.11" - "0.10" - "0.9" - "iojs" - "iojs-v1.0.0"
language: node_js node_js: - "0.12" - "0.11" - "0.10" - "0.9" - "iojs" - "iojs-v1.0.0" before_install: - sudo apt-get update install: - sudo apt-get install rpm
Add before_install/install script to Travis config
Add before_install/install script to Travis config Since Travis CI only runs on Ubuntu, the `rpm` tools must be installed on the system before running the tests.
YAML
mit
rictorres/node-rpm-builder
e6562917086b391a2b53c6c752f639ad3bda251c
.travis.yml
.travis.yml
sudo: required language: python python: - "2.7" env: - CKANVERSION=2.6.3 POSTGISVERSION=2 - CKANVERSION=2.7.2 POSTGISVERSION=2 services: - redis-server - postgresql addons: firefox: "46.0" install: - bash bin/travis-build.bash before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 # give xvfb some time to start script: - sh bin/travis-run.sh after_success: coveralls branches: only: - fiware_migration
sudo: required language: python python: - "2.7" env: - CKANVERSION=2.6.3 POSTGISVERSION=2 - CKANVERSION=2.7.2 POSTGISVERSION=2 services: - redis-server - postgresql addons: firefox: "46.0" install: - bash bin/travis-build.bash before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 # give xvfb some time to start script: - sh bin/travis-run.sh after_success: coveralls branches: only: - master
Update github branch on Travis CI configuration
Update github branch on Travis CI configuration
YAML
agpl-3.0
conwetlab/ckanext-oauth2,conwetlab/ckanext-oauth2,conwetlab/ckanext-oauth2,conwetlab/ckanext-oauth2
455c2a52407fcc15142a8fd7a6097e0c976a05c3
.travis.yml
.travis.yml
language: ruby rvm: - 2.2 before_script: - chmod +x ./scripts/build.sh - chmod +x ./scripts/deploy.sh script: ./scripts/build.sh sudo: false after_success: - ./scripts/deploy.sh branches: only: - master
language: ruby rvm: - 2.2.7 before_script: - chmod +x ./scripts/build.sh - chmod +x ./scripts/deploy.sh script: ./scripts/build.sh sudo: false after_success: - ./scripts/deploy.sh branches: only: - master
Update ruby version for Travis
Update ruby version for Travis
YAML
mit
kotlinresources/kotlin-resources,kotlinresources/kotlin-resources,kotlinresources/kotlin-resources,kotlinresources/kotlin-resources
d0789da472bfd32a684cdb1d0e0bc67d32376ba6
.travis.yml
.travis.yml
# see http://about.travis-ci.org/docs/user/languages/php/ for more hints language: php # list any PHP version you want to test against php: - 5.4 - 5.5 - 5.6 # optionally specify a list of environments, for example to test different RDBMS env: - DB=mysql # execute any number of scripts before the test run, custom env's are available as variables before_script: - if [[ "$DB" == "mysql" ]]; then mysql -e "create database IF NOT EXISTS snipeit_laravel;" -utravis; fi - curl -s http://getcomposer.org/installer | php - cp app/config/production/database.example.php app/config/database.php - php composer.phar self-update - php composer.phar install --prefer-source --no-interaction --dev - php artisan key:generate - php artisan migrate:install - php artisan migrate --package cartalyst/sentry - php artisan migrate - php artisan db:seed # omitting "script:" will default to phpunit # use the $DB env variable to determine the phpunit.xml to use script: phpunit # configure notifications (email, IRC, campfire etc) notifications: slack: snipe:F6LWbfP6vhr3aRBoeARFG6Ti
# see http://about.travis-ci.org/docs/user/languages/php/ for more hints language: php # list any PHP version you want to test against php: - 5.4 - 5.5 - 5.6 # optionally specify a list of environments, for example to test different RDBMS env: - DB=mysql # execute any number of scripts before the test run, custom env's are available as variables before_script: - if [[ "$DB" == "mysql" ]]; then mysql -e "create database IF NOT EXISTS snipeit_laravel;" -utravis; fi - curl -s http://getcomposer.org/installer | php - cp app/config/production/database.example.php app/config/database.php - cp app/config/production/mail.example.php app/config/mail.php - php composer.phar self-update - php composer.phar install --prefer-source --no-interaction --dev - php artisan key:generate - php artisan migrate:install - php artisan migrate --package cartalyst/sentry - php artisan migrate - php artisan db:seed # omitting "script:" will default to phpunit # use the $DB env variable to determine the phpunit.xml to use script: phpunit # configure notifications (email, IRC, campfire etc) notifications: slack: snipe:F6LWbfP6vhr3aRBoeARFG6Ti
Copy the mail config file to prod for CI build as well. Duh.
Copy the mail config file to prod for CI build as well. Duh.
YAML
agpl-3.0
brianjking/snipe-it,Gehirnfussel/snipe-it,munozja/snipeit3,vabue/snipe-it,themachinist/snipe-mfg,brianjking/snipe-it,saydulk/snipe-it,crowdint/snipe-it,themachinist/snipe-mfg,hawk554/snipe-it,Gehirnfussel/snipe-it,aalaily/snipe-it,MichaelHoltTech/snipe-it,MicaelRodrigues/snipe-it,alfach/snipe-it,saymd/snipe-it,ivarne/snipe-it,Ahimta/snipe-it,PhillipMwaniki/snipe-it,aalaily/snipe-it,Ahimta/snipe-it,thehereward/snipe-it,kds100/snipe-it,merid14/snipe-it,nahid/snipe-it,elliotfehr/snipe-it,csd-dev/snipe-it,ddreier/snipe-it,alfach/snipe-it,vsposato/snipe-it,crowdint/snipe-it,merid14/snipe-it,csd-dev/snipe-it,hawk554/snipe-it,nahid/snipe-it,MichaelHoltTech/snipe-it,elliotfehr/snipe-it,merid14/snipe-it,MichaelHoltTech/snipe-it,ddreier/snipe-it,Gehirnfussel/snipe-it,irasnyd/snipe-it,thehereward/snipe-it,MicaelRodrigues/snipe-it,PhillipMwaniki/snipe-it,ivarne/snipe-it,nahid/snipe-it,thomas1216/snipe-it,supriyap-webonise/snipeit,ivarne/snipe-it,thomas1216/snipe-it,thomas1216/snipe-it,munozja/snipeit3,saymd/snipe-it,CODESUM/snipe-it,aalaily/snipe-it,saydulk/snipe-it,CODESUM/snipe-it,munozja/snipeit3,crowdint/snipe-it,vabue/snipe-it,MicaelRodrigues/snipe-it,hawk554/snipe-it,vabue/snipe-it,irasnyd/snipe-it,saymd/snipe-it,thehereward/snipe-it,CODESUM/snipe-it,vsposato/snipe-it,csd-dev/snipe-it,ddreier/snipe-it,Ahimta/snipe-it,elliotfehr/snipe-it,brianjking/snipe-it,supriyap-webonise/snipeit,vsposato/snipe-it,saydulk/snipe-it,themachinist/snipe-mfg,kds100/snipe-it,irasnyd/snipe-it,alfach/snipe-it
5a1b29af5456fe3dbe31ff6a6694ef103f16f73f
.travis.yml
.travis.yml
before_install: - gem update --system - gem install bundler bundler_args: --without development language: ruby rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.7 - 2.4.4 - 2.5.1 - ruby-head matrix: allow_failures: - rvm: ruby-head fast_finish: true script: bundle exec thor spec sudo: false cache: bundler
before_install: - gem update --system - gem install bundler - rvm @global do gem uninstall did_you_mean bundler_args: --without development language: ruby rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.7 - 2.4.4 - 2.5.1 - ruby-head matrix: allow_failures: - rvm: ruby-head fast_finish: true script: bundle exec thor spec sudo: false cache: bundler
Remove the globally installed gem by rvm
Remove the globally installed gem by rvm This fixes follow error: ``` Gem::LoadError: You have already activated did_you_mean 1.2.0, but your Gemfile requires did_you_mean 1.2.1. Prepending `bundle exec` to your command may solve this. ```
YAML
mit
erikhuda/thor
da9d03589d23a92714b5572f9517c10f2c26ece2
.travis.yml
.travis.yml
language: objective-c osx_image: xcode9.1 script: - set -o pipefail - bundle exec danger || echo "Danger failed, moving on" - xcodebuild test -project FontAwesome.xcodeproj -scheme FontAwesome -destination 'platform=iOS Simulator,name=iPhone 7' | bundle exec xcpretty -c - xcodebuild -project FontAwesome.xcodeproj -scheme FontAwesome-watchOS -destination 'OS=4.0,name=Apple Watch - 42mm' | bundle exec xcpretty -c before_deploy: - carthage build --no-skip-current - carthage archive FontAwesome deploy: provider: releases api_key: secure: cas9AI0zCDIumfTKk79sazU6PLuVXICET6eIjqivntG1Qs1g9yvmsI3JbBMLPyZqDl0w+uDHhki7cBeO3tDXJ8cxIErj8xYwtX4TMnA916QWqo7DVkGjkqAxosWWBGBgx6VbcSw0WSnPYrlo41c5yKssuDal+CZjoTeadJqB8Rg= file: FontAwesome.framework.zip skip_cleanup: true on: tags: true repo: thii/FontAwesome.swift notifications: email: false
language: objective-c osx_image: xcode9.4 script: - set -o pipefail - bundle exec danger || echo "Danger failed, moving on" - xcodebuild test -project FontAwesome.xcodeproj -scheme FontAwesome -destination 'platform=iOS Simulator,name=iPhone 7' | bundle exec xcpretty -c - xcodebuild -project FontAwesome.xcodeproj -scheme FontAwesome-watchOS -destination 'OS=4.0,name=Apple Watch - 42mm' | bundle exec xcpretty -c before_deploy: - carthage build --no-skip-current - carthage archive FontAwesome deploy: provider: releases api_key: secure: cas9AI0zCDIumfTKk79sazU6PLuVXICET6eIjqivntG1Qs1g9yvmsI3JbBMLPyZqDl0w+uDHhki7cBeO3tDXJ8cxIErj8xYwtX4TMnA916QWqo7DVkGjkqAxosWWBGBgx6VbcSw0WSnPYrlo41c5yKssuDal+CZjoTeadJqB8Rg= file: FontAwesome.framework.zip skip_cleanup: true on: tags: true repo: thii/FontAwesome.swift notifications: email: false
Use Xcode 9.4 on Travis
Use Xcode 9.4 on Travis
YAML
mit
thii/FontAwesome.swift,thii/FontAwesome.swift
e0b48d208ca80442e2e00f7f9445341e081bf5be
develop-compose.yml
develop-compose.yml
minervadb: build: ./ dockerfile: develop.dockerfile ports: - "15432:5432" volumes: - tests:/tests - scripts:/minerva
minervadb: build: ./ dockerfile: develop.dockerfile ports: - "16050:5432" volumes: - tests:/tests - scripts:/minerva
Change database port to reflect Minerva version
Change database port to reflect Minerva version
YAML
agpl-3.0
hendrikx-itc/minerva,hendrikx-itc/minerva
b902d7787edddff11f97ea94ecf233bfeee3fc99
.travis.yml
.travis.yml
language: node_js before_install: - sudo apt-get install libgmp3-dev - npm install bigint node_js: - 0.6 - 0.8 notifications: email: - lloyd@mozilla.com - benadida@mozilla.com - warner@mozilla.com
language: node_js before_install: - sudo apt-get install libgmp3-dev node_js: - 0.6 - 0.8 notifications: email: - lloyd@mozilla.com - benadida@mozilla.com - warner@mozilla.com
Revert "explicitly install bigint to get around optionalDependencies"
Revert "explicitly install bigint to get around optionalDependencies" This reverts commit 0ee9a4a6c3c987f8bfe1197a2846a553d5f14089.
YAML
mpl-2.0
mozilla/browserid-crypto,mozilla/browserid-crypto,vladikoff/browserid-crypto,mozilla/browserid-crypto,vladikoff/browserid-crypto,vladikoff/browserid-crypto
9ce07218858a5b906f36bb9f5701441952aea0c9
.travis.yml
.travis.yml
language: python addons: firefox: latest # https://github.com/travis-ci/travis-ci/issues/9815#issuecomment-411073985 matrix: include: - python: 2.7 - python: 3.4 - python: 3.5 - python: 3.6 - python: 3.7 dist: xenial sudo: true cache: pip env: global: - GECKODRIVER_VERSION=0.19.1 - MOZ_HEADLESS=1 - MOZ_CRASHREPORTER_SHUTDOWN=1 before_install: # Geckodriver - wget https://github.com/mozilla/geckodriver/releases/download/v${GECKODRIVER_VERSION}/geckodriver-v${GECKODRIVER_VERSION}-linux64.tar.gz - mkdir geckodriver - tar -xzf geckodriver-v${GECKODRIVER_VERSION}-linux64.tar.gz -C geckodriver - export PATH=$PATH:$PWD/geckodriver install: pip install tox-travis coverage codacy-coverage script: tox after_success: - coverage xml - python-codacy-coverage -r coverage.xml after_failure: - cat geckodriver.log
language: python addons: firefox: latest # https://github.com/travis-ci/travis-ci/issues/9815#issuecomment-411073985 matrix: include: - python: 2.7 - python: 3.4 - python: 3.5 - python: 3.6 - python: 3.7 dist: xenial sudo: true cache: pip env: global: - GECKODRIVER_VERSION=0.19.1 - MOZ_HEADLESS=1 - MOZ_CRASHREPORTER_SHUTDOWN=1 - DISPLAY=:0 before_install: # Geckodriver - wget https://github.com/mozilla/geckodriver/releases/download/v${GECKODRIVER_VERSION}/geckodriver-v${GECKODRIVER_VERSION}-linux64.tar.gz - mkdir geckodriver - tar -xzf geckodriver-v${GECKODRIVER_VERSION}-linux64.tar.gz -C geckodriver - export PATH=$PATH:$PWD/geckodriver install: pip install tox-travis coverage codacy-coverage script: tox after_success: - coverage xml - python-codacy-coverage -r coverage.xml after_failure: - cat geckodriver.log
Set display according to ... stackoverflow
Set display according to ... stackoverflow
YAML
mit
lincolnloop/django-salmonella,lincolnloop/django-salmonella,lincolnloop/django-salmonella,lincolnloop/django-salmonella
23eda62459f65a509802b13385a0bb38c8576fb0
.travis.yml
.travis.yml
language: python python: - "3.4" install: - python setup.py script: - python common/shapp.py - python common/sheventhandler.py - python common/shutil.py - python common/shregistry.py - python engine/restinterface.py - python engine/memorymanager.py - python feed/feed.home.tracer.py --help - python feed/feed.home.apcups.py --help - python feed/feed.home.autelis.py --help - python feed/feed.home.eagle.py --help - python feed/feed.home.finance.py --help - python feed/feed.home.isy.py --help - python feed/feed.home.loadtest.py --help - python feed/feed.home.netatmo.py --help - python feed/feed.home.sma.webbox.py --help
language: python python: - "3.4" install: - python setup.py script: - python common/shapp.py - python common/sheventhandler.py - python common/shutil.py - python common/shregistry.py - python engine/restinterface.py - python engine/memorymanager.py - python feed/feed.home.tracer.py --help - python feed/feed.home.apcups.py --help - python feed/feed.home.autelis.py --help - python feed/feed.home.eagle.py --help - python feed/feed.home.finance.py --help - python feed/feed.home.isy.py --help - python feed/feed.home.loadtest.py --help - python feed/feed.home.netatmo.py --help - python feed/feed.home.sma.webbox.py --help - python feed/feed.home.ubnt.mfi.py --help
Add ubnt.mfi feed to Travis CI
Add ubnt.mfi feed to Travis CI
YAML
apache-2.0
fxstein/SentientHome
c87bad8dedc0ea2a52171840d24451e2117c8325
.travis.yml
.travis.yml
dist: xenial language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "3.7" - "3.8" # command to install dependencies install: - "pip install -r requirements.txt" - "pip install -r test-requirements.txt" - "pip install coveralls" # command to run tests script: - make test-coverage # Coveralls after_success: - coveralls
dist: xenial language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" - "3.8" # command to install dependencies install: - "pip install -r requirements.txt" - "pip install -r test-requirements.txt" - "pip install coveralls" # command to run tests script: - make test-coverage # Coveralls after_success: - coveralls
Drop end of life Python 3.3
Drop end of life Python 3.3
YAML
apache-2.0
curtacircuitos/pcb-tools
7c4cfe0820eaff242195b7511b242ca25c7b78ae
.travis.yml
.travis.yml
language: node_js node_js: - 0.10 - 0.12 - iojs services: mongodb
language: node_js node_js: - 0.10 - 0.12 - iojs services: mongodb sudo: false
Migrate to new Travis CI infrastructure
Migrate to new Travis CI infrastructure
YAML
mit
jdesboeufs/connect-mongo
e66ddbd18df9db088c33ff080424a76bc65ac63b
.travis.yml
.travis.yml
language: c sudo: false matrix: include: - os: linux compiler: gcc install: bash .ci/build-c2man.sh env: PATH=$PATH:$TRAVIS_BUILD_DIR/c2man-install - os: linux compiler: clang - os: osx compiler: clang before_script: - ./autogen.sh script: - make - make check || (cat `find -name '*.log'` && false) - make distcheck || (cat `find -name '*.log'` && false)
language: c sudo: false matrix: include: - os: linux compiler: gcc install: bash .ci/build-c2man.sh env: PATH=$PATH:$TRAVIS_BUILD_DIR/c2man-install - os: linux compiler: clang - os: osx compiler: clang - os: linux language: python python: 3.5 env: PATH=$PATH:$TRAVIS_BUILD_DIR/c2man-install install: - pip install meson ninja before_script: - bash .ci/build-c2man.sh script: - meson build - ninja -C build - ninja -C build test cache: pip before_script: - ./autogen.sh script: - make - make check || (cat `find -name '*.log'` && false) - make distcheck || (cat `find -name '*.log'` && false)
Build also with meson on Travis
Build also with meson on Travis
YAML
lgpl-2.1
behdad/fribidi,khaledhosny/fribidi,ShiftMediaProject/fribidi,ShiftMediaProject/fribidi,ShiftMediaProject/fribidi,khaledhosny/fribidi,behdad/fribidi,behdad/fribidi,khaledhosny/fribidi
285a93647fa84ea4308ef88d6a5aeb2562e8c203
.travis.yml
.travis.yml
language: php dist: trusty php: - 5.6 - 7.0 - 7.1 - hhvm before_script: - cp app/config/parameters.yml.travis app/config/parameters.yml - composer install -n - git --version - git config --global user.email "test@travis-ci.org" - git config --global user.name "Travis" - git --version - php app/console doctrine:database:create --env=test - php app/console version:install --env=test - php app/console doctrine:fixtures:load --no-interaction --env=test script: phpunit --coverage-clover build/logs/clover.xml -c app after_script: - bin/coveralls -v
language: php php: - 5.6 - 7.0 - 7.1 before_script: - cp app/config/parameters.yml.travis app/config/parameters.yml - composer install -n - git --version - git config --global user.email "test@travis-ci.org" - git config --global user.name "Travis" - git --version - php app/console doctrine:database:create --env=test - php app/console version:install --env=test - php app/console doctrine:fixtures:load --no-interaction --env=test script: phpunit --coverage-clover build/logs/clover.xml -c app after_script: - bin/coveralls -v
Remove hhmv and dist trusty
Remove hhmv and dist trusty
YAML
mit
SSHVersionControl/git-web-client,SSHVersionControl/git-web-client
9cec35697c481c1a52f1cac17937655fa9fad579
.travis.yml
.travis.yml
language: python python: - "2.7" install: - pip install -r requirements.txt - pip install -r test_requirements.txt - pip install coveralls script: - py.test after_success: - coveralls
language: python python: - "3.9" install: - pip install -r requirements.txt - pip install -r test_requirements.txt - pip install coveralls script: - py.test after_success: - coveralls
Add Python 3 to Travis-CI
Add Python 3 to Travis-CI
YAML
mit
JohnMaguire/Cardinal
e0484c36951b9002aee619b6ab77982a9c80779a
.travis.yml
.travis.yml
sudo: required dist: trusty language: python python: - '2.7' before_install: - sudo apt-get -qq update - sudo apt-get install -y python-lvm2 install: - pip install --quiet -r ci/requirements.txt - git clone https://github.com/"${TRAVIS_REPO_SLUG%%/*}"/qubes-builder ~/qubes-builder # debootstrap in trusty is old... before_script: sudo ln -s sid /usr/share/debootstrap/scripts/stretch script: - PYTHONPATH=test-packages pylint --rcfile=ci/pylintrc qubes - ./run-tests --no-syslog - ~/qubes-builder/scripts/travis-build env: - DIST_DOM0=fc23 USE_QUBES_REPO_VERSION=3.2 USE_QUBES_REPO_TESTING=1 after_success: - ~/qubes-builder/scripts/travis-deploy # don't build tags which are meant for code signing only branches: except: - /.*_.*/ addons: apt: packages: - debootstrap # vim: ts=2 sts=2 sw=2 et
sudo: required dist: trusty language: python python: - '2.7' install: - pip install --quiet -r ci/requirements.txt - git clone https://github.com/"${TRAVIS_REPO_SLUG%%/*}"/qubes-builder ~/qubes-builder # debootstrap in trusty is old... before_script: sudo ln -s sid /usr/share/debootstrap/scripts/stretch script: - PYTHONPATH=test-packages pylint --rcfile=ci/pylintrc qubes - ./run-tests --no-syslog - ~/qubes-builder/scripts/travis-build env: - DIST_DOM0=fc23 USE_QUBES_REPO_VERSION=3.2 USE_QUBES_REPO_TESTING=1 after_success: - ~/qubes-builder/scripts/travis-deploy # don't build tags which are meant for code signing only branches: except: - /.*_.*/ addons: apt: packages: - debootstrap # vim: ts=2 sts=2 sw=2 et
Revert "Travis add python-lvm2 dependency"
Revert "Travis add python-lvm2 dependency" This reverts commit 7c02d991d0cb84abf092dc910772e8319df651d1. python-lvm2 isn't available in trusty (used in Travis-CI)
YAML
lgpl-2.1
woju/qubes-core-admin,woju/qubes-core-admin,woju/qubes-core-admin,QubesOS/qubes-core-admin,marmarek/qubes-core-admin,QubesOS/qubes-core-admin,marmarek/qubes-core-admin,QubesOS/qubes-core-admin,marmarek/qubes-core-admin,woju/qubes-core-admin
a2dbf1cc37380d4f886a02b2f779bf4ab03e5e0b
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10"
language: node_js node_js: - "iojs" - "0.12" - "0.11" - "0.10"
Test on nodejs 0.12.x and IO.js too
Test on nodejs 0.12.x and IO.js too
YAML
mit
meltingice/psd.js,mastrobardo/psd.js,pythonl1/psd.js,mastrobardo/psd.js,turbosquid/psd.js,koheiapril20/psd.js,koheiapril20/psd.js,toruta39/psd.js
cb64656219936f73a6eab2f796f4a7e68f2d700e
.travis.yml
.travis.yml
language: php php: - 5.6 sudo: true before_install: - sudo apt-get update -qq - sudo apt-get install -y gnupg2 before_script: - pecl install gnupg - composer self-update - composer install -n --no-scripts script: - ./vendor/bin/phpcs --standard=psr2 -n --ignore=vendor . - ./vendor/bin/phpunit --coverage-clover=build/logs/clover.xml after_script: - ./vendor/bin/test-reporter --stdout > codeclimate.json - "curl -X POST -d @codeclimate.json -H 'Content-Type: application/json' -H 'User-Agent: Code Climate (PHP Test Reporter v0.1.1)' https://codeclimate.com/test_reports"
language: php php: - 5.6 sudo: true before_install: - sudo apt-get update -qq - sudo apt-get install -y gnupg2 libgpgme11-dev before_script: - pecl install gnupg - composer self-update - composer install -n --no-scripts script: - ./vendor/bin/phpcs --standard=psr2 -n --ignore=vendor . - ./vendor/bin/phpunit --coverage-clover=build/logs/clover.xml after_script: - ./vendor/bin/test-reporter --stdout > codeclimate.json - "curl -X POST -d @codeclimate.json -H 'Content-Type: application/json' -H 'User-Agent: Code Climate (PHP Test Reporter v0.1.1)' https://codeclimate.com/test_reports"
Fix gnupg install on Travis
:cop: Fix gnupg install on Travis
YAML
mit
keboola/gooddata-php-client
2d76c24efdca2eb0f01462b0b569082dbfa95c1b
.travis.yml
.travis.yml
sudo: required language: python services: - docker script: - pip install coveralls - docker-compose build - docker-compose run ckan after_success: coveralls
sudo: required language: python services: - docker # we need coveralls and this also prevents travis from running pip install -r requirements.txt install: pip install coveralls script: - docker-compose build - docker-compose run ckan after_success: coveralls
Install coveralls in the install section
Install coveralls in the install section
YAML
mit
NaturalHistoryMuseum/ckanext-doi,NaturalHistoryMuseum/ckanext-doi,NaturalHistoryMuseum/ckanext-doi
cf0b07eb7512945a8f9902c1f44dcfcf6fe59294
.travis.yml
.travis.yml
addons: code_climate: repo_token: c75df5383c6ed506f57bd7281c1c41200a139a6847ad4c62d0371a23d457f8c6
addons: code_climate: repo_token: c75df5383c6ed506f57bd7281c1c41200a139a6847ad4c62d0371a23d457f8c6 language: ruby rvm: - 2.1.3
Use Ruby 2.1.3 for Travis
Use Ruby 2.1.3 for Travis
YAML
agpl-3.0
chrisma/event-und-raumplanung,hpi-swt2/event-und-raumplanung,hpi-swt2/event-und-raumplanung,chrisma/event-und-raumplanung,chrisma/event-und-raumplanung
34f831a6e823b1fc6ef4624f7bc09a39ffd39f72
.travis.yml
.travis.yml
#- Travis CI configuration file #- .travis.yml ~~ # # These instructions run QMachine's tests eleven times -- two versions of # Node.js against 5 databases each, plus Ruby against Mongo. # # ~~ (c) SRW, 15 Jul 2013 # ~~ last updated 18 Aug 2014 before_install: - sudo apt-get update -qq - sudo apt-get install -qq imagemagick - rvm use '2.1.2' --install --binary --fuzzy - ruby --version before_script: - psql -c "create database ${USER};" -U postgres - make $backend db=$db - sleep 5 env: - backend=node-app db=couch - backend=node-app db=mongo - backend=node-app db=postgres - backend=node-app db=redis - backend=node-app db=sqlite language: node_js matrix: include: - node_js: "0.10" env: backend=ruby-app db=mongo node_js: - "0.10" - "0.8" script: - make check services: - couchdb - mongodb - redis-server #- vim:set syntax=yaml:
#- Travis CI configuration file #- .travis.yml ~~ # # These instructions run QMachine's tests eleven times -- two versions of # Node.js against 5 databases each, plus Ruby against Mongo. # # ~~ (c) SRW, 15 Jul 2013 # ~~ last updated 18 Aug 2014 before_install: - sudo apt-get update -qq - sudo apt-get install -qq imagemagick - rvm use '2.1.2' --install --binary --fuzzy - ruby --version before_script: - psql -c "create database ${USER};" -U postgres - make $backend db=$db - sleep 5 env: global: - backend=node-app matrix: - db=couch - db=mongo - db=postgres - db=redis - db=sqlite language: node_js matrix: include: - node_js: "0.10" env: backend=ruby-app db=mongo node_js: - "0.10" - "0.8" script: - make check services: - couchdb - mongodb - redis-server #- vim:set syntax=yaml:
Use "global" in Travis CI to avoid clutter in output matrix
Use "global" in Travis CI to avoid clutter in output matrix
YAML
apache-2.0
qmachine/qmachine,qmachine/qmachine,qmachine/qmachine
508ce4af0f0894e24d880af8c5a82741b7c83cf1
.travis.yml
.travis.yml
language: julia os: - linux julia: - 0.7 - 1.0 notifications: email: recipients: - sunbergzach@gmail.com on_failure: always on_success: change script: - git clone https://github.com/JuliaRegistries/General $(julia -e 'import Pkg; println(joinpath(Pkg.depots1(), "registries", "General"))') - git clone https://github.com/JuliaPOMDP/Registry $(julia -e 'import Pkg; println(joinpath(Pkg.depots1(), "registries", "JuliaPOMDP"))') - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - julia --project --color=yes --check-bounds=yes -e 'import Pkg; Pkg.build(); Pkg.test("MCTS"; coverage=true)' after_success: - julia --project --color=yes -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())' - julia --project --color=yes -e 'import Pkg; Pkg.add("Documenter"); include(joinpath("docs", "make.jl"))'
language: julia os: - linux julia: - 1.0 - 1 notifications: email: recipients: - sunbergzach@gmail.com on_failure: always on_success: change script: - git clone https://github.com/JuliaRegistries/General $(julia -e 'import Pkg; println(joinpath(Pkg.depots1(), "registries", "General"))') - git clone https://github.com/JuliaPOMDP/Registry $(julia -e 'import Pkg; println(joinpath(Pkg.depots1(), "registries", "JuliaPOMDP"))') - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - julia --project --color=yes --check-bounds=yes -e 'import Pkg; Pkg.build(); Pkg.test("MCTS"; coverage=true)' after_success: - julia --project --color=yes -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())' - julia --project --color=yes -e 'import Pkg; Pkg.add("Documenter"); include(joinpath("docs", "make.jl"))'
Disable testing vor v0.7 and add 1.x
Disable testing vor v0.7 and add 1.x
YAML
mit
sisl/MCTS.jl
c6b306e82e369fd08bc0575535a47be9cf9277df
.travis.yml
.travis.yml
language: ruby cache: bundler sudo: false rvm: - 2.2 env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true
language: ruby cache: bundler sudo: false rvm: - 2.2.3 env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true
Use ruby 2.2.3 for testing
Use ruby 2.2.3 for testing
YAML
apache-2.0
samvera/hyrax,samvera/hyrax,samvera/hyrax,samvera/hyrax
0860b01887ee647f8c9c938b18d2c16163c5fada
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 # Codacy download uses hardcoded version instead of latest version # codacy-coverage-reporter README at https://github.com/codacy/codacy-coverage-reporter documents a new method for fetching latest jar # However, we had difficulty using it: https://github.com/codacy/codacy-coverage-reporter/issues/75#issuecomment-409388255 before_install: - sudo apt-get install jq - wget -O ~/codacy-coverage-reporter-assembly-latest.jar https://oss.sonatype.org/service/local/repositories/releases/content/com/codacy/codacy-coverage-reporter/4.0.1/codacy-coverage-reporter-4.0.1-assembly.jar - "export DISPLAY=:99.0" - "export TERM=dumb" - "sh -e /etc/init.d/xvfb start" install: mvn install -DskipTests -Dgpg.skip script: mvn -B verify after_success: java -cp ~/codacy-coverage-reporter-assembly-latest.jar com.codacy.CodacyCoverageReporter report --language Java --coverage-report aggregate/target/site/jacoco-aggregate/jacoco.xml
language: java jdk: - oraclejdk8 before_install: - sudo apt-get install jq - curl -L -o ~/codacy-coverage-reporter "https://dl.bintray.com/codacy/Binaries/$(curl https://api.bintray.com/packages/codacy/Binaries/codacy-coverage-reporter/versions/_latest | jq -r .name)/codacy-coverage-reporter" - chmod u+x codacy-coverage-reporter - "export DISPLAY=:99.0" - "export TERM=dumb" - "sh -e /etc/init.d/xvfb start" install: mvn install -DskipTests -Dgpg.skip script: mvn -B verify after_success: ~/codacy-coverage-reporter report --language Java --coverage-report aggregate/target/site/jacoco-aggregate/jacoco.xml
Update codacy coverage reporter commands to grab latest instead of hardcoded version
Update codacy coverage reporter commands to grab latest instead of hardcoded version
YAML
apache-2.0
jtablesaw/tablesaw,jtablesaw/tablesaw,jtablesaw/tablesaw
d46bc84a07f98fd32d464e0302e2a6a6a5a4ac92
.travis.yml
.travis.yml
dist: bionic language: cpp compiler: gcc script: - cd test - make # This really should finish in less than 2 minutes - otherwise something's wrong - timeout 120 ./libmorton_test 128
dist: bionic language: cpp compiler: gcc before_install: - sudo apt-get update - sudo apt-get -y install gcc-8 script: - cd test - make CXX=g++8 bmi2 - make CXX=g++8 avx512 - make CXX=g++8 test # This really should finish in less than 2 minutes - otherwise something's wrong - timeout 120 ./libmorton_test 128
Build AVX512 using gcc8 on bionic
Build AVX512 using gcc8 on bionic
YAML
mit
Forceflow/libmorton
34b1b0df7e9b05aeee4240fdaa0c170819cee254
.travis.yml
.travis.yml
language: python env: - DJANGO=1.10.2 DJANGO_SETTINGS_MODULE='lutrisweb.settings.local' SECRET_KEY="ThisIsMySecretThereAreOtherLikeThisButThisOneIsMine" USE_SQLITE=1 python: - 2.7 install: - pip install -r config/requirements/devel.pip script: - make test
language: python env: - DJANGO=1.10.2 DJANGO_SETTINGS_MODULE='lutrisweb.settings.local' SECRET_KEY="ThisIsMySecretThereAreOtherLikeThisButThisOneIsMine" USE_SQLITE=1 python: - 2.7 install: - pip install -r config/requirements/devel.pip before_script: - touch templates/docs/installers.html script: - make test
Create fake documentation file in Travis
Create fake documentation file in Travis
YAML
agpl-3.0
lutris/website,lutris/website,lutris/website,lutris/website
865c9a1af398b487a01c558b91ce04406b3b953e
.travis.yml
.travis.yml
language: python python: - "2.7" # command to install dependencies install: - "pip install pip==1.5.4" - "pip install -r requirements/ci.txt" - "pip install -r requirements/unittests.txt" # command to run tests script: python manage.py jenkins --settings=tsune.settings.ci --verbosity 2
language: python python: - "2.7" # command to install dependencies install: - "pip install pip==1.5.4" - "pip install -r requirements/ci.txt" - "pip install -r requirements/unittests.txt" # command to run tests script: python manage.py jenkins --settings=tsune.settings.ci --verbosity 2 after_success: - coveralls
Use coveralls.io for code coverage
Use coveralls.io for code coverage
YAML
mit
DummyDivision/Tsune,DummyDivision/Tsune,DummyDivision/Tsune
87b988497a7e5b23afa66dbe269d5f99ed5b105d
.travis.yml
.travis.yml
language: clojure lein: 2.8.0 cache: directories: - $HOME/.m2 jdk: - oraclejdk9 - oraclejdk8 - openjdk7 env: matrix: - VERSION='1.7' - VERSION='1.8' - VERSION='1.9' script: lein with-profile dev,$VERSION test after_success: - CLOVERAGE_VERSION=1.0.9 lein cloverage -e '^cljam.main' --codecov - bash <(curl -s https://codecov.io/bash) -f target/coverage/codecov.json jobs: include: - stage: deploy jdk: oraclejdk8 script: skip after_success: echo skip deploy: provider: script script: ./deploy-snapshot.sh on: branch: master
language: clojure lein: 2.8.0 cache: directories: - $HOME/.m2 jdk: - oraclejdk9 - oraclejdk8 - openjdk8 - openjdk7 env: matrix: - VERSION='1.7' - VERSION='1.8' - VERSION='1.9' script: lein with-profile dev,$VERSION test after_success: - CLOVERAGE_VERSION=1.0.9 lein cloverage -e '^cljam.main' --codecov - bash <(curl -s https://codecov.io/bash) -f target/coverage/codecov.json jobs: include: - stage: deploy jdk: oraclejdk8 script: skip after_success: echo skip deploy: provider: script script: ./deploy-snapshot.sh on: branch: master
Add openjdk8 to Travis CI config.
Add openjdk8 to Travis CI config.
YAML
apache-2.0
chrovis/cljam
b0a15fe8c7be000a668339658011eb113924eda5
.travis.yml
.travis.yml
language: ruby rvm: - "1.8.7" - "1.9.2" - "1.9.3" - jruby-18mode # JRuby in 1.8 mode - jruby-19mode # JRuby in 1.9 mode - rbx-18mode - rbx-19mode
language: ruby rvm: - "1.8.7" - "1.9.2" - "1.9.3" - jruby-18mode # JRuby in 1.8 mode - jruby-19mode # JRuby in 1.9 mode - rbx-18mode - rbx-19mode before_install: gem install bundler -v "~> 1.2.0"
Install the right bundler version if it's not installed yet
Install the right bundler version if it's not installed yet
YAML
mit
antifuchs/gmail-britta,ryansb/gmail-britta,jpiasetz/gmail-britta,pathzzrd/gmail-britta
94948902dbcb83c99c5c9b9db02f7dbdaddd0f1b
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 before_script: - 'git clone git://github.com/puppetlabs/puppetlabs-apt.git spec/fixtures/modules/apt' env: - PUPPET_VERSION=2.6.2 - PUPPET_VERSION=2.6.17 - PUPPET_VERSION=2.7.19 - PUPPET_VERSION=3.0.2
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 before_script: - 'git clone git://github.com/puppetlabs/puppetlabs-apt.git spec/fixtures/modules/apt' env: - PUPPET_VERSION=2.6.2 - PUPPET_VERSION=2.6.18 - PUPPET_VERSION=2.7.21 - PUPPET_VERSION=3.0.2 - PUPPET_VERSION=3.1.1 - PUPPET_VERSION=3.2.1
Update build matrix in Travis CI config
Update build matrix in Travis CI config
YAML
apache-2.0
pulling-strings/puppet-virtualbox,gini/puppet-virtualbox
d0731a4642e3313c1ad0b854f510d32310718623
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4
language: php before_script: - composer --dev install php: - 5.3 - 5.4
Add before_script hook to run composer
Add before_script hook to run composer
YAML
mit
cloudermaan/phprules,DerManoMann/phprules,php-rules/phprules
c5146652ff6f9b311966ff8edce0a3529060af88
.travis.yml
.travis.yml
language: objective-c osx_image: xcode8.3 podfile: Example/Podfile before_install: - brew update - if brew outdated | grep -qx xctool; then brew upgrade xctool; fi - gem install xcpretty --no-rdoc --no-ri --no-document --quiet - cd Example && pod repo update && pod install script: - xcodebuild clean build -workspace Example/SwiftVersionUtils.xcworkspace -scheme SwiftVersionUtils-Example -sdk iphonesimulator | xcpretty - xcodebuild test -workspace Example/SwiftVersionUtils.xcworkspace -scheme SwiftVersionUtils-Example -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6S,OS=9.3' | xcpretty
language: objective-c osx_image: xcode8.3 podfile: Example/Podfile before_install: - brew update - if brew outdated | grep -qx xctool; then brew upgrade xctool; fi - gem install xcpretty --no-rdoc --no-ri --no-document --quiet - cd Example && pod repo update && pod install script: - xcodebuild clean build -workspace SwiftVersionUtils.xcworkspace -scheme SwiftVersionUtils-Example -sdk iphonesimulator | xcpretty - xcodebuild test -workspace SwiftVersionUtils.xcworkspace -scheme SwiftVersionUtils-Example -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6S,OS=9.3' | xcpretty
Fix xcworkspace location for xcodebuild commands
Fix xcworkspace location for xcodebuild commands
YAML
mit
christianascone/SwiftVersionUtils,christianascone/SwiftVersionUtils
26dbdc0b6b84d52c99a160446fa7947a47a62d69
.travis.yml
.travis.yml
language: node_js sudo: enabled dist: trusty before_install: - nvm install 8.1.3 - nvm use 8.1.3 script: npm run build:dev && npm run build:dist
language: node_js sudo: enabled dist: trusty before_install: - nvm install 8.4.0 - nvm use 8.4.0 script: npm run build:dev && npm run build:dist
Use Node 8.4.0 for Travis build
Use Node 8.4.0 for Travis build
YAML
mit
rmatych/modern-webapp,rmatych/modern-webapp
dcfd23d3fa77f053210984f0bc21424954992ae2
.travis.yml
.travis.yml
language: python python: - "2.7" os: - linux script: - nosetests
language: python python: - "2.7" os: - linux install: - sudo apt-get install -y gfortran libc6-dev script: - nosetests
Install packages needed by Ubuntu
Install packages needed by Ubuntu
YAML
mit
csdms-contrib/storm,csdms-contrib/storm,mdpiper/storm,mdpiper/storm
5867c111f560eeb43b81b7683537af1ab0bba8e2
.travis.yml
.travis.yml
--- language: ruby sudo: false cache: bundler language: ruby bundler_args: --without metrics script: "bundle exec rake ci" rvm: - 2.0.0 - 2.1.0 - 2.2.5 - 2.3.1 - jruby-9.1.1.0 - rbx-2.11 - rbx-3.48 - ruby-head matrix: allow_failures: - rvm: ruby-head fast_finish: true branches: only: master notifications: email: false
--- language: ruby sudo: false cache: bundler language: ruby bundler_args: --without benchmarks script: "bundle exec rake ci" rvm: - 2.0.0 - 2.1.0 - 2.2.5 - 2.3.1 - jruby-9.1.1.0 - rbx-2.11 - rbx-3.48 - ruby-head matrix: allow_failures: - rvm: ruby-head fast_finish: true branches: only: master notifications: email: false
Change to exclude right group.
Change to exclude right group.
YAML
mit
peter-murach/verse
eaca1b1beeb705c14e15500d81ebbab798efc26a
.travis.yml
.travis.yml
language: python env: - 3.5 - 3.6 - 3.7 - 3.8 notifications: email: false before_install: - python --version - pip install -U pip install: - python setup.py install - pip install -r docs/doc_requirements.txt script: - pytest --cov=pubmed_parser tests/ --verbose - make html - touch _build/html/.nojekyll deploy: provider: pages skip_cleanup: true github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard, marked secure keep-history: true on: branch: master local_dir: _build/html/ after_success: - bash <(curl -s https://codecov.io/bash)
language: python env: - 3.5 - 3.6 - 3.7 - 3.8 notifications: email: false before_install: - python --version - pip install -U pip install: - python setup.py install - pip install -r docs/doc_requirements.txt script: - pytest --cov=pubmed_parser tests/ --verbose - cd docs && make html - touch _build/html/.nojekyll deploy: provider: pages skip_cleanup: true github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard, marked secure keep-history: true on: branch: master local_dir: _build/html/ after_success: - bash <(curl -s https://codecov.io/bash)
Change directory to docs before make html
Change directory to docs before make html
YAML
mit
titipata/pubmed_parser
2c2ba572f9342678b334d537f2b3b846b144fbd4
.travis.yml
.travis.yml
language: - cpp compiler: - g++ - clang sudo: false addons: apt: sources: - ubuntu-toolchain-r-test - boost-latest - kalakris-cmake packages: - gcc-4.9 - g++-4.9 - libboost1.55-all-dev - libssl-dev - cmake before_script: - git clone --depth=1 https://github.com/ipkn/crow.git crow/repo - git clone --depth=1 https://github.com/zaphoyd/websocketpp.git websocketpp/repo - if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi script: - mkdir build - cd build - cmake .. -DEXT_HEADERS_FROM_SOURCE=ON - make
language: - cpp compiler: - g++ # - clang : error occured... sudo: false addons: apt: sources: - ubuntu-toolchain-r-test - boost-latest - kalakris-cmake packages: - gcc-4.9 - g++-4.9 - libboost1.55-all-dev - libssl-dev - cmake before_script: # download external headers - git clone --depth=1 https://github.com/ipkn/crow.git crow/repo - git clone --depth=1 https://github.com/zaphoyd/websocketpp.git websocketpp/repo # use g++4.9 - if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi script: - mkdir build - cd build - cmake .. -DEXT_HEADERS_FROM_SOURCE=ON - make
Remove clang from compiler matrix(error), add some comments
Remove clang from compiler matrix(error), add some comments
YAML
mit
Perlmint/slacpp
c8071f0513ce7ce6842617f04a0fb36fee0d1503
.travis.yml
.travis.yml
sudo: false language: python env: - PYTHON_VERSION=3.5 before_install: - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda3/bin:$PATH install: - conda create --yes -n test-env python=$PYTHON_VERSION nose flake8 qiime -c qiime2 - source activate test-env - pip install . script: - QIIMETEST= nosetests - flake8 q2cli setup.py
sudo: false language: python env: - PYTHON_VERSION=3.5 before_install: - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda3/bin:$PATH install: - conda create --yes -n test-env python=$PYTHON_VERSION nose flake8 - source activate test-env - pip install https://github.com/qiime2/qiime2/archive/master.zip - pip install . script: - QIIMETEST= nosetests - flake8 q2cli setup.py
Change QIIME 2 installation source for Travis
TST: Change QIIME 2 installation source for Travis Changes QIIME 2 to install from the github repo instead of the conda channel
YAML
bsd-3-clause
qiime2/q2cli,jakereps/q2cli,qiime2/q2cli,jairideout/q2cli,gregcaporaso/q2cli,jakereps/q2cli,gregcaporaso/q2cli,jairideout/q2cli
3c9cd16e73ffcd844182294fa40f8c726bcd967d
.travis.yml
.travis.yml
--- # Verify this with: http://lint.travis-ci.org/ language: ruby # Delete dependency locks for matrix builds. before_install: rm Gemfile.lock || true script: bundle exec rake test rvm: - 1.8.7 - 1.9.3 env: matrix: - PUPPET_VERSION="~> 2.7.0" - PUPPET_VERSION="~> 3.1.0" - PUPPET_VERSION="~> 3.2.0" - PUPPET_VERSION="~> 3.4.0"
--- # Verify this with: http://lint.travis-ci.org/ language: ruby # Delete dependency locks for matrix builds. before_install: rm Gemfile.lock || true script: bundle exec rake test rvm: - 1.9.3 env: - PUPPET_VERSION="~> 3.8.0" - PUPPET_VERSION="~> 4.9.0" matrix: allow_failures: - env: PUPPET_VERSION="~> 4.9.0"
Change the versions we test with.
Change the versions we test with. Update the puppet versions, allow Puppet 4 to fail and stop testing ruby 1.8.7 and puppet 2.7.0
YAML
mit
gds-operations/puppet-resolvconf,gds-operations/puppet-resolvconf
d6962a3d29d36688da6799702687858fc475b8c1
.travis.yml
.travis.yml
language: node_js node_js: - "9" - "8" - "7" - "6"
language: node_js node_js: - "10" - "9" - "8" - "7" - "6"
Add Node v10 to Travis config
Add Node v10 to Travis config
YAML
mit
cahamilton/stylelint-config-property-sort-order-smacss
b838992934d94c53b49a128e8be30918a3c5aded
.travis.yml
.travis.yml
language: java matrix: include: - jdk: oraclejdk8 env: TARGET=checkstyle - jdk: oraclejdk8 env: TARGET=pmd - jdk: oraclejdk8 env: TARGET=cpd - jdk: oraclejdk8 env: TARGET=test - jdk: openjdk8 env: TARGET=test - os: osx osx_image: xcode8.2 env: TARGET=test before_install: - if [ $TARGET == test ]; then if [ $TRAVIS_OS_NAME == osx ]; then brew update; brew install clasp; else sudo apt-get -qq update; sudo apt-get install -y clasp; fi fi install: - ./gradlew assemble script: - ./gradlew $TARGET - if [ $TARGET == test ]; then ./integration-tests/run.sh; fi after_success: - if [ $TARGET == test -a $TRAVIS_JDK_VERSION == oraclejdk8 ]; then ./gradlew coveralls; fi
language: java matrix: include: - jdk: oraclejdk8 env: TARGET=checkstyle - jdk: oraclejdk8 env: TARGET=pmd - jdk: oraclejdk8 env: TARGET=cpd - jdk: oraclejdk8 env: TARGET=test - jdk: openjdk8 env: TARGET=test - os: osx osx_image: xcode8.3 env: TARGET=test before_install: - if [ $TARGET == test ]; then if [ $TRAVIS_OS_NAME == osx ]; then brew update; brew install clasp; else sudo apt-get -qq update; sudo apt-get install -y clasp; fi fi install: - ./gradlew assemble script: - ./gradlew $TARGET - if [ $TARGET == test ]; then ./integration-tests/run.sh; fi after_success: - if [ $TARGET == test -a $TRAVIS_JDK_VERSION == oraclejdk8 ]; then ./gradlew coveralls; fi
Update Xcode for OSX CI to v8.3
Update Xcode for OSX CI to v8.3
YAML
mit
danilovesky/workcraft,danilovesky/workcraft,tuura/workcraft,danilovesky/workcraft,danilovesky/workcraft,workcraft/workcraft,workcraft/workcraft,tuura/workcraft,workcraft/workcraft,tuura/workcraft,workcraft/workcraft
32d12c2c606339b0ed4312df788a5d1561872d35
.travis.yml
.travis.yml
language: ruby rvm: - 2.4.5 - 2.3.8 sudo: false cache: bundler: true env: global: - RUBY_GC_HEAP_GROWTH_MAX_SLOTS=300000 - RUBY_GC_HEAP_INIT_SLOTS=600000 - RUBY_GC_HEAP_GROWTH_FACTOR=1.25 - PARALLEL_TEST_PROCESSORS=2 matrix: - TEST_SUITE=vmdb PARALLEL=true - TEST_SUITE=brakeman matrix: allow_failures: - rvm: 2.4.2 exclude: - rvm: 2.4.2 env: TEST_SUITE=brakeman fast_finish: true addons: postgresql: '9.5' before_install: - source ${TRAVIS_BUILD_DIR}/tools/ci/before_install.sh before_script: - bundle exec rake test:$TEST_SUITE:setup script: - bundle exec rake test:$TEST_SUITE after_failure: - source ${TRAVIS_BUILD_DIR}/tools/ci/after_failure.sh notifications: webhooks: urls: - https://webhooks.gitter.im/e/7af45001fe6b7a4039f2 on_success: change on_failure: always on_start: never
language: ruby rvm: - 2.5.3 - 2.4.5 - 2.3.8 sudo: false cache: bundler: true env: global: - RUBY_GC_HEAP_GROWTH_MAX_SLOTS=300000 - RUBY_GC_HEAP_INIT_SLOTS=600000 - RUBY_GC_HEAP_GROWTH_FACTOR=1.25 - PARALLEL_TEST_PROCESSORS=2 matrix: - TEST_SUITE=vmdb PARALLEL=true - TEST_SUITE=brakeman matrix: allow_failures: - rvm: 2.5.3 allow_failures: - rvm: 2.4.2 exclude: - rvm: 2.4.2 env: TEST_SUITE=brakeman fast_finish: true addons: postgresql: '9.5' before_install: - source ${TRAVIS_BUILD_DIR}/tools/ci/before_install.sh before_script: - bundle exec rake test:$TEST_SUITE:setup script: - bundle exec rake test:$TEST_SUITE after_failure: - source ${TRAVIS_BUILD_DIR}/tools/ci/after_failure.sh notifications: webhooks: urls: - https://webhooks.gitter.im/e/7af45001fe6b7a4039f2 on_success: change on_failure: always on_start: never
Add 2.5.3 to the matrix.
Add 2.5.3 to the matrix.
YAML
apache-2.0
jrafanie/manageiq,mzazrivec/manageiq,d-m-u/manageiq,agrare/manageiq,andyvesel/manageiq,ManageIQ/manageiq,jvlcek/manageiq,ManageIQ/manageiq,jameswnl/manageiq,djberg96/manageiq,jrafanie/manageiq,hstastna/manageiq,jrafanie/manageiq,borod108/manageiq,djberg96/manageiq,aufi/manageiq,romanblanco/manageiq,andyvesel/manageiq,juliancheal/manageiq,tinaafitz/manageiq,mkanoor/manageiq,NickLaMuro/manageiq,d-m-u/manageiq,syncrou/manageiq,pkomanek/manageiq,aufi/manageiq,andyvesel/manageiq,NickLaMuro/manageiq,lpichler/manageiq,skateman/manageiq,agrare/manageiq,lpichler/manageiq,billfitzgerald0120/manageiq,mkanoor/manageiq,gmcculloug/manageiq,romanblanco/manageiq,yaacov/manageiq,ManageIQ/manageiq,kbrock/manageiq,kbrock/manageiq,chessbyte/manageiq,mzazrivec/manageiq,d-m-u/manageiq,syncrou/manageiq,romanblanco/manageiq,lpichler/manageiq,chessbyte/manageiq,yaacov/manageiq,jameswnl/manageiq,mzazrivec/manageiq,gmcculloug/manageiq,agrare/manageiq,ManageIQ/manageiq,mkanoor/manageiq,gmcculloug/manageiq,billfitzgerald0120/manageiq,mzazrivec/manageiq,aufi/manageiq,chessbyte/manageiq,pkomanek/manageiq,agrare/manageiq,skateman/manageiq,NickLaMuro/manageiq,tinaafitz/manageiq,pkomanek/manageiq,djberg96/manageiq,mkanoor/manageiq,jvlcek/manageiq,tinaafitz/manageiq,kbrock/manageiq,borod108/manageiq,syncrou/manageiq,juliancheal/manageiq,yaacov/manageiq,jameswnl/manageiq,hstastna/manageiq,jrafanie/manageiq,tinaafitz/manageiq,hstastna/manageiq,branic/manageiq,jvlcek/manageiq,aufi/manageiq,yaacov/manageiq,juliancheal/manageiq,pkomanek/manageiq,chessbyte/manageiq,syncrou/manageiq,billfitzgerald0120/manageiq,skateman/manageiq,jvlcek/manageiq,romanblanco/manageiq,juliancheal/manageiq,borod108/manageiq,skateman/manageiq,borod108/manageiq,NickLaMuro/manageiq,d-m-u/manageiq,hstastna/manageiq,jameswnl/manageiq,gmcculloug/manageiq,kbrock/manageiq,branic/manageiq,andyvesel/manageiq,branic/manageiq,billfitzgerald0120/manageiq,lpichler/manageiq,branic/manageiq,djberg96/manageiq
fe4055e5d3dae40c87bfb7e3564d5b62afd5316e
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "4" sudo: false after_success: npm run coveralls # Needed to run Karma with Firefox on Travis # http://karma-runner.github.io/0.13/plus/travis.html before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start
language: node_js node_js: - "0.10" - "0.12" - "4" - "5" sudo: false after_success: npm run coveralls # Needed to run Karma with Firefox on Travis # http://karma-runner.github.io/0.13/plus/travis.html before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start
Add node 5 to Travis
Add node 5 to Travis
YAML
mit
ecasilla/async,hargasinski/async,steverobb/async,arigo-software/async,Segeon-Kim/async,rlugojr/async,andalm/async,jnordberg/async,Segeon-Kim/async,caolan/async,hargasinski/async,Segeon-Kim/async,suguru03/async,Kikobeats/async,suguru03/async,ecasilla/async,jnordberg/async,ezubarev/async,andalm/async,ezubarev/async,arigo-software/async,steverobb/async,caolan/async,rlugojr/async,Kikobeats/async
8bdb9a0442a7677a7a8c37e545d73e42ccdbdc82
.travis.yml
.travis.yml
language: java jdk: - oraclejdk7 rvm: - 2.1.3 install: - rvm use 2.1.3 - gem install bundler - bundle install script: buildr clean package git: depth: 10
language: java jdk: - oraclejdk7 sudo: false rvm: - 2.1.3 install: - rvm use 2.1.3 - gem install bundler - bundle install script: buildr clean package git: depth: 10
Mark sudo as false so can run in container based infrastructure
Mark sudo as false so can run in container based infrastructure
YAML
apache-2.0
realityforge/replicant,realityforge/replicant
b67aa2bfbb28414b07f590d788928f00534dd399
.travis.yml
.travis.yml
language: c sudo: false services: - docker install: wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-docker.sh script: bash ./.travis-docker.sh env: global: - PACKAGE=pkcs11 - DISTRO=alpine matrix: - OCAML_VERSION=4.04 - OCAML_VERSION=4.05 - OCAML_VERSION=4.06 - OCAML_VERSION=4.06 DISTRO=debian-stable
language: c sudo: false services: - docker install: wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-docker.sh script: bash ./.travis-docker.sh env: global: - PACKAGE=pkcs11 - DISTRO=alpine matrix: - OCAML_VERSION=4.04 - OCAML_VERSION=4.05 - OCAML_VERSION=4.06 - OCAML_VERSION=4.06 DISTRO=debian-stable - OCAML_VERSION=4.07
Add an Ocaml 4.07 build to the CI
Add an Ocaml 4.07 build to the CI
YAML
bsd-2-clause
cryptosense/pkcs11
47ed5e2ce2dd41f3dc98116574fb11d51dbac0ff
.travis.yml
.travis.yml
language: python python: - "3.4" - "pypy3" nstall: - travis_retry pip install -r requirements.txt - travis_retry pip install coveralls script: - coverage run --branch --source=mygpoauth ./manage.py test after_script: - coveralls
language: python python: - "3.4" - "pypy3" nstall: - travis_retry pip install -r requirements.txt - travis_retry pip install coveralls script: - coverage run --branch --source=mygpoauth ./manage.py test after_script: - coveralls sudo: false
Use Travis-CI container based infrastructure
Use Travis-CI container based infrastructure
YAML
agpl-3.0
gpodder/mygpo-auth,gpodder/mygpo-auth
ba6dc347329d5b5d708a93dd57e1b989b171620e
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.2" - "3.3" - "3.4" install: - pip install coveralls --use-mirrors # Commands to run tests. # Force nose to process test files in alphabetical order so that # test000.py is first (it changes sys.path which is needed for # other tests) by explicitly ordering parameters for nosetests command. script: - nosetests `ls -d test/*.py` < test/user_input.txt branches: only: - master # - coverage erase # - coverage run -a test/test000.py # - coverage run -a test/testAverager.py # - coverage run -a test/testConfig.py # - coverage run -a test/testRateTicker.py # - coverage run -a test/testRing.py # - coverage run -a test/testSortedList.py # - coverage run -a test/testTimer.py #after_success: # - coveralls
language: python python: - "2.7" - "3.4" - "3.5" - "3.6" branches: only: - master install: - pip install coveralls script: - make test #after_success: # - coveralls
Fix Travis CI error, and update Python versions in yaml file.
Fix Travis CI error, and update Python versions in yaml file.
YAML
mit
vmlaker/coils
c725556a689fbe6f3142104489ddd65623fef544
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "4.0" - "iojs" - "0.12" addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm install -g npm - npm install -g bower - npm install -g node-gyp - node-gyp clean - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start install: - export CXX=g++-4.8 - $CXX --version - npm install - bower install script: - NODE_ENV=test npm run test-all-travis - NODE_ENV=test npm run lint
sudo: false language: node_js node_js: - "4.0" - "iojs" - "0.12" addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm install -g npm - npm install -g bower - npm install -g node-gyp - node-gyp clean - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start install: - export CXX=g++-4.8 - $CXX --version - npm install - bower install script: - npm run test-all-travis - npm run lint
Remove unnecessary NODE_ENV from Travis scripts
Remove unnecessary NODE_ENV from Travis scripts
YAML
mit
henrjk/connect-js,bauglir/connect-js,anvilresearch/connect-js,bauglir/connect-js,henrjk/connect-js,anvilresearch/connect-js
c20a9f510f2d2c76620b215c7d3968592ae0a56a
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" env: - DJANGO=django>=1.4,<1.5 - DJANGO=django>=1.6,<1.7 install: - psql -c 'CREATE DATABASE orderable' -U postgres; - pip install $DJANGO --use-mirrors - pip install -r requirements.txt - pip install -e . script: "make test" notifications: email: false matrix: exclude: - python: "3.3" env: DJANGO=django>=1.4,<1.5
language: python python: - "2.7" - "3.3" - "3.4" env: - DJANGO=django>=1.4,<1.5 - DJANGO=django>=1.6,<1.7 - DJANGO=django>=1.7,<1.8 install: - psql -c 'CREATE DATABASE orderable' -U postgres; - pip install $DJANGO --use-mirrors - pip install -r requirements.txt - pip install -e . script: "make test" notifications: email: false matrix: exclude: - python: "3.3" env: DJANGO=django>=1.4,<1.5
Add django 1.7 to build matrix
Add django 1.7 to build matrix
YAML
bsd-2-clause
incuna/django-orderable,incuna/django-orderable
8bac4b3663292fcf770eadb30368bb360bfc74e7
.travis.yml
.travis.yml
sudo: false # Enable C++ support language: cpp # Compiler selection compiler: - clang++ - g++ install: - if [ "$CXX" = "g++" ]; then export CXX="g++-5" CC="gcc-5"; fi addons: apt: sources: - ubuntu-toolchain-r-test - llvm-toolchain-precise-3.7 - llvm-toolchain-precise packages: - clang-3.7 - g++-5 # Build steps script: - echo $CXX && echo $CC - mkdir build - cd build - cmake .. && make
sudo: false # Enable C++ support language: cpp # Compiler selection compiler: - clang++ - g++ install: - if [ "$CXX" = "g++" ]; then export CXX="g++-5" CC="gcc-5"; fi addons: apt: sources: - ubuntu-toolchain-r-test - llvm-toolchain-precise-3.7 - llvm-toolchain-precise packages: - clang-3.7 - g++-5 # Build steps script: - mkdir build - cd build - cmake .. && make
Revert commit for the debugging
Revert commit for the debugging
YAML
mit
yakigac/test_travis
501cfda1b314768a74d4e010793b938e4087a3b2
.travis.yml
.travis.yml
language: ruby rvm: # - "1.9.3" # Fails on migrations on travis? - "2.0" before_script: - psql -c 'create database "que-test"' -U postgres - bundle exec ruby -r sequel -r ./lib/que -e 'Que.connection=Sequel.connect("postgres://localhost/que-test"); Que.migrate!' addons: postgresql: 9.3
language: ruby rvm: - "1.9.3" - "2.0" - "2.1" - "rbx-2.1.1" - "jruby-1.7.5" before_script: - psql -c 'create database "que-test"' -U postgres - bundle exec ruby -r sequel -r ./lib/que -e 'Que.connection=Sequel.connect("postgres://localhost/que-test"); Que.migrate!' addons: postgresql: 9.3
Add a few more Ruby versions to Travis.
Add a few more Ruby versions to Travis.
YAML
mit
joevandyk/que,hardbap/que,brandur/que,gocardless/que,chanks/que,zloydadka/que,gocardless/que,godfat/que,goddamnhippie/que,heroku/que
08a180d3550e46e311c14eef69410a5639863dda
.travis.yml
.travis.yml
language: ruby rvm: - 2.4.1 - 2.3.3 - 2.2.5 - 2.1.10 - 2.0.0 - jruby-head before_install: # For jruby-head to work. - gem install bundler || gem install bundler --version '< 2' - gem update bundler
language: ruby rvm: - 2.4.1 - 2.3.3 - jruby-head before_install: # For jruby-head to work. - gem install bundler || gem install bundler --version '< 2' - gem update bundler
Remove support for deprecated Rubies (2.2 and earlier)
Remove support for deprecated Rubies (2.2 and earlier) If you're stuck on an earlier Ruby, you can keep using an earlier version of this lib, but I don't want us to be held back by compatibility with deprecated versions.
YAML
mit
barsoom/attr_extras
9917bd9c59990018c9b883bdc80c8eba7d4fc9e5
.travis.yml
.travis.yml
rvm: - "1.8.7" env: - LOW_CARD_TABLES_AR_TEST_VERSION=3.0.20 LOW_CARD_TABLES_TRAVIS_CI_DATABASE_TYPE=mysql - LOW_CARD_TABLES_AR_TEST_VERSION=3.0.20 LOW_CARD_TABLES_TRAVIS_CI_DATABASE_TYPE=postgres before_script: - mysql -e 'create database myapp_test;' - psql -c 'create database myapp_test;' -U postgres
rvm: - "1.8.7" - "2.0.0" env: - LOW_CARD_TABLES_AR_TEST_VERSION=3.0.20 LOW_CARD_TABLES_TRAVIS_CI_DATABASE_TYPE=mysql - LOW_CARD_TABLES_AR_TEST_VERSION=3.0.20 LOW_CARD_TABLES_TRAVIS_CI_DATABASE_TYPE=postgres - LOW_CARD_TABLES_AR_TEST_VERSION=4.0.1 LOW_CARD_TABLES_TRAVIS_CI_DATABASE_TYPE=mysql - LOW_CARD_TABLES_AR_TEST_VERSION=4.0.1 LOW_CARD_TABLES_TRAVIS_CI_DATABASE_TYPE=postgres before_script: - mysql -e 'create database myapp_test;' - psql -c 'create database myapp_test;' -U postgres matrix: exclude: - rvm: 1.8.7 env: LOW_CARD_TABLES_AR_TEST_VERSION=4.0.1 LOW_CARD_TABLES_TRAVIS_CI_DATABASE_TYPE=mysql - rvm: 1.8.7 env: LOW_CARD_TABLES_AR_TEST_VERSION=4.0.1 LOW_CARD_TABLES_TRAVIS_CI_DATABASE_TYPE=postgres
Test against ActiveRecord 4.0.1 with Ruby 2.0.0.
Test against ActiveRecord 4.0.1 with Ruby 2.0.0.
YAML
mit
ageweke/low_card_tables
2165d34248ae6914142c991b6f0dfab1bbfd5575
.travis.yml
.travis.yml
sudo: false cache: bundler language: ruby rvm: - 2.1.9 - 2.2.5 - 2.3.0 - 2.3.1 before_install: gem update --remote bundler install: - bundle install --retry=3 script: - bundle exec rubocop - bundle exec rspec
sudo: false cache: bundler language: ruby rvm: - 2.2.5 - 2.3.0 - 2.3.1 before_install: gem update --remote bundler install: - bundle install --retry=3 script: - bundle exec rubocop - bundle exec rspec
Remove support for ruby 2.1.9
Remove support for ruby 2.1.9
YAML
mit
socialcast/masamune,socialcast/masamune
0ef6f1dfc6866144378a9d84fd3b38b970be6835
.travis.yml
.travis.yml
sudo: required dist: trusty language: cpp compiler: - gcc install: - ./thrift/build/deps_ubuntu_14.04.sh script: - ./thrift/build/travis/install.sh notifications: email: false
sudo: required dist: trusty language: cpp compiler: - gcc install: - ./thrift/build/deps_ubuntu_14.04.sh script: - ./thrift/build/travis/install.sh notifications: email: recipients: - thrift_oncall@fb.com on_success: never on_failure: always
Enable email notifications for broken oss builds
Enable email notifications for broken oss builds Summary: This will enable email notifications sent to Thrift oncall (only) when Travis CI build is broken. This configuration uses special external `thrift_oncall@fb.com` email that will be redirected to internal Thrift oncall email. Reviewed By: eduardo-elizondo Differential Revision: D5153724 fbshipit-source-id: 2883d770be6a0d9e6551a336ec8bb93338149a5f
YAML
apache-2.0
SergeyMakarenko/fbthrift,facebook/fbthrift,SergeyMakarenko/fbthrift,getyourguide/fbthrift,SergeyMakarenko/fbthrift,facebook/fbthrift,getyourguide/fbthrift,facebook/fbthrift,getyourguide/fbthrift,facebook/fbthrift,SergeyMakarenko/fbthrift,SergeyMakarenko/fbthrift,facebook/fbthrift,facebook/fbthrift,SergeyMakarenko/fbthrift,SergeyMakarenko/fbthrift,SergeyMakarenko/fbthrift,getyourguide/fbthrift,getyourguide/fbthrift,getyourguide/fbthrift,getyourguide/fbthrift,SergeyMakarenko/fbthrift,facebook/fbthrift,SergeyMakarenko/fbthrift,SergeyMakarenko/fbthrift,facebook/fbthrift,getyourguide/fbthrift,getyourguide/fbthrift,getyourguide/fbthrift,getyourguide/fbthrift,getyourguide/fbthrift,SergeyMakarenko/fbthrift,facebook/fbthrift
d3ac6da72b1bd5d58736df3497725751992ec7c6
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 - oraclejdk7 - openjdk7 env: - TARGET=runUnitTests - TARGET=runAutoReplayIT - TARGET=buildDedicatedServer - TARGET=buildSwing - TARGET=runAiDifficultiesIT - TARGET=runReplayValidationIT script: ANT_OPTS="-Xmx2048m" ant -buildfile ./build.ant $TARGET
language: java jdk: - oraclejdk8 - oraclejdk7 - openjdk7 env: - TARGET=runUnitTests - TARGET=runAutoReplayIT - TARGET=buildDedicatedServer - TARGET=buildSwing - TARGET=runAiDifficultiesIT - TARGET=runReplayValidationIT script: ANT_OPTS="-Xmx2048m" ant -buildfile ./build.ant $TARGET matrix: exclude: - jdk: oraclejdk7 env: TARGET=buildSwing - jdk: openjdk7 env: TARGET=buildSwing
Exclude buildSwing from java 7 builds.
Exclude buildSwing from java 7 builds.
YAML
mit
andreasb242/settlers-remake,phirschbeck/settlers-remake,phirschbeck/settlers-remake,phirschbeck/settlers-remake,andreas-eberle/settlers-remake,jsettlers/settlers-remake,andreasb242/settlers-remake,jsettlers/settlers-remake,andreasb242/settlers-remake,andreas-eberle/settlers-remake,JKatzwinkel/settlers-remake,Peter-Maximilian/settlers-remake,andreas-eberle/settlers-remake,jsettlers/settlers-remake
471a27f66c015766613453f18caded529bdaac05
.travis.yml
.travis.yml
language: nix os: - linux - osx install: - bash <(curl https://raw.githubusercontent.com/purcell/nix-emacs-ci/master/travis-install) - nix-env -iA $EMACS_VER -f https://github.com/purcell/nix-emacs-ci/archive/master.tar.gz env: - EMACS_VER=emacs-24-4 - EMACS_VER=emacs-24-5 - EMACS_VER=emacs-25-1 - EMACS_VER=emacs-25-2 - EMACS_VER=emacs-25-3 - EMACS_VER=emacs-26-1 - EMACS_VER=emacs-26-2 - EMACS_VER=emacs-26-3 script: ./test-startup.sh # Local Variables: # indent-tabs-mode: nil # coding: utf-8 # End:
language: nix os: - linux - osx install: - bash <(curl https://raw.githubusercontent.com/purcell/nix-emacs-ci/master/travis-install) - nix-env -iA $EMACS_VER -f https://github.com/purcell/nix-emacs-ci/archive/master.tar.gz env: - EMACS_VER=emacs-24-4 - EMACS_VER=emacs-24-5 - EMACS_VER=emacs-25-1 - EMACS_VER=emacs-25-2 - EMACS_VER=emacs-25-3 - EMACS_VER=emacs-26-1 - EMACS_VER=emacs-26-2 - EMACS_VER=emacs-26-3 - EMACS_VER=emacs-snapshot script: ./test-startup.sh # Local Variables: # indent-tabs-mode: nil # coding: utf-8 # End:
Use snapshot version in CI too
Use snapshot version in CI too
YAML
bsd-2-clause
blueseason/emacs.d,dcorking/emacs.d,svenyurgensson/emacs.d,krzysz00/emacs.d,blueabysm/emacs.d,arthurl/emacs.d,qianwan/emacs.d,cjqw/emacs.d,baohaojun/emacs.d,wegatron/emacs.d,sgarciac/emacs.d,braveoyster/emacs.d,gsmlg/emacs.d,purcell/emacs.d,emuio/emacs.d,lust4life/emacs.d
9a821b8d7c9a4fc9cc47595b9c65e091f070f0ef
.travis.yml
.travis.yml
language: node_js node_js: - '6' - '5' - '4' # fail asap when there is a failure matrix: fast_finish: true before_install: # https://yarnpkg.com/en/docs/install-ci#travis-tab # Repo for newer Node.js versions - curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - # Repo for Yarn - sudo apt-key adv --fetch-keys http://dl.yarnpkg.com/debian/pubkey.gpg - echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list - sudo apt-get update -qq - sudo apt-get install -y -qq yarn # cache node modules cache: directories: # yarn - $HOME/.yarn-cache # phenomic - node_modules - docs/node_modules - themes/phenomic-theme-base/node_modules - test-setup/node_modules install: yarn script: - yarn run test - yarn run docs-webpack-2-test - yarn run docs-webpack-2-reset && yarn run docs # reset cache after_success: yarn run coverage # for Yarn, to build some native deps env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8
language: node_js node_js: - '6' - '5' - '4' # fail asap when there is a failure matrix: fast_finish: true before_install: # https://yarnpkg.com/en/docs/install-ci#travis-tab # Repo for newer Node.js versions - curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - # Repo for Yarn - sudo apt-key adv --fetch-keys http://dl.yarnpkg.com/debian/pubkey.gpg - echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list - sudo apt-get update -qq - sudo apt-get install -y -qq yarn # cache node modules cache: directories: # yarn - $HOME/.yarn-cache # phenomic - node_modules - docs/node_modules - themes/phenomic-theme-base/node_modules - test-setup/node_modules install: yarn script: yarn run test after_success: yarn run coverage # for Yarn, to build some native deps env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8
Disable webpack 2 test on Travis
Disable webpack 2 test on Travis
YAML
mit
MoOx/phenomic,phenomic/phenomic,phenomic/phenomic,phenomic/phenomic,pelhage/phenomic,MoOx/phenomic,MoOx/statinamic,MoOx/phenomic
6b6a8e4d51122305c3b10c086a48e61f9aaaebda
.travis.yml
.travis.yml
language: python python: 3.4 env: globals: - DJANGO_SETTINGS_MODULE="edwin.settings" - DJANGO_CONFIGURATION="Base" install: - npm install script: - ./manage.py test - npm test
language: python python: 3.4 env: globals: - DJANGO_SETTINGS_MODULE="edwin.settings" - DJANGO_CONFIGURATION="Base" install: - npm --python=$(which python2.7) install script: - ./manage.py test - npm test
Use Python 2.7 during npm install.
Use Python 2.7 during npm install.
YAML
mpl-2.0
mythmon/edwin,mythmon/edwin,mythmon/edwin,mythmon/edwin
88d19b796cd9c5c4f9dc58d6b2eb4580e37c1fdf
.github/workflows/ci.yml
.github/workflows/ci.yml
# This workflow will install Python dependencies, run tests and lint with a single version of Python # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: CI on: push: branches: - master pull_request: jobs: build: runs-on: ubuntu-latest strategy: matrix: python: [ 3.6, 3.7, 3.8, 3.9, 3.10 ] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt pip install tox tox-gh-actions working-directory: ./example_project - name: Run tests run: tox - name: Coverage if: ${{ matrix.python == 3.9 }} run: | pip install coverage[toml] coverage run ./example_project/manage.py test example_project - name: Upload coverage if: ${{ matrix.python == 3.9 }} uses: codecov/codecov-action@v1 with: name: Python ${{ matrix.python }}
# This workflow will install Python dependencies, run tests and lint with a single version of Python # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: CI on: push: branches: - master pull_request: jobs: build: runs-on: ubuntu-latest strategy: matrix: python: [ 3.6, 3.7, 3.8, 3.9, '3.10' ] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt pip install tox tox-gh-actions working-directory: ./example_project - name: Run tests run: tox - name: Coverage if: ${{ matrix.python == 3.9 }} run: | pip install coverage[toml] coverage run ./example_project/manage.py test example_project - name: Upload coverage if: ${{ matrix.python == 3.9 }} uses: codecov/codecov-action@v1 with: name: Python ${{ matrix.python }}
Fix unexpected behaviour of CI.
Fix unexpected behaviour of CI.
YAML
mit
richardbarran/django-minipub,richardbarran/django-minipub
83559e5ed5e2ef753c5577d0e6c844a67f322701
.travis.yml
.travis.yml
language: node_js node_js: - '5' - '4'
language: node_js # test on two node.js versions: 0.8 0.10 node_js: - 0.8 - 0.10 # configure notifications (email, IRC, campfire etc) # please update this section to your needs! #notifications: # irc: "irc.freenode.org#travis"
Revert "update to newest node.js versions"
Revert "update to newest node.js versions" This reverts commit 290f3a104895fd838de9cf1114238c9f01bbabeb.
YAML
mit
alexfernandez/prototypes
0e0e1dfe9d78f157ee40bedb892acf755313b5cd
.travis.yml
.travis.yml
language: cpp os: osx osx_image: xcode7.3 env: - BUILD_TOOL=Xcode - BUILD_TOOL=CMake git: submodules: false branches: only: - master compiler: - clang before_script: # Take care of dependencies. - sed -i '' 's/git@github.com:/https:\/\/github.com\//' .gitmodules - ./setup.sh - > xcodebuild -configuration Release -target emptyExample -project "third-party/openFrameworks/scripts/templates/osx/emptyExample.xcodeproj" # CMake - > if [ "$BUILD_TOOL" = "CMake" ]; then mkdir build cd build cmake .. fi script: - > if [ "$BUILD_TOOL" = "CMake" ]; then make; fi; - > if [ "$BUILD_TOOL" = "Xcode" ]; then xcodebuild -configuration Release -target ESP -project "Xcode/ESP/ESP.xcodeproj" fi cache: directories: - third-party/openFrameworks/libs
language: cpp os: osx osx_image: xcode7.3 env: - BUILD_TOOL=Xcode - BUILD_TOOL=CMake git: submodules: false branches: only: - master compiler: - clang before_script: # Take care of dependencies. - sed -i '' 's/git@github.com:/https:\/\/github.com\//' .gitmodules - ./setup.sh - > xcodebuild -configuration Release -target emptyExample -project "third-party/openFrameworks/scripts/templates/osx/emptyExample.xcodeproj" # CMake - > if [ "$BUILD_TOOL" = "CMake" ]; then mkdir build cd build cmake .. fi script: - > if [ "$BUILD_TOOL" = "CMake" ]; then USER_CPP=Xcode/ESP/src/user.cpp EXAMPLES=Xcode/ESP/src/examples/* for f in $EXAMPLES do name=$(basename "$f") echo "Compiling example: $f ..." echo "#include \"user.h\"" > $USER_CPP echo "#include \"examples/$name\"" >> $USER_CPP make -j4; done fi; - > if [ "$BUILD_TOOL" = "Xcode" ]; then xcodebuild -configuration Release -target ESP -project "Xcode/ESP/ESP.xcodeproj" fi cache: directories: - third-party/openFrameworks/libs
Build all examples in Travis
Build all examples in Travis
YAML
bsd-3-clause
damellis/ESP,damellis/ESP
b21311611eafa7bd213bd234f26aaa296dc5030d
examples/babel/serverless.yml
examples/babel/serverless.yml
service: babel-dynamically-entries-example # Add the serverless-webpack plugin plugins: - serverless-webpack provider: name: aws runtime: nodejs6.10 functions: first: handler: first.hello events: - http: method: get path: first integration: lambda second: handler: second.hello events: - http: method: get path: second integration: lambda
service: babel-example # Add the serverless-webpack plugin plugins: - serverless-webpack provider: name: aws runtime: nodejs6.10 functions: first: handler: first.hello events: - http: method: get path: first integration: lambda second: handler: second.hello events: - http: method: get path: second integration: lambda
Fix small error in service name
Fix small error in service name
YAML
mit
elastic-coders/serverless-webpack,serverless-heaven/serverless-webpack
9d315fe0ec069e2ed9eb0e3dc20fde810625cb46
.github/workflows/ci.yml
.github/workflows/ci.yml
on: [push, pull_request] name: Continuous Integration jobs: ci: strategy: matrix: os: - ubuntu-latest - macOS-latest rust: - stable runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: ${{ matrix.rust }} override: true components: rustfmt, clippy - uses: actions-rs/cargo@v1 with: command: build - uses: actions-rs/cargo@v1 with: command: test - uses: actions-rs/cargo@v1 with: command: fmt args: --all -- --check - uses: actions-rs/cargo@v1 with: command: clippy args: -- -D warnings
on: [push, pull_request] name: Continuous Integration jobs: ci: strategy: matrix: os: - ubuntu-latest - macOS-latest rust: - stable runs-on: ${{ matrix.os }} steps: - name: Checkout uses: actions/checkout@v2 - name: Install rust uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: ${{ matrix.rust }} override: true components: rustfmt, clippy - name: Build uses: actions-rs/cargo@v1 with: command: build - name: Tests uses: actions-rs/cargo@v1 with: command: test - name: rustfmt uses: actions-rs/cargo@v1 with: command: fmt args: --all -- --check - name: clippy uses: actions-rs/cargo@v1 with: command: clippy args: -- -D warnings
Add names to steps in CI job
Add names to steps in CI job
YAML
mit
jhbabon/scout
a48c63884d7b4d38b4e2c030032433370bfa9066
.travis.yml
.travis.yml
language: objective-c before_install: rake setup --trace script: rake build --trace after_success: rake coveralls --trace
language: objective-c rvm: 1.9.3 before_install: rake setup --trace script: rake build --trace after_success: rake coveralls --trace
Set rvm env to 1.9.3
Set rvm env to 1.9.3
YAML
mit
MattesGroeger/MGBenchmark
d56718de16f5e0b35d65cf1989c90d8987ffad6c
.travis.yml
.travis.yml
language: ruby sudo: false bundler_args: --without development rvm: - 2.2.2 - 2.3.0 - jruby-9.0.0.0 gemfile: - Gemfile - gemfiles/rails5master.gemfile env: global: - CI="travis" - JRUBY_OPTS="--server -J-Xms512m -J-Xmx1024m" matrix: - MONGODB=2.4.14 - MONGODB=2.6.11 - MONGODB=3.0.7 - MONGODB=3.2.0 before_script: - wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-${MONGODB}.tgz -O /tmp/mongodb.tgz - tar -xvf /tmp/mongodb.tgz - mkdir /tmp/data - ${PWD}/mongodb-linux-x86_64-${MONGODB}/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 --auth &> /dev/null & notifications: email: false irc: on_success: change on_failure: always channels: - "irc.freenode.org#mongoid"
language: ruby sudo: false bundler_args: --without development rvm: - 2.2.2 - 2.3.0 - jruby-head gemfile: - Gemfile - gemfiles/rails5master.gemfile env: global: - CI="travis" - JRUBY_OPTS="--server -J-Xms512m -J-Xmx1024m" matrix: - MONGODB=2.4.14 - MONGODB=2.6.11 - MONGODB=3.0.7 - MONGODB=3.2.0 before_script: - wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-${MONGODB}.tgz -O /tmp/mongodb.tgz - tar -xvf /tmp/mongodb.tgz - mkdir /tmp/data - ${PWD}/mongodb-linux-x86_64-${MONGODB}/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 --auth &> /dev/null & notifications: email: false irc: on_success: change on_failure: always channels: - "irc.freenode.org#mongoid"
Test against jruby head in Travis
Test against jruby head in Travis
YAML
mit
jbrien/mongoid,jbrien/mongoid
0c05391c454f185e23fca4aea53a8d4d26562f74
.travis.yml
.travis.yml
language: php ## Run on container environment sudo: false php: - 5.6 - 7.0 - 7.1 - nightly - hhvm matrix: allow_failures: - php: [nightly, hhvm] before_install: - composer self-update install: - composer install --dev --prefer-dist --no-autoloader --no-scripts - composer dump-autoload -o -a --no-scripts script: ./vendor/bin/phpunit --coverage-clover=coverage.clover after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover cache: directories: - vendor - $HOME/.composer/cache
language: php ## Run on container environment sudo: false php: - 5.6 - 7.0 - 7.1 - nightly - hhvm matrix: allow_failures: - php: [nightly, hhvm] before_install: - composer self-update - composer global require hirak/prestissimo 0.3.4 install: - composer install --dev --prefer-dist --no-autoloader --no-scripts - composer dump-autoload -o -a --no-scripts script: ./vendor/bin/phpunit --coverage-clover=coverage.clover after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover cache: directories: - vendor - $HOME/.composer/cache
Speed up composer install by downloading packages in parallel
Speed up composer install by downloading packages in parallel
YAML
mit
skaut/SkautisBundle,skaut/SkautisBundle,skaut/SkautisBundle
ab1477d933bbd7c491d0d6b6e666d714f40b3c28
.github/workflows/ci.yml
.github/workflows/ci.yml
name: Development on: [push, pull_request] jobs: test: strategy: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] ruby: [2.4, 2.5, 2.6, 2.7, jruby, truffleruby-head] gemfile: [Gemfile, Gemfile.turnip3] runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} - uses: actions/cache@v1 with: path: vendor/bundle key: bundle-use-ruby-${{matrix.os}}-${{matrix.ruby}}-${{hashFiles('**/${{matrix.gemfile}}')}} restore-keys: | bundle-use-ruby-${{matrix.os}}-${{matrix.ruby}}-${{hashFiles('**/${{matrix.gemfile}}')}} - name: Bundle install... run: | bundle config path vendor/bundle bundle install --gemfile=${{matrix.gemfile}} - run: bundle exec rspec spec
name: Development on: [push, pull_request] jobs: test: strategy: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] ruby: [2.4, 2.5, 2.6, 2.7, jruby] gemfile: [Gemfile, Gemfile.turnip3] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} - uses: actions/cache@v1 with: path: vendor/bundle key: bundle-use-ruby-${{matrix.os}}-${{matrix.ruby}}-${{hashFiles('**/${{matrix.gemfile}}')}} restore-keys: | bundle-use-ruby-${{matrix.os}}-${{matrix.ruby}}-${{hashFiles('**/${{matrix.gemfile}}')}} - name: Bundle install... run: | bundle config path vendor/bundle bundle install --gemfile=${{matrix.gemfile}} - run: bundle exec rspec spec
Remove truffleruby since fails sometimes
Remove truffleruby since fails sometimes
YAML
mit
simplybusiness/rutabaga
b40f35d34739e43d5006594e183d4f5fef9a69db
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "pypy" - "pypy3" script: scripts/runtest.sh
sudo: false language: python cache: pip python: - '2.7' - '3.3' - '3.4' - '3.5' - '3.6' - pypy - pypy3 script: scripts/runtest.sh deploy: provider: pypi user: uncovertruth password: secure: EbuYCrzrV4X9cJhj832zikWP9KUn6mEpf+/Ajm40amMS2jY5j9sJaLZulf3D+Ff3/I5K2fIjYrzzr+M+UxoD56eg2wfMmn3tvsngtDMhwMU5CCMWKJrcponEmCi5PYwp5lSQgmCjZlgaWS2reSzsDQe4oVS8ivejSUbZgE+o9vk= distributions: sdist bdist_wheel skip_upload_docs: true on: repo: uncovertruth/py-geohex3 tags: true python: 3.6
Add auto deployment to pypi
Add auto deployment to pypi
YAML
mit
uncovertruth/py-geohex3,uncovertruth/py-geohex3
6623dc3b1f210b55f77e34d2c3d435a478aecfd0
.travis.yml
.travis.yml
language: c compiler: gcc sudo: required dist: xenial before_install: - sudo add-apt-repository ppa:vala-team/ppa -y - sudo apt-get update -y - sudo apt-get install -y xvfb build-essential gnome-common libglib2.0-dev libgtk-3-dev libgee-0.8 libjson-glib-1.0.0 libjson-glib-dev libvala-0.30-dev valac-0.30 libvte-2.91-dev libsoup2.4-dev after_success: - bash <(curl -s https://codecov.io/bash) script: - NO_AT_BRIDGE=1 TRAVIS=true xvfb-run make - NO_AT_BRIDGE=1 TRAVIS=true xvfb-run make test-coverage
language: c compiler: gcc sudo: required dist: xenial before_install: - sudo add-apt-repository ppa:vala-team/ppa -y - sudo apt-get update -y - sudo apt-get install -y xvfb build-essential gnome-common libglib2.0-dev libgtk-3-dev libgee-0.8 libjson-glib-1.0.0 libjson-glib-dev libvala-0.30-dev valac-0.30.1 libvte-2.91-dev libsoup2.4-dev after_success: - bash <(curl -s https://codecov.io/bash) script: - NO_AT_BRIDGE=1 TRAVIS=true xvfb-run make - NO_AT_BRIDGE=1 TRAVIS=true xvfb-run make test-coverage
Upgrade valac from 0.30 to 0.30.1
Upgrade valac from 0.30 to 0.30.1
YAML
mit
lcallarec/dockery,lcallarec/gnome-docker-manager
a9375dab12b3085c85472cd0d4a69e7e453dffa8
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1 - jruby-18mode env: - SPHINX_BIN=/usr/local/sphinx-2.0.9/bin SPHINX_VERSION=2.0.9 - SPHINX_BIN=/usr/local/sphinx-2.1.3/bin SPHINX_VERSION=2.1.3 - SPHINX_BIN=/usr/local/sphinx-2.2.1/bin SPHINX_VERSION=2.2.1 before_script: killall searchd; echo '' after_script: killall searchd; echo ''
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1 - jruby-18mode env: - SPHINX_BIN=/usr/local/sphinx-2.0.10/bin SPHINX_VERSION=2.0.10 - SPHINX_BIN=/usr/local/sphinx-2.1.9/bin SPHINX_VERSION=2.1.9 - SPHINX_BIN=/usr/local/sphinx-2.2.6/bin SPHINX_VERSION=2.2.6 before_script: killall searchd; echo '' after_script: killall searchd; echo ''
Update Sphinx versions for Travis.
Update Sphinx versions for Travis.
YAML
mit
pat/riddle,pat/riddle
7d9d479a2c9fc3eceb8ce8fd2c0636772eb68dac
.travis.yml
.travis.yml
language: c before_install: - scripts/travis-before-install.sh script: - scripts/travis-build.sh - scripts/travis-test.sh matrix: include: - os: linux dist: trusty sudo: required compiler: gcc - os: linux dist: trusty sudo: required compiler: gcc-i686 - os: linux dist: trusty sudo: required compiler: clang - os: linux dist: trusty sudo: required compiler: clang env: SANITIZER=asan # Disabled because MSAN seems to have stopped working on Travis. # - os: linux # dist: trusty # sudo: required # compiler: clang # env: SANITIZER=msan - os: linux dist: trusty sudo: required compiler: clang env: SANITIZER=lsan - os: linux dist: trusty sudo: required compiler: clang env: SANITIZER=ubsan - os: osx compiler: clang
language: c before_install: - scripts/travis-before-install.sh script: - scripts/travis-build.sh - scripts/travis-test.sh matrix: include: - os: linux dist: trusty sudo: required compiler: gcc - os: linux dist: trusty sudo: required compiler: gcc-i686 - os: linux dist: trusty sudo: required compiler: clang - os: linux dist: trusty sudo: required compiler: clang env: SANITIZER=asan # Disabled because MSAN seems to have stopped working on Travis. # - os: linux # dist: trusty # sudo: required # compiler: clang # env: SANITIZER=msan - os: linux dist: trusty sudo: required compiler: clang env: SANITIZER=lsan - os: linux dist: trusty sudo: required compiler: clang env: SANITIZER=ubsan - os: osx compiler: clang # Allow failures on the Mac bots. We'd rather not, but they are quite slow. allow_failures: - os: osx compiler: clang fast_finish: true
Allow failures on the OSX build
Allow failures on the OSX build They OSX builds are very slow to run; it's good to test them, but they're unlikely to differ from the Linux builds significantly.
YAML
apache-2.0
WebAssembly/sexpr-wasm-prototype,WebAssembly/sexpr-wasm-prototype,citisolo/wabt,WebAssembly/wabt,WebAssembly/wabt,citisolo/wabt,WebAssembly/wabt,citisolo/wabt,citisolo/wabt,WebAssembly/sexpr-wasm-prototype,WebAssembly/wabt,WebAssembly/sexpr-wasm-prototype,WebAssembly/sexpr-wasm-prototype,citisolo/wabt,WebAssembly/wabt,WebAssembly/sexpr-wasm-prototype,citisolo/wabt
c9d4223a7262eb6dda3fdb4d05204ae8348deb09
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.5 - 2.5.3 - ruby-head before_install: - | if [[ `ruby -v` =~ 2\.[0-2]\.[0-9]+ ]]; then gem install rubygems-update -v '<3' && update_rubygems gem install bundler -v '<2' else gem update --system gem update bundler fi
sudo: false language: ruby rvm: - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.5 - 2.5.3 - 2.6.0 - ruby-head before_install: - | if [[ `ruby -v` =~ 2\.[0-2]\.[0-9]+ ]]; then gem install rubygems-update -v '<3' && update_rubygems gem install bundler -v '<2' else gem update --system gem update bundler fi
Test against Ruby 2.6.0 on Travis CI
Test against Ruby 2.6.0 on Travis CI
YAML
mit
emsk/mask_sql,emsk/mask_sql
34fd69b5cd546783bd2984ade2d2cf87f6038cba
.travis.yml
.travis.yml
language: groovy #Yeah, we are going to want to cache our build dependencies so our builds aren't held up downloading for every container cache: directories: - $HOME/.gradle - $HOME/protobuf jdk: - oraclejdk7 - oraclejdk8 - openjdk7 # Allow running on a container instead of a traditional VM sudo: false #There is currently an issue in Gradle where a forked JVM will ignore any no-daemon flag (--no-daemon, org.gradle.daemon) for the forked process if jvm args are supplied. #We remove them to get around this env: global: - GRADLE_OPTS="-Dorg.gradle.daemon=false -Dorg.gradle.jvmargs=''" - PATH="$PATH:$HOME/protobuf/bin" before_install: - bash install_protoc_from_source.sh install: ./gradlew assemble script: ./gradlew check
language: groovy #Yeah, we are going to want to cache our build dependencies so our builds aren't held up downloading for every container cache: directories: - $HOME/.gradle - $HOME/protobuf dist: trusty jdk: - oraclejdk8 - openjdk8 # Allow running on a container instead of a traditional VM sudo: false #There is currently an issue in Gradle where a forked JVM will ignore any no-daemon flag (--no-daemon, org.gradle.daemon) for the forked process if jvm args are supplied. #We remove them to get around this env: global: - GRADLE_OPTS="-Dorg.gradle.daemon=false -Dorg.gradle.jvmargs=''" - PATH="$PATH:$HOME/protobuf/bin" before_install: - bash install_protoc_from_source.sh install: ./gradlew assemble script: ./gradlew check
Update CI to use openjdk8 and oraclejdk8 for builds
Update CI to use openjdk8 and oraclejdk8 for builds
YAML
apache-2.0
TWCable/grabbit
b7adf45014b750e9a39e20404e7214ba1d12c6a7
.travis.yml
.travis.yml
language: php php: - 5.2 - 5.3 - 5.4 - 5.5 - 5.6 - hhvm env: - AUTOLOAD=1 - AUTOLOAD=0 before_script: composer install -n --dev --prefer-source after_script: ./vendor/bin/coveralls -v
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm env: - AUTOLOAD=1 - AUTOLOAD=0 before_script: composer update after_script: ./vendor/bin/coveralls -v
Remove php 5.2 to run automated unit tests
Remove php 5.2 to run automated unit tests
YAML
mit
agmscode/agms_php_lite
109cb03faea0bcfeab3fa23e261d349c2c15f204
.travis.yml
.travis.yml
language: go # https://github.com/golang/go/issues/31293 dist: xenial sudo: false addons: apt: packages: - xorg-dev - libx11-dev - libxrandr-dev - libxinerama-dev - libxcursor-dev - libxi-dev - libopenal-dev - libasound2-dev - libgl1-mesa-dev services: - xvfb go: - tip - 1.8.x - 1.7.4 install: - go get -t ./... script: - go test -i -race ./... - go test -v -race ./...
language: go # https://github.com/golang/go/issues/31293 dist: xenial sudo: false addons: apt: packages: - xorg-dev - libx11-dev - libxrandr-dev - libxinerama-dev - libxcursor-dev - libxi-dev - libopenal-dev - libasound2-dev - libgl1-mesa-dev services: - xvfb go: - tip - 1.12.x script: - go test -v -race -mod=readonly ./...
Update TravisCI to fail if dependencies are missing in go.mod
Update TravisCI to fail if dependencies are missing in go.mod
YAML
mit
faiface/pixel
59cc65ca020975d7a67f7cbf0780a4b20935bba2
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 # fixes SWT display problem before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 # give xvfb some time to start script: - mvn clean verify
language: java # Fixes Travis issue group: edge jdk: - oraclejdk8 # fixes SWT display problem before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 # give xvfb some time to start script: - mvn clean verify
Fix memory issue allocating memory for Java processes
[Travis] Fix memory issue allocating memory for Java processes
YAML
mit
archimatetool/archi,archimatetool/archi,archimatetool/archi
95e3607f73fa9aead56667c172cbd99c41471b14
.travis.yml
.travis.yml
language: node_js node_js: - "0.12" cache: directories: - node_modules install: - npm install -g gulp - npm install karma-coveralls --save-dev # https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 # give xvfb some time to start script: gulp karma
language: node_js node_js: - "0.12" cache: directories: - node_modules install: - npm install - npm install -g gulp - npm install karma-coveralls --save-dev # https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 # give xvfb some time to start script: gulp karma
Install depdendencies … was only working because of the cache
Install depdendencies … was only working because of the cache
YAML
apache-2.0
coolcrowd/control-ui,coolcrowd/control-ui
7963d8727228f0151f8bc4b8bc22d6d767fd48ea
.travis.yml
.travis.yml
language: python python: - "3.6" cache: pip install: - pip install --upgrade pip setuptools - pip install . script: - python setup.py test
language: python python: - "3.6" cache: pip install: - pip install --upgrade pip setuptools - pip install coveralls - pip install . script: - python setup.py test after_success: - coveralls
Add coveralls coverage report from Travis CI Add coveralls installation so it works
Add coveralls coverage report from Travis CI Add coveralls installation so it works
YAML
mit
NedYork/viper
8c3090c1ee90fcbc284b711440e0a0d19517f424
.travis.yml
.travis.yml
language: php php: - 5.3.3 - 5.4 - 5.5 - 5.6 - 7.0 install: - composer install --no-interaction script: vendor/bin/phpunit --configuration .phpunit.xml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 install: - composer install --no-interaction script: vendor/bin/phpunit --configuration .phpunit.xml
Remove PHP 5.3.3 from Travis due to SSL fail
Remove PHP 5.3.3 from Travis due to SSL fail
YAML
mit
JangoBrick/php-svg
06968374421075d4dab1d256c79c0077ea0888b5
.travis.yml
.travis.yml
language: android jdk: oraclejdk8 android: components: - extra-android-m2repository - build-tools-21.1.2 - android-19 script: - ./gradlew build
language: android jdk: oraclejdk8 android: components: - extra-android-m2repository - build-tools-21.1.2 - android-22 script: - ./gradlew build
Use correct android in Travis
Use correct android in Travis
YAML
mit
pivotal/macchiato
310eb4c1fc2e5034d804ef37fc0f059e4c9f2bc2
.travis.yml
.travis.yml
language: ruby rvm: - 2.3.3 before_install: - gem update --system - gem install bundler script: - bundle exec jekyll build env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
language: ruby rvm: - 2.4.1 before_install: - gem update --system - gem install bundler script: - bundle exec jekyll build env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer cache: bundler
Use a pre-installed version of ruby
Use a pre-installed version of ruby Signed-off-by: Suhaib Khan <964831d24cb3e47c0155ab3cd65f31c238fd30ac@teampicnic.com>
YAML
apache-2.0
aktech/aktech.github.io,aktech/aktech.github.io,aktech/aktech.github.io,aktech/aktech.github.io,aktech/aktech.github.io
5dde76d9ae6f38129f5006ce93dca0eb35c5dfb6
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler services: - redis-server rvm: - 1.9.3 - 2.0.0 - 2.1.1 - jruby-19mode before_script: - git config --local user.email "travis@travis.ci" - git config --local user.name "Travis CI" script: - bundle exec rspec - bundle exec overcommit --run matrix: allow_failures: - rvm: 2.1.0
language: ruby sudo: false cache: bundler services: - redis-server rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 - jruby-19mode before_script: - git config --local user.email "travis@travis.ci" - git config --local user.name "Travis CI" script: - bundle exec rspec - bundle exec overcommit --run matrix: allow_failures: - rvm: 2.1.0
Test latest Ruby 2.2 version in CI runs
Test latest Ruby 2.2 version in CI runs
YAML
mit
GearboxSoftware/mock_redis,batizhevsky/mock_redis,anujdas/mock_redis,brigade/mock_redis
22e505c9d6a77b94f21ee9c4d6b8ec719c43f6ff
.travis.yml
.travis.yml
# # Copyright 2017, gRPC Authors All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # Travis CI build file for Swift gRPC. # Use Ubuntu 14.04 dist: trusty sudo: false addons: apt: packages: - clang-3.8 - lldb-3.8 - libicu-dev - libtool - libcurl4-openssl-dev - libbsd-dev - build-essential - libssl-dev - uuid-dev - curl - unzip install: ./.travis-install.sh script: - export PATH=.:$HOME/local/bin:$PATH - export LD_LIBRARY_PATH=$HOME/local/lib - make test - make test-plugin - make test-examples
# # Copyright 2017, gRPC Authors All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # Travis CI build file for Swift gRPC. # Use Ubuntu 14.04 dist: trusty sudo: false addons: apt: packages: - clang-3.8 - lldb-3.8 - libicu-dev - libtool - libcurl4-openssl-dev - libbsd-dev - build-essential - libssl-dev - uuid-dev - curl - unzip install: ./.travis-install.sh script: - export PATH=$HOME/local/bin:$PATH - export LD_LIBRARY_PATH=$HOME/local/lib - make test - make test-plugin - make test-examples
Remove the current working directoy from the Travis PATH environment variable.
Remove the current working directoy from the Travis PATH environment variable.
YAML
apache-2.0
grpc/grpc-swift,grpc/grpc-swift,grpc/grpc-swift,grpc/grpc-swift,grpc/grpc-swift
1b7e1275df36547704285d210a78e0629379378a
.travis.yml
.travis.yml
language: cpp compiler: - gcc - clang branches: only: - master install: - sudo apt-get update -qq - sudo apt-get install -qq libqt4-dev subversion script: - svn checkout -q http://sparsehash.googlecode.com/svn/trunk sparsehash-read-only - cd sparsehash-read-only - ./configure - make -j2 - cp -R src/sparsehash ../ - cp -R src/google ../ - cd ../tests - qmake - make -j2 - for i in ./tst_*; do ./$i; done
language: cpp compiler: - gcc - clang branches: only: - master sudo: false addons: apt: packages: - libqt4-dev script: - git clone https://github.com/google/sparsehash - cd sparsehash - ./configure - make -j2 - cp -R src/sparsehash ../ - cp -R src/google ../ - cd ../tests - qmake - make -j2 - for i in ./tst_*; do ./$i; done
Migrate to container-based Travis infrastructure
Migrate to container-based Travis infrastructure
YAML
mit
sjinks/qt_sparsehash
89bb441e94c3080c9133832f677391fb534113f8
.travis.yml
.travis.yml
language: node_js node_js: - 7.7.0 # safelist branches: only: - master script: bash ./deploy.sh
language: node_js node_js: - 7.7.0 # safelist addons: apt: packages: ffmpeg branches: only: - master script: bash ./deploy.sh
Add ffmpeg to get the duration.
Add ffmpeg to get the duration.
YAML
mpl-2.0
bwinton/podcasts
7770be5b824bf9c184bd141a00143ff3bc991765
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.4" - "3.5" install: - pip install pytest - pip install -e . script: - py.test
language: python python: - "2.7" - "3.6" install: - pip install pytest - pip install -e . script: - py.test
Drop testing on older Python 3
Drop testing on older Python 3 Signed-off-by: Philippe Ombredanne <ca95c4a6a4931f366cbdaf5878c5016609417d37@nexb.com>
YAML
mpl-2.0
pombredanne/python-publicsuffix2
6241adbc854222adf7ef4a852f6652630c8d5086
.travis.yml
.travis.yml
language: php php: - '5.6' - '7.0' - '7.1' - nightly
language: php php: - '5.6' - '7.0' - '7.1' - nightly before_script: - travis_retry composer install --prefer-source --no-interaction --dev
Make sure dependencies actually get installed
Make sure dependencies actually get installed
YAML
mit
ksassnowski/laravel-shareable-models
d53f35c57dce7dd3bbe73283ad86c1e1981404f3
.travis.yml
.travis.yml
language: "node_js" env: DEBUG=* branches: only: - master - next - rewrite node_js: - "0.12" - "4.2" - "5" - "node" os: - linux before_install: - npm update -g npm
language: "node_js" env: DEBUG=* branches: only: - master - next - rewrite node_js: - "node" - "6" - "4" os: - linux before_install: - npm update -g npm
Update nodejs versions under test
Update nodejs versions under test
YAML
apache-2.0
cloudant/nodejs-cloudant,cloudant/nodejs-cloudant
b40bfc9de36fb12df2251a79ab7a6f7119b9d9d8
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" install: - "pip install -r requirements.txt" - "pip install coveralls" - "if [[ $TEST_PEP8 == '1' ]]; then pip install pep8; fi" script: - "if [[ $TEST_PEP8 == '1' ]]; then pep8 --repeat --show-source --exclude=.venv,.tox,dist,docs,build,lastpass_python.egg-info,.git --ignore=E501,E731 .; else nosetests --with-coverage --cover-package=lastpass; fi" after_success: - "if [[ $TEST_PEP8 == '1' ]]; then echo 'No coverage report when running pep8' ; else coveralls ; fi" matrix: include: - python: "2.7" env: TEST_PEP8=1 - python: "3.4" env: TEST_PEP8=1
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "3.6-dev" - "3.7-dev" - "nightly" install: - "pip install -r requirements.txt" - "pip install coveralls" - "if [[ $TEST_PEP8 == '1' ]]; then pip install pep8; fi" script: - "if [[ $TEST_PEP8 == '1' ]]; then pep8 --repeat --show-source --exclude=.venv,.tox,dist,docs,build,lastpass_python.egg-info,.git --ignore=E501,E731 .; else nosetests --with-coverage --cover-package=lastpass; fi" after_success: - "if [[ $TEST_PEP8 == '1' ]]; then echo 'No coverage report when running pep8' ; else coveralls ; fi" matrix: include: - python: "2.7" env: TEST_PEP8=1 - python: "3.4" env: TEST_PEP8=1
Add most recent Python versions in Travis CI
Add most recent Python versions in Travis CI Add more recent Python versions including development branches and nightly build.
YAML
mit
konomae/lastpass-python
c92f34f7d85c560fde8ebb5fe9236560ba4e83f3
.travis.yml
.travis.yml
# Use Docker infrastructure sudo: false language: ruby cache: bundler
# Use Docker infrastructure sudo: false language: ruby cache: bundler rvm: - 2.1.6
Upgrade rvm version to support dependencies
Upgrade rvm version to support dependencies
YAML
apache-2.0
mikewiebe/cisco-network-puppet-module,cisco/cisco-network-puppet-module,cisco/cisco-network-puppet-module,mikewiebe/cisco-network-puppet-module,mikewiebe/cisco-network-puppet-module,cisco/cisco-network-puppet-module,mikewiebe/cisco-network-puppet-module,cisco/cisco-network-puppet-module
a00e9ad329664497e3b31d3c9f31c53e9bfb3551
.travis.yml
.travis.yml
language: python python: "3.5" # command to install dependencies install: "pip install -r requirements.txt" # command to run tests script: - flake8 . - pylint . - nosetests --with coverage --cover-package=sudoku_py3
language: python python: "3.5" # command to install dependencies install: "pip install -r requirements.txt" # command to run tests script: - flake8 . - pylint . - nosetests --with-coverage --cover-package=sudoku_py3
Correct typo in coverage (as a --flag to nosetests)
Correct typo in coverage (as a --flag to nosetests)
YAML
mit
ReblochonMasque/sudoku
9f7bf863be41ad8a85b53bcddf621e01065d3093
.travis.yml
.travis.yml
sudo: false language: android android: components: - build-tools-27.0.1 jdk: - oraclejdk8 script: ./gradlew build cache: directories: - "$HOME/.gradle/caches" branches: only: - master
sudo: false language: android android: components: - build-tools-27.0.1 - android-22 jdk: - oraclejdk8 script: ./gradlew build cache: directories: - "$HOME/.gradle/caches" branches: only: - master
Add android SDK config to Travis build
Add android SDK config to Travis build
YAML
apache-2.0
ewerk/gradle-plugins,griffio/gradle-plugins
52962a5ea502e14560224ccd8142edec0a0fc50f
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.8" - "0.6" install: - npm install gulp -g script: - gulp compile
language: node_js node_js: - "0.11" install: - npm install gulp -g script: - gulp compile
Upgrade Node, and we only really need one version
Upgrade Node, and we only really need one version
YAML
bsd-3-clause
tdukart/backbone-bootbox-view
76327580ddaa7a59571246e9a766f4dbd287d430
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" sudo: false cache: directories: - disque before_install: - $PWD/scripts/run_disque install: - pip install -r requirements.txt - pip install -r test-requirements.txt - python setup.py install script: py.test .
language: python matrix: include: - python: 2.7 script: tox -epep8 - python: 2.6 - python: 2.7 - python: 3.2 - python: 3.3 - python: 3.4 sudo: false cache: directories: - disque before_install: - $PWD/scripts/run_disque install: - pip install -r requirements.txt - pip install -r test-requirements.txt - python setup.py install script: py.test .
Check PEP8 style in Travis-CI
Check PEP8 style in Travis-CI
YAML
apache-2.0
ryansb/disq,ryansb/disq