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
4ed1ae17eb1259fc61d66e81b9b864932afa688e
azure-pipelines.yml
azure-pipelines.yml
variables: CI: 'true' trigger: - master jobs: - job: 'Test' pool: vmImage: 'Ubuntu-16.04' strategy: matrix: Python352: python.version: '3.5.2' toxenv: 'py35-asyncio' Python35: python.version: '3.5' toxenv: 'py35-asyncio' Python36: python.version: '3.6' toxenv: 'py36-asyncio' Python37: python.version: '3.7' toxenv: 'py37-asyncio' Python352-UVLoop: python.version: '3.5.2' toxenv: 'py35-uvloop' Python35-UVLoop: python.version: '3.5' toxenv: 'py35-uvloop' Python36-UVLoop: python.version: '3.6' toxenv: 'py36-uvloop' Python37-UVLoop: python.version: '3.7' toxenv: 'py37-uvloop' steps: - task: UsePythonVersion@0 displayName: 'Use Python $(python.version)' inputs: versionSpec: '$(python.version)' architecture: 'x64' - script: pip install tox tox-venv displayName: 'Install Tox' - script: tox -e $(toxenv) displayName: 'Run Tox'
variables: CI: 'true' trigger: - master jobs: - job: 'Test' pool: vmImage: 'Ubuntu-16.04' strategy: matrix: # Python352: # python.version: '3.5.2' # toxenv: 'py35-asyncio' Python35: python.version: '3.5' toxenv: 'py35-asyncio' Python36: python.version: '3.6' toxenv: 'py36-asyncio' Python37: python.version: '3.7' toxenv: 'py37-asyncio' # Python352-UVLoop: # python.version: '3.5.2' # toxenv: 'py35-uvloop' Python35-UVLoop: python.version: '3.5' toxenv: 'py35-uvloop' Python36-UVLoop: python.version: '3.6' toxenv: 'py36-uvloop' Python37-UVLoop: python.version: '3.7' toxenv: 'py37-uvloop' steps: - task: UsePythonVersion@0 displayName: 'Use Python $(python.version)' inputs: versionSpec: '$(python.version)' architecture: 'x64' - script: pip install tox tox-venv displayName: 'Install Tox' - script: tox -e $(toxenv) displayName: 'Run Tox'
Disable 3.5.2 tests on Azure for now
Disable 3.5.2 tests on Azure for now
YAML
mit
cole/aiosmtplib
fc9da5634476d87cc3e63fdf49769cc6e5da11f8
azure-pipelines.yml
azure-pipelines.yml
name: $(Date:yyyy-MM-dd)-build-$(Rev:r) jobs: - template: dotnetcore.job.yml parameters: jobName: windows jobDisplayName: Windows (x64) pool: Hosted VS2017 configuration: $(BuildConfiguration) runtimeId: win-x64 enableCodeCoverage: true selfContained: true artifactPrefix: thnetii-dotnet-common
name: $(Date:yyyy-MM-dd)-rev-$(Rev:r) jobs: - template: dotnetcore.job.yml parameters: jobName: windows jobDisplayName: Windows (x64) pool: Hosted VS2017 configuration: $(BuildConfiguration) runtimeId: win-x64 enableCodeCoverage: true selfContained: true artifactPrefix: thnetii-dotnet-common
Use rev instead of build in CI Build name
Use rev instead of build in CI Build name
YAML
mit
thnetii/dotnet-common
e47c34453724cdf61104e3643ebcbf0b1d7d4403
packages/pr/prettyFunctionComposing.yaml
packages/pr/prettyFunctionComposing.yaml
homepage: '' changelog-type: '' hash: 97adc88079779a0479c99ae7dbe0f8d0fe632ea40c6875aee4b22db0c4689c85 test-bench-deps: {} maintainer: [email protected] synopsis: prettier function composition by (°) changelog: '' basic-deps: base: ! '>=0 && <5' all-versions: - '1.0.1' author: Nick Rudnick latest: '1.0.1' description-type: haddock description: ! 'Yes, I am afraid it is completely trivial and syntactic. However, the use of ''.'' is quite overloaded, so that e.g. character search becomes a problem. Pretty looking & generally available at the keyboard, ''°'' solves this. Possibly the most simple Hackage package ever. :-P' license-name: BSD3
homepage: '' changelog-type: text hash: 98f028b5dc32590dcef68212e62d3fcb5a9ae619dcd79ff5c3dcf70785e0f158 test-bench-deps: {} maintainer: [email protected] synopsis: prettier function composition by (°) changelog: ! '2.0.0 (°) now infixr 9 instead of infixl 9 (2016-5-6) ' basic-deps: base: ! '>=0 && <5' all-versions: - '1.0.1' - '2.0.0' author: Nick Rudnick latest: '2.0.0' description-type: haddock description: ! 'Yes, I am afraid it is completely trivial and syntactic. However, the use of ''.'' is quite overloaded, so that e.g. character search becomes a problem. Pretty looking & generally available at the keyboard, ''°'' solves this. Possibly the most simple Hackage package ever. :-P' license-name: BSD3
Update from Hackage at 2016-05-13T01:19:59+0000
Update from Hackage at 2016-05-13T01:19:59+0000
YAML
mit
commercialhaskell/all-cabal-metadata
d79c58c52aab841164604319358880297f2d8495
config/database.yml
config/database.yml
# SQLite version 3.x # gem install sqlite3 # # Ensure the SQLite 3 gem is defined in your Gemfile # gem 'sqlite3' # default_sqlite: &default_sqlite adapter: sqlite3 pool: 5 timeout: 5000 development: <<: *default_sqlite database: db/development.sqlite3 # Warning: The database defined as "test" will be erased and # re-generated from your development database when you run "rake". # Do not set this db to the same as development or production. test: <<: *default_sqlite database: db/test.sqlite3 default_postgres: &default_postgres adapter: postgresql encoding: unicode pool: 5 username: <%= ENV["DB_USERNAME"] %> password: <%= ENV["DB_PASSWORD"] %> production: <<: *default_postgres database: geghard_PRODUCTION staging: <<: *default_postgres database: geghard_STAGING
# SQLite version 3.x # gem install sqlite3 # # Ensure the SQLite 3 gem is defined in your Gemfile # gem 'sqlite3' # # Warning: The database defined as "test" will be erased and # re-generated from your development database when you run "rake". # Do not set this db to the same as development or production. default_postgres: &default_postgres adapter: postgresql encoding: unicode pool: 5 username: <%= ENV["DB_USERNAME"] %> password: <%= ENV["DB_PASSWORD"] %> development_postgres: &development_postgres <<: *default_postgres host: localhost username: postgres password: password production: <<: *default_postgres database: geghard_PRODUCTION staging: <<: *default_postgres database: geghard_STAGING development: <<: *development_postgres database: geghard_DEVELOPMENT test: <<: *development_postgres database: geghard_TEST
Reconfigure so that we can use PGSQL in all envs
Reconfigure so that we can use PGSQL in all envs We will start using the XML and JSON types that are PG-specific. This forces us to stop using SQLite in dev/test.
YAML
apache-2.0
Xalgorithms/xa-elegans,Xalgorithms/xa-elegans,Xalgorithms/xa-elegans
76a2e8030cf0db91ec48b5690991dd8ad6616626
config/monolog.yaml
config/monolog.yaml
# https://github.com/Seldaek/monolog/blob/master/doc/02-handlers-formatters-processors.md logger_name: 'Slim3Skeleton' StreamHandler: &StreamHandler enable: true level: DEBUG NativeMailerHandler: &NativeMailerHandler enable: false level: ERROR to: '' subject: 'Slim 3 Skeleton Error' from: { '[email protected]': 'Slim 3 Skeleton' } SwiftMailerHandler: &SwiftMailerHandler enable: false level: ERROR to: '' subject: 'Slim 3 Skeleton Error' from: { '[email protected]': 'Slim 3 Skeleton' }
# https://github.com/Seldaek/monolog/blob/master/doc/02-handlers-formatters-processors.md logger_name: 'Slim3Skeleton' StreamHandler: enable: true level: DEBUG NativeMailerHandler: enable: false level: ERROR to: '' subject: 'Slim 3 Skeleton Error' from: { '[email protected]': 'Slim 3 Skeleton' } SwiftMailerHandler: enable: false level: ERROR to: '' subject: 'Slim 3 Skeleton Error' from: { '[email protected]': 'Slim 3 Skeleton' }
Fix in Monolog config file
Fix in Monolog config file
YAML
mit
aurmil/slim3-skeleton,aurmil/slim3-skeleton
678e02910607093fb9c40409d075c1ba8c8ab2d9
tests/7.2-extensions/goss.yaml
tests/7.2-extensions/goss.yaml
command: php -m: exit-status: 0 stdout: - '[PHP Modules]' - apcu - bcmath - bz2 - calendar - Core - ctype - curl - date - dom - exif - fileinfo - filter - ftp - hash - iconv - imagick - json - sodium - libxml - mbstring - memcached - mongodb - openssl - pcre - posix - readline - redis - Reflection - session - shmop - SimpleXML - sockets - SPL - standard - swoole - sysvmsg - sysvsem - sysvshm - tokenizer - xml - xmlreader - xmlwriter - Zend OPcache - zip - zlib - '[Zend Modules]' - Xdebug - Zend OPcache stderr: [] timeout: 10000
command: php -m: exit-status: 0 stdout: - '[PHP Modules]' - apcu - bcmath - bz2 - calendar - Core - ctype - curl - date - dom - exif - fileinfo - filter - ftp - hash - iconv - imagick - json - sodium - libxml - mbstring - memcached - mongodb - openssl - pcre - posix - readline - redis - Reflection - session - shmop - SimpleXML - sockets - SPL - standard - swoole - sysvmsg - sysvsem - sysvshm - tokenizer - xml - xmlreader - xmlwriter - Zend OPcache - zip - zlib - '[Zend Modules]' - Zend OPcache stderr: [] timeout: 10000
Fix tests - Xdebug doesn't compile on PHP 7.2 yet
Fix tests - Xdebug doesn't compile on PHP 7.2 yet
YAML
mit
php-earth/docker-php,php-earth/docker-php
bc702e5db2679a7887a90f7658459139fdb0d529
.github/workflows/run_starminder.yml
.github/workflows/run_starminder.yml
name: Run Starminder on: push: branches: - main schedule: - cron: "13 10 * * *" # adjust to your liking jobs: build: name: Run Starminder Script runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 - name: Set up Python 3.9 uses: actions/setup-python@v2 with: python-version: 3.9 - name: Install dependencies run: | python -m pip install --upgrade pip pip install poetry poetry config virtualenvs.create false poetry install --no-dev --no-root --no-interaction if [ -f custom_requirements.txt ]; then poetry run pip install -r custom_requirements.txt fi - name: Run script env: STARMINDER_COUNT: ${{ secrets.STARMINDER_COUNT }} STARMINDER_RECIPIENT: ${{ secrets.STARMINDER_RECIPIENT }} AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} AWS_FROM: ${{ secrets.AWS_FROM }} GH_TOKEN: ${{ secrets.GH_TOKEN }} run: | make run
name: Run Starminder on: schedule: - cron: "13 10 * * *" # adjust to your liking jobs: build: name: Run Starminder Script runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 - name: Set up Python 3.9 uses: actions/setup-python@v2 with: python-version: 3.9 - name: Install dependencies run: | python -m pip install --upgrade pip pip install poetry poetry config virtualenvs.create false poetry install --no-dev --no-root --no-interaction if [ -f custom_requirements.txt ]; then poetry run pip install -r custom_requirements.txt fi - name: Run script env: STARMINDER_COUNT: ${{ secrets.STARMINDER_COUNT }} STARMINDER_RECIPIENT: ${{ secrets.STARMINDER_RECIPIENT }} AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} AWS_FROM: ${{ secrets.AWS_FROM }} GH_TOKEN: ${{ secrets.GH_TOKEN }} run: | make run
Remove push to main trigger
Remove push to main trigger Okay, I admit it's bit much.
YAML
mit
nkantar/Starminder
d274252d6dc00e6786172b956f5461dad26ffb86
.github/workflows/trigger_deploy.yml
.github/workflows/trigger_deploy.yml
name: Trigger the deployment action in another repo on: workflow_dispatch: push: branches: [ "master" ] jobs: trigger_deploy: runs-on: ubuntu-latest steps: - name: Send the Repository Dispatch event uses: peter-evans/[email protected] with: token: ${{ secrets.TRIGGER_ACTION_ACCESS_TOKEN }} repository: ${{ secrets.DEPLOYMENT_ACTION_REPO }} event-type: unblock-youku
name: Trigger the deployment action in another repo on: workflow_dispatch: push: branches: [ "master" ] jobs: trigger_deploy: runs-on: ubuntu-latest steps: - name: Send the Repository Dispatch event uses: peter-evans/[email protected] with: token: ${{ secrets.TRIGGER_ACTION_ACCESS_TOKEN }} repository: ${{ secrets.DEPLOYMENT_ACTION_REPO }} event-type: deploy-unblock-youku
Change the event-type to deploy-unblock-youku
Change the event-type to deploy-unblock-youku for better readability
YAML
agpl-3.0
uku/Unblock-Youku,uku/Unblock-Youku
f617920b8e3c8e66284ceb6e12fd5740274d0d42
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 matrix: include: - os: linux - os: osx osx_image: xcode9.3
language: java matrix: include: - os: linux dist: trusty jdk: - openjdk8 - os: osx osx_image: xcode9.3 jdk: - oraclejdk8
Use OpenJDK and trusty Linux.
Use OpenJDK and trusty Linux.
YAML
mit
dblock/jenkins-ansicolor-plugin,jenkinsci/ansicolor-plugin,jenkinsci/ansicolor-plugin,dblock/jenkins-ansicolor-plugin
cab8f8779e04c45f6b80bfeba85c420ddec45250
.travis.yml
.travis.yml
language: ruby cache: bundler script: - bundle exec rake - bundle exec rspec - bundle exec cucumber rvm: - 2.0.0
language: ruby cache: bundler script: - bundle exec rake - bundle exec rspec rvm: - 2.0.0
Remove Cucumber from Travis config, already covered by Rake
Remove Cucumber from Travis config, already covered by Rake
YAML
agpl-3.0
valeriecodes/refugerestrooms,RefugeRestrooms/refugerestrooms,valeriecodes/refugerestrooms,azelma/refugerestrooms,cllns/refugerestrooms,azelma/refugerestrooms,azelma/refugerestrooms,RefugeRestrooms/refugerestrooms,RefugeRestrooms/refugerestrooms,cllns/refugerestrooms,mathonsunday/welcomehome,valeriecodes/refugerestrooms,cllns/refugerestrooms,RefugeRestrooms/refugerestrooms,cllns/refugerestrooms,azelma/refugerestrooms,mathonsunday/welcomehome,valeriecodes/refugerestrooms
fa4201a64f6e062b9aa3f66d32d5743a0a158437
.travis.yml
.travis.yml
language: cpp sudo: required dist: trusty compiler: - gcc os: - linux before_install: - sudo apt-get -qq update - sudo apt-get install -y git - sudo apt-get install -y libboost-all-dev - sudo apt-get install -y libpqxx-3.1 libpqxx3-dev - sudo apt-get install -y libconfig++ - sudo apt-get install -y cmake - sudo apt-get install -y libtinyxml2-dev - sudo apt-get install -y doxygen - sudo apt-get install -y root-system before_script: - mkdir build - cd build - cmake .. script: make all tests
language: cpp sudo: required dist: trusty compiler: - gcc os: - linux before_install: - sudo apt-get -qq update - sudo apt-get install -y git - sudo apt-get install -y sshpass - sudo apt-get install -y libboost-all-dev - sudo apt-get install -y libpqxx-3.1 libpqxx3-dev - sudo apt-get install -y libconfig++ - sudo apt-get install -y cmake - sudo apt-get install -y libtinyxml2-dev - sudo apt-get install -y doxygen - sudo apt-get install -y root-system before_script: - sshpass -p "${KOZA_PASSWORD}" scp ${KOZA_USERNAME}@koza.if.uj.edu.pl:/home/framework_configs/configDB.cfg ./DBHandler/Config/ - sshpass -p "${KOZA_PASSWORD}" scp ${KOZA_USERNAME}@koza.if.uj.edu.pl:/home/framework_configs/configDB.cfg.koza ./DBHandler/Config/ - sshpass -p "${KOZA_PASSWORD}" scp ${KOZA_USERNAME}@koza.if.uj.edu.pl:/home/framework_configs/ReadMe.txt ./DBHandler/Config/ - mkdir build - cd build - cmake .. script: make all tests
Update download_data.sh for non-interactive use
Update download_data.sh for non-interactive use
YAML
apache-2.0
alexkernphysiker/j-pet-framework,alexkernphysiker/j-pet-framework,alexkernphysiker/j-pet-framework,alexkernphysiker/j-pet-framework,JPETTomography/j-pet-framework,JPETTomography/j-pet-framework,JPETTomography/j-pet-framework,alexkernphysiker/j-pet-framework
c5dcc04d2020984953436263140e417fd7b958d1
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - nightly - hhvm sudo: false env: global: - COMPOSER_DISABLE_XDEBUG_WARN=1 matrix: fast_finish: true include: - php: 5.3.3 dist: precise - php: 5.3 dist: precise allow_failures: - php: nightly before_script: - if [ "$TRAVIS_PHP_VERSION" = "5.3.3" ]; then composer config disable-tls true; composer config secure-http false; fi - travis_retry composer install --prefer-source --no-interaction script: composer test after_script: - if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover reports/coverage.xml; fi notifications: irc: channels: - "chat.freenode.net#wikimedia-dev" template: - "%{repository}#%{build_number} (%{branch} - %{commit} %{author}): %{message} - %{build_url}"
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - nightly sudo: false env: global: - COMPOSER_DISABLE_XDEBUG_WARN=1 matrix: fast_finish: true allow_failures: - php: nightly before_script: - travis_retry composer install --prefer-source --no-interaction script: composer test after_script: - if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover reports/coverage.xml; fi notifications: irc: channels: - "chat.freenode.net#wikimedia-dev" template: - "%{repository}#%{build_number} (%{branch} - %{commit} %{author}): %{message} - %{build_url}"
Drop PHP 5.3 and hhvm testing
Drop PHP 5.3 and hhvm testing
YAML
mit
wikimedia/composer-merge-plugin,bd808/composer-merge-plugin
f3824a053d5682707fc6866ca3823ef72f79210a
.travis.yml
.travis.yml
language: perl6 perl6: - latest install: - rakudobrew build-panda - panda --notests installdeps . script: - perl6 -MPanda::Builder -e 'Panda::Builder.build(~$*CWD)' - PERL6LIB=$PWD/lib prove -e perl6 -vr t/ sudo: false
language: perl6 perl6: - latest install: - rakudobrew build-zef - zef --debug --depsonly --/test install . script: - zef build . - PERL6LIB=$PWD/lib prove -e perl6 -vr t/ sudo: false
Use zef instead of panda
Use zef instead of panda
YAML
artistic-2.0
titsuki/p6-Terminal-Readsecret,titsuki/p6-Terminal-Readsecret
3521d6b6a57231fd9052a478f1aa8a14a2c67d0c
.travis.yml
.travis.yml
sudo: required services: - docker language: node_js node_js: - node script: - npm run lint - npm run generate-coverage - npm run check-coverage - npm run upload-coverage-coveralls - npm run upload-coverage-codacy deploy: - docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" - chmod +x scripts/* - ./scripts/docker_ci.sh
sudo: required services: - docker language: node_js node_js: - node script: - npm run lint - npm run generate-coverage - npm run check-coverage - npm run upload-coverage-coveralls - npm run upload-coverage-codacy after_script: - docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" - chmod +x scripts/* - ./scripts/docker_ci.sh
Use after_script instead of deploy
Use after_script instead of deploy
YAML
mit
nhsuk/connecting-to-services,nhsuk/connecting-to-services
16e52c7b067d35feb22b9938192dd600524f7e7b
.travis.yml
.travis.yml
language: rust rust: - stable - beta - nightly matrix: allow_failures: - rust: stable - rust: beta
language: rust rust: - beta - nightly matrix: allow_failures: - rust: beta
Stop running tests on stable
Stop running tests on stable Useless without pass on beta; currently using nightly features.
YAML
mit
OJFord/tapioca
a8cd8527b9b908e216904f1ee1f7a6ff39375f66
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 script: - bundle exec jekyll build - bundle exec htmlproof ./_site env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer cache: bundler
language: ruby rvm: - 2.0.0 script: - bundle exec jekyll build - bundle exec htmlproof ./_site --url-ignore /linkedin\.com/ env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer cache: bundler
Update htmlproof check to ignore LinkedIn URLs since they return a response code of 999
Update htmlproof check to ignore LinkedIn URLs since they return a response code of 999
YAML
mit
esquireofoz/esquireofoz.github.io,esquireofoz/esquireofoz.github.io
a01cfd0f9593052e89288045a3c3133d3ab2bcfb
.travis.yml
.travis.yml
go_import_path: github.com/cloudflare/unsee jobs: include: - stage: Lint docs language: node_js node_js: "8" cache: directories: - node_modules # install defaults to "npm install", which is done via make install: [] script: make lint-docs - stage: Test Go code language: go go: "1.9.2" before_script: - make mock-assets cache: directories: - vendor script: make test-go - stage: Test JavaScript code language: node_js node_js: "8" env: - NODE_ENV=test cache: directories: - node_modules # install defaults to "npm install", which is done via make install: [] script: make test-js - stage: Lint Go code language: go go: "1.9.2" script: make lint-go - stage: Lint JavaScript code language: node_js node_js: "8" cache: directories: - node_modules # install defaults to "npm install", which is done via make install: [] script: make lint-js - stage: Build Docker image sudo: true addons: apt: packages: - docker-ce script: make docker-image
go_import_path: github.com/cloudflare/unsee defaults_go: &DEFAULTS_GO language: go go: "1.9.2" cache: directories: - vendor defaults_js: &DEFAULTS_JS language: node_js node_js: "8" # install defaults to "npm install", which is done via make install: [] cache: directories: - node_modules jobs: include: - stage: Lint docs <<: *DEFAULTS_JS script: make lint-docs - stage: Test Go code <<: *DEFAULTS_GO before_script: - make mock-assets script: make test-go - stage: Test JavaScript code <<: *DEFAULTS_JS env: - NODE_ENV=test script: make test-js - stage: Lint Go code <<: *DEFAULTS_GO script: make lint-go - stage: Lint JavaScript code <<: *DEFAULTS_JS script: make lint-js - stage: Build Docker image sudo: true addons: apt: packages: - docker-ce script: make docker-image
Use YAML anchors to deduplicate common stage variables
Use YAML anchors to deduplicate common stage variables
YAML
apache-2.0
cloudflare/unsee,cloudflare/unsee,cloudflare/unsee,cloudflare/unsee,cloudflare/unsee
9e8626014ea210a1cd978f9ad9a4f05e65e812b6
.travis.yml
.travis.yml
after_script: - NODE_ENV=test - istanbul cover ./node_modules/mocha/bin/_mocha - cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js - rm -rf ./coverage language: node_js node_js: - stable sudo: false
after_script: - NODE_ENV=test - istanbul cover ./node_modules/mocha/bin/_mocha - cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js - rm -rf ./coverage language: node_js node_js: - stable - 4.2.2 sudo: false
Add LTS test scenario for Travis
Add LTS test scenario for Travis
YAML
apache-2.0
CmStar283/wres,CmStar283/wres
8f024bb06f3bc7a6d01561b93978a2d84b61b627
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "pypy" - "pypy3" env: - REQUIREMENTS=lowest - REQUIREMENTS=release matrix: exclude: - python: "3.2" env: REQUIREMENTS=lowest - python: "3.3" env: REQUIREMENTS=lowest - python: "3.4" env: REQUIREMENTS=lowest - python: "pypy3" env: REQUIREMENTS=lowest include: - python: "2.7" env: - JYTHON=true - REQUIREMENTS=lowest - python: "2.7" env: - JYTHON=true - REQUIREMENTS=release before_install: # Setting up Jython - chmod +x ./.scripts/jython_env.sh - ./.scripts/jython_env.sh install: - pip install tox script: - echo "Python interpreter: " $PYTHON_EXE - tox -e $(echo py$TRAVIS_PYTHON_VERSION | tr -d . | sed -e 's/pypypy/pypy/')-$REQUIREMENTS
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "pypy" - "pypy3" env: - REQUIREMENTS=lowest - REQUIREMENTS=release matrix: exclude: - python: "3.2" env: REQUIREMENTS=lowest - python: "3.3" env: REQUIREMENTS=lowest - python: "3.4" env: REQUIREMENTS=lowest - python: "pypy3" env: REQUIREMENTS=lowest include: - python: "2.7" env: - JYTHON=true - REQUIREMENTS=lowest - python: "2.7" env: - JYTHON=true - REQUIREMENTS=release before_install: # Setting up Jython - chmod +x ./.scripts/jython_env.sh - ./.scripts/jython_env.sh install: - pip install tox script: - echo 'Python interpreter is ' $PYTHON_EXE - tox -e $(echo py$TRAVIS_PYTHON_VERSION | tr -d . | sed -e 's/pypypy/pypy/')-$REQUIREMENTS
Fix on the config file.
Fix on the config file.
YAML
mit
weso/CWR-DataApi
57b1f2aa1146bb24d0bf075e9b04e85ce60ca812
.travis.yml
.travis.yml
language: python python: - 2.7 branches: only: - master install: - pip install -r requirements.txt - pip install -r requirements-test.txt script: - py.test after_success: - pip install python-coveralls - coveralls
language: python python: - 2.7 branches: only: - master install: - pip install -r requirements.txt - pip install -r requirements-test.txt - export PYTHONPATH=$PYTHONPATH:. script: - py.test after_success: - pip install python-coveralls - coveralls
Add current dir to PYTHONPATH
Add current dir to PYTHONPATH
YAML
mit
eliangcs/pystock-crawler,hsd315/pystock-crawler
1cb90b87f4f63ceea859ff90b0072db180f52a70
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 2.1 - 2.2 - 2.3.0 - 2.4.0 - jruby-9.0.5.0 notifications: email: on_success: never sudo: false env: global: # If changing this number, please also change it in `test/test_helper.rb`. - STRIPE_MOCK_VERSION=0.16.0 cache: directories: - stripe-mock before_install: # Unpack and start stripe-mock so that the test suite can talk to it - | if [ ! -d "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}" ]; then mkdir -p stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}/ curl -L "https://github.com/stripe/stripe-mock/releases/download/v${STRIPE_MOCK_VERSION}/stripe-mock_${STRIPE_MOCK_VERSION}_linux_amd64.tar.gz" -o "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}_linux_amd64.tar.gz" tar -zxf "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}_linux_amd64.tar.gz" -C "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}/" fi - | stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}/stripe-mock > /dev/null & STRIPE_MOCK_PID=$! script: - bundle exec rake
language: ruby rvm: - 2.0 - 2.1 - 2.2 - 2.3 - 2.4 - 2.5 - jruby-9.0.5.0 notifications: email: on_success: never sudo: false env: global: # If changing this number, please also change it in `test/test_helper.rb`. - STRIPE_MOCK_VERSION=0.16.0 cache: directories: - stripe-mock before_install: # Unpack and start stripe-mock so that the test suite can talk to it - | if [ ! -d "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}" ]; then mkdir -p stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}/ curl -L "https://github.com/stripe/stripe-mock/releases/download/v${STRIPE_MOCK_VERSION}/stripe-mock_${STRIPE_MOCK_VERSION}_linux_amd64.tar.gz" -o "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}_linux_amd64.tar.gz" tar -zxf "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}_linux_amd64.tar.gz" -C "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}/" fi - | stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}/stripe-mock > /dev/null & STRIPE_MOCK_PID=$! script: - bundle exec rake
Add Ruby 2.5 to test matrix + use aliases
Add Ruby 2.5 to test matrix + use aliases Adds Ruby 2.5 to the test matrix. I also switched us over to aliases of each major Ruby version because I think it makes more sense to be locked to whatever the latest release in each is.
YAML
mit
stripe/stripe-ruby
fe835b46ef79a805e316c273d57bd31678957085
.travis.yml
.travis.yml
language: node_js node_js: - '8' - '10' - '11' - '12' script: node run_tests.js notifications: email: false irc: - irc.freenode.org#statsd deploy: provider: npm email: [email protected] api_key: secure: deHm/dx0AJoSpkgbi+480BbC8Qxsv5vf4TPfMqM8uGYicj6qMJBjG7AZtCUIcJ0mSEoc9Zf79jOJCeWC53CWziQX+D+AXDC/8RGlqtx1h1zgpM6m1NonceqUt9wN/tVG1eNa/22WrerMA3F2rxo5QtY3rMxGMlJjCYOwyFR++eM= on: tags: true repo: statsd/statsd
language: node_js node_js: - '10' - '12' - '14' script: node run_tests.js notifications: email: false irc: - irc.freenode.org#statsd deploy: provider: npm email: [email protected] api_key: secure: deHm/dx0AJoSpkgbi+480BbC8Qxsv5vf4TPfMqM8uGYicj6qMJBjG7AZtCUIcJ0mSEoc9Zf79jOJCeWC53CWziQX+D+AXDC/8RGlqtx1h1zgpM6m1NonceqUt9wN/tVG1eNa/22WrerMA3F2rxo5QtY3rMxGMlJjCYOwyFR++eM= on: tags: true repo: statsd/statsd
Update CI to use current node lts versions
Update CI to use current node lts versions
YAML
mit
etsy/statsd,etsy/statsd,etsy/statsd
ebdc053ac500f16c73c60f124c279055c996a466
.travis.yml
.travis.yml
language: go go: - 1.9.1 - 1.8.4 sudo: false script: - go vet ./... - go test ./...
language: go go: - 1.9.2 - 1.8.5 sudo: false script: - go vet ./... - go test ./...
Build against 1.9.2 and 1.8.5
Build against 1.9.2 and 1.8.5
YAML
mit
TV4/graceful
094039dbc84cc46d76934a786b7594a95b89e14e
.travis.yml
.travis.yml
language: php php: - 5.3 env: - DB=MYSQL CORE_RELEASE=3.0 matrix: include: - php: 5.3 env: DB=PGSQL CORE_RELEASE=3.0 - php: 5.3 env: DB=SQLITE CORE_RELEASE=3.0 - php: 5.4 env: DB=MYSQL CORE_RELEASE=3.0 - php: 5.5 env: DB=MYSQL CORE_RELEASE=3.0 allow_failures: - php: 5.5 env: DB=MYSQL CORE_RELEASE=3.0 before_script: - git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support - php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss - cd ~/builds/ss script: - phpunit cms/tests/ branches: except: - 2.1 - 2.2 - 2.3 - 2.4 - post-2.4 - translation-staging notifications: irc: channels: - "irc.freenode.org#silverstripe"
language: php php: - 5.3 env: - DB=MYSQL CORE_RELEASE=3.0 matrix: include: - php: 5.3 env: DB=PGSQL CORE_RELEASE=3.0 - php: 5.3 env: DB=SQLITE CORE_RELEASE=3.0 - php: 5.4 env: DB=MYSQL CORE_RELEASE=3.0 - php: 5.5 env: DB=MYSQL CORE_RELEASE=3.0 before_script: - git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support - php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss - cd ~/builds/ss script: - phpunit cms/tests/ branches: except: - 2.1 - 2.2 - 2.3 - 2.4 - post-2.4 - translation-staging notifications: irc: channels: - "irc.freenode.org#silverstripe"
Remove PHP 5.5 from allowed failures
Remove PHP 5.5 from allowed failures
YAML
bsd-3-clause
silverstripe/silverstripe-cms,silverstripe/silverstripe-cms,jonom/silverstripe-cms,silverstripe-labs/silverstripe-reports,silverstripe-labs/silverstripe-reports,dhensby/silverstripe-reports,helpfulrobot/i-lateral-silverstripe-siteconfig,silverstripe/silverstripe-siteconfig,jonom/silverstripe-cms,dhensby/silverstripe-cms,dhensby/silverstripe-reports,dhensby/silverstripe-cms,dhensby/silverstripe-cms
b490af2999d00852f03e7d441792d4aef588b529
.travis.yml
.travis.yml
language: go go: - 1.9 - "1.10" - master addons: apt: packages: - rpm - snapd env: - PATH=/snap/bin:$PATH install: - go get -d -v ./... - sudo snap install snapcraft --classic script: - go get golang.org/x/tools/cmd/cover - go get github.com/mattn/goveralls - go test -v -covermode=count -coverprofile=coverage.out - goveralls -coverprofile=coverage.out -service=travis-ci -repotoken=$COVERALLS_TOKEN deploy: provider: script skip_cleanup: true script: curl -sL https://git.io/goreleaser | bash on: tags: true condition: $TRAVIS_GO_VERSION = "1.10"
language: go go: - 1.9 - "1.10" - master addons: apt: packages: - rpm - snapd env: - PATH=/snap/bin:$PATH install: - go get -d -v ./... - sudo snap install snapcraft --classic script: - go get golang.org/x/tools/cmd/cover - go get github.com/mattn/goveralls - go test -v -covermode=count -coverprofile=coverage.out - goveralls -coverprofile=coverage.out -service=travis-ci -repotoken=$COVERALLS_TOKEN - rm -f coverage.out deploy: provider: script skip_cleanup: true script: curl -sL https://git.io/goreleaser | bash on: tags: true condition: $TRAVIS_GO_VERSION = "1.10"
Remove coverage.out at the end of the script
Remove coverage.out at the end of the script
YAML
agpl-3.0
ilyaglow/cortex-tgbot
af7d0e79c28d0d40fc0cdd2c8d0a2be5d252577f
.travis.yml
.travis.yml
sudo: false language: java jdk: - oraclejdk7 - oraclejdk8 env: matrix: - NEO_VERSION=2.0.5 - NEO_VERSION=2.1.8 - NEO_VERSION=2.2.10 EXTRA_PROFILES=-Pwith-neo4j-io - NEO_VERSION=2.3.5 EXTRA_PROFILES=-Pwith-neo4j-io install: true script: mvn clean test -Dneo4j.version=${NEO_VERSION} ${EXTRA_PROFILES} after_success: - "[ ${TRAVIS_PULL_REQUEST} = 'false' ] && [ ${TRAVIS_BRANCH} = 'master' ] && mvn clean deploy -DskipTests --settings ./deploy-settings.xml"
sudo: false language: java jdk: - oraclejdk7 - oraclejdk8 env: matrix: - NEO_VERSION=2.0.5 - NEO_VERSION=2.1.8 - NEO_VERSION=2.2.10 EXTRA_PROFILES=-Pwith-neo4j-io - NEO_VERSION=2.3.6 EXTRA_PROFILES=-Pwith-neo4j-io install: true script: mvn clean test -Dneo4j.version=${NEO_VERSION} ${EXTRA_PROFILES} after_success: - "[ ${TRAVIS_PULL_REQUEST} = 'false' ] && [ ${TRAVIS_BRANCH} = 'master' ] && mvn clean deploy -DskipTests --settings ./deploy-settings.xml"
Test against latest 2.3.x version
Test against latest 2.3.x version
YAML
apache-2.0
fbiville/neo4j-jdbc-2x
6e51c7354c9a461d0c61b36481af18f7e647cb2e
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" branches: only: - staging - master install: # for fontmake - git clone https://github.com/googlei18n/fontmake.git - cd fontmake - pip install -r requirements.txt - python setup.py install - cd .. # for fontdiff - wget https://github.com/googlei18n/fontdiff/releases/download/v0.1.1/fontdiff-linux.zip - unzip fontdiff-linux.zip - mv fontdiff-linux/fontdiff . - git clone https://github.com/googlei18n/nototools.git script: - bash ./build_travis.sh
sudo: false language: python python: - "2.7" branches: only: - staging - master install: # for fontmake - git clone https://github.com/googlei18n/fontmake.git - cd fontmake - pip install -r requirements.txt - python setup.py install - cd .. # for notodiff - git clone https://github.com/googlei18n/nototools.git - cd nototools - python setup.py install - cd .. # for fontdiff - wget https://github.com/googlei18n/fontdiff/releases/download/v0.1.1/fontdiff-linux.zip - unzip fontdiff-linux.zip - mv fontdiff-linux/fontdiff . script: - bash ./build_travis.sh
Install notodiff as part of setup
[ci] Install notodiff as part of setup
YAML
apache-2.0
googlefonts/noto-source,googlefonts/noto-source,googlei18n/noto-source,googlei18n/noto-source,googlefonts/noto-source,googlei18n/noto-source
5729d4113cfa5dc7c2dae931e76678010b1ecf51
.travis.yml
.travis.yml
language: c script: make && make check sudo: required dist: trusty compiler: - clang - gcc before_install: - sudo apt-get -qq update - sudo apt-get install -y libyajl-dev libyaml-dev
language: c script: make && make check sudo: required dist: trusty compiler: - clang - gcc addons: apt: packages: - libyajl-dev - libyaml-dev
Use apt addon for Travis
Use apt addon for Travis
YAML
bsd-2-clause
sjmulder/json-yaml
d561c8aa9f713a610bcb2a06fc3cd9747430301b
.travis.yml
.travis.yml
sudo: false language: go go: - 1.2 - 1.3 - 1.4 - 1.5 - 1.6 - tip before_install: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi script: - cd $TRAVIS_BUILD_DIR/dnsimple - "$HOME/gopath/bin/goveralls -v -service=travis-ci" matrix: allow_failures: - go: tip notifications: slack: secure: Dtb0Bf3AlAxeycfJuli46P8kG4B1at89vtMKbLKKGMwgimAWAKayNjJyuM+CaXtSiqeXOZqypKo9ScAjitQk/UTiE/NkScEZgT9wY+E0Cr+OZKBbIOLfKmFBi6+sjJUdJlVpA8aLqINOoeRH0sc6P5NE+g4StXl0C/M4PLBBfkI=
sudo: false language: go go: - 1.2 - 1.3 - 1.4 - 1.5 - 1.6 - tip # before_install: # - go get github.com/axw/gocov/gocov # - go get github.com/mattn/goveralls # - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi # script: # - cd $TRAVIS_BUILD_DIR/dnsimple # - "$HOME/gopath/bin/goveralls -v -service=travis-ci" matrix: allow_failures: - go: tip notifications: slack: secure: Dtb0Bf3AlAxeycfJuli46P8kG4B1at89vtMKbLKKGMwgimAWAKayNjJyuM+CaXtSiqeXOZqypKo9ScAjitQk/UTiE/NkScEZgT9wY+E0Cr+OZKBbIOLfKmFBi6+sjJUdJlVpA8aLqINOoeRH0sc6P5NE+g4StXl0C/M4PLBBfkI=
Disable Coverall as it randomly fails
Disable Coverall as it randomly fails I'll probably kill it once for all.
YAML
mit
aetrion/dnsimple-go,weppos/go-dnsimple
171b5aedc65a40f03ffac1af3a51300199a02ac3
.travis.yml
.travis.yml
language: c++ sudo: required compiler: - gcc before_install: - sudo apt-get install software-properties-common - sudo add-apt-repository ppa:george-edison55/cmake-3.x - sudo apt-get update - sudo apt-get upgrade - sudo apt-get install libboost-all-dev script: - mkdir build && cd build && cmake .. && make
language: c++ sudo: required compiler: - gcc before_install: - sudo apt-get install -y software-properties-common - sudo add-apt-repository ppa:george-edison55/cmake-3.x -y - sudo apt-get -qq update - sudo apt-get -y upgrade - sudo apt-get -y install libboost-all-dev script: - mkdir build && cd build && cmake .. && make
Fix install options for cmake
Fix install options for cmake
YAML
mit
dopsi/mdl
e5ca7deba84dc0268e9d14180169e07e7b36702f
.travis.yml
.travis.yml
script: make -f makefile.unix -j 3 install: - cd src language: cpp before_install: - sudo apt-get install build-essential libboost-all-dev libcurl4-openssl-dev libdb5.1-dev libdb5.1++-dev libssl-dev libminiupnpc-dev -y
language: cpp before_install: - sudo apt-get install build-essential libboost-all-dev libcurl4-openssl-dev libdb5.1-dev libdb5.1++-dev libssl-dev libminiupnpc-dev -y install: - cd src script: - make -f makefile.unix -j 3 - make check notifications: irc: channels: - "chat.freenode.net#cryptopools" template: - "%{repository}/%{branch} (%{commit} - %{author}): %{message}"
Update Travis to include Auto Testing
Update Travis to include Auto Testing
YAML
mit
CryptoRepairCrew/Android-Token-V2,Crypto2/AndroidsTokens_v2,Crypto2/AndroidsTokens_v2,Crypto2/AndroidsTokens_v2,CryptoRepairCrew/Android-Token-V2,CryptoRepairCrew/Android-Token-V2,CryptoRepairCrew/Android-Token-V2,Crypto2/AndroidsTokens_v2,CryptoRepairCrew/Android-Token-V2
add4c70d86676b33db254f2f7e92b5bd668bcc28
.travis.yml
.travis.yml
language: python dist: xenial os: linux cache: pip python: - "3.5" - "3.6" - "3.7" - "3.8" notifications: email: [email protected] # command to install dependencies install: - "pip install --upgrade pip setuptools wheel" - "pip install --only-binary=numpy,scipy numpy scipy" - "pip install matplotlib ipython jupyter sympy pytest" - "pip install -r requirements.txt" <<<<<<< HEAD - "pip install ." # command to run unittests via pytest script: - pytest tests/ ======= # command to run unittests script: pytest tests >>>>>>> e4766d7... Add pytest to .travis.yml.
language: python dist: xenial os: linux cache: pip python: - "3.5" - "3.6" - "3.7" - "3.8" notifications: email: [email protected] # command to install dependencies install: - "pip install --upgrade pip setuptools wheel" - "pip install --only-binary=numpy,scipy numpy scipy" - "pip install matplotlib ipython jupyter sympy pytest" - "pip install -r requirements.txt" - "pip install ." # command to run unittests via pytest script: - pytest tests/
Add pip installation of package for pytest.
Add pip installation of package for pytest.
YAML
mit
datasnakes/Datasnakes-Scripts,datasnakes/Datasnakes-Scripts,datasnakes/Datasnakes-Scripts,datasnakes/Datasnakes-Scripts,datasnakes/Datasnakes-Scripts,datasnakes/Datasnakes-Scripts
b9e649ed4f3ba6c1f73b4875c5557b08d0b2d616
.travis.yml
.travis.yml
language: java sudo: false addons: sonarqube: organization: "wojciechzankowski-github" jdk: - oraclejdk8 script: - mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent package sonar:sonar after_success: - bash <(curl -s https://codecov.io/bash)
language: java sudo: false addons: sonarqube: organization: "wojciechzankowski-github" jdk: - oraclejdk8 - openjdk11 script: - mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent package sonar:sonar after_success: - bash <(curl -s https://codecov.io/bash)
Prepare to 2.2.4 version release
Prepare to 2.2.4 version release
YAML
apache-2.0
WojciechZankowski/iextrading4j
22da11ecb67ec61c1149f99ee6caceb57f270fe2
.travis.yml
.travis.yml
dist: trusty language: rust rust: - stable - beta - nightly env: - OPTS= - OPTS=--features=double_precision matrix: allow_failures: - rust: nightly script: - cargo build --verbose ${OPTS} - cargo test --verbose
dist: trusty language: rust rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly script: - cargo build --verbose - cargo test --verbose
Remove the feature for double precision
:green_heart: Remove the feature for double precision
YAML
mit
0ncorhynchus/xyzio
de00f103f29d4c850abba033a186cae964e4eef2
.travis.yml
.travis.yml
sudo: false language: python notifications: email: false env: global: python: - 2.7 - 2.6 install: - rm applymoban.py - pip install -r requirements.txt - pip install -r tests/requirements.txt script: make test after_success: codecov
sudo: false language: python notifications: email: false env: global: python: - 3.5 - 3.4 - 3.3 - 2.7 - 2.6 install: - rm applymoban.py - pip install -r requirements.txt - pip install -r tests/requirements.txt script: make test after_success: codecov
Add Python 3.3-3.5 to Travis matrix
Add Python 3.3-3.5 to Travis matrix
YAML
bsd-3-clause
pyexcel/pyexcel-text,pyexcel/pyexcel-text
26a49ca9d70a80079d2ceef3d53593ee4823a42c
.travis.yml
.travis.yml
rvm: 2.2 sudo: required # install the pre-release chef-dk. Use chef-stable-precise to install the stable release addons: apt: sources: - chef-current-precise packages: - chefdk services: docker env: matrix: - INSTANCE=default-ubuntu-1204 - INSTANCE=default-ubuntu-1404 - INSTANCE=default-centos-6 - INSTANCE=default-centos-7 # Don't `bundle install` install: echo "skip bundle install" # Ensure we make ChefDK's Ruby the default before_script: # https://github.com/zuazo/kitchen-in-travis-native/issues/1#issuecomment-142230889 - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(/opt/chefdk/bin/chef shell-init bash)" - /opt/chefdk/embedded/bin/chef gem install kitchen-docker script: - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/rubocop --version - /opt/chefdk/embedded/bin/rubocop - /opt/chefdk/embedded/bin/foodcritic --version - /opt/chefdk/embedded/bin/foodcritic . --exclude spec - /opt/chefdk/embedded/bin/rspec - KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
sudo: required # install the pre-release chef-dk. Use chef-stable-precise to install the stable release addons: apt: sources: - chef-current-precise packages: - chefdk services: docker env: matrix: - INSTANCE=default-ubuntu-1204 - INSTANCE=default-ubuntu-1404 - INSTANCE=default-centos-6 - INSTANCE=default-centos-7 # Don't `bundle install` install: echo "skip bundle install" # Ensure we make ChefDK's Ruby the default before_script: # https://github.com/zuazo/kitchen-in-travis-native/issues/1#issuecomment-142230889 - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(/opt/chefdk/bin/chef shell-init bash)" - /opt/chefdk/embedded/bin/chef gem install kitchen-docker script: - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/rubocop --version - /opt/chefdk/embedded/bin/rubocop - /opt/chefdk/embedded/bin/foodcritic --version - /opt/chefdk/embedded/bin/foodcritic . --exclude spec - /opt/chefdk/embedded/bin/rspec - KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
Remove RVM from Travis since we use Ruby in ChefDK
Remove RVM from Travis since we use Ruby in ChefDK
YAML
apache-2.0
chef-cookbooks/apt-chef
f8b7c1da92e185759baa070813ca7b6ac446aaec
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm env: - COMPOSER_VERSION='' matrix: include: - php: 5.6 env: COMPOSER_VERSION='--version=1.0.0-alpha10' allow_failures: - php: hhvm before_script: - mkdir -p ./build/logs - curl -sS https://getcomposer.org/installer | php -- --install-dir=./build --filename=composer ${COMPOSER_VERSION} - ./build/composer install - ./build/composer require --dev --no-update phpunit/phpunit:@stable phpunit/php-code-coverage:@stable satooshi/php-coveralls:@dev - ./build/composer update phpunit/php-code-coverage satooshi/php-coveralls script: - ./vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml after_script: - 'echo ''src_dir: .'' >> ./.coveralls.yml' - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ./vendor/bin/coveralls -v; fi;' notifications: email: false
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm env: - COMPOSER_VERSION='~1.0@dev' matrix: include: - php: 5.6 env: COMPOSER_VERSION='v1.0.0-alpha10' allow_failures: - php: hhvm before_script: - composer self-update - composer install - composer require composer/composer:${COMPOSER_VERSION} - composer require --dev --no-update phpunit/phpunit:@stable phpunit/php-code-coverage:@stable satooshi/php-coveralls:@dev - composer update phpunit/php-code-coverage satooshi/php-coveralls - mkdir -p ./build/logs script: - ./vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml after_script: - 'echo ''src_dir: .'' >> ./.coveralls.yml' - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ./vendor/bin/coveralls -v; fi;' notifications: email: false
Fix Multi-Version Composer Testing TravisCI Support
Fix Multi-Version Composer Testing TravisCI Support
YAML
mit
fxpio/composer-asset-plugin
73a9cb868ed5ffe95bbe9013a44048440e27aa2f
.travis.yml
.travis.yml
before_install: - sudo apt-get -qq update - sudo apt-get -qq install tidy install: travis_retry bundle install --without=benchmark rvm: - 2.0.0 - 2.1 - 2.2 - ruby-head notifications: email: false
before_install: - sudo apt-get -qq update - sudo apt-get -qq install tidy install: travis_retry bundle install --without=benchmark rvm: - 2.0.0 - 2.1.10 - 2.2.6 - ruby-head notifications: email: false
Use latest patch versions of Ruby on Travis CI
Use latest patch versions of Ruby on Travis CI
YAML
mit
increments/greenmat,increments/greenmat,increments/greenmat,increments/greenmat
9be1946a7be17ac4c880b3580ef9b2dd5ce65597
config/kubernetes-sigs/sig-multicluster/teams.yaml
config/kubernetes-sigs/sig-multicluster/teams.yaml
teams: kubefed-admins: description: admin access for the kubefed repo maintainers: - spiffxp members: - font - irfanurrehman - jimmidyson - pmorie - shashidharatd privacy: closed previously: - federation-v2-admins kubefed-maintainers: description: write access to the kubefed repo members: - font - irfanurrehman - jimmidyson - shashidharatd privacy: closed previously: - federation-v2-maintainers federation-wg: description: Individuals who are part of sig-multicluster and working as federation workgroup. members: - font - gyliu513 - irfanurrehman - jimmidyson - onyiny-ang - pmorie - quinton-hoole - shashidharatd privacy: closed
teams: kubefed-admins: description: admin access for the kubefed repo maintainers: - spiffxp members: - font - irfanurrehman - jimmidyson - pmorie - shashidharatd privacy: closed previously: - federation-v2-admins kubefed-maintainers: description: write access to the kubefed repo members: - font - hectorj2f - irfanurrehman - jimmidyson - shashidharatd privacy: closed previously: - federation-v2-maintainers federation-wg: description: Individuals who are part of sig-multicluster and working as federation workgroup. members: - font - gyliu513 - hectorj2f - irfanurrehman - jimmidyson - onyiny-ang - pmorie - quinton-hoole - shashidharatd privacy: closed
Add hectorj2f to kubefed maintainers
Add hectorj2f to kubefed maintainers
YAML
apache-2.0
kubernetes/org,kubernetes/org,kubernetes/org
46b50c042218440f7ce69308ad3fc6b08ec629dd
.travis.yml
.travis.yml
language: scala scala: - 2.10.3 jdk: - oraclejdk7 - openjdk7
language: scala scala: - 2.10.3 jdk: - oraclejdk7 - openjdk7 before_install: - sudo apt-get update -qq - sudo apt-get install -qq libatlas3-base libopenblas-base
Install packages necessary for netlib.
Install packages necessary for netlib.
YAML
apache-2.0
calippo/breeze,wstcpyt/breeze,chen0031/breeze,cilier/breeze,claydonkey/breeze,ktakagaki/breeze,ContentSquare/breeze,scalanlp/breeze,crealytics/breeze,eponvert/breeze,mredaelli/breeze,sheide/breeze,ktakagaki/breeze,nikdon/breeze
500be7820171d064271039efc23067e969f6b17f
.travis.yml
.travis.yml
language: python sudo: false git: submodules: false matrix: include: - os: linux python: 2.7 - os: linux python: 3.3 - os: linux python: 3.4 - os: linux python: 3.5 - os: linux python: 3.6 - os: osx language: generic env: PYTHON_VERSION=3 before_install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3; fi install: - pip$PYTHON_VERSION install --upgrade -e.[test] script: - python$PYTHON_VERSION setup.py test
language: python sudo: false git: submodules: false matrix: include: - os: linux python: 2.7 - os: linux python: 3.3 - os: linux python: 3.4 - os: linux python: 3.5 - os: linux python: 3.6 - os: osx language: generic env: PYTHON_VERSION=3 before_install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew upgrade python; fi install: - pip$PYTHON_VERSION install --upgrade -e.[test] script: - python$PYTHON_VERSION setup.py test
Fix Python 3 installation on Travis for macOS
Fix Python 3 installation on Travis for macOS
YAML
bsd-3-clause
SimonSapin/cssselect2,SimonSapin/cssselect2,SimonSapin/cssselect2
ba62db36ded6a8c79c8ceac639d52d002349325d
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.0 - 2.1.5 - 2.1.0 - 1.9.3 addons: postgresql: '9.3' cache: bundler notifications: hipchat: rooms: - 5bc7785d2feb4f25901124279daede@API template: - '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message} (<a href="%{build_url}">Details</a> | <a href="%{compare_url}">Change view</a>)' format: html script: bundle exec rake
language: ruby rvm: - 2.2.0 - 2.1.5 - 2.1.0 - 1.9.3 addons: postgresql: '9.3' sudo: false cache: bundler notifications: hipchat: rooms: - 5bc7785d2feb4f25901124279daede@API template: - '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message} (<a href="%{build_url}">Details</a> | <a href="%{compare_url}">Change view</a>)' format: html script: bundle exec rake
Set sudo: false so Travis can use their new container-based infrastructure
Set sudo: false so Travis can use their new container-based infrastructure http://docs.travis-ci.com/user/workers/container-based-infrastructure/
YAML
mit
fdr/pliny,fdr/pliny,hayduke19us/pliny,interagent/pliny,hayduke19us/pliny,hayduke19us/pliny,fdr/pliny,interagent/pliny,interagent/pliny
c4f9c15777ee28d7a04b2d0f8093d1e8d292cc3e
.travis.yml
.travis.yml
sudo: false language: python dist: xenial python: - 2.7 - 3.6 - 3.7 - 3.8 matrix: include: - dist: trusty python: 2.6 addons: apt: packages: - scons cache: pip: true install: - export PYTHONPATH=$(echo $(dirname $(which python))/../lib/python*/site-packages) - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install coverage matplotlib==1.5.3 flask; else pip install coverage matplotlib flask; fi - git clone --depth=5 https://github.com/salilab/saliweb - (cd saliweb && scons modeller_key=UNKNOWN pythondir=$PYTHONPATH perldir=~/perl5/lib/perl5 prefix=~/usr webdir=~/www install && touch $PYTHONPATH/saliweb/frontend/config.py) script: - scons coverage=true python=$(which python) test after_success: - bash <(curl -s https://codecov.io/bash) - cover -report codecov
sudo: false language: python dist: xenial python: - 3.6 - 3.7 - 3.8 addons: apt: packages: - scons cache: pip: true install: - export PYTHONPATH=$(echo $(dirname $(which python))/../lib/python*/site-packages) - pip install coverage matplotlib flask - git clone --depth=5 https://github.com/salilab/saliweb - (cd saliweb && scons modeller_key=UNKNOWN pythondir=$PYTHONPATH perldir=~/perl5/lib/perl5 prefix=~/usr webdir=~/www install && touch $PYTHONPATH/saliweb/frontend/config.py) script: - scons coverage=true python=$(which python) test after_success: - bash <(curl -s https://codecov.io/bash) - cover -report codecov
Drop tests on Python 2
Drop tests on Python 2
YAML
lgpl-2.1
salilab/evaluation,salilab/evaluation
a47c9324486a892aa9da6aebd33a1403d2e7b686
.travis.yml
.travis.yml
language: "python" python: - "3.4" install: pip install flake8 pytest pytest-cov before_script: flake8 rsr/ script: - echo $PYTHONPATH - export PYTHONPATH=`pwd`:$PYTHONPATH - py.test --cov=rsr --cov-report=term
language: "python" python: - "3.4" install: pip install flake8 pytest pytest-cov sqlparse before_script: flake8 rsr/ script: - export PYTHONPATH=`pwd`:$PYTHONPATH - py.test --cov=rsr --cov-report=term
Add sqlparse to Travis configuration.
Add sqlparse to Travis configuration.
YAML
mit
andialbrecht/runsqlrun
1e5dfea1b519823a292e803139be38c45e83ece5
.travis.yml
.travis.yml
sudo: required dist: trusty language: node_js node_js: - "8" - "9" - "10" - "11" - "12" notifications: email: - [email protected] - [email protected]
sudo: required dist: trusty language: node_js node_js: - "8" - "9" - "10" - "11" - "12" notifications: email: - [email protected] - [email protected]
Remove Marcello's old Aconex email address from the TravisCI and add mine
Remove Marcello's old Aconex email address from the TravisCI and add mine
YAML
mit
Aconex/drakov,Aconex/drakov
f51eaeed13842d90cc8f0422a597b0ac6a6f8418
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" env: - DJANGO="Django>=1.4,<1.5" - DJANGO="Django>=1.5,<1.6" - DJANGO="Django>=1.6,<1.7" matrix: exclude: - python: "3.3" env: DJANGO="Django>=1.4,<1.5" - python: "3.4" env: DJANGO="Django>=1.4,<1.5" before_install: - PWD=`pwd` - "echo '## Installing dependencies'" - "sudo apt-get update" - "sudo apt-get install -y openssl build-essential xorg libssl-dev" - "echo '## Downloading wkhtmltopdf 0.12.1'" - "wget http://downloads.sourceforge.net/project/wkhtmltopdf/0.12.1/wkhtmltox-0.12.1.tar.bz2" - "mkdir -p $PWD" - "echo '## Extracting wkhtmltox into $PWD'" - "tar xvjf wkhtmltox-0.12.1.tar.bz2 -C $PWD" - "export WKHTMLTOPDF_CMD=$PWD/wkhtmltox/bin/wkhtmltopdf" install: - pip install $DJANGO - pip install -r test_requirements.txt - pip install . script: - make test notifications: email: false
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" env: - DJANGO="Django>=1.4,<1.5" - DJANGO="Django>=1.5,<1.6" - DJANGO="Django>=1.6,<1.7" matrix: exclude: - python: "3.3" env: DJANGO="Django>=1.4,<1.5" - python: "3.4" env: DJANGO="Django>=1.4,<1.5" before_install: - PWD=`pwd` - WHICH_WK=`which wkhtmltopdf` - "echo '## Installing dependencies'" - "sudo apt-get update" - "sudo apt-get install -y openssl build-essential xorg libssl-dev" - "echo '## Downloading wkhtmltopdf 0.12.1'" - "wget http://freefr.dl.sourceforge.net/project/wkhtmltopdf/0.12.1/wkhtmltox-0.12.1_linux-precise-amd64.deb" - "echo '## Installing wkhtmltox'" - "dpkg -i wkhtmltox-0.12.1_linux-precise-amd64.deb" - "export WKHTMLTOPDF_CMD=$WHICH_WK" install: - pip install $DJANGO - pip install -r test_requirements.txt - pip install . script: - make test notifications: email: false
Use precompiled library not source one
Use precompiled library not source one
YAML
bsd-2-clause
halfnibble/django-wkhtmltopdf,denisbalyko/django-wkhtmltopdf,incuna/django-wkhtmltopdf,unrealsolver/django-wkhtmltopdf,denisbalyko/django-wkhtmltopdf,powderflask/django-wkhtmltopdf,fankcoder/django-wkhtmltopdf,incuna/django-wkhtmltopdf,tclancy/django-wkhtmltopdf,fankcoder/django-wkhtmltopdf,powderflask/django-wkhtmltopdf,tclancy/django-wkhtmltopdf,halfnibble/django-wkhtmltopdf,unrealsolver/django-wkhtmltopdf
98b2e3a588a70ef8457f05d2ba22483a442f2146
.travis.yml
.travis.yml
language: rust sudo: false script: - cargo build --verbose - cargo test --verbose - cargo doc after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && echo '<meta http-equiv=refresh content=0;url=/rustc-serialize/rustc_serialize/index.html>' > target/doc/index.html && pip install ghp-import --user $USER && $HOME/.local/bin/ghp-import -n target/doc && git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages env: global: secure: f0CwX+CnvRbEqK3H6zhBQe4u0t14OQvyd6nUhq/oXkJ6LdtrSx+qQtLSmAU7L8p1IXyP8csxv37bTdEB7/U1c6bJcN2OXHrw9nD0NDvZEs1zSZvFQBm+YBwV7EaposPHCeqee3X9b00g7+bObywMYtEkk7yD2NiOY9SjMRcjTLQ= notifications: email: on_success: never
language: rust rust: - 1.0.0 - beta - nightly sudo: false script: - cargo build --verbose - cargo test --verbose - cargo doc after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && [ $TRAVIS_RUST_VERSION = nightly ] && echo '<meta http-equiv=refresh content=0;url=/rustc-serialize/rustc_serialize/index.html>' > target/doc/index.html && pip install ghp-import --user $USER && $HOME/.local/bin/ghp-import -n target/doc && git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages env: global: secure: f0CwX+CnvRbEqK3H6zhBQe4u0t14OQvyd6nUhq/oXkJ6LdtrSx+qQtLSmAU7L8p1IXyP8csxv37bTdEB7/U1c6bJcN2OXHrw9nD0NDvZEs1zSZvFQBm+YBwV7EaposPHCeqee3X9b00g7+bObywMYtEkk7yD2NiOY9SjMRcjTLQ= notifications: email: on_success: never
Test on rust 1.0.0, nightly, and beta
Test on rust 1.0.0, nightly, and beta
YAML
apache-2.0
shepmaster/rustc-serialize,gbersac/rustc-serialize,rust-lang-nursery/rustc-serialize,ajroetker/rustc-serialize,indefini/rustc-serialize,DenisKolodin/rustc-serialize,rust-lang/rustc-serialize,rust-lang-deprecated/rustc-serialize
a390c1829d1d270cba8d44db1ea4a1206485cbc9
.travis.yml
.travis.yml
language: cpp compiler: - clang before_install: - mkdir -p _build/test _build/src - sudo add-apt-repository -y ppa:george-edison55/cmake-3.x - wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|sudo apt-key add - - sudo sh -c 'echo "deb http://llvm.org/apt/unstable/ llvm-toolchain-3.7 main" >> /etc/apt/sources.list' - sudo sh -c 'sudo echo "deb-src http://llvm.org/apt/unstable/ llvm-toolchain-3.7 main" >> /etc/apt/sources.list' - sudo apt-get update install: - sudo apt-get install -y cmake clang-3.7 lldb-3.7 libc++-dev script: - clang++-3.7 -stdlib=libc++ -std=c++11 -Wall -Wextra -Wpedantic -Weverything -Wno-c++98-compat-pedantic -Wno-exit-time-destructors -Werror test/*.cpp -o _build/test/tests - clang++-3.7 -stdlib=libc++ -std=c++11 -Wall -Wextra -Wpedantic -Weverything -Wno-c++98-compat-pedantic -Wno-exit-time-destructors -Werror src/playground.cpp -o _build/test/playground
language: cpp compiler: - clang before_install: - mkdir -p _build/test _build/src - sudo add-apt-repository -y ppa:george-edison55/cmake-3.x - wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|sudo apt-key add - - sudo sh -c 'echo "deb http://llvm.org/apt/unstable/ llvm-toolchain-3.6 main" >> /etc/apt/sources.list' - sudo sh -c 'sudo echo "deb-src http://llvm.org/apt/unstable/ llvm-toolchain-3.6 main" >> /etc/apt/sources.list' - sudo apt-get update install: - sudo apt-get install -y cmake clang-3.6 lldb-3.6 libc++-dev script: - clang++-3.6 -stdlib=libc++ -std=c++11 -Wall -Wextra -Wpedantic -Weverything -Wno-c++98-compat-pedantic -Wno-exit-time-destructors -Werror test/*.cpp -o _build/test/tests - clang++-3.6 -stdlib=libc++ -std=c++11 -Wall -Wextra -Wpedantic -Weverything -Wno-c++98-compat-pedantic -Wno-exit-time-destructors -Werror src/playground.cpp -o _build/test/playground
Test Travis CI: Update build script
Test Travis CI: Update build script
YAML
mit
maddouri/hyper_array
a301e3d3429c0dabf7a57978fa0e5bc67a80e72c
packages/su/sublists.yaml
packages/su/sublists.yaml
homepage: https://hackage.haskell.org/package/sublists changelog-type: markdown hash: ecb51d1754d4f2f68b014e537e227253fa99e5f55994ec6de474269c2a39bb1a test-bench-deps: {} maintainer: [email protected] synopsis: Allows to split lists into sublists with some patterns by quantity. changelog: |+ # Revision history for sublists ## 0.1.0.0 -- 2021-03-03 * First version. Released on an unsuspecting world. ## 0.1.0.1 -- 2021-03-03 * First version revised A. Fixed issue with the incorrect statement in the documentation. basic-deps: base: '>=4.7 && <4.15' all-versions: - 0.1.0.1 author: OleksandrZhabenko latest: 0.1.0.1 description-type: haddock description: This patterns can be a list of numbers or obtained from the monadic function. Leads to somewhat cycling or regularized structures from the length perspective (this can be transformed into other variativity types). license-name: MIT
homepage: https://hackage.haskell.org/package/sublists changelog-type: markdown hash: af0455f04216ee245ca038d86ea1b9618eb267a288b26f22f1cf57c656879509 test-bench-deps: {} maintainer: [email protected] synopsis: Allows to split lists into sublists with some patterns by quantity. changelog: |+ # Revision history for sublists ## 0.1.0.0 -- 2021-03-03 * First version. Released on an unsuspecting world. ## 0.1.0.1 -- 2021-03-03 * First version revised A. Fixed issue with the incorrect statement in the documentation. ## 0.1.0.2 -- 2021-03-03 * First version revised B. Fixed issues with the documentation. basic-deps: base: '>=4.7 && <4.15' all-versions: - 0.1.0.1 - 0.1.0.2 author: OleksandrZhabenko latest: 0.1.0.2 description-type: haddock description: These patterns can be a list of numbers or obtained from the monadic function. Leads to somewhat cycling or regularized structures from the length perspective (these ones can be transformed into other variativity types). license-name: MIT
Update from Hackage at 2021-03-03T18:33:30Z
Update from Hackage at 2021-03-03T18:33:30Z
YAML
mit
commercialhaskell/all-cabal-metadata
4f90c0ecff052ca0a92373e12f5f2bd455fcc2a5
.travis.yml
.travis.yml
language: java jdk: - openjdk11 install: - mvn -N io.takari:maven:wrapper -Dmaven=3.3.9 - ./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V notifications: email: recipients: - [email protected] on_success: change on_failure: always
language: java jdk: - openjdk11 notifications: email: recipients: - [email protected] on_success: change on_failure: always
Remove deprecated Maven version workaround.
Remove deprecated Maven version workaround.
YAML
epl-1.0
Treehopper/EclipseAugments
7c4601da305a9b75274dab6f099a725fa3152272
.travis.yml
.travis.yml
language: ruby rvm: - ruby-1.9.3 - ruby-2.0.0 - ruby-2.1.4 - ruby-2.2-head - jruby - rbx-2.4.1 - rbx-2.5.2 before_install: gem install bundler -v 1.10.5
language: ruby rvm: - ruby-1.9.3 - ruby-2.0.0 - ruby-2.1.5 - ruby-2.2.1 - jruby - rbx-2.4.1 - rbx-2.5.2 before_install: gem install bundler -v 1.10.5
Update TravisCI version to latest
Update TravisCI version to latest
YAML
mit
zenkay/dandelionapi-ruby,zenkay/dandelionapi-ruby
2a7f77ec621868f6b3b4b76935440877a7b2dd28
.travis.yml
.travis.yml
# Configuration file to run tests on Travis-CI via GitHub notifications # See http://travis-ci.org/ language: python python: # No skiptest in 2.6 so ignore for now # - "2.6" - "2.7" install: - "pip install ." script: # Run the unit tests for bcftbx - "python setup.py test"
# Configuration file to run tests on Travis-CI via GitHub notifications # See http://travis-ci.org/ language: python python: # No skiptest in 2.6 so ignore for now # - "2.6" - "2.7" install: - "pip install ." script: # Run the unit tests for bcftbx - "python setup.py test" # Run the best_exons example - "cd microarray/examples/" - ./test_best_exons.sh
Add test script for best_exons.py to the Travis testing.
Add test script for best_exons.py to the Travis testing.
YAML
artistic-2.0
fw1121/genomics,fw1121/genomics,fw1121/genomics,fw1121/genomics,fw1121/genomics
f43326f2f6fc8d5cf2b370242f9683bf2a9a34b3
.travis.yml
.travis.yml
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 - pypy install: - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2 ordereddict; fi - python setup.py -q install script: - py.test tests
language: python python: - 3.6 - 2.7 - 3.5 - 3.4 - 3.3 - 3.2 - 2.6 - pypy install: - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2 ordereddict; fi - python setup.py -q install - pip install -U pytest script: - py.test tests
Build more important python versions first.
TRAVIS_CI: Build more important python versions first.
YAML
bsd-3-clause
jenisys/parse_type,jenisys/parse_type
d1c7a8256ab387559dbe6fd890330977b626717c
.travis.yml
.travis.yml
language: python python: 3.4 cache: pip script: python manage.py test sudo: false notifications: slack: djangogirls:f5ZWSNUTwKp1C8L8rr3PYjg7 cache: directories: - $HOME/virtualenv addons: postgresql: "9.3" services: - postgresql before_script: - psql -c 'create database djangogirls;' -U postgres
language: python python: 3.4 cache: pip script: python manage.py test sudo: false notifications: slack: djangogirls:f5ZWSNUTwKp1C8L8rr3PYjg7 cache: directories: - $HOME/virtualenv addons: postgresql: "9.3" services: - postgresql env: - COVERAGE=TRUE before_script: - psql -c 'create database djangogirls;' -U postgres
Set COVERAGE=TRUE for Travis build
Set COVERAGE=TRUE for Travis build
YAML
bsd-3-clause
DjangoGirls/djangogirls,DjangoGirls/djangogirls,patjouk/djangogirls,DjangoGirls/djangogirls,patjouk/djangogirls,patjouk/djangogirls,patjouk/djangogirls
59ab2b034fe3510ef22f7c4d0611e1a5585c6a8b
.travis.yml
.travis.yml
--- language: ruby dist: trusty before_install: - gem install bundler - export CXX="g++-4.8" addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - pandoc rvm: - 2.3.8 - 2.4.9 - 2.5.7 - 2.6.5 - ruby-head - rbx-3 - jruby-9.2.11.0 - jruby-head script: ./.travis.sh matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: rbx-3 notifications: slack: secure: 6E+GuZId5GcVLgiOKZnE9ZAnJTa+K2Fxqb0KfrECtskviylcPF1OmX36+y7xGUS0P0pGNyWQThe0zCBMpszno/KbvUdIs6jXbOImkFMuo65//4YcivK0rVaYh9uh2S1K3ycaDeUPDf0ulc/AwHnxWGR6yBD2N5idTwt1bsULdy0=
--- language: ruby dist: trusty before_install: - gem install bundler - export CXX="g++-4.8" addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - pandoc rvm: - 2.3.8 - 2.4.9 - 2.5.7 - 2.6.5 - 2.7.0 - ruby-head - rbx-3 - jruby-9.2.11.0 - jruby-head script: ./.travis.sh matrix: allow_failures: - rvm: 2.7.0 - rvm: ruby-head - rvm: jruby-head - rvm: rbx-3 notifications: slack: secure: 6E+GuZId5GcVLgiOKZnE9ZAnJTa+K2Fxqb0KfrECtskviylcPF1OmX36+y7xGUS0P0pGNyWQThe0zCBMpszno/KbvUdIs6jXbOImkFMuo65//4YcivK0rVaYh9uh2S1K3ycaDeUPDf0ulc/AwHnxWGR6yBD2N5idTwt1bsULdy0=
Add Ruby 2.7 to build matrix
Add Ruby 2.7 to build matrix
YAML
mit
jkowens/sinatra,ryanshaw/sinatra,sinatra/sinatra,sinatra/sinatra,jkowens/sinatra,ryanshaw/sinatra,jkowens/sinatra
c47692c5c283c5afd6245224dd686b6cd2f3c666
.travis.yml
.travis.yml
language: python sudo: false cache: pip python: - '3.6' env: matrix: - TOXENV=qa - DJANGO=111 - DJANGO=20 - DJANGO=master matrix: fast_finish: true allow_failures: - env: DJANGO=master install: - pip install --upgrade pip tox - pip install -U coveralls before_script: - | if [[ -z $TOXENV ]]; then export TOXENV=py$(echo $TRAVIS_PYTHON_VERSION | sed -e 's/\.//g')-dj$DJANGO fi - echo $TOXENV script: - tox -e $TOXENV after_success: - coveralls deploy: provider: pypi user: codingjoe password: secure: jJyadofJm7F1Qco+EDCyN/aMZaYSbfQ0GAE02Bx7I499MkjPYvv38X2btg+PjdW3rzGD0d/kq24lfWLkgKncyQ/YMgLQ7H/GuCCHHYbKUklxllaoFXActBjstmKOvXyWWC5oEb+YEJ4HTwgkvS6wkp69B7C1d4BAOqGs5IKnCSo= on: tags: true distributions: sdist bdist_wheel repo: KristianOellegaard/django-health-check branch: master
language: python sudo: false cache: pip python: - '3.6' env: matrix: - TOXENV=qa - DJANGO=111 - DJANGO=20 - DJANGO=master matrix: fast_finish: true allow_failures: - env: DJANGO=master install: - pip install --upgrade codecov tox before_script: - | if [[ -z $TOXENV ]]; then export TOXENV=py$(echo $TRAVIS_PYTHON_VERSION | sed -e 's/\.//g')-dj$DJANGO fi - echo $TOXENV script: - tox -e $TOXENV after_success: - codecov deploy: provider: pypi user: codingjoe password: secure: jJyadofJm7F1Qco+EDCyN/aMZaYSbfQ0GAE02Bx7I499MkjPYvv38X2btg+PjdW3rzGD0d/kq24lfWLkgKncyQ/YMgLQ7H/GuCCHHYbKUklxllaoFXActBjstmKOvXyWWC5oEb+YEJ4HTwgkvS6wkp69B7C1d4BAOqGs5IKnCSo= on: tags: true distributions: sdist bdist_wheel repo: KristianOellegaard/django-health-check branch: master
Switch to CodeCov for coverage tracking
Switch to CodeCov for coverage tracking
YAML
mit
KristianOellegaard/django-health-check,KristianOellegaard/django-health-check
0533003ff268228f62306f4dd3cc69eb7777693b
.travis.yml
.travis.yml
language: cpp sudo: required compiler: - clang - gcc env: global: - secure: "SnIBG/xLIHX3CSvUbqqsX8xTVqIqQ7fFS6HWO6KZQVBsT6yugTwYHbyhNiU531JejYJ/I3ZrDhXfYH3qFZiYxnH1sifvwV+fnTtMXpPN7qPZwIymkjcmm6gJF51e0C7VOfUbvKFv0ngwj+ul21rgZSMuoEvxPK0WxtE3/ZSfn9c=" - "APT_DEPENDENCIES=doxygen doxygen-latex libboost-all-dev libeigen3-dev liblapack-dev libblas-dev gfortran python-dev python-sphinx" - DEBSIGN_KEYID=5AE5CD75 notifications: email: - [email protected] branches: only: - master - debian - topic/travis matrix: allow_failures: - compiler: clang script: ./.travis/run ./travis_custom/custom_build after_success: ./travis/run after_success after_failure: ./.travis/run after_failure before_install: ./travis_custom/custom_before_install
language: cpp sudo: required compiler: - clang - gcc env: global: - secure: "SnIBG/xLIHX3CSvUbqqsX8xTVqIqQ7fFS6HWO6KZQVBsT6yugTwYHbyhNiU531JejYJ/I3ZrDhXfYH3qFZiYxnH1sifvwV+fnTtMXpPN7qPZwIymkjcmm6gJF51e0C7VOfUbvKFv0ngwj+ul21rgZSMuoEvxPK0WxtE3/ZSfn9c=" - "APT_DEPENDENCIES=doxygen doxygen-latex libboost-all-dev libeigen3-dev liblapack-dev libblas-dev gfortran python-dev python-sphinx" - DEBSIGN_KEYID=5AE5CD75 notifications: email: - [email protected] branches: only: - master - debian - topic/travis matrix: allow_failures: - compiler: clang script: ./.travis/run ../travis_custom/custom_build after_success: ./travis/run after_success after_failure: ./.travis/run after_failure before_install: ./travis_custom/custom_before_install
Correct indirect call to custom_build
[Travis] Correct indirect call to custom_build
YAML
bsd-2-clause
fvalenza/pinocchio,fvalenza/pinocchio,aelkhour/pinocchio,aelkhour/pinocchio,fvalenza/pinocchio,aelkhour/pinocchio,fvalenza/pinocchio,aelkhour/pinocchio
4a11bc91280af53ad4098f35338a0424af714d82
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" install: - pip install coveralls --use-mirrors script: py.test test_schedule.py --pep8 coveralls -v --cov coveralls --cov-report term-missing after_success: - coveralls
language: python python: - "2.7" - "3.3" install: - pip install pytest-cov --use-mirrors - pip install pytest-pep8 --use-mirrors - pip install coveralls --use-mirrors script: py.test test_schedule.py --pep8 schedule -v --cov schedule --cov-report term-missing after_success: - coveralls
Fix py.test command to generate coverage data.
Fix py.test command to generate coverage data.
YAML
mit
dylwhich/schedule,dbader/schedule,chop-dbhi/schedule,imiric/schedule,cfrco/schedule,mrhwick/schedule,seemethere/schedule
56359afa2a2312e756b6a1cbf2768c1a31c4c900
.travis.yml
.travis.yml
--- language: ruby bundler_args: --without development script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'" matrix: fast_finish: true include: - rvm: 1.8.7 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.0" notifications: email: false
--- language: ruby bundler_args: --without development script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'" matrix: fast_finish: true include: - rvm: 1.8.7 env: PUPPET_GEM_VERSION="~> 2.7" - rvm: 1.8.7 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.0" notifications: email: false
Use modulesync to manage meta files
Use modulesync to manage meta files
YAML
apache-2.0
camptocamp/puppet-kmod,fuel-infra/puppet-kmod,camptocamp/puppet-kmod,buzzdeee/puppet-kmod,fuel-infra/puppet-kmod,buzzdeee/puppet-kmod,redhat-cip/puppet-kmod,redhat-cip/puppet-kmod
268eaf6bd6700f308720b3c8de31125d61a3a267
.travis.yml
.travis.yml
language: node_js node_js: - '5' - '4'
language: node_js node_js: - '10' - '8' - '6' - '4'
Test all major recent node versions
Test all major recent node versions
YAML
mit
dawsonbotsford/sist
dcc4bc1c531eeb89f1c3b9e320587433ee14026d
.travis.yml
.travis.yml
language: python python: - "3.3" - "3.4" - "3.5" install: "pip install -r requirements.txt" script: py.test
language: python python: - "3.3" - "3.4" - "3.5" install: "pip install -r requirements.txt" before_script: export PYTHONPATH=$PYTHONPATH:$(pwd) script: py.test
Fix failing tests in Travis
Fix failing tests in Travis
YAML
mit
itcrab/dark_keeper,itcrab/dark-keeper
be61566d0feba9d5b1d31d94d39b10b50d8664dd
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" virtualenv: system_site_packages: true # command to prepare the system to install prerequisites or dependencies before_install: - sudo apt-get -qq update - sudo apt-get install -qq libhdf5-serial-dev python-h5py - sudo apt-get install -qq libatlas-dev libatlas-base-dev gfortran - sudo apt-get install -qq python-numpy python-scipy python-matplotlib - sudo apt-get install -qq python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly # command to install dependencies #install: # - "pip install -r requirements.txt --use-mirrors" - python setup.py install # command to run tests script: - py.test tests --ignore tests/sandbox # - "python setup.py test"
language: python python: - "2.6" - "2.7" virtualenv: system_site_packages: true # command to prepare the system to install prerequisites or dependencies before_install: - sudo apt-get -qq update - sudo apt-get install -qq libhdf5-serial-dev python-h5py - sudo apt-get install -qq libatlas-dev libatlas-base-dev gfortran - sudo apt-get install -qq python-numpy python-scipy python-matplotlib - sudo apt-get install -qq python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly gstreamer0.10-plugins-bad # command to install dependencies #install: # - "pip install -r requirements.txt --use-mirrors" - python setup.py install # command to run tests script: - py.test tests --ignore tests/sandbox # - "python setup.py test"
Add gstreamer-plugins-bad dependency in Travis
Add gstreamer-plugins-bad dependency in Travis
YAML
agpl-3.0
Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide
07ee2e66c0ff04adfa59949b29e73e87e3a25921
playbooks/roles/common/tasks/main.yml
playbooks/roles/common/tasks/main.yml
--- - name: Install zplug command: curl -sL --proto-redir -all,https https://zplug.sh/installer | zsh - name: Create local directories file: path="{{ ansible_env.HOME | join('/workspace/git') }}" state=directory - name: Restore dotfiles with Mackup command: mackup restore
--- - name: Install zplug git: repo=https://github.com/zplug/zplug dest=~/zplug - name: Create local directories file: path="{{ ansible_env.HOME | join('/workspace/git') }}" state=directory - name: Restore dotfiles with Mackup command: mackup restore
Clone repo instead of running their installer
Clone repo instead of running their installer
YAML
mit
benmezger/dotfiles,benmezger/dotfiles,benmezger/dotfiles,benmezger/dotfiles
1caf00dc216def1f474086448f900b0b13f8c720
.travis.yml
.travis.yml
sudo: false dist: trusty language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 before_install: - gem install bundler -v 1.17.3 - | # cached install of Neo4j locally: if [ ! -d neo4j-community-2.3.3/bin ]; then wget dist.neo4j.org/neo4j-community-2.3.3-unix.tar.gz; tar -xzf neo4j-community-2.3.3-unix.tar.gz; sed -i.bak s/dbms.security.auth_enabled=true/dbms.security.auth_enabled=false/g neo4j-community-2.3.3/conf/neo4j-server.properties; fi before_script: - neo4j-community-2.3.3/bin/neo4j start - bin/setup services: - redis-server - mongodb cache: bundler: true directories: - neo4j-community-2.3.3
dist: trusty language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 before_install: - gem install bundler -v 1.17.3 - | # cached install of Neo4j locally: if [ ! -d neo4j-community-2.3.3/bin ]; then wget dist.neo4j.org/neo4j-community-2.3.3-unix.tar.gz; tar -xzf neo4j-community-2.3.3-unix.tar.gz; sed -i.bak s/dbms.security.auth_enabled=true/dbms.security.auth_enabled=false/g neo4j-community-2.3.3/conf/neo4j-server.properties; fi before_script: - neo4j-community-2.3.3/bin/neo4j start - bin/setup services: - redis-server - mongodb cache: bundler: true directories: - neo4j-community-2.3.3
Drop unused sudo: false directive
CI: Drop unused sudo: false directive
YAML
mit
DatabaseCleaner/database_cleaner,DatabaseCleaner/database_cleaner
68ad62275c80585d8fe244613bede9c3f9977d83
.travis.yml
.travis.yml
language: php php: [5.3, 5.4, 5.5, 5.6, hhvm, hhvm-nightly] matrix: include: - php: 5.3.3 env: DEPENDENCIES='low' - php: 5.6 env: DEPENDENCIES='dev' allow_failures: - php: hhvm-nightly - env: DEPENDENCIES='dev' fast_finish: true sudo: false cache: directories: - $HOME/.composer/cache before_install: - composer selfupdate install: - export COMPOSER_ROOT_VERSION=dev-master - if [ "$DEPENDENCIES" == "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi; - if [ "$DEPENDENCIES" != "low" ]; then composer update; fi; - if [ "$DEPENDENCIES" == "low" ]; then composer update --prefer-lowest; fi; script: - sh -c 'if [ "$TRAVIS_PHP_VERSION" = "hhvm" -o "$TRAVIS_PHP_VERSION" = "hhvm-nightly" ]; then hhvm -d hhvm.libxml.ext_entity_whitelist=file bin/phpspec run; else bin/phpspec run; fi;' - sh -c 'if [ "$TRAVIS_PHP_VERSION" = "hhvm" -o "$TRAVIS_PHP_VERSION" = "hhvm-nightly" ]; then hhvm -d hhvm.libxml.ext_entity_whitelist=file ./vendor/behat/behat/bin/behat --format=pretty; else ./vendor/bin/behat --format=pretty; fi;'
language: php php: [5.3, 5.4, 5.5, 5.6, hhvm, hhvm-nightly] matrix: include: - php: 5.3.3 env: DEPENDENCIES='low' - php: 5.6 env: DEPENDENCIES='dev' allow_failures: - php: hhvm-nightly - env: DEPENDENCIES='dev' fast_finish: true sudo: false cache: directories: - $HOME/.composer/cache before_install: - composer selfupdate install: - export COMPOSER_ROOT_VERSION=dev-master - if [ "$DEPENDENCIES" == "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi; - if [ "$DEPENDENCIES" != "low" ]; then composer update; fi; - if [ "$DEPENDENCIES" == "low" ]; then composer update --prefer-lowest; fi; script: - bin/phpspec run --format=pretty - ./vendor/behat/behat/bin/behat --format=pretty
Remove config that was fixing an old HHVM issue
Remove config that was fixing an old HHVM issue
YAML
mit
Harrisonbro/phpspec,gnugat-forks/phpspec,nosun/phpspec,rawkode/phpspec,gnugat-forks/phpspec,jon-acker/phpspec,ulabox/phpspec,iakio/phpspec,rawkode/phpspec,bestform/phpspec,jon-acker/phpspec,ghamoron/phpspec,iakio/phpspec,javi-dev/phpspec,danielkmariam/phpspec,localheinz/phpspec,Dragonrun1/phpspec,pamil/phpspec,bestform/phpspec,carlosV2/phpspec,docteurklein/phpspec,javi-dev/phpspec,Elfiggo/phpspec,shanethehat/phpspec,Dragonrun1/phpspec,nosun/phpspec,shanethehat/phpspec,Harrisonbro/phpspec,localheinz/phpspec,ghamoron/phpspec,ulabox/phpspec,carlosV2/phpspec,Elfiggo/phpspec,sroze/phpspec,sroze/phpspec,danielkmariam/phpspec,pamil/phpspec,docteurklein/phpspec
e6c2f6c5e8a0b9cee3c5f3761fdbd778a459ca01
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" sudo: false env: - DJANGO=1.5.12 TEST_DATABASE_NAME=serrano TEST_DATABASE_USER=postgres - DJANGO=1.6.10 TEST_DATABASE_NAME=serrano TEST_DATABASE_USER=postgres - DJANGO=1.7.10 TEST_DATABASE_NAME=serrano TEST_DATABASE_USER=postgres addons: postgresql: "9.3" services: - memcached - redis-server before_install: - bash bin/check_signoff.sh - pip install -q flake8 - flake8 install: - pip install -q coverage Django==$DJANGO - pip install -q -r requirements.txt - "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors ordereddict importlib; fi" before_script: - psql -U postgres -c 'CREATE DATABASE serrano;' script: - coverage run test_suite.py after_success: - pip install -q coveralls - coveralls
language: python python: - "2.6" - "2.7" sudo: false env: - DJANGO=1.5.12 TEST_DATABASE_NAME=serrano TEST_DATABASE_USER=postgres - DJANGO=1.6.10 TEST_DATABASE_NAME=serrano TEST_DATABASE_USER=postgres - DJANGO=1.7.10 TEST_DATABASE_NAME=serrano TEST_DATABASE_USER=postgres addons: postgresql: "9.3" services: - memcached - redis-server before_install: - bash bin/check_signoff.sh - pip install -q flake8==2.6.2 - flake8 install: - pip install -q coverage Django==$DJANGO - pip install -q -r requirements.txt - "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors ordereddict importlib; fi" before_script: - psql -U postgres -c 'CREATE DATABASE serrano;' script: - coverage run test_suite.py after_success: - pip install -q coveralls - coveralls
Use flake8 2.6.x for Python 2.6 support
Use flake8 2.6.x for Python 2.6 support Signed-off-by: Byron Ruth <[email protected]>
YAML
bsd-2-clause
chop-dbhi/serrano,chop-dbhi/serrano
f5fa1f38e31348d86cc9084d8a73174fcdca21c7
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - stable - "0.12"
sudo: false language: node_js node_js: - "5" - "4" - "0.12"
Add Node.js 4 and 5 to Travis CI
Add Node.js 4 and 5 to Travis CI
YAML
mit
postcss/postcss-scss
020d11c3b9c0c7a3c2efcc8e5cf5b9ef7bcea21f
.travis.yml
.travis.yml
language: go go: - 1.0 - 1.1 - 1.2 - 1.3 - 1.4 sudo: false
language: go go: - 1.0 - 1.1 - 1.2 - 1.3 - 1.4 - 1.5 sudo: false
Add Go 1.5 to Travis
ci: Add Go 1.5 to Travis
YAML
mit
renstrom/dedent,lithammer/dedent
a04990863403818ba41e1d3a3f66c3db868fefbb
.travis.yml
.travis.yml
language: go go: - 1.3 - release - tip install: go get -d -t -v ./...
language: go go: - 1.3.3 - 1.4.1 install: go get -d -t -v ./...
Fix Go versions for Travis.
Fix Go versions for Travis.
YAML
isc
Stash-Crypto/btcwallet,btcsuite/btcwallet,synrg-labs/btcwallet,Stash-Crypto/btcwallet,btcsuite/btcwallet,jrick/dcrwallet,jrick/btcwallet,decred/dcrwallet,jrick/btcwallet,Roasbeef/btcwallet,synrg-labs/btcwallet,jrick/dcrwallet,decred/dcrwallet,Roasbeef/btcwallet
e13f595ff17adc149ae66f89be388c0759dc1495
.travis.yml
.travis.yml
language: cpp compiler: - clang before_install: - sudo apt-get install cmake libsfml-dev script: - mkdir _build && cd _build - cmake .. - make Aquila aquila_test - ctest
language: cpp compiler: - clang - gcc before_install: - sudo apt-get install cmake libsfml-dev script: - mkdir _build && cd _build - cmake .. - make Aquila aquila_test - ctest
Build with gcc, not only clang.
Build with gcc, not only clang.
YAML
apache-2.0
zsiciarz/aquila,synkarae/Quasar,tempbottle/aquila,tempbottle/aquila,sav6622/aquila,synkarae/Quasar,Aldor007/aquila,zsiciarz/aquila,tempbottle/aquila,synkarae/aquila,zsiciarz/aquila,synkarae/Quasar,Aldor007/aquila,sav6622/aquila,Aldor007/aquila,zsiciarz/aquila,synkarae/aquila,sav6622/aquila,synkarae/aquila
b78f5d482fa0361728fa38a4392d2beddd089528
.travis.yml
.travis.yml
language: node_js node_js: - "5" - "4" - "0.12" - "0.11" - "0.10"
language: node_js node_js: - "node" - "6" - "5"
Update CI to test node 5, 6 and future latest version.
Update CI to test node 5, 6 and future latest version.
YAML
mit
ashi009/node-fast-crc32c
59eb9129fc61497d3bcea3a6efd558bcfe5f1ef4
.travis.yml
.travis.yml
sudo: required services: - docker notifications: slack: on_success: never on_failure: always rooms: - oicr:S9k4EowgQv9AnbCfEZHSzCsg language: java jdk: - oraclejdk8 install: pip install --user cwltools script: - cd launcher - mvn -B clean install -DskipITs=false after_success: - mvn -B clean install -DskipITs=false cobertura:cobertura coveralls:report
sudo: required services: - docker notifications: slack: on_success: never on_failure: always rooms: - oicr:S9k4EowgQv9AnbCfEZHSzCsg language: java jdk: - oraclejdk8 install: - pip install --upgrade - pip install --user cwl-runner script: - cd launcher - mvn -B clean install -DskipITs=false after_success: - mvn -B clean install -DskipITs=false cobertura:cobertura coveralls:report
Fix name of cwltool from
Fix name of cwltool from https://pypi.python.org/pypi/cwltool
YAML
apache-2.0
ga4gh/dockstore,ga4gh/dockstore,ga4gh/dockstore
720c414b76e86961f262dcd4513ab1ff49724263
.travis.yml
.travis.yml
language: ruby cache: bundler script: - bundle exec rake - bundle exec rspec rvm: - 2.0.0
language: ruby cache: bundler script: - bundle exec rake - bundle exec rspec - bundle exec cucumber rvm: - 2.0.0
Add Cucumber to Travis build
Add Cucumber to Travis build
YAML
agpl-3.0
valeriecodes/refugerestrooms,azelma/refugerestrooms,azelma/refugerestrooms,cllns/refugerestrooms,mathonsunday/welcomehome,azelma/refugerestrooms,cllns/refugerestrooms,cllns/refugerestrooms,mathonsunday/welcomehome,valeriecodes/refugerestrooms,azelma/refugerestrooms,RefugeRestrooms/refugerestrooms,RefugeRestrooms/refugerestrooms,RefugeRestrooms/refugerestrooms,valeriecodes/refugerestrooms,RefugeRestrooms/refugerestrooms,cllns/refugerestrooms,valeriecodes/refugerestrooms
015290bb61b84f0302270a2cc3a3c56044f78f58
.travis.yml
.travis.yml
language: node_js node_js: - "0.8" - "0.10"
language: node_js node_js: - "0.8" - "0.10" - "0.12"
Add 0.12 into test environments
Add 0.12 into test environments
YAML
mit
greyhwndz/node.bcrypt.js,listepo/node.bcrypt.js,linalu1/node.bcrypt.js,DJMcK/node.bcrypt.js,nullivex/node.bcrypt.js,kelektiv/node.bcrypt.js,listepo/node.bcrypt.js,nullivex/node.bcrypt.js,kelektiv/node.bcrypt.js,greyhwndz/node.bcrypt.js,kelektiv/node.bcrypt.js,nullivex/node.bcrypt.js,nullivex/node.bcrypt.js,ksmyth/node.bcrypt.js,greyhwndz/node.bcrypt.js,ncb000gt/node.bcrypt.js,ncb000gt/node.bcrypt.js,ksmyth/node.bcrypt.js,ksmyth/node.bcrypt.js,listepo/node.bcrypt.js,kelektiv/node.bcrypt.js,ncb000gt/node.bcrypt.js,linalu1/node.bcrypt.js,DJMcK/node.bcrypt.js,DJMcK/node.bcrypt.js,ncb000gt/node.bcrypt.js,listepo/node.bcrypt.js,ksmyth/node.bcrypt.js,linalu1/node.bcrypt.js,greyhwndz/node.bcrypt.js,linalu1/node.bcrypt.js,DJMcK/node.bcrypt.js,kelektiv/node.bcrypt.js
bb037262c43b1dab10084f5241fcd81a5b2e4642
.travis.yml
.travis.yml
language: c install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh script: bash -ex .travis-opam.sh env: global: - ALCOTEST_SHOW_ERRORS=1 - REVDEPS="irmin-indexeddb" - PINS="irmin.dev:. irmin-mem.dev:. irmin-fs.dev:. irmin-http.dev:. irmin-git.dev:. irmin-mirage.dev:. irmin-unix.dev:. irmin-chunk.dev:." matrix: - OCAML_VERSION=4.03 PACKAGE="irmin-fs.dev" TESTS=true - OCAML_VERSION=4.04 PACKAGE="irmin-mem.dev" TESTS=true - OCAML_VERSION=4.03 PACKAGE="irmin-git.dev" TESTS=true - OCAML_VERSION=4.04 PACKAGE="irmin-http.dev" TESTS=true - OCAML_VERSION=4.04 PACKAGE="irmin-chunk.dev" TESTS=true - OCAML_VERSION=4.03 PACKAGE="irmin-mirage.dev" - OCAML_VERSION=4.04 PACKAGE="irmin-unix.dev" TESTS=true EXTRA_DEPS=inotify
language: c install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh script: bash -ex .travis-opam.sh env: global: - ALCOTEST_SHOW_ERRORS=1 - REVDEPS="irmin-indexeddb" - PINS="irmin.dev:. irmin-mem.dev:. irmin-fs.dev:. irmin-http.dev:. irmin-git.dev:. irmin-mirage.dev:. irmin-unix.dev:. irmin-chunk.dev:." matrix: - OCAML_VERSION=4.03 PACKAGE="irmin-fs.dev" TESTS=true - OCAML_VERSION=4.04 PACKAGE="irmin-mem.dev" TESTS=true - OCAML_VERSION=4.05 PACKAGE="irmin-git.dev" TESTS=true - OCAML_VERSION=4.06 PACKAGE="irmin-http.dev" TESTS=true - OCAML_VERSION=4.06 PACKAGE="irmin-chunk.dev" TESTS=true - OCAML_VERSION=4.05 PACKAGE="irmin-mirage.dev" - OCAML_VERSION=4.06 PACKAGE="irmin-unix.dev" TESTS=true EXTRA_DEPS=inotify
Test 4.05 and 4.06 in Travis
Test 4.05 and 4.06 in Travis
YAML
isc
mirage/irmin,mirage/irmin
e3525c7cfa88b27cf0a5f55c7218e7295e7bf4cb
.travis.yml
.travis.yml
language: java os: linux dist: trusty sudo: required cache: directories: - $HOME/.m2 install: /bin/true before_script: - "sudo apt install -qq -y maven gtk+3.0 stalonetray ubuntu-gnome-desktop chromium-browser" - "touch ~/.stalonetrayrc" - "export DISPLAY=:99.0" - "Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &" - "sleep 3" - "stalonetray &" - "sleep 3" - "rm ~/.m2/settings.xml" jdk: - oraclejdk8 script: - mvn clean package after_success: - bash <(curl -s https://codecov.io/bash)
language: java os: linux dist: trusty sudo: required cache: directories: - $HOME/.m2 install: /bin/true before_script: - "apt-get install -qq -o=Dpkg::Use-Pty=0 -y maven gtk+3.0 stalonetray ubuntu-gnome-desktop chromium-browser" - "touch ~/.stalonetrayrc" - "export DISPLAY=:99.0" - "Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &" - "sleep 3" - "stalonetray &" - "sleep 3" - "rm ~/.m2/settings.xml" jdk: - oraclejdk8 script: - mvn clean package after_success: - bash <(curl -s https://codecov.io/bash)
Make aptitude even less noisy
Make aptitude even less noisy
YAML
apache-2.0
Tristan971/EasyFXML,Tristan971/EasyFXML
8ffcd18dc0c955a964fb9f7cc1f68b63040d538d
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" env: - DJANGO="1.8" - DJANGO="1.9" - DJANGO="1.10" - DJANGO="1.11" install: pip install tox-travis codecov script: tox after_success: coverage combine && codecov matrix: fast_finish: true include: - python: 3.6 env: TOXENV=flake8
sudo: false language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" env: - DJANGO="1.8" - DJANGO="1.9" - DJANGO="1.10" - DJANGO="1.11" install: pip install tox-travis codecov script: tox after_success: coverage combine && codecov matrix: fast_finish: true include: - python: 3.6 env: TOXENV=flake8 branches: only: - master
Make Travis build master again
Make Travis build master again
YAML
apache-2.0
tarkatronic/django-excel-response
99569115e0a2d9c00dd46a56e3a58092396a2847
.travis.yml
.travis.yml
language: php php: - 7.0 - 7.1 sudo: false cache: directories: - $HOME/.composer/cache before_install: - travis_retry composer self-update install: - composer install --no-interaction --prefer-dist --no-suggest script: vendor/bin/phpunit
language: php php: - 7.0 - 7.1 sudo: false cache: directories: - $HOME/.composer/cache before_install: - phpenv config-rm xdebug.ini - travis_retry composer self-update install: - composer install --no-interaction --prefer-dist --no-suggest script: vendor/bin/phpunit
Disable xdebug on Travis CI
Disable xdebug on Travis CI
YAML
mit
thecrypticace/lazy
c01efc3f3bbf3e81307e0adb9d47bc9e3dc548cc
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 # Enable container-based architecture. sudo: false addons: apt: packages: # Travis is on 64bit and there will be a cryptic aapt error w/o these libs. # For native code tests, we need some additional libraries if we are in a 64-bit environment. - libgd2-xpm - libc6:i386 - libstdc++6:i386 - zlib1g:i386 - groovy before_install: # Limit Ant's and Buck's memory usage to avoid the OOM killer. - export ANT_OPTS='-Xmx500m' - export BUCK_EXTRA_JAVA_ARGS='-Xmx500m' # Set up the Android environment. - export NDK_HOME=${HOME}/android-ndk-linux - ./scripts/travisci_install_android_ndk.sh - export ANDROID_HOME=${HOME}/android-sdk-linux - ./scripts/travisci_install_android_sdk.sh # Install go 1.5 - eval "$(gimme 1.5)" # Set up the Groovy environment - export GROOVY_HOME=/usr/share/groovy/ cache: directories: - $HOME/android-ndk-linux - $HOME/android-sdk-linux script: - ./scripts/travisci_run.sh
language: java jdk: - oraclejdk8 # Enable container-based architecture. sudo: false addons: apt: packages: # Travis is on 64bit and there will be a cryptic aapt error w/o these libs. # For native code tests, we need some additional libraries if we are in a 64-bit environment. - libgd2-xpm - libc6:i386 - libstdc++6:i386 - zlib1g:i386 - groovy # Getting compile errors on javac 1.8.0_31-b13 - oracle-java8-installer before_install: # Limit Ant's and Buck's memory usage to avoid the OOM killer. - export ANT_OPTS='-Xmx500m' - export BUCK_EXTRA_JAVA_ARGS='-Xmx500m' # Set up the Android environment. - export NDK_HOME=${HOME}/android-ndk-linux - ./scripts/travisci_install_android_ndk.sh - export ANDROID_HOME=${HOME}/android-sdk-linux - ./scripts/travisci_install_android_sdk.sh # Install go 1.5 - eval "$(gimme 1.5)" # Set up the Groovy environment - export GROOVY_HOME=/usr/share/groovy/ cache: directories: - $HOME/android-ndk-linux - $HOME/android-sdk-linux script: - ./scripts/travisci_run.sh
Use newer java 8 on Travis CI
Use newer java 8 on Travis CI Summary: Per https://github.com/travis-ci/travis-ci/issues/4042, this should give us a newer jdk on Travis CI. Closes https://github.com/facebook/buck/pull/968 Reviewed By: marcinkosiba fbshipit-source-id: 918b1bb
YAML
apache-2.0
illicitonion/buck,davido/buck,davido/buck,facebook/buck,grumpyjames/buck,dsyang/buck,LegNeato/buck,grumpyjames/buck,romanoid/buck,shybovycha/buck,shybovycha/buck,darkforestzero/buck,kageiit/buck,clonetwin26/buck,marcinkwiatkowski/buck,k21/buck,shybovycha/buck,robbertvanginkel/buck,davido/buck,k21/buck,k21/buck,ilya-klyuchnikov/buck,robbertvanginkel/buck,justinmuller/buck,shs96c/buck,clonetwin26/buck,facebook/buck,ilya-klyuchnikov/buck,ilya-klyuchnikov/buck,zhan-xiong/buck,justinmuller/buck,k21/buck,sdwilsh/buck,justinmuller/buck,darkforestzero/buck,k21/buck,illicitonion/buck,zhan-xiong/buck,marcinkwiatkowski/buck,ilya-klyuchnikov/buck,ilya-klyuchnikov/buck,romanoid/buck,marcinkwiatkowski/buck,illicitonion/buck,Addepar/buck,zhan-xiong/buck,davido/buck,Addepar/buck,shybovycha/buck,sdwilsh/buck,zhan-xiong/buck,sdwilsh/buck,dsyang/buck,clonetwin26/buck,zhan-xiong/buck,davido/buck,brettwooldridge/buck,romanoid/buck,kageiit/buck,dsyang/buck,shybovycha/buck,daedric/buck,daedric/buck,robbertvanginkel/buck,daedric/buck,illicitonion/buck,LegNeato/buck,sdwilsh/buck,romanoid/buck,nguyentruongtho/buck,JoelMarcey/buck,brettwooldridge/buck,davido/buck,JoelMarcey/buck,dsyang/buck,brettwooldridge/buck,marcinkwiatkowski/buck,JoelMarcey/buck,marcinkwiatkowski/buck,illicitonion/buck,clonetwin26/buck,robbertvanginkel/buck,darkforestzero/buck,SeleniumHQ/buck,sdwilsh/buck,rmaz/buck,grumpyjames/buck,vschs007/buck,justinmuller/buck,facebook/buck,romanoid/buck,robbertvanginkel/buck,robbertvanginkel/buck,romanoid/buck,k21/buck,marcinkwiatkowski/buck,SeleniumHQ/buck,JoelMarcey/buck,brettwooldridge/buck,rmaz/buck,robbertvanginkel/buck,zhan-xiong/buck,illicitonion/buck,darkforestzero/buck,brettwooldridge/buck,JoelMarcey/buck,sdwilsh/buck,rmaz/buck,sdwilsh/buck,Addepar/buck,darkforestzero/buck,sdwilsh/buck,justinmuller/buck,romanoid/buck,JoelMarcey/buck,dsyang/buck,ilya-klyuchnikov/buck,clonetwin26/buck,darkforestzero/buck,rmaz/buck,illicitonion/buck,shs96c/buck,SeleniumHQ/buck,sdwilsh/buck,marcinkwiatkowski/buck,LegNeato/buck,shybovycha/buck,shs96c/buck,justinmuller/buck,k21/buck,k21/buck,robbertvanginkel/buck,sdwilsh/buck,clonetwin26/buck,rmaz/buck,justinmuller/buck,Addepar/buck,ilya-klyuchnikov/buck,ilya-klyuchnikov/buck,LegNeato/buck,romanoid/buck,facebook/buck,k21/buck,daedric/buck,dsyang/buck,Addepar/buck,dsyang/buck,vschs007/buck,romanoid/buck,shs96c/buck,brettwooldridge/buck,SeleniumHQ/buck,grumpyjames/buck,robbertvanginkel/buck,marcinkwiatkowski/buck,zpao/buck,daedric/buck,vschs007/buck,kageiit/buck,LegNeato/buck,Addepar/buck,sdwilsh/buck,shs96c/buck,rmaz/buck,kageiit/buck,LegNeato/buck,vschs007/buck,grumpyjames/buck,LegNeato/buck,SeleniumHQ/buck,romanoid/buck,vschs007/buck,clonetwin26/buck,Addepar/buck,shs96c/buck,SeleniumHQ/buck,vschs007/buck,davido/buck,daedric/buck,brettwooldridge/buck,clonetwin26/buck,zhan-xiong/buck,daedric/buck,sdwilsh/buck,shs96c/buck,Addepar/buck,zhan-xiong/buck,justinmuller/buck,illicitonion/buck,dsyang/buck,daedric/buck,k21/buck,ilya-klyuchnikov/buck,vschs007/buck,shybovycha/buck,JoelMarcey/buck,rmaz/buck,k21/buck,zhan-xiong/buck,ilya-klyuchnikov/buck,rmaz/buck,JoelMarcey/buck,zhan-xiong/buck,facebook/buck,nguyentruongtho/buck,darkforestzero/buck,clonetwin26/buck,ilya-klyuchnikov/buck,LegNeato/buck,vschs007/buck,rmaz/buck,shybovycha/buck,LegNeato/buck,nguyentruongtho/buck,SeleniumHQ/buck,rmaz/buck,Addepar/buck,robbertvanginkel/buck,rmaz/buck,marcinkwiatkowski/buck,SeleniumHQ/buck,clonetwin26/buck,illicitonion/buck,zpao/buck,k21/buck,darkforestzero/buck,daedric/buck,darkforestzero/buck,illicitonion/buck,LegNeato/buck,dsyang/buck,davido/buck,nguyentruongtho/buck,grumpyjames/buck,shybovycha/buck,darkforestzero/buck,k21/buck,zpao/buck,marcinkwiatkowski/buck,brettwooldridge/buck,kageiit/buck,illicitonion/buck,daedric/buck,darkforestzero/buck,shybovycha/buck,JoelMarcey/buck,illicitonion/buck,shs96c/buck,darkforestzero/buck,zpao/buck,brettwooldridge/buck,shs96c/buck,darkforestzero/buck,clonetwin26/buck,LegNeato/buck,robbertvanginkel/buck,brettwooldridge/buck,marcinkwiatkowski/buck,sdwilsh/buck,romanoid/buck,marcinkwiatkowski/buck,grumpyjames/buck,JoelMarcey/buck,dsyang/buck,SeleniumHQ/buck,vschs007/buck,davido/buck,grumpyjames/buck,zhan-xiong/buck,davido/buck,LegNeato/buck,nguyentruongtho/buck,grumpyjames/buck,JoelMarcey/buck,Addepar/buck,Addepar/buck,SeleniumHQ/buck,justinmuller/buck,shs96c/buck,grumpyjames/buck,justinmuller/buck,davido/buck,illicitonion/buck,dsyang/buck,nguyentruongtho/buck,Addepar/buck,justinmuller/buck,vschs007/buck,robbertvanginkel/buck,kageiit/buck,grumpyjames/buck,shybovycha/buck,dsyang/buck,facebook/buck,rmaz/buck,kageiit/buck,justinmuller/buck,daedric/buck,daedric/buck,vschs007/buck,LegNeato/buck,rmaz/buck,zhan-xiong/buck,SeleniumHQ/buck,romanoid/buck,davido/buck,vschs007/buck,marcinkwiatkowski/buck,clonetwin26/buck,shs96c/buck,SeleniumHQ/buck,daedric/buck,dsyang/buck,SeleniumHQ/buck,Addepar/buck,grumpyjames/buck,davido/buck,romanoid/buck,zhan-xiong/buck,zpao/buck,shybovycha/buck,shs96c/buck,brettwooldridge/buck,facebook/buck,ilya-klyuchnikov/buck,zpao/buck,brettwooldridge/buck,JoelMarcey/buck,shs96c/buck,justinmuller/buck,robbertvanginkel/buck,brettwooldridge/buck,JoelMarcey/buck,vschs007/buck,ilya-klyuchnikov/buck,zpao/buck,shybovycha/buck,clonetwin26/buck,nguyentruongtho/buck
e0909f16d6d2c8801ae0119c36486019cfd8cf31
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" - "0.8" - "0.6"
language: node_js node_js: - "8" - "9"
Test against less ancient node versions
Test against less ancient node versions
YAML
mit
dpw/node-buffer-more-ints
861e025449e1d3fdf48b433bdb649c7d4db93569
.travis.yml
.travis.yml
language: objective-c #language: objective-c #xcode_project: FDSoundActivatedRecorder.xcodeproj #xcode_scheme: FDSoundActivatedRecorder #xcode_sdk: iphonesimulator7.0 # PER https://github.com/travis-ci/travis-ci/issues/2197 # https://github.com/jessesquires/BButton/blob/54a8b3eb1f237a502201910f455a030800956ebe/.travis.yml before_install: - brew update - brew upgrade xctool script: - xctool -project FDTakeExample.xcodeproj -scheme FDTakeExample -sdk iphonesimulator7.0 ONLY_ACTIVE_ARCH=NO clean build test notifications: email: [email protected]
language: objective-c xcode_project: FDTakeExample.xcodeproj xcode_scheme: FDTakeExample notifications: email: [email protected]
Update Travis for more vanilla setup
Update Travis for more vanilla setup
YAML
mit
Lily418/FDTake,wyszo/FDTake,fulldecent/FDTake,kobim/FDTake,Lily418/FDTake,eumlab/FDTake,fulldecent/FDTake,LaserPatrick/FDTake,LaserPatrick/FDTake,eumlab/FDTake,Lily418/FDTake,masd-duc/FDTake,eumlab/FDTake,fulldecent/FDTake
cf691faab8d18ba109f4caac120970837b4ced98
.travis.yml
.travis.yml
language: node_js node_js: - '4.0' - '8.0' after_script: bash <(curl -s https://codecov.io/bash) sudo: false deploy: - provider: npm email: [email protected] api_key: secure: Q6JtoC1bAeMqQmw2fl+xdFxv4wScuUmjNgr/Fc8rLT0z+i84Rp1rJayojOBgFVkpLO5rhJ71OrP4NN4vpAtSp6+hvIqhFNAT98DQqFh6VKEa0TCRFTYzKiCLlKKfMun69slznwjjZGq4JrCLpLs/xuDVJp/sNxzPSSIcXVQ3Drc= on: tags: true node: '4.0' - provider: releases api_key: secure: X6QF7zle+i+uRKy4c1km2m6ZH2AmbFQqnqP4BGoI4CBB+6tRiQCGoz8wd8LkfBemJcaAaS5O/g9ltb/n+QLHG1sMo8pTy0p4YVGOz6Jp8W0JspSkd9J4gEflTqJ0N7ONXCfHbhb9Lq399OkNyR8lc9432bbLv35zc+0y3deIHFE= file: - "plain-text-data-to-json.js" - "plain-text-data-to-json.min.js" on: tags: true node: '8.0'
language: node_js node_js: - '4.0' - '8.0' after_script: bash <(curl -s https://codecov.io/bash) sudo: false deploy: provider: releases api_key: secure: X6QF7zle+i+uRKy4c1km2m6ZH2AmbFQqnqP4BGoI4CBB+6tRiQCGoz8wd8LkfBemJcaAaS5O/g9ltb/n+QLHG1sMo8pTy0p4YVGOz6Jp8W0JspSkd9J4gEflTqJ0N7ONXCfHbhb9Lq399OkNyR8lc9432bbLv35zc+0y3deIHFE= file: - "plain-text-data-to-json.js" - "plain-text-data-to-json.min.js" on: tags: true node: '8.0'
Remove npm deployment from Travis
Remove npm deployment from Travis
YAML
mit
wooorm/plain-text-data-to-json
a758f56c90313069cc47236141712093c59eaf7c
.travis.yml
.travis.yml
language: android android: components: - tools - tools - platform-tools - build-tools-24.0.3 - android-24 - sys-img-armeabi-v7a-google_apis-24 - extra - extra-android-m2repository script: ./gradlew build test jdk: - oraclejdk8 sudo: false before_cache: - rm -rf $HOME/.m2/repository/io/michaelrocks/lightsaber- - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.m2 - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ install: - ./gradlew assemble publishToMavenLocal -Pbootstrap=true --no-daemon --rerun-tasks before_script: - echo no | android create avd --force -n test -t android-24 -b armeabi-v7a -g google_apis - emulator -avd test -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & script: - ./gradlew check connectedCheck --no-daemon
language: android android: components: - tools - tools - platform-tools - build-tools-24.0.3 - android-24 - sys-img-armeabi-v7a-google_apis-24 - extra - extra-android-m2repository script: ./gradlew build test jdk: - oraclejdk8 sudo: false before_cache: - rm -rf $HOME/.m2/repository/io/michaelrocks/lightsaber- - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.m2 - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ install: - ./gradlew assemble publishToMavenLocal -Pbootstrap=true --no-daemon --rerun-tasks before_script: - echo no | android create avd --force -n test -t android-24 -b armeabi-v7a -g google_apis - emulator -avd test -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & script: - ./gradlew check connectedCheck --no-daemon
Remove non-working -no-audio flag for emulator
Remove non-working -no-audio flag for emulator
YAML
apache-2.0
MichaelRocks/lightsaber,MichaelRocks/lightsaber
155471ba2f1838d777cd701ffbed4ea63640b60e
.travis.yml
.travis.yml
language: perl perl: - "5.20" - "5.18" - "5.16" - "5.14" before_install: - sudo apt-get install build-essential libpng-dev zlib1g-dev libgd2-xpm-dev - cpanm PerlIO::gzip - cpanm GD::Image - ./setup.sh install: true script: - prove -I src/perl5 -r tests/perl_tests
language: perl perl: - "5.20" - "5.18" - "5.16" - "5.14" before_install: - sudo apt-get install build-essential libpng-dev zlib1g-dev libgd2-xpm-dev - cpanm PerlIO::gzip - cpanm GD::Image - cpanm DB_File.pm - ./setup.sh install: true script: - prove -I src/perl5 -r tests/perl_tests
Add dependencies for perl tests
Add dependencies for perl tests
YAML
lgpl-2.1
erasche/jbrowse,erasche/jbrowse,GMOD/jbrowse,nathandunn/jbrowse,nathandunn/jbrowse,limeng12/jbrowse,GMOD/jbrowse,GMOD/jbrowse,Arabidopsis-Information-Portal/jbrowse,Arabidopsis-Information-Portal/jbrowse,Arabidopsis-Information-Portal/jbrowse,nathandunn/jbrowse,Arabidopsis-Information-Portal/jbrowse,erasche/jbrowse,GMOD/jbrowse,nathandunn/jbrowse,erasche/jbrowse,limeng12/jbrowse,limeng12/jbrowse,erasche/jbrowse,limeng12/jbrowse,limeng12/jbrowse,limeng12/jbrowse,limeng12/jbrowse,erasche/jbrowse,Arabidopsis-Information-Portal/jbrowse,nathandunn/jbrowse,erasche/jbrowse,erasche/jbrowse,Arabidopsis-Information-Portal/jbrowse,limeng12/jbrowse,Arabidopsis-Information-Portal/jbrowse,GMOD/jbrowse
c94992a8f594ca58a1460cfcc9e6ca75d1e1a340
.travis.yml
.travis.yml
language: perl perl: - 5.16 install: - cpanm --quiet --notest IO::Prompt::Tiny - cpanm --quiet --notest Devel::Cover::Report::Coveralls after_success: - cover -report coveralls
language: perl perl: - 5.16 install: - cpanm --quiet --notest IO::Prompt::Tiny - cpanm --quiet --notest Devel::Cover::Report::Coveralls - cpanm --quiet --notest --installdeps . after_success: - cover -report coveralls
Update install deps for Travis.
Update install deps for Travis.
YAML
artistic-2.0
tscornpropst/App-Module-Template
321f29a1863101ec649980d1583ab08417a94c87
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - jruby-19mode - rbx-2.2 env: - ACTIVE_RECORD_BRANCH="master" - ACTIVE_RECORD_BRANCH="4-0-stable" - ACTIVE_RECORD_VERSION="~> 4.0.0" - ACTIVE_RECORD_VERSION="~> 3.2.0" - ACTIVE_RECORD_VERSION="~> 3.1.0" matrix: allow_failures: - rvm: rbx-2.2 - rvm: jruby-19mode - env: ACTIVE_RECORD_BRANCH="master" - env: ACTIVE_RECORD_BRANCH="4-0-stable" before_script: - "psql -c 'create database pg_search_test;' -U postgres >/dev/null" script: "bundle exec rspec spec"
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode - rbx-2.2 env: - ACTIVE_RECORD_BRANCH="master" - ACTIVE_RECORD_BRANCH="4-0-stable" - ACTIVE_RECORD_VERSION="~> 4.0.0" - ACTIVE_RECORD_VERSION="~> 3.2.0" - ACTIVE_RECORD_VERSION="~> 3.1.0" matrix: allow_failures: - rvm: 2.1.0 - rvm: rbx-2.2 - rvm: jruby-19mode - env: ACTIVE_RECORD_BRANCH="master" - env: ACTIVE_RECORD_BRANCH="4-0-stable" before_script: - "psql -c 'create database pg_search_test;' -U postgres >/dev/null" script: "bundle exec rspec spec"
Add Ruby 2.1.0 to Travis build
Add Ruby 2.1.0 to Travis build
YAML
mit
mpivaa/pg_search,undergroundwebdesigns/pg_search,savef/pg_search,paultyng/pg_search,rigoleto/pg_search,rigoleto/pg_search,savef/pg_search,undergroundwebdesigns/pg_search,Casecommons/pg_search,zvikamenahemi/pg_search,paultyng/pg_search,Casecommons/pg_search,zvikamenahemi/pg_search,mpivaa/pg_search
02bf3f298b1d08fb047012b866128c287e6d41c8
.travis.yml
.travis.yml
language: node_js node_js: - "6.1" before_install: - npm -g install bower gulp install: - npm install && bower install script: - gulp
language: node_js node_js: - '6.1' before_install: - npm -g install bower gulp install: - npm install && bower install script: - gulp package deploy: provider: releases api_key: secure: FCAib0wYdzVYa/8pfszmxfarWQWP6GbWvNPetGpczvvNR0ASF30gDAkzAqRSrI+3aPdPEx5pDfAiIyE1FZ4ldi5aRLDOdM9aJX94yioRt1zYOYPmoFMu6e1ihRr5cZpk7PgkATpLe0nffuM4CqQELddSbdLLfm0cKK+R6C5X6bNApDacRNTKvzp7hBbnN0zOtXZ8OrQ1vOCawhHyAKgWXyVZeYV1BcszP+K3ZRd3bja8jmVPJzuHHVZtzLbw6ugj8mnnLft0OIU7HnN80vfiw1UvDAKR3i0PHUNMQ71ZgqMziUS+/0SreVu1jOpiJ57ZobloCgpREgKYWpJK2k7Hlbjx4BSfUq6UvzGaOeurPxP7YeypipfjUX+H89vprxRHcubTBu/bn4HPDf7MPbWR4EZ1ckgFS9giwQrc/tUtiouqXbwpPtjL6oyr7QEWjD7e4+0BxcNsgdq2b8tH4/Z2jxZZJhQ9PHjKaNoytS8kaLB9GssiURcBZ85U+M43WZKtZcSHZg9S7dzBALjhKlHW82o5q/TWN1bBO3GyGmGVyINZaVaekxE2u4SYLyuc2P/YC/06CGHK2uP7kYFk2UQg1HGfM3ns0T+478DYvz5jKIrJaFFWwPht9CLuveD7MViPSpLK2P/AuQ57yhAmUTiZmRzeHxtnO5F+eP7AxOIn4CI= skip_cleanup: true file: - dist/debug.tar.gz - dist/release.tar.gz on: repo: kog/js-tda tags: true
Add tag-based GH release to Travis build
Add tag-based GH release to Travis build
YAML
mit
kog/js-tda,kog/js-tda,kog/js-tda
87b65259931b727b5c1d62927e12be6934754298
.travis.yml
.travis.yml
sudo: false dist: trusty language: node_js node_js: - "6" - "6.1" - "5.11" - "0.6" - "iojs" os: - osx - linux before_install: - if [ $TRAVIS_OS_NAME == "linux" ]; then export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0; sh -e /etc/init.d/xvfb start; sleep 3; fi install: - npm install - npm run vscode:prepublish script: - npm test --silent
sudo: false dist: trusty language: node_js node_js: - "6" - "6.1" - "5.11" - "0.6" - "iojs" os: - osx - linux before_install: - if [ $TRAVIS_OS_NAME == "linux" ]; then export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0; sh -e /etc/init.d/xvfb start; sleep 3; fi install: - npm install script: - npm test --silent
Remove prebulish script from Travis config
Remove prebulish script from Travis config
YAML
mit
hasit/vscode-gi
829f1e806fcbcb507450b253ea7a8d7b43856692
.travis.yml
.travis.yml
--- sudo: required services: - docker env: matrix: - distribution: centos version: 7 init: /usr/lib/systemd/systemd run_opts: "--privileged --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro" before_install: - 'docker pull ${distribution}:${version}' - container_id=$(mktemp) - 'docker run --detach ${run_opts} ${distribution}:${version} "${init}" > "${container_id}"' script: - 'docker exec --tty "$(cat ${container_id})" env TERM=xterm yum install -y sudo' - 'docker exec --tty "$(cat ${container_id})" env TERM=xterm bash -c "$(curl -fsSL https://git.io/imokuri)"' - 'docker exec --tty "$(cat ${container_id})" env TERM=xterm ansible-playbook ~/.setup.yaml --tags optional' - 'docker stop "$(cat ${container_id})"' notifications: email: false
--- sudo: required services: - docker env: matrix: - distribution: centos version: 7 init: /usr/lib/systemd/systemd run_opts: "--privileged --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro" before_install: - docker pull ${distribution}:${version} - container_id=$(mktemp) - docker run --detach ${run_opts} ${distribution}:${version} "${init}" > "${container_id}" script: - docker exec --tty "$(cat ${container_id})" env TERM=xterm yum install -y sudo - docker exec --tty "$(cat ${container_id})" env TERM=xterm bash -c "$(curl -fsSL https://git.io/imokuri)" - docker exec --tty "$(cat ${container_id})" env TERM=xterm ansible-playbook ~/.setup.yaml --tags optional - docker stop "$(cat ${container_id})" notifications: email: false
Revert "add quote for docker command"
Revert "add quote for docker command" This reverts commit 4ba55bf7f8a8b6bed7b8f604f678275f0f68e65d.
YAML
mit
IMOKURI/dotfiles,IMOKURI/dotfiles
ed4b9d43b2402cad8c56f892ead3a5d454b54a61
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 before_script: - phpenv config-add ./app/config/php.ini - composer install --prefer-source script: - find ./src -name "*.php" -exec php -l {} \; - ./bin/phpspec run --format=pretty - ./bin/phpunit --printer PHPUnit_Util_TestDox_ResultPrinter_Text - php ./coverage-checker.php ./var/logs/phpunit-clover.xml 50 - ./bin/phpcpd -vvv --log-pmd="./var/logs/cpd.xml" ./src - ./bin/phpmd ./src text ./app/config/ruleset.xml after_script: - ./bin/coveralls -v - cat var/logs/phpspec-clover.xml
language: php php: - 5.3 - 5.4 - 5.5 before_script: - phpenv config-add ./app/config/php.ini - composer install --prefer-source script: - find ./src -name "*.php" -exec php -l {} \; - ./bin/phpspec run --format=pretty - ./bin/phpunit --printer PHPUnit_Util_TestDox_ResultPrinter_Text - ./bin/phpcpd -vvv --log-pmd="./var/logs/cpd.xml" ./src - ./bin/phpmd ./src text ./app/config/ruleset.xml after_script: - ./bin/coveralls -v - php ./coverage-checker.php ./var/logs/phpunit-clover.xml 50 - php ./coverage-checker.php ./var/logs/phpspec-clover.xml 50 - cat var/logs/phpspec-clover.xml
Add check for how much code coverage the PHP spec tests are generating.
Add check for how much code coverage the PHP spec tests are generating.
YAML
mit
jojo1981/playyard
bc040d0b95cba119f5fd4b55cc574802cd41ce5d
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - node addons: firefox: '42.0' cache: directories: - node_modules - "$HOME/.cache/bower" before_install: - "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi" before_script: - npm install web-component-tester bower polylint - bower install - polylint - export PATH=$PWD/node_modules/.bin:$PATH script: - xvfb-run wct
language: node_js sudo: false node_js: - node addons: firefox: '49.0.2' apt: packages: - oracle-java8-installer cache: directories: - node_modules - "$HOME/.cache/bower" before_install: - "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi" before_script: - npm install web-component-tester bower polylint - bower install - polylint - export PATH=$PWD/node_modules/.bin:$PATH script: - JAVA_HOME=/usr/lib/jvm/java-8-oracle PATH=/usr/lib/jvm/java-8-oracle/bin:$PATH xvfb-run wct
Update Firefox to 49.0.2 and make wct happy again
Update Firefox to 49.0.2 and make wct happy again
YAML
apache-2.0
Collaborne/d3-progress-meter
0fae271b92004fe115ac4f461868f2b968cb3639
.travis.yml
.travis.yml
os: - linux - osx # Enable Trusty dist, Standard is ancient. dist: trusty # Enable C++ support language: cpp # # Compiler selection compiler: - clang - gcc # Build steps script: - mkdir build && cd build - if [[ $TRAVIS_OS_NAME = osx ]]; then cmake ..; else cmake -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl/ ..; fi - make - make jwttool - make tests && make test before_install: - if [[ $TRAVIS_OS_NAME = linux ]]; then sudo apt-get -qq update; else brew update; fi - if [[ $TRAVIS_OS_NAME = linux ]]; then sudo apt-get install -y libjansson-dev; else brew install jansson; fi - if [[ $TRAVIS_OS_NAME = linux ]]; then sudo apt-get install -y libboost-all-dev; fi - if [[ $TRAVIS_OS_NAME = osx ]]; then brew install openssl; fi
os: - linux - osx # Enable Trusty dist, Standard is ancient. dist: trusty # Enable C++ support language: cpp # # Compiler selection compiler: - clang - gcc # Build steps script: - mkdir build && cd build - if [[ $TRAVIS_OS_NAME = osx ]]; then cmake ..; else cmake -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl/ -DOPENSSL_INCLUDE_DIR=/usr/local/opt/openssl/include ..; fi - make - make jwttool - make tests && make test before_install: - if [[ $TRAVIS_OS_NAME = linux ]]; then sudo apt-get -qq update; else brew update; fi - if [[ $TRAVIS_OS_NAME = linux ]]; then sudo apt-get install -y libjansson-dev; else brew install jansson; fi - if [[ $TRAVIS_OS_NAME = linux ]]; then sudo apt-get install -y libboost-all-dev; fi - if [[ $TRAVIS_OS_NAME = osx ]]; then brew install openssl; fi
Add explicit OPENSSL_INCLUDE_DIR on OSX.
Add explicit OPENSSL_INCLUDE_DIR on OSX.
YAML
mit
madf/jwtxx,madf/jwtxx
92dcc80186e478ff605118610d71f4cf8851ca3c
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.11" - "0.10" - "0.12" - iojs before_install: - npm update -g npm - npm install -g bob coveralls --loglevel error script: - bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
sudo: false language: node_js node_js: - "0.11" - "0.10" - "0.12" - iojs before_install: - npm update -g npm - npm install -g bob coveralls --loglevel error - sudo apt-get install libusb-dev script: - bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
Add libusb installation as a pre step.
Add libusb installation as a pre step.
YAML
mit
cliffano/buildlight
378d35fee1df353e9f8b56b30a98002f112a40d0
.travis.yml
.travis.yml
language: rust rust: - nightly - beta addons: rethinkdb: '2.3.5' before_script: - rethinkdb --port-offset 1 --directory rethinkdb_data1 --join localhost:29015 > /dev/null 2>&1 & - rethinkdb --port-offset 2 --directory rethinkdb_data2 --join localhost:29015 > /dev/null 2>&1 & script: - cargo test - cargo doc --no-deps
language: rust rust: - nightly - beta - stable - 1.15.0 addons: rethinkdb: '2.3.5' before_script: - rethinkdb --port-offset 1 --directory rethinkdb_data1 --join localhost:29015 > /dev/null 2>&1 & - rethinkdb --port-offset 2 --directory rethinkdb_data2 --join localhost:29015 > /dev/null 2>&1 & script: - cargo test - cargo doc --no-deps
Add Rust v1.15.0 as minimum supported version
Add Rust v1.15.0 as minimum supported version
YAML
apache-2.0
rust-rethinkdb/reql,rust-rethinkdb/reql,rust-rethinkdb/reql,rust-rethinkdb/reql,rust-rethinkdb/reql,rust-rethinkdb/reql
db37f9539d34df9b60130faf4d127c2912969105
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 before_script: "pushd spec/dummy && RAILS_ENV=test bundle exec rake db:create db:migrate; popd" notifications: recipients: - [email protected]
language: ruby rvm: - 1.9.3 - 2.0.0 before_install: - gem install bundler before_script: "pushd spec/dummy && RAILS_ENV=test bundle exec rake db:create db:migrate; popd" notifications: recipients: - [email protected]
Use latest version of Bundler.
Travis: Use latest version of Bundler. Travis is currently using Bundler 1.13.6 on Ruby 2.0.0, and 1.7.6 on Ruby 1.9.3. These versions have a bug where Bundler will try to install the latest version of a gem that satisfies the dependencies even if that version is incompatible with the Ruby version.
YAML
agpl-3.0
oneclickorgs/rticles,oneclickorgs/rticles,oneclickorgs/rticles
f2727a354a6e99f6acb907b1f084aef2b3bec617
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "pypy" env: - DJANGO="Django<1.5" - DJANGO="Django<1.6" - DJANGO="Django<1.7" - DJANGO="Django<1.8" install: - pip install $DJANGO --use-mirrors script: - python runtests.py before_script: - sh -c "if [ '$DJANGO' = 'Django<1.5' -o '$DJANGO' = 'Django<1.6' ]; then pip install django-discover-runner; fi" matrix: exclude: - env: DJANGO="Django<1.5" python: "3.3" - env: DJANGO="Django<1.5" python: "3.4"
language: python python: - "2.7" - "3.3" - "3.4" - "pypy" env: - DJANGO="Django<1.6" - DJANGO="Django<1.7" - DJANGO="Django<1.8" install: - pip install $DJANGO --use-mirrors script: - python runtests.py before_script: - sh -c "if [ '$DJANGO' = 'Django<1.6' ]; then pip install django-discover-runner; fi"
Remove testing on Django 1.4
Remove testing on Django 1.4
YAML
bsd-2-clause
funkybob/formulation
704e4f42fe2fbbe141c52b6ea89575e63ca24046
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" env: - NODE_ENV=development
language: node_js node_js: - '0.10' env: - NODE_ENV=development notifications: slack: secure: fsCX0/TDE9TAJR0S91dboOZ4expmCc8o6joVzsHNJYTJfDtSJehdKjTzYuO/vsRigOOoQZ0dJEPl+D4fysBDV+jkOT5sTjp/uKtcfwHwPi03K8GauwvyW0x4N1M+mY+5jN2ZyBZXqVM5dc0wbgldP9QOg5UpB80hfWUZ+0F1MTM=
Send notifiction to Slack after CI build
script: Send notifiction to Slack after CI build
YAML
mit
bpytlik/abao,cybertk/abao
0393acfee72c191e94d1e8071e5ae0acd86b7a06
.travis.yml
.travis.yml
language: go go: - 1.6 - 1.7 - 1.8.x
language: go go: - 1.6.x - 1.7.x - 1.8.x
Use wildcard versions for Go in Travis config.
Use wildcard versions for Go in Travis config. So that the latest patch version is tested.
YAML
apache-2.0
google/pprof,google/pprof,rauls5382/pprof,google/pprof,google/pprof,rauls5382/pprof
af1061ff19e7e005826e7b10664824ee724f0960
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '0.10' - '0.12' - 'iojs' before_script: npm config set coverage true after_success: npm run-script coveralls env: - DEBUG="yeoman:generator"
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4' - '5' before_script: npm config set coverage true after_success: npm run-script coveralls env: - DEBUG="yeoman:generator"
Test on node v4 and v5 instead of iojs
Test on node v4 and v5 instead of iojs
YAML
mit
janraasch/generator-reveal,janraasch/generator-reveal,slara/generator-reveal,riezebosch/generator-reveal-infosupport,riezebosch/generator-reveal-infosupport,slara/generator-reveal
38bc480a8619b6bda1ed6d0481599735bf7af5d8
.travis.yml
.travis.yml
# WARNING: # Do not use this file as a template for you repository TravisCI configuration # Instead use the files under the "/sample_files" directory for that purpose. language: python python: - "2.7" virtualenv: system_site_packages: true env: - VERSION="master" - VERSION="8.0" - VERSION="7.0" - VERSION="6.1" # - VERSION="6.0" # Test script not ready for v6.0 install: #- git clone https://github.com/OCA/maintainer-quality-tools.git $HOME/maintainer-quality-tools - cp -r ../maintainer-quality-tools/ $HOME # for maintainer-quality-tools self tests only - export PATH=$HOME/maintainer-quality-tools/travis:$PATH - travis_install_nightly $VERSION - $HOME/maintainer-quality-tools/travis/travis_install_nightly ${VERSION} - pip install coveralls flake8 script: - travis_run_flake8 - travis_run_tests ${VERSION} after_success: coveralls
# WARNING: # Do not use this file as a template for you repository TravisCI configuration # Instead use the files under the "/sample_files" directory for that purpose. language: python python: - "2.7" virtualenv: system_site_packages: true env: - VERSION="master" - VERSION="8.0" - VERSION="7.0" - VERSION="6.1" # - VERSION="6.0" # Test script not ready for v6.0 install: #- git clone https://github.com/OCA/maintainer-quality-tools.git $HOME/maintainer-quality-tools - cp -r ../maintainer-quality-tools/ $HOME # for maintainer-quality-tools self tests only - export PATH=$HOME/maintainer-quality-tools/travis:$PATH - travis_install_nightly $VERSION - pip install coveralls flake8 script: - travis_run_flake8 - travis_run_tests ${VERSION} after_success: coveralls
Remove duplicate call to install script
Remove duplicate call to install script
YAML
agpl-3.0
suvit/maintainer-quality-tools,OCA/maintainer-quality-tools,suvit/maintainer-quality-tools,kittiu/maintainer-quality-tools,ERP-Ukraine/maintainer-quality-tools,ilyasProgrammer/maintainer-quality-tools,dreispt/maintainer-quality-tools,acsone/maintainer-quality-tools,ERP-Ukraine/maintainer-quality-tools,hbrunn/maintainer-quality-tools,ilyasProgrammer/maintainer-quality-tools,yvaucher/maintainer-quality-tools,Vauxoo/maintainer-quality-tools,OCA/maintainer-quality-tools,dreispt/maintainer-quality-tools,Endika/maintainer-quality-tools,gurneyalex/maintainer-quality-tools,gurneyalex/maintainer-quality-tools,gurneyalex/maintainer-quality-tools,acsone/maintainer-quality-tools,OCA/maintainer-quality-tools,Vauxoo/maintainer-quality-tools,Vauxoo/maintainer-quality-tools,savoirfairelinux/maintainer-quality-tools,acsone/maintainer-quality-tools,yvaucher/maintainer-quality-tools,Ehtaga/maintainer-quality-tools,hbrunn/maintainer-quality-tools,kittiu/maintainer-quality-tools,savoirfairelinux/maintainer-quality-tools,vauxoo-dev/maintainer-quality-tools,ERP-Ukraine/maintainer-quality-tools,Ehtaga/maintainer-quality-tools,vauxoo-dev/maintainer-quality-tools,dreispt/maintainer-quality-tools,Endika/maintainer-quality-tools