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
a64e3a740b998a6d4ea559b22b69bb338464460d
.travis.yml
.travis.yml
rvm: - 2.2.0 - 2.1.0 - 2.0.0 gemfile: - Gemfile install: "bundle install" script: "ruby -Itest test/test_textfile.rb" notifications: email: - piers@varyonic.com
rvm: - 2.3.0 - 2.2.0 - 2.1.0 - 2.0.0 gemfile: - Gemfile install: "bundle install" script: "ruby -Itest test/test_textfile.rb" notifications: email: - piers@varyonic.com
Add Ruby 2.3 to Travis CI.
Add Ruby 2.3 to Travis CI.
YAML
mit
varyonic/textfile
6f3c1d2d8e865f3faf3dd9d270187d382f8ac86c
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7 - 7.1 - 7.2 install: - composer self-update - composer install --prefer-dist --no-interaction script: ./vendor/bin/phpunit
dist: trusty language: php php: - 5.5 - 5.6 - 7 - 7.1 - 7.2 install: - composer self-update - composer install --prefer-dist --no-interaction script: ./vendor/bin/phpunit
Switch Travis config to Trusty for PHP 5.* support
Switch Travis config to Trusty for PHP 5.* support
YAML
mit
picqer/moneybird-php-client
45823465ac6ab6c765c06656d8c71dda461df5a1
.travis.yml
.travis.yml
language: php php: - 7.0 - 7.1 - 7.2 - 7.3 - 7.4 matrix: allow_failures: before_script: - wget -c https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar - composer self-update - composer install --prefer-source script: - mkdir -p build/logs - composer run-script phpcs - cd tests && ../vendor/bin/phpunit && cd .. after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover ../build/logs/clover.xml
language: php php: - 7.0 - 7.1 - 7.2 - 7.3 - 7.4 matrix: allow_failures: - php: 7.4 before_script: - wget -c https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar - composer self-update - composer install --prefer-source script: - mkdir -p build/logs - composer run-script phpcs - cd tests && ../vendor/bin/phpunit && cd .. after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover ../build/logs/clover.xml
Allow php 7.4 to fail
Allow php 7.4 to fail
YAML
mit
siriusphp/validation
ff129369b90f2aea90f2140794bde5103733eac7
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler rvm: - 2.0.0 - 2.1 - 2.2 - 2.3.1 before_script: - git config --local user.email "travis@travis.ci" - git config --local user.name "Travis CI" script: - bundle exec overcommit --sign - bundle exec overcommit --run
language: ruby sudo: false cache: bundler rvm: - 2.1 - 2.2 - 2.3.1 before_script: - git config --local user.email "travis@travis.ci" - git config --local user.name "Travis CI" script: - bundle exec overcommit --sign - bundle exec overcommit --run
Remove Ruby 2.0.0 from Travis matrix
Remove Ruby 2.0.0 from Travis matrix We don't support Ruby before 2.1 since we use required keyword arguments.
YAML
mit
sds/gerrit
674eb40ab57a154e6ee1c874e8077e70c4ccaeba
.travis.yml
.travis.yml
--- language: node_js node_js: - "4" sudo: false cache: directories: - node_modules env: - EMBER_TRY_SCENARIO=ember-1.13 - EMBER_TRY_SCENARIO=ember-lts-2.4 - EMBER_TRY_SCENARIO=ember-release - EMBER_TRY_SCENARIO=ember-beta - EMBER_TRY_SCENARIO=ember-canary matrix: fast_finish: true allow_failures: - env: EMBER_TRY_SCENARIO=ember-canary before_install: - npm config set spin false - npm install -g bower - bower --version - npm install phantomjs-prebuilt - node_modules/phantomjs-prebuilt/bin/phantomjs --version install: - npm install - bower install script: - ember try:one $EMBER_TRY_SCENARIO test --skip-cleanup
--- language: node_js node_js: - "4" sudo: false cache: directories: - node_modules env: - EMBER_TRY_SCENARIO=ember-1.13 - EMBER_TRY_SCENARIO=ember-lts-2.4 - EMBER_TRY_SCENARIO=ember-release - EMBER_TRY_SCENARIO=ember-beta - EMBER_TRY_SCENARIO=ember-canary matrix: fast_finish: true allow_failures: - env: EMBER_TRY_SCENARIO=ember-canary before_install: - npm config set spin false - npm install -g bower - bower --version - npm install phantomjs-prebuilt - node_modules/phantomjs-prebuilt/bin/phantomjs --version install: - npm install - bower install script: - ember try:one $EMBER_TRY_SCENARIO test --skip-cleanup deploy: provider: npm email: tobias.bieniek@gmx.de api_key: secure: V/2EC1mCfWuYui+MyzrOnZqCWhwJDTEyhsrxlAPIN0T/BbHQdFgYlu+V4Pi03D/Mn0/0x50pcRmvA9A2SfylollRRTZNlnsHvc9QVT+SAp5ww49umhbOLUlEa9+HvufT1U8+t5kUYzBJ8EJJb0fXpqtpvgdf6Q5ZFeOiQ783lYg= on: tags: true repo: ember-cli/ember-cli-mocha
Deploy tags automatically to NPM
CI: Deploy tags automatically to NPM
YAML
apache-2.0
ember-cli/ember-cli-mocha,switchfly/ember-cli-mocha,ember-cli/ember-cli-mocha,switchfly/ember-cli-mocha
d41e4f2a5d9c070d6dd3905d2539d15de59cab35
.travis.yml
.travis.yml
language: node_js node_js: - "stable" install : travis_wait npm install
language: node_js node_js: - "6" after_success: - npm run coverage - npm run report-coverage
Change node version and add coverage reporting
Change node version and add coverage reporting
YAML
mit
amarachukwu-agbo/hello-books,amarachukwu-agbo/hello-books
1e4e4070607e66dcec49f593479a81366e27700b
.travis.yml
.travis.yml
language: python cache: pip sudo: false # Supported CPython versions: # https://en.wikipedia.org/wiki/CPython#Version_history python: - pypy3 - 3.7-dev - 3.6 - 3.5 - 3.4 install: - pip install -U coverage - pip install -U flake8 - pip install -U pillow - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip install -U black; fi # Test at least one version with tqdm - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip install -U tqdm; fi script: - pip install -e . - coverage erase - travis_retry coverage run --append --include="src/*" test/unit/test_manager.py - travis_retry coverage run --append --include="src/*" test/functional/test_manager.py # Static analysis - flake8 setup.py src test examples - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then black --check --diff setup.py src test examples; fi after_success: - coverage report - pip install -U codecov - codecov matrix: fast_finish: true
language: python cache: pip sudo: false # Supported CPython versions: # https://en.wikipedia.org/wiki/CPython#Version_history matrix: fast_finish: true include: - python: "pypy3" - python: '3.7' dist: xenial sudo: required - python: '3.6' - python: '3.5' - python: '3.4' install: - pip install -U coverage - pip install -U flake8 - pip install -U pillow - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip install -U black; fi # Test at least one version with tqdm - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip install -U tqdm; fi script: - pip install -e . - coverage erase - travis_retry coverage run --append --include="src/*" test/unit/test_manager.py - travis_retry coverage run --append --include="src/*" test/functional/test_manager.py # Static analysis - flake8 setup.py src test examples - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then black --check --diff setup.py src test examples; fi after_success: - coverage report - pip install -U codecov - codecov
Replace Python 3.7-dev with 3.7 final
Replace Python 3.7-dev with 3.7 final
YAML
mit
hugovk/osmviz,hugovk/osmviz
e41e91dccf04304d894f1c4f586547c0f07fd279
.github/workflows/automerge.yml
.github/workflows/automerge.yml
name: Merge me test dependencies! on: workflow_run: types: - completed workflows: # List all required workflow names here. - 'Run tests' - 'Test build package' - 'Run linters' jobs: merge-me: name: Merge me! runs-on: ubuntu-latest steps: - # It is often a desired behavior to merge only when a workflow execution # succeeds. This can be changed as needed. if: ${{ github.event.workflow_run.conclusion == 'success' }} name: Merge me! uses: ridedott/merge-me-action@v2.10.17 with: # Depending on branch protection rules, a manually populated # `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to # a protected branch must be used. This secret can have an arbitrary # name, as an example, this repository uses `DOTTBOTT_TOKEN`. # # When using a custom token, it is recommended to leave the following # comment for other developers to be aware of the reasoning behind it: # # This must be used as GitHub Actions token does not support pushing # to protected branches. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE PRESET: DEPENDABOT_MINOR ENABLED_FOR_MANUAL_CHANGES: 'true'
name: Merge me test dependencies! on: workflow_run: types: - completed workflows: # List all required workflow names here. - 'Run tests' - 'Test build package' - 'Run linters' jobs: merge-me: name: Merge me! runs-on: ubuntu-latest steps: - # It is often a desired behavior to merge only when a workflow execution # succeeds. This can be changed as needed. if: ${{ github.event.workflow_run.conclusion == 'success' }} name: Merge me! uses: ridedott/merge-me-action@v2.10.18 with: # Depending on branch protection rules, a manually populated # `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to # a protected branch must be used. This secret can have an arbitrary # name, as an example, this repository uses `DOTTBOTT_TOKEN`. # # When using a custom token, it is recommended to leave the following # comment for other developers to be aware of the reasoning behind it: # # This must be used as GitHub Actions token does not support pushing # to protected branches. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE PRESET: DEPENDABOT_MINOR ENABLED_FOR_MANUAL_CHANGES: 'true'
Bump ridedott/merge-me-action from 2.10.17 to 2.10.18
Bump ridedott/merge-me-action from 2.10.17 to 2.10.18
YAML
mit
fizyk/pyramid_localize
c03da3cac36da4bcf93f7e8b3f0f7656c7492986
.github/workflows/demo_site.yml
.github/workflows/demo_site.yml
name: Build and Publish Demo Site on: pull_request: types: closed jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.300 - name: dotnet publish run: | cd demo dotnet publish -c Release cp -Rv ./bin/Release/netstandard2.1/publish/wwwroot/* ../docs/ - name: git commit run: | git config user.name $GITHUB_ACTOR git config user.email gh-actions-${GITHUB_ACTOR}@github.com git remote add gh-origin https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git git add -A && git commit -m "Build demo site" git push gh-origin HEAD:master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Build and Publish Demo Site on: push: branches: - master jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.300 - name: dotnet publish run: | cd demo dotnet publish -c Release cp -Rv ./bin/Release/netstandard2.1/publish/wwwroot/* ../docs/ - name: git commit run: | git config user.name $GITHUB_ACTOR git config user.email gh-actions-${GITHUB_ACTOR}@github.com git remote add gh-origin https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git git add -A && git commit -m "Build demo site" git push gh-origin HEAD:master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Build demo on master commit
Build demo on master commit
YAML
mit
bradyholt/cron-expression-descriptor,bradyholt/cron-expression-descriptor
52317c3b7773192a97a9da69a1fa8f0c555781da
.github/workflows/merge-bot.yml
.github/workflows/merge-bot.yml
name: Merge me! on: check_suite: types: - completed jobs: merge-me: name: Merge me! runs-on: ubuntu-latest steps: - name: Merge me! uses: ridedott/merge-me-action@v2.8.20 with: # Depending on branch protection rules, a manually populated # `GITHUB_TOKEN_WORKAROUND` environment variable with permissions to # push to a protected branch must be used. This variable can have an # arbitrary name, as an example, this repository uses # `GITHUB_TOKEN_DOTTBOTT`. # # When using a custom token, it is recommended to leave the following # comment for other developers to be aware of the reasoning behind it: # # This must be used as GitHub Actions token does not support # pushing to protected branches. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE
name: Merge me! on: check_suite: types: - completed jobs: merge-me: name: Merge me! runs-on: ubuntu-latest steps: - name: Merge me! uses: ridedott/merge-me-action@v2.8.21 with: # Depending on branch protection rules, a manually populated # `GITHUB_TOKEN_WORKAROUND` environment variable with permissions to # push to a protected branch must be used. This variable can have an # arbitrary name, as an example, this repository uses # `GITHUB_TOKEN_DOTTBOTT`. # # When using a custom token, it is recommended to leave the following # comment for other developers to be aware of the reasoning behind it: # # This must be used as GitHub Actions token does not support # pushing to protected branches. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE
Bump ridedott/merge-me-action from 2.8.20 to 2.8.21
Bump ridedott/merge-me-action from 2.8.20 to 2.8.21
YAML
bsd-3-clause
lcobucci/di-builder
27a53ffae470b1d03021d605eb88a30277f94a00
.github/workflows/run-tests.yml
.github/workflows/run-tests.yml
# This workflow will install Python dependencies, run tests and converage with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Run tests on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, pypy2, pypy3] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Upgrade pip run: | python -m pip install --upgrade pip - name: Install dependencies run: | python -m pip install -r requirements-dev.txt - name: Test with coverage run: | python sh.py travis python -m flake8 sh.py test.py if python -c 'import sys; sys.exit(int(not sys.version_info >= (3, 5)))' ; then python setup.py check --restructuredtext --metadata --strict ; fi - name: Report coverage to Coveralls uses: AndreMiras/coveralls-python-action@develop
# This workflow will install Python dependencies, run tests and converage with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Run tests on: [push] jobs: test: runs-on: ubuntu-latest strategy: matrix: python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, pypy2, pypy3] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Upgrade pip run: | python -m pip install --upgrade pip - name: Install dependencies run: | python -m pip install -r requirements-dev.txt - name: Test with coverage run: | python sh.py travis python -m flake8 sh.py test.py if python -c 'import sys; sys.exit(int(not sys.version_info >= (3, 5)))' ; then python setup.py check --restructuredtext --metadata --strict ; fi - name: Report coverage to Coveralls uses: AndreMiras/coveralls-python-action@develop with: parallel: true flag-name: Unit Test coveralls_finish: needs: test runs-on: ubuntu-latest steps: - name: Coveralls Finished uses: AndreMiras/coveralls-python-action@develop with: parallel-finished: true
Add final step, and mark unit test steps as parallel
Add final step, and mark unit test steps as parallel
YAML
mit
amoffat/sh,amoffat/sh
638dc0f9e1824f523d2091dc313d54e57ffa659b
.github/workflows/run-tests.yml
.github/workflows/run-tests.yml
name: Tests on: [ push, pull_request ] jobs: test: runs-on: ubuntu-latest strategy: fail-fast: true matrix: os: [ ubuntu-latest ] java: [ 8, 9, 10, 11 ] name: Java v${{ matrix.java }} - ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Set up Java uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} architecture: x64 - name: Cache Gradle packages uses: actions/cache@v2 with: path: | ~/.gradle/caches ~/.gradle/wrapper key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} restore-keys: | ${{ runner.os }}-gradle- - name: Run tests run: ./gradlew test - name: Cleanup Gradle Cache # Remove some files from the Gradle cache, so they aren't cached by GitHub Actions. # Restoring these files from a GitHub Actions cache might cause problems for future builds. run: | rm -f ~/.gradle/caches/modules-2/modules-2.lock rm -f ~/.gradle/caches/modules-2/gc.properties
name: Tests on: [ push, pull_request ] jobs: test: runs-on: ubuntu-latest strategy: fail-fast: true matrix: os: [ ubuntu-latest ] java: [ 8, 9, 10, 11 ] name: Java v${{ matrix.java }} - ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Set up Java uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} architecture: x64 - name: Cache Gradle packages uses: actions/cache@v2 with: path: | ~/.gradle/caches ~/.gradle/wrapper key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} restore-keys: | ${{ runner.os }}-gradle- - name: Make gradlew executable run: chmod +x ./gradlew - name: Run tests run: ./gradlew test - name: Cleanup Gradle Cache # Remove some files from the Gradle cache, so they aren't cached by GitHub Actions. # Restoring these files from a GitHub Actions cache might cause problems for future builds. run: | rm -f ~/.gradle/caches/modules-2/modules-2.lock rm -f ~/.gradle/caches/modules-2/gc.properties
Make gradlew executable during tests
Make gradlew executable during tests
YAML
mit
AvaIre/AvaIre,AvaIre/AvaIre
085f98e869f4d5ce4e633900fb20790d75439441
.github/workflows/run-tests.yml
.github/workflows/run-tests.yml
name: Run tests on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: mongodb-version: [4.0.18] java-version: [1.8] steps: - uses: actions/checkout@v2 - name: Setup Java JDK uses: actions/setup-java@v1.4.3 # The Java version to make available on the path. Takes a whole or semver Java version, or 1.x syntax (e.g. 1.8 => Java 8.x). Early access versions can be specified in the form of e.g. 14-ea, 14.0.0-ea, or 14.0.0-ea.28 with: java-version: ${{ matrix.java-version }} - name: Install and Start MongoDB run: | wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-${{ matrix.mongodb-version }}.tgz tar xfz mongodb-linux-x86_64-${{ matrix.mongodb-version }}.tgz export PATH=`pwd`/mongodb-linux-x86_64-${{ matrix.mongodb-version }}/bin:$PATH mkdir -p data/db mongod --dbpath=data/db & mongod --version - name: Run Maven tests run: | mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -PGithubActions mvn test -s .ci.settings.xml -PGithubActions
name: Run tests on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: mongodb-version: [4.0.18] java-version: [1.8] steps: - uses: actions/checkout@v2 - name: Setup Java JDK uses: actions/setup-java@v1.4.3 # The Java version to make available on the path. Takes a whole or semver Java version, or 1.x syntax (e.g. 1.8 => Java 8.x). Early access versions can be specified in the form of e.g. 14-ea, 14.0.0-ea, or 14.0.0-ea.28 with: java-version: ${{ matrix.java-version }} - name: Install and Start MongoDB run: | wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-${{ matrix.mongodb-version }}.tgz tar xfz mongodb-linux-x86_64-${{ matrix.mongodb-version }}.tgz export PATH=`pwd`/mongodb-linux-x86_64-${{ matrix.mongodb-version }}/bin:$PATH mkdir -p data/db mongod --dbpath=data/db & mongod --version - name: Run Maven tests run: | mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -PGithubActions mvn test -s .github/workflows/.ci.settings.xml -PGithubActions
Correct path for maven settings XML file
Correct path for maven settings XML file
YAML
apache-2.0
EBIvariation/eva-ws,EBIvariation/eva-ws
aab7f27c837965496c0a981e1231a921cf9a4c74
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm install: - travis_retry composer install --no-interaction --prefer-source script: - vendor/bin/phpunit matrix: fast_finish: true notifications: webhooks: urls: - https://webhooks.gitter.im/e/0c7cfb83f9925542003e on_success: change on_failure: always on_start: false
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm install: - travis_retry composer install --no-interaction --prefer-source - '[ -z "$MIN_VERSIONS" ] || composer require --no-interaction --prefer-source $MIN_VERSIONS' script: - vendor/bin/phpunit matrix: fast_finish: true include: - php: 5.3 env: MIN_VERSIONS="symfony/console:2.3.10 symfony/var-dumper:2.7.0 nikic/php-parser:1.2.1 jakub-onderka/php-console-highlighter:0.3.0" allow_failures: - env: MIN_VERSIONS="symfony/console:2.3.10 symfony/var-dumper:2.7.0 nikic/php-parser:1.2.1 jakub-onderka/php-console-highlighter:0.3.0"
Add minimum dependency versions to build matrix.
Add minimum dependency versions to build matrix. Allow them to fail (for now). Fixes #273
YAML
mit
damiankloip/psysh,bobthecow/psysh,damiankloip/psysh,damiankloip/psysh,bobthecow/psysh
384078fe52438355de7b3a7238e1aeb2b09a997f
.travis.yml
.travis.yml
addons: postgresql: "9.1" language: python python: - "2.7" env: - DJANGO=Django==1.6.8 install: - pip install -q $DJANGO --use-mirrors - pip install -r post/tests/requirements.txt --use-mirrors before_script: - psql -U postgres -c "create database jmbo encoding 'UTF8'" script: python setup.py test
language: python env: - TOXENV=django19 install: - pip install tox before_script: - psql -U postgres -c "create database jmbo encoding 'UTF8'" script: tox
Update Travis to use postgres
Update Travis to use postgres
YAML
bsd-3-clause
praekelt/jmbo-post,praekelt/jmbo-post
a91d36e039f6bb23952a908d47ddc3151aa3aeae
.github/workflows/windowsci.yml
.github/workflows/windowsci.yml
name: CI on Windows on: [push] jobs: Build-And-Test-Windows: runs-on: windows-latest steps: - uses: actions/checkout@v1 - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.100 - name: Build run: dotnet build --configuration Release - name: Test run: dotnet test --configuration Release
name: CI on Windows on: [push, pull_request] jobs: Build-And-Test-Windows: runs-on: windows-latest steps: - uses: actions/checkout@v1 - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.100 - name: Build run: dotnet build --configuration Release - name: Test run: dotnet test --configuration Release
Revert "no need to run things on a pull-request"
Revert "no need to run things on a pull-request" This reverts commit a4b652ab01938a1439404057e07c00ecc335ab54.
YAML
mit
p-org/P,p-org/P,p-org/P,p-org/P,p-org/P
38fc24d478a4e9905878d0f211439662f4e321ed
.travis.yml
.travis.yml
language: ruby services: - mongodb before_install: gem install bundler -v 1.15.3 before_script: rake empty_dest rvm: - 2.2.6 - 2.3.3 - 2.4.1
language: ruby services: - mongodb before_install: gem install bundler -v 1.15.3 before_script: rake empty_dest rvm: - 2.2.10 - 2.3.7 - 2.4.4 - 2.5.1
Test against Ruby 2.5 and patched
[CI] Test against Ruby 2.5 and patched
YAML
mit
sunitparekh/data-anonymization,sunitparekh/data-anonymization
0c6dbed487583587e92cbe920dfcb29fe9f92731
.travis.yml
.travis.yml
language: python python: - "2.7" # Default install: - pip install -r requirements.txt # Default script: - python manage.py test - flake8 .
language: python python: - "2.7" # Default install: - pip install -r requirements.txt # Default script: - cp .env.example .env - python manage.py test - flake8 .
Update Travis script - copy .env.example
Update Travis script - copy .env.example
YAML
mit
mriddle/brainiac
ab6be98b09eb85154fefc4fe4ba1a0aecaf31471
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode
rvm: - 1.9.3 - 2.0.0 - 2.1.0 - jruby-1.7.9 - rbx-2.1.1
Test on some newer Rubies, and drop support for older ones
Test on some newer Rubies, and drop support for older ones
YAML
mit
kty1965/weather-api,stewart/weather-api
b49be7deeabbaad0b3bbe8c5ce98d190af342898
.travis.yml
.travis.yml
language: python python: - '2.7' - '2.6' env: global: - secure: CNMxMTOQQ9MPjDiovmwBgNVugdglzU9WaZ6N/rNE0qyby892YmZuhdmWrm08zH07peIdTtvbX4RHXTY36PcU6tyfRwcYGKCowkJnxzfczXuYwQC5ItLGl79BvQe+0k0N7+3hmNUCe895tKhvCJZwl8nrhnFCDh4hKg69F5qIleE= - secure: CHvcWYrSd/0WVQSeVSYQ/73j5RJi7uQiknofFonHisU5YxjuDA1Jpsi1yzuk+U1hQGh0MUynSh6omfJUlffQFF3Oiz00zyCb5jmF+XkMm4q9uyiMltVD4xfuq6YmMJxmi9hco9sBESZbd2mwlH4yUys/wVp4C+dOr204PWi73Qw= install: pip install -r requirements.txt script: python run_tests.py
language: python python: - '2.7' - '2.6' env: global: - secure: TVFg6VDgzyE8VjPQVepE2JTXNbjpCBiiB3tF+rtjwzinnyPaesJ/a1P4XazzdP98Yjx1BPUxvB5kR0uDhseoUOGnZ0F5oeAr44sXZ1itGyANmFsF+cTK/zU2Ov7j+8deDypBxvgOad/LzAE0wihgNFpFopCPs0OdaBn7pfBiv40= - secure: dAgkutD1GS4VhlRF6tmC0MoKUTakIaFcaQ8vKBQzW9Z5Q+Knjmuwx4iArc73kByg5T1KloERNcKoAGrya9rwuUYFMldLtqeYK/nTMx8ejRZ0PmGqlpmtGvJR8iN+FSdLuiVkfKvZewRHybgQt0mL2886tihf1dbVWDWTcIk/gSc= install: pip install -r requirements.txt script: python run_tests.py
Update secret keys for this repo
Update secret keys for this repo
YAML
unlicense
rdegges/django-twilio,aditweb/django-twilio
d66e992475fecdde62a40f8d603a07d557948ddf
.travis.yml
.travis.yml
dist: trusty language: java jdk: - oraclejdk8 after_success: - mvn -pl :valdr-bean-validation clean test jacoco:report coveralls:jacoco env: secure: LAJs6O7Nyc3+8u5IhjEjZ5Jh1GBK91XQ1f/NMNhjQEH9hdo91YJKqPq07QAIqjERIZDiFg2z4yoBmEVlg3AAeiX8SRt+JZ81wgf3OZ2ZP4SJ6OBtDpe4Inv670fCLn167ktWZUI03oypCOck5B0MHafrg1ty9okbO2Br84UzYvc=
language: java jdk: - openjdk8 after_success: - mvn -pl :valdr-bean-validation clean test jacoco:report coveralls:jacoco env: secure: LAJs6O7Nyc3+8u5IhjEjZ5Jh1GBK91XQ1f/NMNhjQEH9hdo91YJKqPq07QAIqjERIZDiFg2z4yoBmEVlg3AAeiX8SRt+JZ81wgf3OZ2ZP4SJ6OBtDpe4Inv670fCLn167ktWZUI03oypCOck5B0MHafrg1ty9okbO2Br84UzYvc=
Use the default build distribution on Travis CI
build: Use the default build distribution on Travis CI
YAML
mit
netceteragroup/valdr-bean-validation,netceteragroup/valdr-bean-validation
8a2fca1d14d4bb2bfad502afed52af318d76305a
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.3 before_install: - gem update --system - gem install bundler - bundle install - rake install # Tests use real git commands - git config --global user.email "danger@example.com" - git config --global user.name "Danger McShane" script: - bundle exec rake spec - danger
language: ruby cache: bundler rvm: - 2.1.3 before_install: - gem install bundler - bundle install - rake install # Tests use real git commands - git config --global user.email "danger@example.com" - git config --global user.name "Danger McShane" script: - bundle exec rake spec - danger
Use bundler caching in CI
Use bundler caching in CI
YAML
mit
danger/danger,orta/danger,danger/danger,beubi/danger,orta/danger,danger/danger,beubi/danger,beubi/danger,KrauseFx/danger,KrauseFx/danger
42809a5b6d7b1798608efcd635e5eee166786c4e
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" install: - pip install flake8 tox coverage==3.7.1 coveralls before_script: - flake8 - mkdir -p shippable/{codecoverage,testresults} script: - tox -e py${TRAVIS_PYTHON_VERSION/\./} after_success: - coverage report - coverage xml - mv -v coverage.xml shippable/codecoverage/ - mv -v unittests.xml shippable/testresults/ - coveralls || true - pip freeze notifications: slack: rooms: - organice:uPGToVwXE2IYAwn4hFFudPJ5#notifications
language: python python: - "2.7" - "3.3" - "3.4" install: - pip install flake8 tox coverage==3.7.1 coveralls before_script: - flake8 - mkdir -p shippable/{codecoverage,testresults} script: - tox -e py${TRAVIS_PYTHON_VERSION/\./} after_success: - coverage report - coverage xml - mv -v coverage.xml shippable/codecoverage/ - mv -v unittests.xml shippable/testresults/ - coveralls || true notifications: slack: rooms: - organice:uPGToVwXE2IYAwn4hFFudPJ5#notifications
Remove `pip freeze` from CI config (already listed by tox)
Remove `pip freeze` from CI config (already listed by tox)
YAML
apache-2.0
Organice/django-organice,Organice/django-organice
bdc1cc25b10d4d6196b8f13bc7468d6a6d19c60e
.travis.yml
.travis.yml
sudo: required dist: trusty language: node_js node_js: - "4.0" - "4.1" - "4.2" - "4.3" - "4.4" - "5.0" - "5.1" - "5.2" - "5.3" - "5.4" - "5.5" - "5.6" - "5.7" - "5.8" - "5.9" - "5.10" - "5.11" - "6.0" - "6.1" - "6.2" before_install: sudo apt-get update && sudo apt-get install lcov -y before_script: npm install -g coveralls node-gyp after_success: - npm run benchmark - node-gyp --debug rebuild - npm test -- --coverage --coverage-report=lcov - lcov -c -d . --no-external -o lcov-cpp.info - lcov -r lcov-cpp.info "*/node_modules/*" -o lcov-cpp.info - lcov -a lcov-cpp.info -a coverage/lcov.info -o lcov.info - coveralls < lcov.info
sudo: required dist: trusty language: node_js node_js: - "4.0" - "4.1" - "4.2" - "4.3" - "4.4" - "5.0" - "5.1" - "5.2" - "5.3" - "5.4" - "5.5" - "5.6" - "5.7" - "5.8" - "5.9" - "5.10" - "5.11" - "6.0" - "6.1" - "6.2" - "6.3" before_install: sudo apt-get update && sudo apt-get install lcov -y before_script: npm install -g coveralls node-gyp after_success: - npm run benchmark - node-gyp --debug rebuild - npm test -- --coverage --coverage-report=lcov - lcov -c -d . --no-external -o lcov-cpp.info - lcov -r lcov-cpp.info "*/node_modules/*" -o lcov-cpp.info - lcov -a lcov-cpp.info -a coverage/lcov.info -o lcov.info - coveralls < lcov.info
Update node versions to test
Update node versions to test
YAML
mit
ranisalt/node-argon2,markfejes/node-argon2,markfejes/node-argon2,ranisalt/node-argon2,ranisalt/node-argon2,markfejes/node-argon2
f0bddc8ac8837032716e0cf1791df8fd77456c40
.travis.yml
.travis.yml
language: haskell ghc: 7.8 script: - cabal configure --enable-tests --enable-library-coverage -v2 && cabal build && cabal test after_script: - cabal install hpc-coveralls - hpc-coveralls --exclude-dir=tests tests notifications: email: true deploy: provider: releases api_key: $RELEASE_KEY file: - dist/build/docgen/docgen - dist/build/hierarchy/hierarchy - dist/build/psc-make/psc-make - dist/build/psc/psc - dist/build/psci/psci - prelude/prelude.purs skip_cleanup: true on: all_branches: true tags: true
language: haskell ghc: 7.8 script: - cabal configure --enable-tests --enable-library-coverage -v2 && cabal build && cabal test after_script: - cabal install hpc-coveralls - hpc-coveralls --exclude-dir=tests tests notifications: email: true before_deploy: "./bundle/build.sh" deploy: provider: releases api_key: $RELEASE_KEY file: - bundle/*.tar.gz - bundle/*.sha skip_cleanup: true on: all_branches: true tags: true
Update Travis build to create bundle.
Update Travis build to create bundle.
YAML
mit
michaelficarra/purescript,michaelficarra/purescript
c8cbedea9913a327f4e2a042dc3ad92239b304e4
.travis.yml
.travis.yml
language: objective-c osx_image: xcode8 env: - IOS_VER="10.0" FL_ARGS="verify" FASTLANE_XCODE_LIST_TIMEOUT=120 # - IOS_VER="9.3" FL_ARGS="verify" FASTLANE_XCODE_LIST_TIMEOUT=120 # - IOS_VER="9.2" FL_ARGS="analyze" # - IOS_VER="9.2" FL_ARGS="verify scheme:WikipediaRTL" # - IOS_VER="8.4" FL_ARGS="verify sim_os:${IOS_VER}" # - IOS_VER="8.4" FL_ARGS="verify sim_os:${IOS_VER} scheme:WikipediaRTL" before_install: - bundle install install: - make travis-get-deps before_script: - SIMULATOR_ID=$(xcrun instruments -s | grep -o "iPhone 6 (${IOS_VER}) \[.*\]" | grep -o "\[.*\]" | sed "s/^\[\(.*\)\]$/\1/") script: - echo $SIMULATOR_ID - open -b com.apple.iphonesimulator --args -CurrentDeviceUDID $SIMULATOR_ID - set -o pipefail - bundle exec fastlane $FL_ARGS after_success: - bash <(curl -s https://codecov.io/bash) -J 'Wikipedia*' branches: only: - master - develop
language: objective-c osx_image: xcode8 env: - IOS_VER="10.0" FL_ARGS="verify" FASTLANE_XCODE_LIST_TIMEOUT=120 # - IOS_VER="9.3" FL_ARGS="verify" FASTLANE_XCODE_LIST_TIMEOUT=120 # - IOS_VER="9.2" FL_ARGS="analyze" # - IOS_VER="9.2" FL_ARGS="verify scheme:WikipediaRTL" # - IOS_VER="8.4" FL_ARGS="verify sim_os:${IOS_VER}" # - IOS_VER="8.4" FL_ARGS="verify sim_os:${IOS_VER} scheme:WikipediaRTL" install: - bundle install - make travis-get-deps before_script: - SIMULATOR_ID=$(xcrun instruments -s | grep -o "iPhone 6 (${IOS_VER}) \[.*\]" | grep -o "\[.*\]" | sed "s/^\[\(.*\)\]$/\1/") script: - echo $SIMULATOR_ID - open -b com.apple.iphonesimulator --args -CurrentDeviceUDID $SIMULATOR_ID - set -o pipefail - bundle exec fastlane $FL_ARGS after_success: - bash <(curl -s https://codecov.io/bash) -J 'Wikipedia*' branches: only: - master - develop
Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "add before_install"""""""""
Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "add before_install""""""""" This reverts commit 3a20980fe981cb9450c96ae88958c64355c46294.
YAML
mit
josve05a/wikipedia-ios,montehurd/apps-ios-wikipedia,wikimedia/wikipedia-ios,josve05a/wikipedia-ios,julienbodet/wikipedia-ios,josve05a/wikipedia-ios,anirudh24seven/wikipedia-ios,wikimedia/apps-ios-wikipedia,wikimedia/apps-ios-wikipedia,wikimedia/wikipedia-ios,julienbodet/wikipedia-ios,anirudh24seven/wikipedia-ios,julienbodet/wikipedia-ios,anirudh24seven/wikipedia-ios,wikimedia/apps-ios-wikipedia,josve05a/wikipedia-ios,montehurd/apps-ios-wikipedia,anirudh24seven/wikipedia-ios,wikimedia/wikipedia-ios,josve05a/wikipedia-ios,josve05a/wikipedia-ios,wikimedia/wikipedia-ios,montehurd/apps-ios-wikipedia,montehurd/apps-ios-wikipedia,josve05a/wikipedia-ios,josve05a/wikipedia-ios,montehurd/apps-ios-wikipedia,wikimedia/apps-ios-wikipedia,wikimedia/apps-ios-wikipedia,julienbodet/wikipedia-ios,wikimedia/apps-ios-wikipedia,wikimedia/apps-ios-wikipedia,julienbodet/wikipedia-ios,anirudh24seven/wikipedia-ios,julienbodet/wikipedia-ios,wikimedia/wikipedia-ios,anirudh24seven/wikipedia-ios,wikimedia/wikipedia-ios,wikimedia/apps-ios-wikipedia,montehurd/apps-ios-wikipedia,anirudh24seven/wikipedia-ios,anirudh24seven/wikipedia-ios,wikimedia/wikipedia-ios,julienbodet/wikipedia-ios,julienbodet/wikipedia-ios,montehurd/apps-ios-wikipedia,montehurd/apps-ios-wikipedia
eaeca1ba9db320733f31fe07b588d82360a51fa4
.travis.yml
.travis.yml
language: c sudo: required services: - docker env: matrix: - python=3.4 CONDA_PY=34 CONDA_NPY=18 install: - docker pull bioconda/bioconda-builder script: - docker run -v `pwd`:/tmp/conda-recipes bioconda/bioconda-builder /bin/build-packages.sh
language: c sudo: required services: - docker env: global: - CONDA_NPY=18 matrix: - CONDA_PY=34 - CONDA_PY=27 install: - docker pull bioconda/bioconda-builder script: - docker run -v `pwd`:/tmp/conda-recipes bioconda/bioconda-builder /bin/build-packages.sh
Build for python 2.7 and 3.4
Build for python 2.7 and 3.4
YAML
mit
chapmanb/bioconda-recipes,jfallmann/bioconda-recipes,rob-p/bioconda-recipes,colinbrislawn/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,oena/bioconda-recipes,mdehollander/bioconda-recipes,JenCabral/bioconda-recipes,rob-p/bioconda-recipes,xguse/bioconda-recipes,ivirshup/bioconda-recipes,ThomasWollmann/bioconda-recipes,cokelaer/bioconda-recipes,gvlproject/bioconda-recipes,saketkc/bioconda-recipes,gvlproject/bioconda-recipes,shenwei356/bioconda-recipes,zwanli/bioconda-recipes,omicsnut/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,gregvonkuster/bioconda-recipes,zwanli/bioconda-recipes,dkoppstein/recipes,peterjc/bioconda-recipes,lpantano/recipes,jasper1918/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,daler/bioconda-recipes,pinguinkiste/bioconda-recipes,ThomasWollmann/bioconda-recipes,joachimwolff/bioconda-recipes,mcornwell1957/bioconda-recipes,npavlovikj/bioconda-recipes,shenwei356/bioconda-recipes,zwanli/bioconda-recipes,keuv-grvl/bioconda-recipes,rob-p/bioconda-recipes,jfallmann/bioconda-recipes,keuv-grvl/bioconda-recipes,chapmanb/bioconda-recipes,rob-p/bioconda-recipes,yesimon/bioconda-recipes,rvalieris/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,mcornwell1957/bioconda-recipes,omicsnut/bioconda-recipes,gregvonkuster/bioconda-recipes,joachimwolff/bioconda-recipes,yesimon/bioconda-recipes,pinguinkiste/bioconda-recipes,bebatut/bioconda-recipes,matthdsm/bioconda-recipes,acaprez/recipes,bioconda/bioconda-recipes,jasper1918/bioconda-recipes,npavlovikj/bioconda-recipes,hardingnj/bioconda-recipes,oena/bioconda-recipes,xguse/bioconda-recipes,bioconda/recipes,mdehollander/bioconda-recipes,matthdsm/bioconda-recipes,chapmanb/bioconda-recipes,daler/bioconda-recipes,saketkc/bioconda-recipes,dmaticzka/bioconda-recipes,matthdsm/bioconda-recipes,HassanAmr/bioconda-recipes,guowei-he/bioconda-recipes,colinbrislawn/bioconda-recipes,daler/bioconda-recipes,martin-mann/bioconda-recipes,colinbrislawn/bioconda-recipes,peterjc/bioconda-recipes,mcornwell1957/bioconda-recipes,HassanAmr/bioconda-recipes,zachcp/bioconda-recipes,omicsnut/bioconda-recipes,keuv-grvl/bioconda-recipes,ThomasWollmann/bioconda-recipes,HassanAmr/bioconda-recipes,dkoppstein/recipes,JingchaoZhang/bioconda-recipes,gvlproject/bioconda-recipes,bow/bioconda-recipes,hardingnj/bioconda-recipes,abims-sbr/bioconda-recipes,guowei-he/bioconda-recipes,cokelaer/bioconda-recipes,CGATOxford/bioconda-recipes,bioconda/bioconda-recipes,Luobiny/bioconda-recipes,keuv-grvl/bioconda-recipes,lpantano/recipes,gvlproject/bioconda-recipes,HassanAmr/bioconda-recipes,JenCabral/bioconda-recipes,yesimon/bioconda-recipes,hardingnj/bioconda-recipes,xguse/bioconda-recipes,gvlproject/bioconda-recipes,CGATOxford/bioconda-recipes,peterjc/bioconda-recipes,phac-nml/bioconda-recipes,JingchaoZhang/bioconda-recipes,JingchaoZhang/bioconda-recipes,saketkc/bioconda-recipes,roryk/recipes,HassanAmr/bioconda-recipes,rvalieris/bioconda-recipes,saketkc/bioconda-recipes,peterjc/bioconda-recipes,dmaticzka/bioconda-recipes,peterjc/bioconda-recipes,lpantano/recipes,martin-mann/bioconda-recipes,ThomasWollmann/bioconda-recipes,JenCabral/bioconda-recipes,ostrokach/bioconda-recipes,ostrokach/bioconda-recipes,ostrokach/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,abims-sbr/bioconda-recipes,colinbrislawn/bioconda-recipes,pinguinkiste/bioconda-recipes,joachimwolff/bioconda-recipes,rvalieris/bioconda-recipes,mdehollander/bioconda-recipes,Luobiny/bioconda-recipes,pinguinkiste/bioconda-recipes,acaprez/recipes,bow/bioconda-recipes,martin-mann/bioconda-recipes,bioconda/bioconda-recipes,daler/bioconda-recipes,roryk/recipes,ivirshup/bioconda-recipes,guowei-he/bioconda-recipes,ivirshup/bioconda-recipes,ostrokach/bioconda-recipes,ostrokach/bioconda-recipes,omicsnut/bioconda-recipes,keuv-grvl/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,oena/bioconda-recipes,saketkc/bioconda-recipes,martin-mann/bioconda-recipes,acaprez/recipes,ivirshup/bioconda-recipes,pinguinkiste/bioconda-recipes,martin-mann/bioconda-recipes,bioconda/recipes,Luobiny/bioconda-recipes,dmaticzka/bioconda-recipes,daler/bioconda-recipes,rvalieris/bioconda-recipes,abims-sbr/bioconda-recipes,mcornwell1957/bioconda-recipes,yesimon/bioconda-recipes,JenCabral/bioconda-recipes,cokelaer/bioconda-recipes,guowei-he/bioconda-recipes,joachimwolff/bioconda-recipes,zwanli/bioconda-recipes,matthdsm/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,jfallmann/bioconda-recipes,HassanAmr/bioconda-recipes,cokelaer/bioconda-recipes,mdehollander/bioconda-recipes,CGATOxford/bioconda-recipes,daler/bioconda-recipes,hardingnj/bioconda-recipes,ivirshup/bioconda-recipes,JenCabral/bioconda-recipes,matthdsm/bioconda-recipes,jasper1918/bioconda-recipes,shenwei356/bioconda-recipes,lpantano/recipes,dkoppstein/recipes,phac-nml/bioconda-recipes,zachcp/bioconda-recipes,gregvonkuster/bioconda-recipes,CGATOxford/bioconda-recipes,chapmanb/bioconda-recipes,zwanli/bioconda-recipes,bebatut/bioconda-recipes,bioconda/bioconda-recipes,dmaticzka/bioconda-recipes,colinbrislawn/bioconda-recipes,oena/bioconda-recipes,bow/bioconda-recipes,npavlovikj/bioconda-recipes,pinguinkiste/bioconda-recipes,matthdsm/bioconda-recipes,phac-nml/bioconda-recipes,jfallmann/bioconda-recipes,ostrokach/bioconda-recipes,bow/bioconda-recipes,bioconda/recipes,mcornwell1957/bioconda-recipes,abims-sbr/bioconda-recipes,zachcp/bioconda-recipes,CGATOxford/bioconda-recipes,CGATOxford/bioconda-recipes,blankenberg/bioconda-recipes,colinbrislawn/bioconda-recipes,chapmanb/bioconda-recipes,JenCabral/bioconda-recipes,phac-nml/bioconda-recipes,gregvonkuster/bioconda-recipes,guowei-he/bioconda-recipes,mdehollander/bioconda-recipes,JingchaoZhang/bioconda-recipes,abims-sbr/bioconda-recipes,ThomasWollmann/bioconda-recipes,joachimwolff/bioconda-recipes,peterjc/bioconda-recipes,dmaticzka/bioconda-recipes,keuv-grvl/bioconda-recipes,abims-sbr/bioconda-recipes,jasper1918/bioconda-recipes,ivirshup/bioconda-recipes,xguse/bioconda-recipes,dmaticzka/bioconda-recipes,roryk/recipes,Luobiny/bioconda-recipes,jasper1918/bioconda-recipes,bebatut/bioconda-recipes,blankenberg/bioconda-recipes,rvalieris/bioconda-recipes,zachcp/bioconda-recipes,blankenberg/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,phac-nml/bioconda-recipes,zwanli/bioconda-recipes,hardingnj/bioconda-recipes,mdehollander/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,xguse/bioconda-recipes,shenwei356/bioconda-recipes,gvlproject/bioconda-recipes,blankenberg/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,bow/bioconda-recipes,ThomasWollmann/bioconda-recipes,rvalieris/bioconda-recipes,bebatut/bioconda-recipes,joachimwolff/bioconda-recipes,npavlovikj/bioconda-recipes,bow/bioconda-recipes,oena/bioconda-recipes,saketkc/bioconda-recipes,acaprez/recipes,omicsnut/bioconda-recipes
f192d1bf54e8c62a567bd5af21b2bedbb3e8c6d7
.travis.yml
.travis.yml
language: go sudo: required go: - 1.9.x - 1.10.x - 1.11.x - tip go_import_path: github.com/containerd/continuity env: # NOTE: we cannot set GOOS directly (because gimme overrides the value) - TRAVIS_GOOS=windows - TRAVIS_GOOS=linux - TRAVIS_GOOS=darwin script: - export GOOS=${TRAVIS_GOOS} - make build binaries - if [ "$GOOS" = "linux" ]; then make vet test; fi - if [ "$GOOS" != "linux" ]; then make test-compile; fi
language: go sudo: required go: - 1.9.x - 1.10.x - 1.11.x - tip go_import_path: github.com/containerd/continuity env: # NOTE: we cannot set GOOS directly (because gimme overrides the value) - TRAVIS_GOOS=windows - TRAVIS_GOOS=linux - TRAVIS_GOOS=darwin install: - go get -u github.com/vbatts/git-validation - go get -u github.com/kunalkushwaha/ltag - go get -u github.com/LK4D4/vndr before_script: - pushd ..; git clone https://github.com/containerd/project; popd script: - export GOOS=${TRAVIS_GOOS} - DCO_VERBOSITY=-q ../project/script/validate/dco - ../project/script/validate/fileheader ../project/ - ../project/script/validate/vendor - make build binaries - if [ "$GOOS" = "linux" ]; then make vet test; fi - if [ "$GOOS" != "linux" ]; then make test-compile; fi
Add common project validation scripts
Add common project validation scripts Test using common validation scripts/templates from containerd/project and add them to continuity's travis config. Signed-off-by: Phil Estes <dbac1f450dc8326caa7ba104b384a0eca642250c@linux.vnet.ibm.com>
YAML
apache-2.0
containerd/continuity,stevvooe/continuity,stevvooe/continuity
91c1378f1a9ef1cbec772d9937206d5929faa710
.travis.yml
.travis.yml
env: global: - LC_CTYPE=en_US.UTF-8 matrix: include: - os: osx language: objective-c osx_image: xcode8 script: - set -o pipefail - xcodebuild build-for-testing test-without-building -workspace APIKit.xcworkspace -scheme APIKit -configuration Release ENABLE_TESTABILITY=YES | xcpretty -c - xcodebuild build-for-testing test-without-building -workspace APIKit.xcworkspace -scheme APIKit -configuration Release -sdk iphonesimulator -destination "name=iPhone 6s" ENABLE_TESTABILITY=YES | xcpretty -c - xcodebuild build-for-testing test-without-building -workspace APIKit.xcworkspace -scheme APIKit -configuration Release -sdk appletvsimulator -destination "name=Apple TV 1080p" ENABLE_TESTABILITY=YES | xcpretty -c after_success: - bash <(curl -s https://codecov.io/bash) - os: osx language: generic osx_image: xcode8 script: - swift build - swift test notifications: email: false
env: global: - LC_CTYPE=en_US.UTF-8 matrix: include: - os: osx language: objective-c osx_image: xcode8.1 script: - set -o pipefail - xcodebuild build-for-testing test-without-building -workspace APIKit.xcworkspace -scheme APIKit -configuration Release ENABLE_TESTABILITY=YES | xcpretty -c - xcodebuild build-for-testing test-without-building -workspace APIKit.xcworkspace -scheme APIKit -configuration Release -sdk iphonesimulator -destination "name=iPhone 6s" ENABLE_TESTABILITY=YES | xcpretty -c - xcodebuild build-for-testing test-without-building -workspace APIKit.xcworkspace -scheme APIKit -configuration Release -sdk appletvsimulator -destination "name=Apple TV 1080p" ENABLE_TESTABILITY=YES | xcpretty -c after_success: - bash <(curl -s https://codecov.io/bash) - os: osx language: generic osx_image: xcode8.1 script: - swift build - swift test notifications: email: false
Use Xcode 8.1 image on Travis CI
Use Xcode 8.1 image on Travis CI
YAML
mit
ishkawa/APIKit,ishkawa/APIKit
6a95e9b8ded5918c61bbf7b45974976b77bf4e59
.travis.yml
.travis.yml
language: ruby rvm: - 2.6.5 before_install: - sudo apt-get update - sudo apt-get --yes remove postgresql\* - sudo apt-get install -y postgresql-12 postgresql-client-12 - sudo cp /etc/postgresql/{9.6,12}/main/pg_hba.conf - sudo service postgresql restart 12 gemfile: - gemfiles/activerecord_4.gemfile - gemfiles/activerecord_5.gemfile - gemfiles/activerecord_6.gemfile services: - postgresql before_script: - psql -c 'create database postgresql_cursor_test;' -U postgres - psql -c 'CREATE ROLE travis SUPERUSER LOGIN CREATEDB;' -U postgres - psql -c 'create table products ( id serial primary key, data varchar);' -U postgres -d postgresql_cursor_test addons: postgresql: '12.1'
language: ruby rvm: - 2.6.5 before_install: - sudo apt-get update - sudo apt-get --yes remove postgresql\* - sudo apt-get install -y postgresql-12 postgresql-client-12 - sudo cp /etc/postgresql/{9.6,12}/main/pg_hba.conf - sudo service postgresql restart 12 gemfile: - gemfiles/activerecord_4.gemfile - gemfiles/activerecord_5.gemfile - gemfiles/activerecord_6.gemfile services: - postgresql before_script: - psql -c 'create database postgresql_cursor_test;' -U postgres - psql -c 'CREATE ROLE travis SUPERUSER LOGIN CREATEDB;' -U postgres - psql -c 'create table products ( id serial primary key, data varchar);' -U postgres -d postgresql_cursor_test - psql -c 'create table prices ( id serial primary key, data varchar, product_id integer);' -U postgres -d postgresql_cursor_test addons: postgresql: '12.1'
Create prices table on CI as well.
Create prices table on CI as well.
YAML
mit
afair/postgresql_cursor,afair/postgresql_cursor
5e791b7424bd340d3a26a9f63a3035b30a98038c
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" # command to install dependencies install: "pip install -r dev_requirements.txt" # command to run tests script: - 'nosetests'
language: python python: - "2.7" # command to install dependencies install: "pip install -r dev_requirements.txt" # command to run tests script: - 'nosetests'
Drop py 3.3 for now
Drop py 3.3 for now
YAML
mit
mohabusama/pyguacamole
d813fbff3f82745360b44a099b3afd789beb5b0d
.travis.yml
.travis.yml
language: node_js install: - npm install koa - npm install node_js: - "4" - "6" - "8"
language: node_js install: - npm install koa - npm install node_js: - "8"
Test only on node 8 (need async/await)
Test only on node 8 (need async/await)
YAML
mit
simonratner/koa-acme
3a42383e50882be234188a782e7f956bfb642652
.travis.yml
.travis.yml
language: cpp compiler: - gcc install: - sudo apt-get install gcc-multilib g++-multilib cmake before_script: - cmake . -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32 script: - make - make test - make package
language: cpp compiler: - gcc install: - sudo apt-get install gcc-multilib g++-multilib cmake python - git clone --depth=1 https://github.com/Zeex/samp-server-cli.git cli before_script: - cmake . -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32 env: - PATH=cli/bin:$PATH script: - make - make test - make package
Install samp-server-cli prior to running make test on Travis
Install samp-server-cli prior to running make test on Travis
YAML
bsd-2-clause
Zeex/samp-plugin-crashdetect,Zeex/samp-plugin-crashdetect,Zeex/samp-plugin-crashdetect
7f044f6177a354a117c00e32134a808438984286
.travis.yml
.travis.yml
language: node_js node_js: - 10.12 # every second counts git: depth: 5 env: - NODE_ENV=production ESLINT_BEFORE_BUILD=false jobs: include: - stage: test name: "eslint" cache: directories: - node_modules install: - npm install --dev script: - npm run lint -- --max-warnings=0 - stage: test name: "tests" cache: directories: - node_modules install: - npm install --dev script: - npm run test -- --maxWorkers=2 - stage: test name: "server tests" cache: directories: - server/node_modules env: - NODE_ENV=test install: - cd server && npm install --dev && cd .. script: - cd server && npm run test:once -- --maxWorkers=2 && cd .. # TODO: Code duplication calculator - stage: build services: docker cache: directories: - node_modules - server/node_modules script: docker build -f .docker/production/Dockerfile --tag wowanalyzer . # Reminder: deploy doesn't run on PRs deploy: provider: script skip_cleanup: true script: bash .docker/production/deploy.sh on: all_branches: true after_failure: - chmod +x .travis/discord-hook/fail.sh - ./.travis/discord-hook/fail.sh notifications: webhooks: https://www.travisbuddy.com/ on_success: never
language: node_js node_js: - 10.12 # every second counts git: depth: 5 env: - NODE_ENV=production ESLINT_BEFORE_BUILD=false jobs: include: - stage: test name: "eslint" cache: directories: - node_modules install: - npm install --dev script: - npm run lint -- --max-warnings=0 - stage: test name: "tests" cache: directories: - node_modules install: - npm install --dev script: - npm run test -- --maxWorkers=2 - stage: test name: "server tests" cache: directories: - server/node_modules env: - NODE_ENV=test install: - cd server && npm install --dev && cd .. script: - cd server && npm run test:once -- --maxWorkers=2 && cd .. # TODO: Code duplication calculator - stage: build services: docker script: docker build -f .docker/production/Dockerfile --tag wowanalyzer . # Reminder: deploy doesn't run on PRs deploy: provider: script skip_cleanup: true script: bash .docker/production/deploy.sh on: all_branches: true after_failure: - chmod +x .travis/discord-hook/fail.sh - ./.travis/discord-hook/fail.sh notifications: webhooks: https://www.travisbuddy.com/ on_success: never
Disable cache in production build
Disable cache in production build
YAML
agpl-3.0
anom0ly/WoWAnalyzer,ronaldpereira/WoWAnalyzer,WoWAnalyzer/WoWAnalyzer,anom0ly/WoWAnalyzer,sMteX/WoWAnalyzer,ronaldpereira/WoWAnalyzer,Juko8/WoWAnalyzer,WoWAnalyzer/WoWAnalyzer,yajinni/WoWAnalyzer,fyruna/WoWAnalyzer,anom0ly/WoWAnalyzer,anom0ly/WoWAnalyzer,WoWAnalyzer/WoWAnalyzer,fyruna/WoWAnalyzer,fyruna/WoWAnalyzer,yajinni/WoWAnalyzer,sMteX/WoWAnalyzer,FaideWW/WoWAnalyzer,sMteX/WoWAnalyzer,Juko8/WoWAnalyzer,yajinni/WoWAnalyzer,Juko8/WoWAnalyzer,ronaldpereira/WoWAnalyzer,FaideWW/WoWAnalyzer,FaideWW/WoWAnalyzer,yajinni/WoWAnalyzer
49934057c5ff39f30b3d8c2bdbf94dd12daa2c08
.travis.yml
.travis.yml
language: python python: # https://github.com/travis-ci/travis-ci/issues/2219#issuecomment-41804942 # https://snarky.ca/how-to-use-your-project-travis-to-help-test-python-itself/ - "2.7" - "3.5" - "3.5-dev" - "3.6" - "3.6-dev" - "3.7" - "3.7-dev" - "3.8" - "3.8-dev" - "nightly" before_install: # install dependencies for NumPy - sudo apt-get update -qq - sudo apt-get install -qq gfortran libatlas-base-dev - sudo apt-get install -qq python-numpy install: - pip install -U pip wheel setuptools - pip install -U pytest codecov pytest-cov - python setup.py install - pip install -U tinysegmenter jieba konlpy - python -c "import nltk; nltk.download('punkt')" script: pytest tests after_success: - codecov
language: python os: linux cache: pip matrix: include: - name: "Python 2.7 on Linux" python: 2.7 - name: "Python 3.5 on Linux" python: 3.5 - name: "Python 3.6 on Linux" python: 3.6 - name: "Python 3.7 on Linux" python: 3.7 - name: "Python 3.8 on Linux" dist: xenial python: 3.8 # https://github.com/travis-ci/travis-ci/issues/2219#issuecomment-41804942 # https://snarky.ca/how-to-use-your-project-travis-to-help-test-python-itself/ - name: "Python 3.9 Nightly on Linux" dist: bionic python: nightly - name: "Pypy 3 on Linux" python: pypy3 - name: "Python 3 on older macOS" os: osx osx_image: xcode9.4 language: shell before_install: - sw_vers - python3 --version - pip3 --version - name: "Python 3 on macOS" os: osx osx_image: xcode11 language: shell before_install: - sw_vers - python3 --version - pip3 --version allow_failures: - python: nightly - python: pypy3 - os: osx before_install: # install dependencies for NumPy - sudo apt-get update -qq - sudo apt-get install -qq gfortran libatlas-base-dev install: - pip install -U pip wheel setuptools - python setup.py install - pip install -U numpy tinysegmenter jieba konlpy - python -c "import nltk; nltk.download('punkt')" - pip install -U pytest codecov pytest-cov script: pytest tests after_success: - codecov
Add testing matrix for TravisCI
Add testing matrix for TravisCI
YAML
apache-2.0
miso-belica/sumy,miso-belica/sumy
25f5c639012be445d9e807329af31e5eb8908617
.travis.yml
.travis.yml
# See the following URLs for further details on Travis CI # https://docs.travis-ci.com/user/customizing-the-build/ # https://docs.travis-ci.com/user/docker/ # https://docs.travis-ci.com/user/multi-os/ # whitelist (branches that should be built) branches: only: - master - /^issue.*$/ matrix: include: - os: linux dist: trusty sudo: required - os: linux dist: trusty sudo: required env: SWIFT_SNAPSHOT=3.0.2 - os: linux dist: trusty sudo: required env: SWIFT_SNAPSHOT=4.0-DEVELOPMENT-SNAPSHOT-2017-06-29-a - os: osx osx_image: xcode8.3 sudo: required - os: osx osx_image: xcode9 sudo: required env: SWIFT_SNAPSHOT=4.0-DEVELOPMENT-SNAPSHOT-2017-06-29-a before_install: - git clone https://github.com/IBM-Swift/Package-Builder.git script: - ./Package-Builder/build-package.sh -projectDir $TRAVIS_BUILD_DIR
# See the following URLs for further details on Travis CI # https://docs.travis-ci.com/user/customizing-the-build/ # https://docs.travis-ci.com/user/docker/ # https://docs.travis-ci.com/user/multi-os/ # whitelist (branches that should be built) branches: only: - master - /^issue.*$/ matrix: include: - os: linux dist: trusty sudo: required - os: linux dist: trusty sudo: required env: SWIFT_SNAPSHOT=3.0.2 - os: linux dist: trusty sudo: required env: SWIFT_SNAPSHOT=4.0-DEVELOPMENT-SNAPSHOT-2017-08-21-a - os: osx osx_image: xcode8.3 sudo: required - os: osx osx_image: xcode9 sudo: required env: SWIFT_SNAPSHOT=4.0-DEVELOPMENT-SNAPSHOT-2017-08-21-a before_install: - git clone https://github.com/IBM-Swift/Package-Builder.git script: - ./Package-Builder/build-package.sh -projectDir $TRAVIS_BUILD_DIR
Update Swift 4 snapshot version
Update Swift 4 snapshot version
YAML
apache-2.0
sandmman/Configuration
bcfc5ae9f3346d85c23c1d50a18993df85c623fa
.travis.yml
.travis.yml
os: - linux - osx dist: trusty sudo: required language: bash before_install: - sudo apt-get -qq update - sudo apt-get install -y mairix notmuch notmuch-mutt maildir-utils nmzmail script: - ./t/t.sh
os: - linux - osx dist: trusty sudo: required language: bash before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y mairix notmuch notmuch-mutt maildir-utils nmzmail; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install mairix notmuch mu ; fi script: - ./t/t.sh
Use brew on Travis CI Mac OS X
Use brew on Travis CI Mac OS X
YAML
unlicense
weisslj/muttjump
529db8da6449aff6e4e581f422c54a851feef109
.travis.yml
.travis.yml
language: python python: - "3.6" # Cache our Gcloud SDK and pip-installed libraries between commands cache: directories: - "$HOME/google-cloud-sdk/" - "$HOME/lib" env: # Set the App engine install location and add the SDK to our Python path - GOOGLE_APP_ENGINE_SDK=${HOME}/google-cloud-sdk PYTHONPATH=${PYTHONPATH}:${GOOGLE_APP_ENGINE_SDK} CLOUDSDK_CORE_DISABLE_PROMPTS=1 before_install: # If the SDK is not present, download it. When it's available, pull it into our path. - if [ ! -f ${GOOGLE_APP_ENGINE_SDK}/path.bash.inc ]; then rm -rf ${GOOGLE_APP_ENGINE_SDK} && curl https://sdk.cloud.google.com | bash; fi - source ${GOOGLE_APP_ENGINE_SDK}/path.bash.inc install: # Install the Python dependencies - pip install -r requirements.txt # Install and update additional GAE components - gcloud -q components install app-engine-python - gcloud -q components update script: # Run the unit tests - ./run.py -t
language: python python: - "3.6" # Cache our Gcloud SDK and pip-installed libraries between commands cache: directories: - "$HOME/google-cloud-sdk/" - "$HOME/lib" env: # Set the App engine install location and add the SDK to our Python path - GOOGLE_APP_ENGINE_SDK=${HOME}/google-cloud-sdk PYTHONPATH=${PYTHONPATH}:${GOOGLE_APP_ENGINE_SDK} CLOUDSDK_CORE_DISABLE_PROMPTS=1 before_install: # If the SDK is not present, download it. When it's available, pull it into our path. - if [ ! -f ${GOOGLE_APP_ENGINE_SDK}/path.bash.inc ]; then rm -rf ${GOOGLE_APP_ENGINE_SDK} && curl https://sdk.cloud.google.com | bash; fi - source ${GOOGLE_APP_ENGINE_SDK}/path.bash.inc install: # Install the Python dependencies - pip install -r requirements.txt # Install and update additional GAE components - gcloud -q components install app-engine-python - gcloud -q components update script: # Run the unit tests - ./run.py -t notifications: slack: pycolorado:S9WVa6L6dH9d0HPNU9bUUMof
Add slack integration for Travis
Add slack integration for Travis
YAML
mit
boulder-python/boulderpython.org,boulder-python/boulderpython.org,boulder-python/boulderpython.org,boulder-python/boulderpython.org
aa5a340a3de7dfc1995f086e7a1267005df24ed0
.travis.yml
.travis.yml
language: CSharp mono: - latest install: - curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_BRANCH=dev sh && source ~/.dnx/dnvm/dnvm.sh - dnvm upgrade - dnu restore env: - DNX_BUILD_VERSION=$TRAVIS_BRANCH-$TRAVIS_BUILD_NUMBER script: - dnu pack --configuration Release src/SharpEqualsTester/ - dnu build --configuration Release test/SharpEqualsTester.Tests - dnx --project test/SharpEqualsTester.Tests --configuration Release test - nuget push src/SharpEqualsTester/bin/Release/SharpEqualsTester.*.nupkg -ApiKey 40a11e65-c7f8-47cb-bfb9-c86ccd5e8234 -NonInteractive -Verbosity Detailed
language: CSharp mono: - latest install: - curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_BRANCH=dev sh && source ~/.dnx/dnvm/dnvm.sh - dnvm upgrade - dnu restore env: - DNX_BUILD_VERSION=$TRAVIS_BRANCH-$TRAVIS_BUILD_NUMBER script: - dnu pack --configuration Release src/SharpEqualsTester/ - dnu build --configuration Release test/SharpEqualsTester.Tests - dnx --project test/SharpEqualsTester.Tests --configuration Release test # Remove the symbols for now as SymbolSource is returning errors when publishing the package - rm -f src/SharpEqualsTester/bin/Release/SharpEqualsTester.*.symbols.nupkg - nuget push src/SharpEqualsTester/bin/Release/SharpEqualsTester.*.nupkg -ApiKey 40a11e65-c7f8-47cb-bfb9-c86ccd5e8234 -NonInteractive -Verbosity Detailed
Add command to delete symbols package for now as publishing this is returning an error from SymbolSource.org
Add command to delete symbols package for now as publishing this is returning an error from SymbolSource.org
YAML
mit
Choc13/SharpEqualsTester
067f6638f95bd000b0a92cfb45b668bca5b0efe3
.travis.yml
.travis.yml
bundler_args: --without development language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.2 - rbx-2 - ruby-head matrix: include: - rvm: jruby-18mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" - rvm: jruby-19mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" - rvm: jruby-head env: JRUBY_OPTS="$JRUBY_OPTS --debug" allow_failures: - rvm: jruby-18mode - rvm: jruby-19mode - rvm: jruby-head - rvm: rbx-2 - rvm: ruby-head fast_finish: true script: bundle exec thor spec
bundler_args: --without development language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.2 - rbx-2 - ruby-head matrix: include: - rvm: jruby-18mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" - rvm: jruby-19mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" - rvm: jruby-head env: JRUBY_OPTS="$JRUBY_OPTS --debug" allow_failures: - rvm: 1.9.2 - rvm: jruby-18mode - rvm: jruby-19mode - rvm: jruby-head - rvm: rbx-2 - rvm: ruby-head fast_finish: true script: bundle exec thor spec
Add Ruby 1.9.2 to allowed failures (for now)
Add Ruby 1.9.2 to allowed failures (for now)
YAML
mit
flyinbutrs/thor,b-dean/thor,b-dean/thor,linkodehub/thor,sideci-sample/sideci-sample-thor,fhernandez173/thor,fancyremarker/thor,segiddins/thor,fancyremarker/thor,erikhuda/thor,flyinbutrs/thor,fhernandez173/thor,doudou/thor,linkodehub/thor,segiddins/thor,sideci-sample/sideci-sample-thor
90488edb9de2fcca6b1656d9562259214d50baec
.travis.yml
.travis.yml
sudo: false branches: only: - master language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 before_install: - pip install --upgrade pip - pip --version install: python build.py deps script: python build.py analyse notifications: email: false irc: channels: - "irc.freenode.org#aspen" on_success: change on_failure: always template: - "%{repository} (%{branch}:%{commit} by %{author}): %{message} (%{build_url})" skip_join: true
sudo: false branches: only: - master language: python python: - 2.6 - 2.7 before_install: - pip install --upgrade pip - pip --version install: python build.py deps script: python build.py analyse notifications: email: false irc: channels: - "irc.freenode.org#aspen" on_success: change on_failure: always template: - "%{repository} (%{branch}:%{commit} by %{author}): %{message} (%{build_url})" skip_join: true
Revert "Test Python 3.* at Travis"
Revert "Test Python 3.* at Travis" This reverts commit 0f65508a0fdca2c67e1d47c204507d83a960e594. Conflicts: .travis.yml
YAML
mit
gratipay/aspen.py,gratipay/aspen.py
3989560f7ed433a4e965000cbaf1b49569cb6acc
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.2 before_install: - gem install scss-lint --no-ri --version '=0.22.0' - scss-lint app/assets/stylesheets/ --config .scss-lint.yml script: - psql -c 'create database factlink_test;' -U postgres - bundle exec rake db:setup - bundle exec rspec spec --profile - bundle exec rake konacha:load_poltergeist konacha:run - bundle exec rspec spec/acceptance --profile - "bundle exec rspec spec/screenshots --profile || (./bin/upload_screenshots_to_imgur.sh && false)" - bundle exec brakeman --except SessionSettings -q -z - bin/check_assets_updated.sh - bundle exec rails_best_practices --silent addons: code_climate: repo_token: 5bc532dd697587893f279a75aace11528bd17b63066856a48d22ddf40c7e8303 postgresql: 9.3
language: ruby rvm: - 2.1.2 before_install: - gem install scss-lint --no-ri --version '=0.25.1' - scss-lint app/assets/stylesheets/ --config .scss-lint.yml script: - psql -c 'create database factlink_test;' -U postgres - bundle exec rake db:setup - bundle exec rspec spec --profile - bundle exec rake konacha:load_poltergeist konacha:run - bundle exec rspec spec/acceptance --profile - "bundle exec rspec spec/screenshots --profile || (./bin/upload_screenshots_to_imgur.sh && false)" - bundle exec brakeman --except SessionSettings -q -z - bin/check_assets_updated.sh - bundle exec rails_best_practices --silent addons: code_climate: repo_token: 5bc532dd697587893f279a75aace11528bd17b63066856a48d22ddf40c7e8303 postgresql: 9.3
Use last version of the gem
Use last version of the gem
YAML
mit
Factlink/factlink-core,daukantas/factlink-core,Factlink/factlink-core,daukantas/factlink-core,Factlink/factlink-core,Factlink/factlink-core,daukantas/factlink-core,daukantas/factlink-core
05a4f3b3bb17e104faf3ec3a71379c16a925497a
.travis.yml
.travis.yml
language: java sudo: false notifications: email: false script: - ./gradlew check --info --stacktrace before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ - asm/
language: java sudo: false notifications: email: false script: - ./gradlew check --info --stacktrace before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ - asm/ jdk: - oraclejdk8
Use Java 1.8 on Travis
Use Java 1.8 on Travis Permgen has gone here so that shouldn't break it
YAML
mit
SquidDev-CC/CCTweaks-Lua
e41e575a0509ef5cef16487286383ec636bb84b9
.travis.yml
.travis.yml
language: swift osx_image: xcode8.3 xcode_project: Bourne.xcodeproj xcode_scheme: - Bourne-iOS Tests - Bourne-tvOS Tests - Bourne-macOS Tests
language: swift osx_image: xcode8.3 xcode_project: Bourne.xcodeproj matrix: include: - xcode_scheme: Bourne-iOS Tests xcode_sdk: iphonesimulator10.3 - xcode_scheme: Bourne-macOS Tests xcode_sdk: macosx10.12 - xcode_scheme: Bourne-tvOS Tests xcode_sdk: appletvsimulator10.2
Include a matrix for the different builds
[ci] Include a matrix for the different builds
YAML
mit
nanoxd/Bourne,nanoxd/Bourne
04e2e9267c89d7195f9dcbc0713cf2066e1dc736
.travis.yml
.travis.yml
language: objective-c before_script: - brew update - brew upgrade xctool || true script: - xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release -sdk iphonesimulator build-tests - xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release run-tests -test-sdk iphonesimulator8.1 - xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release run-tests -test-sdk iphonesimulator7.1 - xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release run-tests -test-sdk iphonesimulator7.0 - xctool -project RMStore.xcodeproj -scheme 'RMStoreDemo' -configuration Release -sdk iphonesimulator branches: only: - master
language: objective-c before_script: - brew update - brew upgrade xctool || true script: - xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release -sdk iphonesimulator build-tests - xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release run-tests -test-sdk iphonesimulator8.1 - xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release run-tests -test-sdk iphonesimulator7.1 - xctool -project RMStore.xcodeproj -scheme 'RMStoreDemo' -configuration Release -sdk iphonesimulator branches: only: - master
Remove 7.0 from Travis config
Remove 7.0 from Travis config
YAML
apache-2.0
rodericj/RMStore,Serjip/RMStore,xxkkk/RMStore,catlan/RMStore,Serjip/RMStore,Pocket-Prep/RMStore,mluisbrown/RMStore,mluisbrown/RMStore,rodericj/RMStore,s-alexander/RMStore,mluisbrown/RMStore,catlan/RMStore,Pocket-Prep/RMStore,robotmedia/RMStore,Pocket-Prep/RMStore,rodericj/RMStore,catlan/RMStore,xxkkk/RMStore,robotmedia/RMStore,s-alexander/RMStore,robotmedia/RMStore,Serjip/RMStore,xxkkk/RMStore,s-alexander/RMStore
2393c2cb3cd39fd510d491d226a87257e7d3de95
.travis.yml
.travis.yml
language: rust sudo: false rust: - stable - beta - nightly # necessary for `travis-cargo coveralls --no-sudo` addons: apt: packages: - libcurl4-openssl-dev - libelf-dev - libdw-dev os: - linux cache: directories: - $HOME/.cargo before_script: - pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH script: - travis-cargo test after_success: - travis-cargo coveralls --no-sudo
language: rust sudo: false rust: - stable - beta - nightly # necessary for `travis-cargo coveralls --no-sudo` addons: apt: packages: - libcurl4-openssl-dev - libelf-dev - libdw-dev os: - linux cache: directories: - $HOME/.cargo matrix: allow_failures: - rust: nightly before_script: - pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH script: - travis-cargo build - travis-cargo test after_success: - travis-cargo coveralls --no-sudo
Allow failures on nightly channel
Allow failures on nightly channel
YAML
mit
mbrt/ruplicity,mbrt/ruplicity
65c45f5633ac74998c753091fdd74854ab273d69
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" install: - pip install pep8 - pip install --upgrade pyflakes - pip install unittest2 - pip install coveralls before_script: - pep8 *.py */*.py script: - coverage run -m unittest2.__main__ discover --start-directory=didyoumean --pattern=*.py after_success: coveralls
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "nightly" install: - pip install pep8 - pip install --upgrade pyflakes - pip install unittest2 - pip install coveralls before_script: - pep8 *.py */*.py script: - coverage run -m unittest2.__main__ discover --start-directory=didyoumean --pattern=*.py after_success: coveralls
Add nightly Python version in Travis
Add nightly Python version in Travis
YAML
mit
SylvainDe/DidYouMean-Python
eee58c14ee7e39c6a568663a22f62eb80be5520e
.travis.yml
.travis.yml
language: node_js node_js: - 4.2 addons: firefox: latest env: - WEBPACK_SUFFIX= - WEBPACK_SUFFIX=@beta install: - npm install --ignore-scripts - npm rm webpack - npm rm extract-text-webpack-plugin - npm install "webpack""$WEBPACK_SUFFIX" --ignore-scripts || true - npm install "extract-text-webpack-plugin""$WEBPACK_SUFFIX" --ignore-scripts || true before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start script: - ./node_modules/karma/bin/karma start --single-run --browsers Firefox - ./node_modules/mocha/bin/mocha test/test-webpack.js
language: node_js node_js: - 6.9 addons: firefox: latest env: - WEBPACK_SUFFIX= - WEBPACK_SUFFIX=@beta install: - npm install --ignore-scripts - npm rm webpack - npm rm extract-text-webpack-plugin - npm install "webpack""$WEBPACK_SUFFIX" --ignore-scripts || true - npm install "extract-text-webpack-plugin""$WEBPACK_SUFFIX" --ignore-scripts || true before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start script: - ./node_modules/karma/bin/karma start --single-run --browsers Firefox - ./node_modules/mocha/bin/mocha test/test-webpack.js
Align Travis and Appveyor Node versions
Align Travis and Appveyor Node versions
YAML
mit
waysact/webpack-subresource-integrity,waysact/webpack-subresource-integrity
883ef5b4fff2106f66ce920d797b52e5aa696e62
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.2 deploy: provider: rubygems api_key: secure: LAM8qxTQa6oxzKiQpWrqRlcE1czmGFj16NSj1FVgZYJLZIfXKdvSpth+DfuCk8mxG1tvDXa3ckfERrzexG3lYGNPGyZH2sjnyt900Evd3Bn8vhv0LXE7cEZb3x/uJ3RHRvKpEDnMsy4gqoVByDLWXWnI9Q/8B4AtzFeTVsTr48g= gem: knife-changelog on: tags: true repo: kamaradclimber/knife-changelog sudo: false # use docker based infra
language: ruby rvm: - 2.4 deploy: provider: rubygems api_key: secure: LAM8qxTQa6oxzKiQpWrqRlcE1czmGFj16NSj1FVgZYJLZIfXKdvSpth+DfuCk8mxG1tvDXa3ckfERrzexG3lYGNPGyZH2sjnyt900Evd3Bn8vhv0LXE7cEZb3x/uJ3RHRvKpEDnMsy4gqoVByDLWXWnI9Q/8B4AtzFeTVsTr48g= gem: knife-changelog on: tags: true repo: kamaradclimber/knife-changelog sudo: false # use docker based infra
Use ruby 2.[Travis] Use ruby 2.4
[Travis] Use ruby 2.[Travis] Use ruby 2.4 Change-Id: I6d45a7cf7e49a263bc3d44e1dc8403eb67acf4d1
YAML
mit
kamaradclimber/knife-changelog
21690dd9a300843efaa65b0da7b01cdddf04b43d
.travis.yml
.travis.yml
sudo: false language: ruby cache: bundler rvm: - 2.1 - 2.2 - 2.3.0 - 2.3.1 - ruby-head script: bundle exec rails test matrix: allow_failures: - rvm: ruby-head
sudo: false language: ruby cache: bundler: true before_install: - "rm ${BUNDLE_GEMFILE}.lock" - "gem update bundler" before_script: - bundle update - RAILS_ENV=test bundle exec rails db:create db:migrate rvm: - 2.1 - 2.2 - 2.3.0 - 2.3.1 - ruby-head matrix: allow_failures: - rvm: ruby-head
Add Continuous Integration with Travis CI
Add Continuous Integration with Travis CI
YAML
mit
casi/flatshare_app,casi/flatshare_app,casi/flatshare_app,casi/flatshare_app
4a90575636fe9f2fe38e503ef7981f3440e8ba4b
.travis.yml
.travis.yml
language: go go: - 1.2 - 1.3 - 1.4.4 - 1.5 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: - $HOME/gopath/bin/goveralls -service=travis-ci
language: go go: - 1.2 - 1.3 - 1.4.4 - 1.5 - tip
Revert "retry to add coveralls support"
Revert "retry to add coveralls support" This reverts commit 40616a155fb109f166d7ba7b438c3baf16c1fbec.
YAML
mit
fern4lvarez/piladb,fern4lvarez/piladb
0a49468e3413f06dd68264efbbd86012bf3d4b04
.travis.yml
.travis.yml
language: python sudo: false python: - 2.6 - 2.7 - 3.3 - 3.4 - 3.5 - pypy - pypy3 install: - pip install -e . - pip install pytest script: - python setup.py test
language: python sudo: false python: - 2.6 - 2.7 - 3.3 - 3.4 - 3.5 - pypy - pypy3 install: - pip install -e . - pip install pytest script: - py.test -v
Test with py.test command directly
Test with py.test command directly
YAML
mit
Parkayun/base65536
00a1835faeb10b3436309ea3f82158963bd7fe8c
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" install: script/travis-install script: - pwd - env - sekexe/run "`pwd`/script/travis $TRAVIS_PYTHON_VERSION"
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" matrix: allow_failures: - python: "3.2" - python: "3.3" install: script/travis-install script: - pwd - env - sekexe/run "`pwd`/script/travis $TRAVIS_PYTHON_VERSION"
Allow Python 3 to fail
Allow Python 3 to fail docker-py is broken
YAML
apache-2.0
ph-One/compose,talolard/compose,tpounds/compose,ouziel-slama/compose,mark-adams/compose,bdwill/docker.github.io,shubheksha/docker.github.io,heroku/fig,amitsaha/compose,rstacruz/compose,aduermael/docker.github.io,JimGalasyn/docker.github.io,denverdino/denverdino.github.io,jeanpralo/compose,tiry/compose,dnephin/compose,jrabbit/compose,bsmr-docker/compose,ggtools/compose,anweiss/docker.github.io,gdevillele/docker.github.io,denverdino/docker.github.io,mbailey/compose,vlajos/compose,albers/compose,marcusmartins/compose,JimGalasyn/docker.github.io,bdwill/docker.github.io,shin-/compose,dockerhn/compose,joeuo/docker.github.io,josephpage/compose,alunduil/fig,joaofnfernandes/docker.github.io,joaofnfernandes/docker.github.io,jzwlqx/denverdino.github.io,johnstep/docker.github.io,vdemeester/compose,johnstep/docker.github.io,phiroict/docker,runcom/compose,dopry/compose,joaofnfernandes/docker.github.io,bcicen/fig,dilgerma/compose,mohitsoni/compose,londoncalling/docker.github.io,denverdino/docker.github.io,TheDataShed/compose,jzwlqx/denverdino.github.io,jzwlqx/denverdino.github.io,mnuessler/compose,kojiromike/compose,LuisBosquez/docker.github.io,phiroict/docker,viranch/compose,nhumrich/compose,iamluc/compose,Katlean/fig,joeuo/docker.github.io,pspierce/compose,lmesz/compose,jessekl/compose,dbdd4us/compose,phiroict/docker,ekristen/compose,genki/compose,bobphill/compose,alexisbellido/docker.github.io,londoncalling/docker.github.io,lukemarsden/compose,troy0820/docker.github.io,uvgroovy/compose,tangkun75/compose,phiroict/docker,cgvarela/compose,rillig/docker.github.io,BSWANG/denverdino.github.io,unodba/compose,feelobot/compose,calou/compose,menglingwei/denverdino.github.io,alexisbellido/docker.github.io,docker-zh/docker.github.io,troy0820/docker.github.io,jzwlqx/denverdino.github.io,charleswhchan/compose,saada/compose,thaJeztah/docker.github.io,anweiss/docker.github.io,pspierce/compose,gdevillele/docker.github.io,ionrock/compose,thieman/compose,ChrisChinchilla/compose,j-fuentes/compose,Chouser/compose,philwrenn/compose,rillig/docker.github.io,bobphill/compose,nerro/compose,thaJeztah/docker.github.io,dbdd4us/compose,tangkun75/compose,ralphtheninja/compose,zhangspook/compose,swoopla/compose,BSWANG/denverdino.github.io,j-fuentes/compose,denverdino/denverdino.github.io,mnuessler/compose,danix800/docker.github.io,bcicen/fig,docker/docker.github.io,MSakamaki/compose,rillig/docker.github.io,marcusmartins/compose,gdevillele/docker.github.io,jessekl/compose,denverdino/denverdino.github.io,bcicen/fig,LuisBosquez/docker.github.io,Katlean/fig,mark-adams/compose,menglingwei/denverdino.github.io,TomasTomecek/compose,calou/compose,VinceBarresi/compose,jiekechoo/compose,michael-k/docker-compose,docker-zh/docker.github.io,shin-/docker.github.io,aduermael/docker.github.io,gtrdotmcs/compose,joeuo/docker.github.io,sdurrheimer/compose,denverdino/docker.github.io,ionrock/compose,jorgeLuizChaves/compose,JimGalasyn/docker.github.io,joeuo/docker.github.io,lmesz/compose,JimGalasyn/docker.github.io,ekristen/compose,simonista/compose,ouziel-slama/compose,noironetworks/compose,johnstep/docker.github.io,glogiotatidis/compose,anweiss/docker.github.io,mindaugasrukas/compose,thaJeztah/compose,schmunk42/compose,BSWANG/denverdino.github.io,danix800/docker.github.io,michael-k/docker-compose,nhumrich/compose,denverdino/denverdino.github.io,sanscontext/docker.github.io,au-phiware/compose,KalleDK/compose,qzio/compose,d2bit/compose,bdwill/docker.github.io,screwgoth/compose,rgbkrk/compose,heroku/fig,danix800/docker.github.io,menglingwei/denverdino.github.io,jorgeLuizChaves/compose,tpounds/compose,jonaseck2/compose,mbailey/compose,runcom/compose,artemkaint/compose,mosquito/docker-compose,alexandrev/compose,rillig/docker.github.io,moxiegirl/compose,dockerhn/compose,MSakamaki/compose,brunocascio/compose,ggtools/compose,aanand/fig,twitherspoon/compose,docker/docker.github.io,joeuo/docker.github.io,DoubleMalt/compose,unodba/compose,zhangspook/compose,docker/docker.github.io,bdwill/docker.github.io,mrfuxi/compose,tiry/compose,BSWANG/denverdino.github.io,vdemeester/compose,goloveychuk/compose,docker-zh/docker.github.io,mdaue/compose,shakamunyi/fig,gdevillele/docker.github.io,philwrenn/compose,denverdino/denverdino.github.io,kikkomep/compose,docker/docker.github.io,jrabbit/compose,GM-Alex/compose,schmunk42/compose,RobertNorthard/compose,hypriot/compose,RobertNorthard/compose,docker-zh/docker.github.io,mindaugasrukas/compose,gdevillele/docker.github.io,ZJaffee/compose,kikkomep/compose,VinceBarresi/compose,cclauss/compose,shin-/docker.github.io,jiekechoo/compose,denverdino/compose,thaJeztah/docker.github.io,alexisbellido/docker.github.io,kojiromike/compose,denverdino/docker.github.io,brunocascio/compose,mchasal/compose,GM-Alex/compose,artemkaint/compose,andrewgee/compose,Dakno/compose,josephpage/compose,gtrdotmcs/compose,menglingwei/denverdino.github.io,talolard/compose,shin-/docker.github.io,noironetworks/compose,lukemarsden/compose,bfirsh/fig,feelobot/compose,thieman/compose,Yelp/docker-compose,LuisBosquez/docker.github.io,thaJeztah/docker.github.io,londoncalling/docker.github.io,funkyfuture/docker-compose,joaofnfernandes/docker.github.io,bfirsh/fig,Yelp/docker-compose,abesto/fig,shin-/docker.github.io,dnephin/compose,phiroict/docker,mosquito/docker-compose,cgvarela/compose,johnstep/docker.github.io,glogiotatidis/compose,benhamill/compose,KevinGreene/compose,simonista/compose,shubheksha/docker.github.io,xydinesh/compose,iamluc/compose,charleswhchan/compose,alexisbellido/docker.github.io,mdaue/compose,screwgoth/compose,browning/compose,denverdino/compose,hoogenm/compose,shubheksha/docker.github.io,docker-zh/docker.github.io,viranch/compose,ain/compose,mnowster/compose,denverdino/docker.github.io,au-phiware/compose,troy0820/docker.github.io,Dakno/compose,sebglazebrook/compose,LuisBosquez/docker.github.io,londoncalling/docker.github.io,alunduil/fig,qzio/compose,alexandrev/compose,joaofnfernandes/docker.github.io,shin-/docker.github.io,sdurrheimer/compose,benhamill/compose,goloveychuk/compose,KevinGreene/compose,shubheksha/docker.github.io,jzwlqx/denverdino.github.io,funkyfuture/docker-compose,genki/compose,aduermael/docker.github.io,jonaseck2/compose,bbirand/compose,bsmr-docker/compose,aduermael/docker.github.io,ChrisChinchilla/compose,sanscontext/docker.github.io,troy0820/docker.github.io,xydinesh/compose,hypriot/compose,d2bit/compose,docker/docker.github.io,londoncalling/docker.github.io,TomasTomecek/compose,TheDataShed/compose,nerro/compose,rstacruz/compose,jgrowl/compose,andrewgee/compose,sanscontext/docker.github.io,abesto/fig,saada/compose,sanscontext/docker.github.io,anweiss/docker.github.io,jgrowl/compose,ph-One/compose,ralphtheninja/compose,prologic/compose,cclauss/compose,swoopla/compose,prologic/compose,ZJaffee/compose,thaJeztah/compose,mnowster/compose,menglingwei/denverdino.github.io,twitherspoon/compose,shakamunyi/fig,dopry/compose,vlajos/compose,Chouser/compose,shin-/compose,mchasal/compose,alexisbellido/docker.github.io,ain/compose,sebglazebrook/compose,dilgerma/compose,danix800/docker.github.io,LuisBosquez/docker.github.io,thaJeztah/docker.github.io,BSWANG/denverdino.github.io,jeanpralo/compose,DoubleMalt/compose,KalleDK/compose,amitsaha/compose,anweiss/docker.github.io,johnstep/docker.github.io,browning/compose,mohitsoni/compose,bdwill/docker.github.io,hoogenm/compose,JimGalasyn/docker.github.io,bbirand/compose,mrfuxi/compose,moxiegirl/compose,shubheksha/docker.github.io,uvgroovy/compose,albers/compose,aanand/fig,sanscontext/docker.github.io,rgbkrk/compose,heroku/fig
b110fd3b0a8e92c0da6624547d3b84adde891970
.travis.yml
.travis.yml
# Use container based environment, slightly faster than standard sudo: true dist: precise language: java jdk: - oraclejdk8 addons: apt: sources: - ubuntu-toolchain-r-test packages: #- gcc-4.8 #- g++-4.8 - wget # Package list from http://bazel.io/docs/install.html - pkg-config - zip - zlib1g-dev - gperf # To build proxygen install: - ./install-bazel.sh - cp ~/.bazel/base_workspace/tools/jdk/*.jar tools/jdk - wget https://raw.githubusercontent.com/mzhaom/lrte/master/install-release.sh && sudo bash install-release.sh script: # The kernel used by travis is too old to allow namespace creation # for normal account, so we disable it. - bazel --batch build --crosstool_top=//tools/lrte:toolchain --spawn_strategy=standalone --genrule_strategy=standalone //examples/...:all //third_party/java/netty:all //third_party/java/guava:all - bazel --batch test --test_tag_filters=-no_travis --test_output=errors --crosstool_top=//tools/lrte:toolchain --spawn_strategy=standalone //examples/...:all //third_party/gperftools:all //third_party/folly:all //third_party/proxygen:all notifications: email: false
# Use container based environment, slightly faster than standard sudo: true dist: precise language: java jdk: - oraclejdk8 addons: apt: sources: - ubuntu-toolchain-r-test packages: #- gcc-4.8 #- g++-4.8 - wget # Package list from http://bazel.io/docs/install.html - pkg-config - zip - zlib1g-dev - gperf # To build proxygen install: - ./install-bazel.sh - wget https://raw.githubusercontent.com/mzhaom/lrte/master/install-release.sh && sudo bash install-release.sh script: # The kernel used by travis is too old to allow namespace creation # for normal account, so we disable it. - bazel --batch build --crosstool_top=//tools/lrte:toolchain --spawn_strategy=standalone --genrule_strategy=standalone //examples/...:all //third_party/java/netty:all //third_party/java/guava:all - bazel --batch test --test_tag_filters=-no_travis --test_output=errors --crosstool_top=//tools/lrte:toolchain --spawn_strategy=standalone //examples/...:all //third_party/gperftools:all //third_party/folly:all //third_party/proxygen:all notifications: email: false
Disable tools/jdk/*.jar copying because they are now embedded inside bazel binary.
Disable tools/jdk/*.jar copying because they are now embedded inside bazel binary.
YAML
apache-2.0
duanguoxue/trunk,mzhaom/trunk,duanguoxue/trunk,mzhaom/trunk,bazelment/trunk,mzhaom/trunk,bazelment/trunk,bazelment/trunk,bazelment/trunk,duanguoxue/trunk
dd3366717ffbb6a8c7d3f9866d799403971e4609
.travis.yml
.travis.yml
language: python python: - 2.7 env: - TOXENV=py27-django16 before_install: - npm install --global bower install: - pip install --requirement requirements.txt - pip install --editable . script: - make test-tox
language: python python: - 2.7 env: - TOXENV=py27-django16 before_install: - npm install --global bower install: - pip install --requirement requirements.txt - pip install --editable . script: - make test-tox deploy: provider: pypi user: ginkgodev password: secure: i/Fg9+YoKT61sdT1/xKmY2PBAGzx0yK5S+WS1ArjyOznhQQFewwizeNyJbmQzpzSOYsAE3vau0cQYqqrmUn/LawNW2mx6zkhyFkyJgzF1IEh69376qU4jIx0TSncFRl/CiIl9nMxSg3CCHG2qG9E3MJKDsCTN2QV2GH+pgPLbkiZK/9c94N5OeRQ5AQdXQoUnfOvyO9Z6WIUu8DjX/pUF31Tfhnaq6i51J9pQFbsbkLHTnQOPiyQDy+BRmfuGKMDg03GHwGqEcNogvmpaXAeZXVrDs2ENon8Izgt2MbzHsfAFbVab+7KpfL1VLcgCLQT2Iwn3svIhAJCFzBWomMI9dhpPbYQom+iDoG09+c1c4urefWGKnjjEdMSl3QpT/FpWw+4f7Fr1kodWW8v/IPAY7BTerYVwaHzRxbCoG0K5LfDNEG8sdemZY99AIC5CpUX8ZhtwwzxuHSMdOM9kEQKx82Em+dA94AGzWhST1IUdy46sqq4YzjcWn19O7CVD/mToPjerHM7XXljgBKQKeQw0B7WEyLUikHyr84PtfK7qjPncwC67jibYObQCzYKR7ZncS9gGNIZOOwXAJz+AwU13zU8GEStrUDx7tB8YB3h684pAz5vhxcW1mnPJyKuXh37aNzeVN54ae4P0cxK3kx/1H2SwQRbDlC0UWZhrZPHOF4= on: tags: true distributions: sdist bdist_wheel repo: ginkgobioworks/curious
Add PyPI deployment configuration to Travis
Add PyPI deployment configuration to Travis
YAML
mit
ginkgobioworks/curious,ginkgobioworks/curious,benjiec/curious,ginkgobioworks/curious,benjiec/curious,benjiec/curious
1a3b340376ee8e667e5e51ceebc95ecfbdf3fe70
.travis.yml
.travis.yml
sudo: required dist: trusty addons: apt: sources: - chef-stable-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=connectors-centos-6 - INSTANCE=mysql55-centos-6 - INSTANCE=mysql56-centos-6 - INSTANCE=mysql57-centos-6 - INSTANCE=connectors-centos-7 - INSTANCE=mysql55-centos-7 - INSTANCE=mysql56-centos-7 - INSTANCE=mysql57-centos-7 - INSTANCE=connectors-oracle-7 - INSTANCE=mysql55-oracle-7 - INSTANCE=mysql56-oracle-7 - INSTANCE=mysql57-oracle-7 before_script: - 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 --version - /opt/chefdk/embedded/bin/cookstyle --version - /opt/chefdk/embedded/bin/foodcritic --version script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE} matrix: include: - script: - /opt/chefdk/bin/chef exec delivery local all env: UNIT_AND_LINT=1
sudo: required dist: trusty addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=connectors-centos-6 - INSTANCE=mysql55-centos-6 - INSTANCE=mysql56-centos-6 - INSTANCE=mysql57-centos-6 - INSTANCE=connectors-centos-7 - INSTANCE=mysql55-centos-7 - INSTANCE=mysql56-centos-7 - INSTANCE=mysql57-centos-7 - INSTANCE=connectors-oracle-7 - INSTANCE=mysql55-oracle-7 - INSTANCE=mysql56-oracle-7 - INSTANCE=mysql57-oracle-7 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(chef shell-init bash)" - chef --version - cookstyle --version - foodcritic --version script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE} matrix: include: - script: - chef exec delivery local all env: UNIT_AND_LINT=1
Simplify Travis config and fix ChefDK 2.0 failures
Simplify Travis config and fix ChefDK 2.0 failures
YAML
apache-2.0
chef-cookbooks/yum-mysql-community,chef-cookbooks/yum-mysql-community
2fea34a7415fa5c3a4dc4e2516b25b7d5ba0c6e6
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "5.1" addons: apt: packages: - xvfb before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start script: - npm run lint && npm test notifications: slack: secure: bDwO2uce5JAZvjrvWj4+/+yEXJAIK4O0RcgUWvZ2IMbi7Q9I89Mw40JmkLWL6x2gWZwxr8+FoLtErJA7RVrsfImjrX+NmMyAB7AydLdrBJtkLozNnuacnhcnBRyp1gGCa1ymxCEXGbgC6onAD3kiJJhggr70T+2lu3IuJYXENhc=
sudo: false language: node_js node_js: - "5.1" before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start script: - npm run lint && npm test notifications: slack: secure: bDwO2uce5JAZvjrvWj4+/+yEXJAIK4O0RcgUWvZ2IMbi7Q9I89Mw40JmkLWL6x2gWZwxr8+FoLtErJA7RVrsfImjrX+NmMyAB7AydLdrBJtkLozNnuacnhcnBRyp1gGCa1ymxCEXGbgC6onAD3kiJJhggr70T+2lu3IuJYXENhc= env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - xvfb - g++-4.8
Update compiler so builds work
Update compiler so builds work
YAML
mpl-2.0
dcposch/browser-laptop,Sh1d0w/browser-laptop,dcposch/browser-laptop,bkardell/browser-laptop,MKuenzi/browser-laptop,willy-b/browser-laptop,diasdavid/browser-laptop,PFCKrutonium/browser-laptop,manninglucas/browser-laptop,pmkary/braver,manninglucas/browser-laptop,MKuenzi/browser-laptop,luixxiul/browser-laptop,dcposch/browser-laptop,jonathansampson/browser-laptop,willy-b/browser-laptop,manninglucas/browser-laptop,PFCKrutonium/browser-laptop,jonathansampson/browser-laptop,darkdh/browser-laptop,luixxiul/browser-laptop,Sh1d0w/browser-laptop,luixxiul/browser-laptop,luixxiul/browser-laptop,timborden/browser-laptop,darkdh/browser-laptop,Sh1d0w/browser-laptop,Sh1d0w/browser-laptop,MKuenzi/browser-laptop,jonathansampson/browser-laptop,manninglucas/browser-laptop,diasdavid/browser-laptop,diasdavid/browser-laptop,jonathansampson/browser-laptop,diasdavid/browser-laptop,bkardell/browser-laptop,willy-b/browser-laptop,darkdh/browser-laptop,timborden/browser-laptop,darkdh/browser-laptop,MKuenzi/browser-laptop,pmkary/braver,timborden/browser-laptop,willy-b/browser-laptop,pmkary/braver,timborden/browser-laptop,pmkary/braver,dcposch/browser-laptop
69ce964014e2a80d37e2635cb3db0740a0192d87
.travis.yml
.travis.yml
language: ruby dist: xenial cache: bundler: true rvm: - 2.4 - 2.5 - 2.6 branches: only: - master
language: ruby dist: xenial cache: bundler: true rvm: - 2.4 - 2.5 - 2.6 - 2.7 branches: only: - master
Add Ruby 2.7 to the Travis CI build matrix
Add Ruby 2.7 to the Travis CI build matrix
YAML
mit
publify/publify_core,publify/publify_core,publify/publify_core
1f80ba2141857f646cfedc1fa27f6eaad4fd7964
.travis.yml
.travis.yml
language: php php: # - 5.3 # requires old distro, see below - 5.4 - 5.5 - 5.6 - 7 - hhvm # ignore errors, see below # lock distro so new future defaults will not break the build dist: trusty # also test lowest dependencies on PHP 7 matrix: include: - php: 5.3 dist: precise - php: 7.0 env: - DEPENDENCIES=lowest allow_failures: - php: hhvm sudo: false install: - composer install --no-interaction - if [ "$DEPENDENCIES" = "lowest" ]; then composer update --prefer-lowest -n; fi script: - ./vendor/bin/phpunit --coverage-text - if [ "$DEPENDENCIES" = "lowest" ]; then php -n tests/benchmark-middleware-runner.php; fi
language: php php: # - 5.3 # requires old distro, see below - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - hhvm # ignore errors, see below # lock distro so new future defaults will not break the build dist: trusty # also test lowest dependencies on PHP 7 matrix: include: - php: 5.3 dist: precise - php: 7.0 env: - DEPENDENCIES=lowest allow_failures: - php: hhvm sudo: false install: - composer install --no-interaction - if [ "$DEPENDENCIES" = "lowest" ]; then composer update --prefer-lowest -n; fi script: - ./vendor/bin/phpunit --coverage-text - if [ "$DEPENDENCIES" = "lowest" ]; then php -n tests/benchmark-middleware-runner.php; fi
Test against PHP 7.1 and 7.2
Test against PHP 7.1 and 7.2
YAML
mit
clue-labs/http,reactphp/http
4c3df2f582fb56ea8d7da357bea38ad9800b0477
.travis.yml
.travis.yml
language: php php: - "5.3" - "5.4" - "5.5" - "5.6" - "7.0" install: - composer install --prefer-dist --dev script: ant -keep-going
language: php php: - "5.3" - "5.4" - "5.5" - "5.6" - "7.0" install: - travis_retry composer self-update && composer --version # We have to supply the branch alias here again as travis checks out a commit hash and therefore destroys the # circular dependency phpcq/all-tasks -> phpcq/branch-alias-validation -> phpcq/all-tasks. - > if [ "x${TRAVIS_TAG}" != "x" ]; then COMPOSER_ROOT_VERSION=${TRAVIS_TAG} travis_retry composer update --prefer-dist --no-interaction; else COMPOSER_ROOT_VERSION=dev-${TRAVIS_BRANCH} travis_retry composer update --prefer-dist --no-interaction; fi script: ant -keep-going
Allow project to compile itself again
Allow project to compile itself again
YAML
mit
phpcq/branch-alias-validation
94a7f51f02a6751e5cbef7a5936a10631fae0338
.travis.yml
.travis.yml
language: android android: components: - tools - tools - platform-tools - build-tools-25.0.2 - android-25 - extra - extra-android-m2repository script: ./gradlew build test jdk: - oraclejdk8 sudo: false cache: directories: - $HOME/.m2
language: android android: components: - tools - tools - platform-tools - build-tools-25.0.3 - android-25 script: ./gradlew build test jdk: - oraclejdk8 sudo: false cache: directories: - $HOME/.m2
Update configuration for Travis CI
Update configuration for Travis CI
YAML
apache-2.0
MichaelRocks/libphonenumber-android,MichaelRocks/libphonenumber-android
b7e6e07f7457dde8cf84ef24b24a917a3061f792
.travis.yml
.travis.yml
language: android android: components: - build-tools-21.1.2 - android-21 - extra-android-support - sys-img-armeabi-v7a-android-19 before_script: - echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a - emulator -avd test -no-skin -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & script: ./gradlew checkstyle build connectedCheck
language: android android: components: - build-tools-21.1.2 - android-21 - extra-android-support - sys-img-armeabi-v7a-android-19 before_script: - echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a - emulator -avd test -no-skin -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & script: ./gradlew checkstyle build
Disable acceptance tests execution temporally
Disable acceptance tests execution temporally
YAML
apache-2.0
0359xiaodong/Lynx,pedrovgs/Lynx
f19f8b63806f40a807df510317c4e1a5f7cd1acb
.travis.yml
.travis.yml
language: node_js dist: trusty sudo: required node_js: 8 script: - npm run test cache: directories: - node_modules env: global: - CF_APP=watson-assistant-simple - CF_API=https://api.ng.bluemix.net - CF_ORGANIZATION=WatsonPlatformServices - CF_SPACE=demos before_deploy: npm install -g cf-blue-green deploy: - provider: script skip_cleanup: true script: npx semantic-release on: node: 8 - provider: script skip_cleanup: true script: - cf-blue-green-travis on: branch: master repo: watson-developer-cloud/assistant-simple
language: node_js dist: trusty sudo: required node_js: 8 script: - npm run test cache: directories: - node_modules env: global: - BX_APP=watson-assistant-simple - BX_API=https://api.ng.bluemix.net - BX_ORGANIZATION=WatsonPlatformServices - BX_SPACE=demos before_deploy: npm install -g bx-blue-green deploy: - provider: script skip_cleanup: true script: npx semantic-release on: node: 8 - provider: script skip_cleanup: true script: - bx-blue-green-travis on: branch: master repo: watson-developer-cloud/assistant-simple
Update deployment to the IBM Cloud
build(Travis): Update deployment to the IBM Cloud
YAML
apache-2.0
stevenpkg/conversation-simple,stevenpkg/conversation-simple
2761234eca22a7d81310b02dbc99595b9f47cfe3
.travis.yml
.travis.yml
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 1.9.3 - 2.0.0 - jruby-19mode # JRuby in 1.9 mode - rbx-19mode
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 1.9.3 - 2.0.0 - jruby-19mode-1.7.4 - rbx-19mode
Update tavis JRuby version to 1.7.4.
Update tavis JRuby version to 1.7.4.
YAML
unlicense
ruby-rdf/rdf-microdata,ruby-rdf/rdf-microdata
6cac113564824fadf42a49d4635b157d0372192e
.travis.yml
.travis.yml
language: node_js node_js: - 0.6 - 0.8
language: node_js node_js: - "0.6" - "0.8" - "0.10"
Add Node.js 0.10 to Travis.
Add Node.js 0.10 to Travis.
YAML
mit
rasata/q,potato620/q,gustavobeavis/q,signpost/q,kevinsawicki/q,welbornio/q,jymsy/q,criferlo/q,aramk/q,cgvarela/q,IbpTeam/node-q,ShopCo/q,Muffasa/q,mcanthony/q,ajunflying/q,potato620/q,CozyCo/q,manushthinkster/q,Zeratul5/q,bnicart/q,yizziy/q,pwmckenna/q,cgvarela/q,gorcz/q,mcanthony/q,Zeratul5/q,SarunasAzna/q,100star/q,greyhwndz/q,ajunflying/q,STRd6/q,ShopCo/q,darkdragon-001/q,manushthinkster/q,linalu1/q,bnicart/q,IlianStefanov/q,criferlo/q,X-Bird/q,linalu1/q,zhangwenquan/q,willsmth/q,npmcomponent/techjacker-q,b12consulting/q,CozyCo/q,yizziy/q,darkdragon-001/q,gustavobeavis/q,signpost/q,greyhwndz/q,miamarti/q,IlianStefanov/q,lidasong2014/q,willsmth/q,lvdou2518/q,IbpTeam/node-q,miamarti/q,dracher/q,rasata/q,behind2/q,homer0/q,behind2/q,kriskowal/q,Muffasa/q,liwangbest/q,pwmckenna/q,jymsy/q,gorcz/q,SarunasAzna/q,liwangbest/q,harks198913/q,aramk/q,welbornio/q,lvdou2518/q,lidasong2014/q,dracher/q,X-Bird/q,b12consulting/q,zhangwenquan/q,homer0/q,harks198913/q,kriskowal/q
5bd07df339f63fc89b9192fcfd517ed3eeb77eab
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 - hhvm before_script: - composer install
language: php php: - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 - php: hhvm before_script: - composer install
Allow failure of PHP 7 and HHVM
Allow failure of PHP 7 and HHVM
YAML
mit
h4cc/guzzle-cache-middleware,outspaced/guzzle-cache-middleware,Kevinrob/guzzle-cache-middleware
bb1e12228b73e469862c50be3f0c4e221d4a88cb
.travis.yml
.travis.yml
language: python python: - 2.7 - 3.4 - 3.5 - 3.6 env: - DJANGO_VERSION=1.11.13 - DJANGO_VERSION=2.0.5 matrix: exclude: - python: 2.7 env: DJANGO_VERSION=2.0.5 install: "pip install -q psycopg2 django==$DJANGO_VERSION" script: ./tests/runtests.py
language: python python: - 2.7 - 3.4 - 3.5 - 3.6 env: - DJANGO_VERSION=1.11.14 - DJANGO_VERSION=2.0.7 matrix: exclude: - python: 2.7 env: DJANGO_VERSION=2.0.7 install: "pip install -q psycopg2 django==$DJANGO_VERSION djangorestframework==3.8.2" script: ./tests/runtests.py
Update Django minor versions in tests.
Update Django minor versions in tests.
YAML
bsd-3-clause
mattiaslinnap/django-partial-index
25f36a621c327ebe2409b081e208c7e62e0db93f
.travis.yml
.travis.yml
language: node_js node_js: - "6.10.3" addons: firefox: "53.0.2" # See https://docs.travis-ci.com/user/gui-and-headless-browsers/#Starting-a-Web-Server before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 # Give Xvfb some time to start. - npm run server & - sleep 3 # Give the web server some time to bind to sockets, etc. after_script: - npm run lint
language: node_js node_js: - "6.10.3" addons: firefox: "53.0.2" before_install: - wget https://github.com/mozilla/geckodriver/releases/download/v0.16.1/geckodriver-v0.16.1-linux64.tar.gz - mkdir geckodriver - tar -xf geckodriver-v0.16.1-linux64.tar.gz -C geckodriver - export PATH=$PATH:$PWD/geckodriver # See https://docs.travis-ci.com/user/gui-and-headless-browsers/#Starting-a-Web-Server before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 # Give Xvfb some time to start. - npm run server & - sleep 3 # Give the web server some time to bind to sockets, etc. after_script: - npm run lint
Install geckodriver as required by newer selenium in Travis CI
Install geckodriver as required by newer selenium in Travis CI
YAML
mit
heremaps/map-linkbuilder-app,heremaps/map-linkbuilder-app,heremaps/map-linkbuilder-app
5cd726de85d8fb55431ddcac044c00bce4963554
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.4.0 before_install: gem install bundler -v 1.14.3
sudo: false language: ruby rvm: - 2.3.0 - 2.4.0 - 2.5.0 before_install: gem install bundler -v 1.6.1
Add Ruby 2.3 & 2.5 and update bundler version in TravisCI config
Add Ruby 2.3 & 2.5 and update bundler version in TravisCI config
YAML
mit
buren/arbetsformedlingen,buren/arbetsformedlingen
0ae5f57658e3ef47bd3535d582d60ea7faf2a620
.travis.yml
.travis.yml
language: php env: global: - SYLIUS_CACHE_DIR=$HOME/.sylius-cache - SYLIUS_BUILD_DIR=etc/build sudo: false matrix: include: - php: 7.0 env: SYLIUS_SUITE="application" services: - memcached - php: 7.0 env: SYLIUS_SUITE="docs packages" addons: apt: packages: - parallel - php: 5.6 env: SYLIUS_SUITE="application" services: - memcached - php: 5.6 env: SYLIUS_SUITE="packages" addons: apt: packages: - parallel cache: directories: - ~/.composer/cache/files - ~/.cache/pip - vendor - bin - node_modules - $SYLIUS_CACHE_DIR before_install: - etc/travis/run-suite before_install "${SYLIUS_SUITE}" install: - etc/travis/run-suite install "${SYLIUS_SUITE}" before_script: - etc/travis/run-suite before_script "${SYLIUS_SUITE}" script: - etc/travis/run-suite script "${SYLIUS_SUITE}" before_cache: - etc/travis/run-suite before_cache "${SYLIUS_SUITE}" after_success: - etc/travis/run-suite after_success "${SYLIUS_SUITE}" after_failure: - etc/travis/run-suite after_failure "${SYLIUS_SUITE}" after_script: - etc/travis/run-suite after_script "${SYLIUS_SUITE}"
language: php env: global: - SYLIUS_CACHE_DIR=$HOME/.sylius-cache - SYLIUS_BUILD_DIR=etc/build sudo: false matrix: include: - php: 7.0 env: SYLIUS_SUITE="application" services: - memcached - php: 7.0 env: SYLIUS_SUITE="docs packages" addons: apt: packages: - parallel cache: directories: - ~/.composer/cache/files - ~/.cache/pip - vendor - bin - node_modules - $SYLIUS_CACHE_DIR before_install: - etc/travis/run-suite before_install "${SYLIUS_SUITE}" install: - etc/travis/run-suite install "${SYLIUS_SUITE}" before_script: - etc/travis/run-suite before_script "${SYLIUS_SUITE}" script: - etc/travis/run-suite script "${SYLIUS_SUITE}" before_cache: - etc/travis/run-suite before_cache "${SYLIUS_SUITE}" after_success: - etc/travis/run-suite after_success "${SYLIUS_SUITE}" after_failure: - etc/travis/run-suite after_failure "${SYLIUS_SUITE}" after_script: - etc/travis/run-suite after_script "${SYLIUS_SUITE}"
Remove PHP v5.6 from the Travis CI build
Remove PHP v5.6 from the Travis CI build
YAML
mit
juramy/Sylius,juramy/Sylius,juramy/Sylius,juramy/Sylius,juramy/Sylius
e267c421fd0cca3e48774d47750ec995012604f0
.travis.yml
.travis.yml
language: php sudo: false matrix: include: - php: 7.0 - php: 7.1 - php: 7.2 - php: 7.0 env: COMPOSER_FLAGS="--prefer-lowest" - php: hhvm-3.9 dist: trusty before_script: - curl --version - composer self-update - composer update --no-interaction --no-progress $COMPOSER_FLAGS script: - ./vendor/bin/phpunit -v #after_script: # - php vendor/bin/coveralls -v # #after_success: # - if [ $TRAVIS_PHP_VERSION = '7.1' ] && [ $TRAVIS_BRANCH = 'master' ] && [ $TRAVIS_PULL_REQUEST = 'false' ] && [ $COMPOSER_FLAGS = '']; then sh bin/generate-api; fi
language: php sudo: false matrix: include: - php: 7.0 - php: 7.1 - php: 7.2 - php: 7.0 env: COMPOSER_FLAGS="--prefer-lowest" before_script: - curl --version - composer self-update - composer update --no-interaction --no-progress $COMPOSER_FLAGS script: - ./vendor/bin/phpunit -v #after_script: # - php vendor/bin/coveralls -v # #after_success: # - if [ $TRAVIS_PHP_VERSION = '7.1' ] && [ $TRAVIS_BRANCH = 'master' ] && [ $TRAVIS_PULL_REQUEST = 'false' ] && [ $COMPOSER_FLAGS = '']; then sh bin/generate-api; fi
Remove HHVM from test matrix
Remove HHVM from test matrix
YAML
mit
omines/datatables-bundle,omines/datatables-bundle
e361649e522913da44c80718c5ac1d068329af98
.travis.yml
.travis.yml
before_script: - psql -c 'create database sqlalchemy_continuum_test;' -U postgres language: python python: - 2.6 - 2.7 - 3.3 install: - pip install -e ".[test]" script: - python setup.py test
env: - DB=mysql - DB=postgres before_script: - sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'create database sqlalchemy_continuum_test;' -U postgres; fi" - sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'create database sqlalchemy_continuum_test;'; fi" language: python python: - 2.6 - 2.7 - 3.3 install: - pip install -e ".[test]" script: - python setup.py test
Add mysql to test matrix
Add mysql to test matrix
YAML
bsd-3-clause
rmoorman/sqlalchemy-continuum,piotr-dobrogost/sqlalchemy-continuum,kvesteri/sqlalchemy-continuum,avilaton/sqlalchemy-continuum
78a0378b90403e2932b0c58db3c3ff8d94977433
.travis.yml
.travis.yml
language: php matrix: fast_finish: true include: - php: 5.6 env: DB=sqlite - php: 5.6 env: DB=mysql # - php: 5.6 # env: DB=pgsql - php: 5.5 env: DB=sqlite cache: directories: - $HOME/.composer/cache before_install: - cd .. - git clone https://github.com/neos/flow-development-distribution.git -b 2.3 - cd flow-development-distribution install: - composer install - rm -rf Packages/Framework - mv ../flow-development-collection Packages/Framework before_script: - echo 'date.timezone = "Antarctica/Troll"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini - rm Configuration/Routes.yaml - cp Configuration/Settings.yaml.example Configuration/Settings.yaml - Build/BuildEssentials/TravisCi/SetupDatabase.sh - cp Configuration/Settings.yaml Configuration/Testing/ script: - bin/phpunit -c Build/BuildEssentials/PhpUnit/UnitTests.xml - bin/phpunit --stop-on-failure -c Build/BuildEssentials/PhpUnit/FunctionalTests.xml --testsuite "Framework tests"
language: php matrix: fast_finish: true include: - php: 5.6 env: DB=sqlite - php: 5.6 env: DB=mysql # - php: 5.6 # env: DB=pgsql - php: 5.5 env: DB=sqlite cache: directories: - $HOME/.composer/cache before_install: - cd .. - git clone https://github.com/neos/flow-development-distribution.git -b 2.3 - cd flow-development-distribution install: - composer install - rm -rf Packages/Framework - mv ../flow-development-collection Packages/Framework before_script: - echo 'date.timezone = "Antarctica/Troll"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini - rm Configuration/Routes.yaml - cp Configuration/Settings.yaml.example Configuration/Settings.yaml - Build/BuildEssentials/TravisCi/SetupDatabase.sh - cp Configuration/Settings.yaml Configuration/Testing/ script: - bin/phpunit --colors -c Build/BuildEssentials/PhpUnit/UnitTests.xml - bin/phpunit --colors --stop-on-failure -c Build/BuildEssentials/PhpUnit/FunctionalTests.xml --testsuite "Framework tests"
Add color to PHPUnit output in Travis
[TASK] Add color to PHPUnit output in Travis
YAML
mit
dfeyer/flow-development-collection,gerhard-boden/flow-development-collection,bwaidelich/flow-development-collection,neos/flow-development-collection,fcool/flow-development-collection,kitsunet/flow-development-collection,kitsunet/flow-development-collection,kdambekalns/flow-development-collection,bwaidelich/flow-development-collection,mkeitsch/flow-development-collection,mkeitsch/flow-development-collection,neos/flow-development-collection,aertmann/flow-development-collection,aertmann/flow-development-collection,dfeyer/flow-development-collection,aertmann/flow-development-collection,mkeitsch/flow-development-collection,robertlemke/flow-development-collection,kdambekalns/flow-development-collection,gerhard-boden/flow-development-collection,kdambekalns/flow-development-collection,albe/flow-development-collection,dlubitz/flow-development-collection,chewbakartik/flow-development-collection,chewbakartik/flow-development-collection,dlubitz/flow-development-collection,daniellienert/flow-development-collection,neos/flow-development-collection,neos/flow-development-collection,gerhard-boden/flow-development-collection,fcool/flow-development-collection,fcool/flow-development-collection,robertlemke/flow-development-collection,fcool/flow-development-collection,robertlemke/flow-development-collection,albe/flow-development-collection,bwaidelich/flow-development-collection,chewbakartik/flow-development-collection,dfeyer/flow-development-collection,albe/flow-development-collection,daniellienert/flow-development-collection,kitsunet/flow-development-collection,kdambekalns/flow-development-collection,daniellienert/flow-development-collection,robertlemke/flow-development-collection,dlubitz/flow-development-collection,dfeyer/flow-development-collection
300c97de3b31b7e14d658102df683b8feb86a905
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - 2.0.0 - 2.1 - 2.2 - 2.3.0 - 2.4.0 - ruby-head - jruby-head before_install: gem update --remote bundler && bundle --version install: - bundle install --retry=3 script: - bundle exec rspec - PULL_REQUEST_ID=${TRAVIS_PULL_REQUEST} bundle exec pronto run -f github_status github_pr -c origin/master matrix: fast_finish: true allow_failures: - rvm: ruby-head - rvm: jruby-head
language: ruby sudo: false rvm: - 2.2 - 2.3.0 - 2.4.0 - ruby-head - jruby-head before_install: gem update --remote bundler && bundle --version install: - bundle install --retry=3 script: - bundle exec rspec - PULL_REQUEST_ID=${TRAVIS_PULL_REQUEST} bundle exec pronto run -f github_status github_pr -c origin/master matrix: fast_finish: true allow_failures: - rvm: ruby-head - rvm: jruby-head
Drop 2.0 and 2.1 builds b/c neither are officially maintained anymore
Drop 2.0 and 2.1 builds b/c neither are officially maintained anymore
YAML
mit
Skookum/bamboozled
e8c6c08d7f992e5fdd0b15332b5e6552d44d6457
.travis.yml
.travis.yml
sudo: false language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" env: global: - TEST_APPS="allauth account socialaccount amazon angellist bitbucket coinbase evernote feedly foursquare douban dropbox dropbox_oauth2 facebook flickr google github hubic instagram linkedin linkedin_oauth2 mailru odnoklassniki windowslive openid orcid paypal persona soundcloud spotify stackexchange tumblr twitch twitter vimeo vk weibo bitly xing" matrix: - DJANGO=Django==1.5 - DJANGO=Django==1.6 - DJANGO=Django==1.7 - DJANGO=Django==1.8 install: - pip install $DJANGO --use-mirrors - pip install . --use-mirrors - pip install coverage branches: only: - master script: if [ -o $DJANGO == Django==1.5 ]; then coverage run manage.py test $TEST_APPS; else coverage run manage.py test allauth; fi matrix: exclude: - python: "2.6" env: DJANGO=Django==1.7 - python: "2.6" env: DJANGO=Django==1.8 after_success: - coverage report - pip install --quiet python-coveralls - coveralls
sudo: false language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" env: global: - TEST_APPS="allauth account socialaccount amazon angellist bitbucket coinbase evernote feedly foursquare douban dropbox dropbox_oauth2 facebook flickr google github hubic instagram linkedin linkedin_oauth2 mailru odnoklassniki windowslive openid orcid paypal persona soundcloud spotify stackexchange tumblr twitch twitter vimeo vk weibo bitly xing" matrix: - DJANGO="Django<1.6" - DJANGO="Django<1.7" - DJANGO="Django<1.8" - DJANGO="Django<1.9" install: - pip install $DJANGO --use-mirrors - pip install . --use-mirrors - pip install coverage branches: only: - master script: if [ -o $DJANGO == Django==1.5 ]; then coverage run manage.py test $TEST_APPS; else coverage run manage.py test allauth; fi matrix: exclude: - python: "2.6" env: DJANGO="Django<1.8" - python: "2.6" env: DJANGO="Django<1.9" after_success: - coverage report - pip install --quiet python-coveralls - coveralls
Use the latest patch version of Django for each major release
Use the latest patch version of Django for each major release
YAML
mit
hanasoo/django-allauth,vuchau/django-allauth,socialsweethearts/django-allauth,hanasoo/django-allauth,JshWright/django-allauth,socialsweethearts/django-allauth,sih4sing5hong5/django-allauth,ashwoods/django-allauth,fabiocerqueira/django-allauth,nimbis/django-allauth,80vs90/django-allauth,avsd/django-allauth,rsalmaso/django-allauth,AltSchool/django-allauth,joshowen/django-allauth,concentricsky/django-allauth,ZachLiuGIS/django-allauth,agriffis/django-allauth,davidrenne/django-allauth,ankitjain87/django-allauth,SakuradaJun/django-allauth,github-account-because-they-want-it/django-allauth,moreati/django-allauth,pztrick/django-allauth,pranjalpatil/django-allauth,payamsm/django-allauth,lukeburden/django-allauth,SakuradaJun/django-allauth,concentricsky/django-allauth,80vs90/django-allauth,jscott1989/django-allauth,bittner/django-allauth,agriffis/django-allauth,pennersr/django-allauth,wli/django-allauth,wli/django-allauth,aexeagmbh/django-allauth,vuchau/django-allauth,pztrick/django-allauth,7WebPages/django-allauth,avsd/django-allauth,carltongibson/django-allauth,jwhitlock/django-allauth,joshowen/django-allauth,payamsm/django-allauth,ankitjain87/django-allauth,zhangziang/django-allauth,80vs90/django-allauth,italomaia/django-allauth,socialsweethearts/django-allauth,moreati/django-allauth,manran/django-allauth,nimbis/django-allauth,payamsm/django-allauth,dincamihai/django-allauth,bopo/django-allauth,dincamihai/django-allauth,beswarm/django-allauth,kingofsystem/django-allauth,jscott1989/django-allauth,wayward710/django-allauth,rulz/django-allauth,fabiocerqueira/django-allauth,alacritythief/django-allauth,bjorand/django-allauth,bjorand/django-allauth,joshowen/django-allauth,bitcity/django-allauth,patricio-astudillo/django-allauth,bittner/django-allauth,wayward710/django-allauth,github-account-because-they-want-it/django-allauth,lmorchard/django-allauth,aexeagmbh/django-allauth,fuzzpedal/django-allauth,igorgai/django-allauth,pankeshang/django-allauth,7WebPages/django-allauth,aexeagmbh/django-allauth,ZachLiuGIS/django-allauth,cudadog/django-allauth,zhangziang/django-allauth,bopo/django-allauth,pennersr/django-allauth,ankitjain87/django-allauth,jwhitlock/django-allauth,pztrick/django-allauth,bopo/django-allauth,kingofsystem/django-allauth,pankeshang/django-allauth,fuzzpedal/django-allauth,yarbelk/django-allauth,manran/django-allauth,sih4sing5hong5/django-allauth,alacritythief/django-allauth,moreati/django-allauth,cudadog/django-allauth,fabiocerqueira/django-allauth,cudadog/django-allauth,kingofsystem/django-allauth,AltSchool/django-allauth,pankeshang/django-allauth,igorgai/django-allauth,carltongibson/django-allauth,neo/django-allauth,lukeburden/django-allauth,bjorand/django-allauth,rulz/django-allauth,yarbelk/django-allauth,janusnic/django-allauth,davidrenne/django-allauth,7WebPages/django-allauth,vuchau/django-allauth,carltongibson/django-allauth,SakuradaJun/django-allauth,tigeraniya/django-allauth,JshWright/django-allauth,wayward710/django-allauth,jscott1989/django-allauth,tigeraniya/django-allauth,rsalmaso/django-allauth,lukeburden/django-allauth,tigeraniya/django-allauth,bittner/django-allauth,nimbis/django-allauth,bitcity/django-allauth,ashwoods/django-allauth,erueloi/django-allauth,neo/django-allauth,davidrenne/django-allauth,patricio-astudillo/django-allauth,yarbelk/django-allauth,AltSchool/django-allauth,erueloi/django-allauth,lmorchard/django-allauth,janusnic/django-allauth,ZachLiuGIS/django-allauth,rulz/django-allauth,agriffis/django-allauth,pranjalpatil/django-allauth,janusnic/django-allauth,spool/django-allauth,dincamihai/django-allauth,beswarm/django-allauth,italomaia/django-allauth,zhangziang/django-allauth,erueloi/django-allauth,rsalmaso/django-allauth,sih4sing5hong5/django-allauth,neo/django-allauth,github-account-because-they-want-it/django-allauth,igorgai/django-allauth,alacritythief/django-allauth,fuzzpedal/django-allauth,patricio-astudillo/django-allauth,bitcity/django-allauth,beswarm/django-allauth,manran/django-allauth,italomaia/django-allauth,JshWright/django-allauth,spool/django-allauth,concentricsky/django-allauth,pranjalpatil/django-allauth,spool/django-allauth,hanasoo/django-allauth,lmorchard/django-allauth,wli/django-allauth,jwhitlock/django-allauth,avsd/django-allauth,pennersr/django-allauth,ashwoods/django-allauth
e4aa06066742fe2d0e0b9c2904546b575514551b
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler rvm: - ruby-head - 2.2 - 2.1 - 2.0 - 1.9.3 - jruby - jruby-head - rbx-2 matrix: allow_failures: - rvm: rbx-2 - rvm: jruby - rvm: jruby-head - rvm: ruby-head env: global: - CODECLIMATE_REPO_TOKEN=70820b2c9137bc6411ae1a2e0c6861028c70ce373eec87ad46d9b7c14dce3401 - JRUBY_OPTS='--dev -J-Xmx1024M' matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head notifications: webhooks: urls: - https://webhooks.gitter.im/e/556fa7e78f49c2f0016e on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
language: ruby sudo: false cache: bundler rvm: - ruby-head - 2.3.1 - 2.2 - 2.1 - jruby - jruby-head - rbx-2 matrix: allow_failures: - rvm: rbx-2 - rvm: jruby - rvm: jruby-head - rvm: ruby-head env: global: - CODECLIMATE_REPO_TOKEN=70820b2c9137bc6411ae1a2e0c6861028c70ce373eec87ad46d9b7c14dce3401 - JRUBY_OPTS='--dev -J-Xmx1024M' matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head notifications: webhooks: urls: - https://webhooks.gitter.im/e/556fa7e78f49c2f0016e on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
Drop support for Ruby 1.9.3 and 2.0 supporting 2.3.1
Drop support for Ruby 1.9.3 and 2.0 supporting 2.3.1
YAML
mit
neopoly/neo-dci
0b08b6f00ac8f3bf8c38675fad0f0d334fb67a4d
.travis.yml
.travis.yml
language: node_js node_js: - "node" - "8" after_success: - npm run coverage
language: node_js node_js: - "node" - "10" after_success: - npm run coverage
Drop support for NodeJs 8
:boom: Drop support for NodeJs 8 - Dependencies have dropped support for the new deprecated NodeJs version BREAKING CHANGE
YAML
mit
abhishekdev/build-revision,abhishekdev/build-revision
719acd50273a90271c725651b0d1bc04c2526439
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 1.9.2 - rbx-19mode - 1.8.7 - ree - rbx-18mode - jruby-18mode - jruby-head env: JRUBY_OPTS=-Xcext.enabled=true
language: ruby matrix: allow_failures: - rvm: ruby-head rvm: - 1.9.3 - 1.9.2 - rbx-19mode - 1.8.7 - ree - rbx-18mode - jruby-18mode - ruby-head - jruby-head env: JRUBY_OPTS=-Xcext.enabled=true
Allow TravisCI build failures on ruby-head.
Allow TravisCI build failures on ruby-head.
YAML
mit
fnichol/capistrano-fanfare
91e63ea08d9f902f59eb5771ed4d9ccd35f4e718
.travis.yml
.travis.yml
language: dart dart: - dev dart_task: - dartfmt - dartanalyzer: --fatal-infos --fatal-warnings . - test branches: only: - master cache: directories: - $HOME/.pub-cache
language: dart dart: - 2.0.0 - dev dart_task: - dartanalyzer: --fatal-infos --fatal-warnings . - test matrix: include: # Only validate formatting using the dev release - dart: dev dart_task: dartfmt branches: only: - master cache: directories: - $HOME/.pub-cache
Test on oldest supported SDK
Test on oldest supported SDK
YAML
bsd-3-clause
dart-lang/timing
a8f46fc66c236a35a041352422ab6a68387db31a
.travis.yml
.travis.yml
language: python cache: pip matrix: include: - os: linux dist: trusty python: '2.6' - os: linux dist: trusty python: '2.7' - os: linux dist: trusty python: '3.2' - os: linux dist: trusty python: '3.3' - os: linux dist: trusty python: '3.4' - os: linux dist: trusty python: '3.5' - os: linux dist: trusty python: '3.6' - os: linux dist: xenial sudo: true python: '3.7' - os: linux dist: trusty python: 'nightly' - os: linux dist: trusty python: 'pypy' - os: linux dist: trusty python: 'pypy3' install: - pip install -r requirements.txt -r devel-requirements.txt -r extra-requirements.txt - pip install -e . script: - travis_wait 20 sh runtests.sh
language: python cache: pip matrix: include: - os: linux dist: trusty python: '2.6' - os: linux dist: trusty python: '2.7' - os: linux dist: trusty python: '3.2' - os: linux dist: trusty python: '3.3' - os: linux dist: trusty python: '3.4' - os: linux dist: trusty python: '3.5' - os: linux dist: trusty python: '3.6' - os: linux dist: xenial sudo: true python: '3.7' - os: linux dist: trusty python: 'nightly' - os: linux dist: trusty python: 'pypy' - os: linux dist: trusty python: 'pypy3' install: - pip install -r requirements.txt -r devel-requirements.txt -r extra-requirements.txt - pip install -e . script: - travis_wait 30 sh runtests.sh
Add more time for test scripts to run
Add more time for test scripts to run
YAML
bsd-2-clause
etingof/pysnmp,etingof/pysnmp
8e38d7b8ad8f32e9363d5812915205290a284140
.travis.yml
.travis.yml
language: ruby rvm: - 2.2 - 2.3 - 2.4 - jruby-9.1.9.0 os: - linux - osx cache: - bundler - directories: - /home/travis/.rvm/ notifications: email: on_success: change
language: ruby rvm: - 2.2 - 2.3 - 2.4 - jruby-9.1.9.0 os: - linux - osx cache: - bundler - directories: - /home/travis/.rvm/
Remove default Travis CI notification setting
Remove default Travis CI notification setting
YAML
mit
thomasfl/filewatcher
b39c7d7d8312b4a38fb43a21100fadf3441d2774
.travis.yml
.travis.yml
language: node_js node_js: - "0.12" - "0.11" - "0.10" - "0.8"
language: node_js node_js: - "0.12" - "0.11" - "0.10"
Remove node v0.8 from ci
Remove node v0.8 from ci
YAML
mit
rob-murray/gbify-geojson
9c051efe0b7996329e8b1d2bed79ac4ed83f6850
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.3 before_install: gem install bundler
language: ruby rvm: - 2.2.3 before_install: gem install bundler addons: code_climate: repo_token: 0aa5f7b2088821aaa5fe58bc4064b1cbfaa359362d7b4b5b30233accd0c166af
Add - codeclimate - repo_token
Add - codeclimate - repo_token
YAML
mit
gabrielpedepera/sigiss,gabrielpedepera/sigiss
3b3f15ccc5b12eca4fd7e11d2a48e4cd505dfb5a
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.2.2 before_script: - cp config/database.yml.travis spec/dummy/config/database.yml - psql -c 'create database travis_ci_test;' -U postgres - bundle exec rake db:migrate - sh -e /etc/init.d/xvfb start - wget http://cdn.sencha.com/ext/gpl/ext-5.1.0-gpl.zip - unzip -q ext-5.1.0-gpl.zip - mv ext-5.1.0 spec/dummy/public/extjs - ln -s spec/dummy/public/extjs/icons spec/dummy/public/icons script: - export DISPLAY=:99.0 - bundle exec rake addons: postgresql: "9.4"
language: ruby rvm: - 1.9.3 - 2.2.2 before_script: - cp config/database.yml.travis spec/dummy/config/database.yml - psql -c 'create database travis_ci_test;' -U postgres - bundle exec rake db:migrate - sh -e /etc/init.d/xvfb start - wget http://cdn.sencha.com/ext/gpl/ext-5.1.0-gpl.zip - unzip -q ext-5.1.0-gpl.zip - mv ext-5.1.0 spec/dummy/public/extjs - ln -s `pwd`/spec/dummy/public/icons/ spec/dummy/public/extjs/icons script: - export DISPLAY=:99.0 - bundle exec rake addons: postgresql: "9.4"
Fix icons sym link for Travis CI
Fix icons sym link for Travis CI
YAML
mit
arman000/marty,arman000/marty,arman000/marty,arman000/marty
0ba6c203ae36addbc308065cf050452d58599b25
.travis.yml
.travis.yml
language: java jdk: - oraclejdk7 branches: only: - master - develop install: true script: mvn test -P production
language: java jdk: - oraclejdk7 branches: only: - master - develop install: true script: mvn install -P production
Use install rather than test [rev: ivo.miller]
Use install rather than test [rev: ivo.miller]
YAML
mit
hpe-idol/find,LinkPowerHK/find,hpautonomy/find,hpautonomy/find,LinkPowerHK/find,hpe-idol/find,hpe-idol/java-powerpoint-report,hpe-idol/find,LinkPowerHK/find,hpautonomy/find,hpautonomy/find,hpe-idol/find,hpautonomy/find,hpe-idol/find,LinkPowerHK/find,hpe-idol/java-powerpoint-report,LinkPowerHK/find
a8ff7a65f4dd2aa6ef241622c8d262bf26556321
.travis.yml
.travis.yml
language: node_js osx_image: xcode8.1 os: - linux - osx sudo: false node_js: - "4.2" - "6.9" - "7.9" addons: code_climate: repo_token: e87e6bf1c253e0555437ebd23235fdfe2749b889358e7c6d100e4ea5b4f2e091 after_script: - cat coverage/lcov.info | codeclimate
language: node_js osx_image: xcode8.1 os: - linux - osx sudo: false node_js: - "4.2" - "6.9" - "7.9" env: - CXX=g++-4.8 addons: code_climate: repo_token: e87e6bf1c253e0555437ebd23235fdfe2749b889358e7c6d100e4ea5b4f2e091 apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 after_script: - cat coverage/lcov.info | codeclimate
Fix Travis CI env issue
Fix Travis CI env issue
YAML
mit
tylingsoft/mermaid,knsv/mermaid,tylingsoft/mermaid,gillesdemey/mermaid,gillesdemey/mermaid,knsv/mermaid,gillesdemey/mermaid,tylingsoft/mermaid
512ab037f5bbf6307ff86282a3699d669b54ee76
.travis.yml
.travis.yml
language: elixir elixir: - 1.6.5 otp_release: - 20.0 branches: only: - master dist: trusty sudo: false addons: postgresql: '9.6' services: - postgresql install: - mix local.rebar --force - mix local.hex --force before_script: - cp config/travis.exs config/test.exs script: ./script/cibuild
language: elixir elixir: - 1.6.5 otp_release: - 20.0 dist: trusty sudo: false addons: postgresql: '9.6' services: - postgresql install: - mix local.rebar --force - mix local.hex --force before_script: - cp config/travis.exs config/test.exs script: ./script/cibuild
Remove Travis branch build exclusions
Remove Travis branch build exclusions
YAML
mit
lee-dohm/atom-style-tweaks,lee-dohm/atom-style-tweaks,lee-dohm/atom-style-tweaks,lee-dohm/atom-style-tweaks
982b10d0e88c184a8864840814ea720ae74740cc
.travis.yml
.travis.yml
language: php ## Cache composer bits cache: directories: - $HOME/.composer/cache/files php: - 7.0 - 7.1 - 7.2 - nightly # lock distro so new future defaults will not break the build dist: trusty # also test lowest dependencies on PHP 7 matrix: include: - php: 7.0 env: - DEPENDENCIES=lowest allow_failures: - php: nightly sudo: false install: - composer install --no-interaction - if [ "$DEPENDENCIES" = "lowest" ]; then composer update --prefer-lowest -n; fi script: - ./vendor/bin/phpunit --coverage-text
language: php ## Cache composer bits cache: directories: - $HOME/.composer/cache/files php: - 7.0 - 7.1 - 7.2 - nightly # also test lowest dependencies on PHP 7 matrix: include: - php: 7.0 env: - DEPENDENCIES=lowest allow_failures: - php: nightly sudo: false install: - composer install --no-interaction - if [ "$DEPENDENCIES" = "lowest" ]; then composer update --prefer-lowest -n; fi script: - ./vendor/bin/phpunit --coverage-text
Remove trusty dist as it was needed for PHP 5.3 from the build config copied
Remove trusty dist as it was needed for PHP 5.3 from the build config copied
YAML
mit
friends-of-reactphp/http-middleware-psr15-adapter
fbae1c2b6d29ac5bfac473b1872539ff4458ba06
.travis.yml
.travis.yml
--- after_script: - ruby -Ilib bin/rake travis:after -t before_script: - gem install hoe-travis --no-rdoc --no-ri - gem install minitest -v '~> 5.0' --no-rdoc --no-ri - ruby -Ilib bin/rake travis:before -t language: ruby notifications: email: - drbrain@segment7.net rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 - jruby script: ruby -Ilib bin/rake matrix: allow_failures: - rvm: jruby
--- after_script: - ruby -Ilib bin/rake travis:after -t before_script: - gem install hoe-travis --no-rdoc --no-ri - gem install minitest -v '~> 5.0' --no-rdoc --no-ri - ruby -Ilib bin/rake travis:before -t language: ruby notifications: email: - drbrain@segment7.net rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 - 2.2.0 - ruby-head - jruby script: ruby -Ilib bin/rake matrix: allow_failures: - rvm: jruby
Test rake against ruby 2.2 and head
Test rake against ruby 2.2 and head
YAML
mit
envato/rake,envato/rake,ruby/rake,pjump/rake,bentley/rake,askl56/rake,utilum/rake,esasse/rake,Vanzct/rake,tmornini/rake,ipmobiletech/rake,zzak/rake,codedogfish/rake,ruby/rake,88rabbit/rake,jaustinhughey/rake,taiganakagawa/rake
e8fc90dabfb65a8fd0aef6a3fe269cea80050f4b
.travis.yml
.travis.yml
language: ruby bundler_args: --without development cache: bundler script: "bundle exec rspec spec" rvm: - "2.4.0" - "2.3.3" - "2.2" - "2.1" - "2.0" - ruby-head notifications: recipients: - michael@rabbitmq.com matrix: allow_failures: - rvm: ruby-head
language: ruby bundler_args: --without development cache: bundler script: "bundle exec rspec spec" rvm: - ruby-head - "2.4.1" - "2.3.4" - "2.2.7" notifications: recipients: - michael@rabbitmq.com matrix: allow_failures: - rvm: ruby-head
Drop support for Ruby < 2.2
Drop support for Ruby < 2.2 Looks like its URI parser has limitations revealed by Travis. Bunny tests agains 2.2+ already.
YAML
mit
ruby-amqp/amq-protocol,ruby-amqp/amq-protocol
527519aa32e9454a5151ba091b32fce97a428b46
.travis.yml
.travis.yml
language: python env: - DJANGO_VERSION=1.7 - DJANGO_VERSION=1.8 - DJANGO_VERSION=1.9 python: - "2.7" - "3.3" - "3.4" - "3.5" install: - pip install django==$DJANGO_VERSION --use-mirrors - pip install . --use-mirrors script: ./test_project/manage.py test
language: python env: - DJANGO_VERSION=1.7 - DJANGO_VERSION=1.8 - DJANGO_VERSION=1.9 python: - "2.7" - "3.3" - "3.4" - "3.5" matrix: exclude: - python: "3.5" env: "DJANGO_VERSION=1.7" install: - pip install django==$DJANGO_VERSION --use-mirrors - pip install . --use-mirrors script: ./test_project/manage.py test
Exclude Python 3.5 with Django 1.7 from test matrix
Exclude Python 3.5 with Django 1.7 from test matrix
YAML
bsd-2-clause
dwaynebailey/django-overextends,stephenmcd/django-overextends
6fe051c6acf8a207d204500c20ced93983389439
.travis.yml
.travis.yml
language: ruby dist: trusty sudo: false before_install: - gem update --system - gem update bundler before_script: - bundle update cache: bundler rvm: - 1.9.3-p551 - 2.0.0-p648 - 2.1.10 - 2.2.9 - 2.3.6 - 2.4.3 - 2.5.0 - ruby-head - jruby-1.7.27 - jruby-9.1.15.0 - jruby-head - rbx-3.99 matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: rbx-3.99
language: ruby dist: trusty sudo: false before_install: - gem update --system - gem update bundler before_script: - bundle update cache: bundler rvm: - 1.9.3-p551 - 2.0.0-p648 - 2.1.10 - 2.2.9 - 2.3.6 - 2.4.3 - 2.5.0 - ruby-head - jruby-1.7.27 - jruby-9.1.15.0 - jruby-head - rbx-3.99 matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head
Remove Rubinius 3.99 from allow_failures.
Remove Rubinius 3.99 from allow_failures. The issue (https://github.com/rubinius/rubinius/issues/3783) causing the test failures has now been fixed.
YAML
mit
tzinfo/tzinfo
2aaea6825f2197777ab58f2f4f635a8fc68404de
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 - jruby-19mode script: bundle exec rspec spec
language: ruby rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 - 2.3.0 - jruby-19mode script: bundle exec rspec spec
Add Ruby 2.3 to Travis
Add Ruby 2.3 to Travis
YAML
mit
gocardless/business
469aa47cd5ae53c46be5da1e08be4e0eabb2c2eb
.travis.yml
.travis.yml
language: php services: - postgresql php: - 7.1 sudo: false cache: directories: - vendor - $HOME/.composer/cache #before_install: # - phpenv config-rm xdebug.ini install: - COMPOSER_DISCARD_CHANGES=1 composer install --dev --prefer-source --no-interaction before_script: - psql -c 'create database judite_testing;' -U postgres - php artisan migrate - nvm install --lts - npm install -g yarn - yarn install script: - composer ci-test - composer ci-lint - npm run production after_success: - php vendor/bin/coveralls -v
language: php services: - postgresql php: - 7.1 - 7.2 sudo: false cache: directories: - vendor - $HOME/.composer/cache #before_install: # - phpenv config-rm xdebug.ini install: - COMPOSER_DISCARD_CHANGES=1 composer install --dev --prefer-source --no-interaction before_script: - psql -c 'create database judite_testing;' -U postgres - php artisan migrate - nvm install --lts - npm install -g yarn - yarn install script: - composer ci-test - composer ci-lint - npm run production after_success: - php vendor/bin/coveralls -v
Add PHP 7.2 to Travis CI config
Add PHP 7.2 to Travis CI config
YAML
mit
Hackathonners/swap,Hackathonners/swap
159d32fad2d63fdb30b7ee60c776455b11f25d96
.travis.yml
.travis.yml
language: go go: - "1.x" - "1.11.x" - master services: - docker script: - go get -u github.com/mholt/caddy - go get -u gopkg.in/natefinch/lumberjack.v2 - go get -u github.com/miekg/dns - go get -u github.com/gomods/athens/... - rm -rf ${TRAVIS_HOME}/gopath/src/github.com/gomods/athens/vendor/github.com/spf13/afero - go get -u github.com/spf13/afero - go get github.com/prometheus/client_golang/... - go test -v -race ./... - make travis-build stages: - test - name: deploy if: (branch = master) AND (type != pull_request) jobs: include: - stage: deploy script: # build caddy - make travis-build # build image and push - docker login --username="$DOCKER_USER" --password="$DOCKER_PASSWORD" - make docker - make docker-push go: 1.x
language: go go: - "1.x" - "1.11.x" - master services: - docker script: - go test -v -race ./... - make stages: - test - name: deploy if: (branch = master) AND (type != pull_request) jobs: include: - stage: deploy script: # build caddy - make travis-build # build image and push - docker login --username="$DOCKER_USER" --password="$DOCKER_PASSWORD" - make docker - make docker-push go: 1.x
Use docker build inside Travis
(build): Use docker build inside Travis
YAML
apache-2.0
txtdirect/txtdirect
5052b120e17f7bff2c2b06ca74f3332e3fe5d4fc
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.7 - 2.3.4 - 2.4.1 - jruby-9.1.8.0 script: bundle exec rake spec
language: ruby rvm: - 2.2.8 - 2.3.5 - 2.4.2 - jruby-9.1.13.0 script: bundle exec rake spec
Update Ruby versions for Travis CI
Update Ruby versions for Travis CI Testing with the latest versions of MRI 2.2/2.3/2.4, and JRuby.
YAML
mit
ahamlinman/peribot-groupme
13e98ac237504732abcd305a847ab87460acacc3
.travis.yml
.travis.yml
language: go go: - 1.7 - tip addons: postgresql: "9.4" before_install: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover - gem install package_cloud before_script: - psql -c 'create database henhouse_test;' -U postgres script: - go list ./... | while read pkg; do go test -v -covermode=count -coverprofile=$(basename ${pkg}).cover ${pkg} || return 1; done - ls | grep cover$ | xargs cat | sort -r | uniq >> coverage.out - goveralls -coverprofile=coverage.out -service travis-ci - cd ${HOME}/jollheef/henhouse && ./package.sh
language: go go: - 1.7 - tip addons: postgresql: "9.4" before_install: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover - gem install package_cloud before_script: - psql -c 'create database henhouse_test;' -U postgres script: - go list ./... | while read pkg; do go test -v -covermode=count -coverprofile=$(basename ${pkg}).cover ${pkg} || return 1; done - ls | grep cover$ | xargs cat | sort -r | uniq >> coverage.out - goveralls -coverprofile=coverage.out -service travis-ci - cd ${TRAVIS_BUILD_DIR} && ./package.sh
Change directory for build package
Change directory for build package [2]
YAML
agpl-3.0
jollheef/henhouse,jollheef/henhouse,jollheef/henhouse,jollheef/henhouse
23c0dbb796e382dc143963843dd90080b1262505
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.4" - "3.5" install: - sudo apt-get update - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget https://repo.continuum.io/miniconda/Miniconda-3.9.1-Linux-x86_64.sh -O miniconda.sh; else wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda # Useful for debugging any issues with conda - conda info -a ##- export HDF5_DIR=/home/travis/miniconda/ - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION hdf5 - source activate test-environment - python setup.py install script: - ./test.sh after_script: - COVERALLS_REPO_TOKEN=dYV7pqZBuQAUszyONWnINMoo54KZbEFNI coveralls notifications: email: on_success: change on_failure: always
language: python python: - "2.7" - "3.4" - "3.5" install: - sudo apt-get update - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget https://repo.continuum.io/miniconda/Miniconda-3.9.1-Linux-x86_64.sh -O miniconda.sh; else wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda # Useful for debugging any issues with conda - conda info -a ##- export HDF5_DIR=/home/travis/miniconda/ - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION hdf5 - source activate test-environment ##- python setup.py install script: - ./test.sh after_script: - COVERALLS_REPO_TOKEN=dYV7pqZBuQAUszyONWnINMoo54KZbEFNI coveralls notifications: email: on_success: change on_failure: always
Comment out '- python setup.py install'
Comment out '- python setup.py install'
YAML
mit
MBARIMike/oxyfloat,MBARIMike/biofloat,MBARIMike/oxyfloat,MBARIMike/biofloat,biofloat/biofloat,biofloat/biofloat
de00b63c3c6e99771d8226a8001252a27090c947
.travis.yml
.travis.yml
language: python python: - "2.5" - "2.6" - "2.7" # command to install dependencies install: - "if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install mock unittest2 simplejson --use-mirrors ; fi" - "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install mock unittest2 --use-mirrors ; fi" - "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install mock --use-mirrors ; fi" - "pip install -e . --use-mirrors" # disable vagrant-based integration tests env: - FABTOOLS_TEST_BOXES="" # command to run tests script: - "if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; python -m unittest discover ; fi" - "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; unit2 discover ; fi" - "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; unit2 discover ; fi"
language: python python: - "2.5" - "2.6" - "2.7" # command to install dependencies install: - "if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install mock unittest2 simplejson --use-mirrors ; fi" - "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install mock unittest2 --use-mirrors ; fi" - "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install mock --use-mirrors ; fi" - "pip install -e . --use-mirrors" # disable vagrant-based integration tests env: - FABTOOLS_TEST_BOXES="" # command to run tests script: - "if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then python -m unittest discover ; fi" - "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then unit2 discover ; fi" - "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then unit2 discover ; fi"
Fix shell syntax in Travis CI config file
Fix shell syntax in Travis CI config file
YAML
bsd-2-clause
ronnix/fabtools,pombredanne/fabtools,prologic/fabtools,AMOSoft/fabtools,wagigi/fabtools-python,hagai26/fabtools,sociateru/fabtools,bitmonk/fabtools,n0n0x/fabtools-python,davidcaste/fabtools,badele/fabtools,fabtools/fabtools,ahnjungho/fabtools
0d2cbfa012f2b4fa829173fe5be2d649f7cf6cd7
.travis.yml
.travis.yml
language: ruby before_install: - gem install bundler rvm: - ruby-head - 2.4.0 - 2.3 - 2.2 - 2.1 - 2.0 gemfile: - gemfiles/rails_3.gemfile - gemfiles/rails_4.gemfile - gemfiles/rails_4.1.gemfile - gemfiles/rails_4.2.gemfile - gemfiles/rails_5.gemfile matrix: allow_failures: - rvm: ruby-head exclude: - rvm: 2.1 gemfile: gemfiles/rails_5.gemfile - rvm: 2.0 gemfile: gemfiles/rails_5.gemfile addons: code_climate: repo_token: 294f0ec8183176c0259b75eb21b38414508616985a7b39fc48fec9dfcf40a52e
language: ruby before_install: - gem install bundler rvm: - ruby-head - 2.4.0 - 2.3 - 2.2 - 2.1 - 2.0 gemfile: - gemfiles/rails_3.gemfile - gemfiles/rails_4.gemfile - gemfiles/rails_4.1.gemfile - gemfiles/rails_4.2.gemfile - gemfiles/rails_5.gemfile matrix: allow_failures: - rvm: ruby-head - rvm: 2.4.0 gemfile: gemfiles/rails_4.gemfile - rvm: 2.4.0 gemfile: gemfiles/rails_4.1.gemfile - rvm: 2.4.0 gemfile: gemfiles/rails_4.2.gemfile exclude: - rvm: 2.1 gemfile: gemfiles/rails_5.gemfile - rvm: 2.0 gemfile: gemfiles/rails_5.gemfile addons: code_climate: repo_token: 294f0ec8183176c0259b75eb21b38414508616985a7b39fc48fec9dfcf40a52e
Allow failures for Ruby 2.4.0 and Rails 4.x until patches for Rails ready
Allow failures for Ruby 2.4.0 and Rails 4.x until patches for Rails ready
YAML
mit
januszm/slim-rails,slim-template/slim-rails,januszm/slim-rails