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
3838e9f3835fcbfac6a9ae2763ac6c9cb89343f5
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: circleci/python:3.6.1 working_directory: ~/pronto-praise steps: - checkout - restore_cache: keys: - v1-dependencies-{{ checksum "requirements.txt" }} - run: name: install dependencies command: | python3 -m venv venv . venv/bin/activate pip install -r requirements.txt - save_cache: key: v1-dependencies-{{ checksum "requirements.txt" }} paths: - ./venv - run: name: run tests command: | . venv/bin/activate python manage.py test
defaults: &defaults working_directory: ~/pronto-praise docker: - image: circleci/python:3.6.1 version: 2 jobs: checkout_code: <<: *defaults steps: - checkout - persist_to_workspace: root: . paths: . python_dependencies: <<: *defaults steps: - attach_workspace: at: . - restore_cache: keys: - py-deps-{{ checksum "requirements.txt" }} - run: name: Install Dependencies command: | python3 -m venv venv . venv/bin/activate pip install -r requirements.txt - save_cache: key: py-deps-{{ checksum "requirements.txt" }} paths: - ./venv static_analysis: <<: *defaults steps: - attach_workspace: at: . - restore_cache: keys: - py-deps-{{ checksum "requirements.txt" }} - run: name: Run Static Analysis command: | . venv/bin/activate cd pronto_praise flake8 unit_tests: <<: *defaults steps: - attach_workspace: at: . - restore_cache: keys: - py-deps-{{ checksum "requirements.txt" }} - run: name: Run Tests command: | . venv/bin/activate cd pronto_praise python manage.py test workflows: version: 2 pronto_praise_pipeline: jobs: - checkout_code - python_dependencies: requires: - checkout_code - static_analysis: requires: - python_dependencies - unit_tests: requires: - python_dependencies
Create pipeline running static analysis and tests
Create pipeline running static analysis and tests
YAML
mit
prontotools/pronto-praise,prontotools/pronto-praise,prontotools/pronto-praise,prontotools/pronto-praise
74268100700bdef5fa0d12272d77f9df23334c53
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: circleci/php:7.1-node-browsers working_directory: ~/vertex steps: - checkout - run: sudo apt install -y libsqlite3-dev zlib1g-dev - run: sudo docker-php-ext-install zip - run: sudo composer self-update - restore_cache: keys: - composer-v1-{{ checksum "composer.lock" }} - composer-v1- - run: composer install -n --prefer-dist - save_cache: key: composer-v1-{{ checksum "composer.lock" }} paths: - vendor - run: ./vendor/bin/phpunit
version: 2 jobs: build: docker: - image: circleci/php:7.1-node-browsers working_directory: ~/vertex steps: - checkout - run: sudo apt install -y libsqlite3-dev zlib1g-dev - run: sudo docker-php-ext-install zip - run: sudo composer self-update - run: sudo docker-php-ext-install pdo_mysql - restore_cache: keys: - composer-v1-{{ checksum "composer.lock" }} - composer-v1- - run: composer install -n --prefer-dist - save_cache: key: composer-v1-{{ checksum "composer.lock" }} paths: - vendor - run: ./vendor/bin/phpunit
Add PDO command to CircleCI
Add PDO command to CircleCI
YAML
mit
Daniel-Griffiths/Vertex,Daniel-Griffiths/Vertex,Daniel-Griffiths/Vertex
0cf330e01de90eb6a28c6a45fcde861668297516
datas/turnBased.yaml
datas/turnBased.yaml
# Turn based games, which probably ever game will be AI: functions: runTurn: description: This is called every time it is this AI.player's turn. serverPredefined: true returns: type: boolean description: Represents if you want to end your turn. True means end your turn, False means to keep your turn going and re-call this function. default: true Game: serverParentClasses: - TurnBasedGame attributes: currentPlayer: type: Player! description: The player whose turn it is currently. That player can send commands. Other players cannot. serverPredefined: true currentTurn: type: int description: The current turn number, starting at 0 for the first player's turn. serverPredefined: true default: 0 maxTurns: type: const int description: The maximum number of turns before the game will automatically end. serverPredefined: true default: 100
# Turn based games, which probably ever game will be AI: functions: runTurn: description: This is called every time it is this AI.player's turn. serverPredefined: true returns: type: boolean description: Represents if you want to end your turn. True means end your turn, False means to keep your turn going and re-call this function. default: true Game: serverParentClasses: - TurnBasedGame attributes: currentPlayer: type: Player! description: The player whose turn it is currently. That player can send commands. Other players cannot. serverPredefined: true currentTurn: type: int description: The current turn number, starting at 0 for the first player's turn. serverPredefined: true default: 0 maxTurns: type: const int description: The maximum number of turns before the game will automatically end. serverPredefined: true default: 100 timeAddedPerTurn: type: const int description: The amount of time (in nano-seconds) added after each player performs a turn. serverPredefined: true
Add timeAddedPerTurn to base turn based game Game classes
Add timeAddedPerTurn to base turn based game Game classes
YAML
mit
siggame/Creer,JacobFischer/Creer,siggame/Creer
4bc280a0ef81995c42924f50eb882c73827c4c5f
.github/workflows/deploy-docker.yml
.github/workflows/deploy-docker.yml
name: Deploy-To-Docker on: [push] # push: # tags: # - '*' jobs: build: runs-on: ${{ matrix.os }} strategy: max-parallel: 4 matrix: os: [ubuntu-latest] steps: - uses: actions/checkout@v1 - name: Build image run: | docker build -t chrismit7/pyquant:latest . docker tag chrismit7/pyquant:latest chrismit7/pyquant:${GITHUB_REF#refs/heads/} - name: Upload image to Dockerhub env: DOCKERHUB_ACCESS_TOKEN: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} if: matrix.os == 'ubuntu-latest' run: | docker login --username chrismit7 -p ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} docker push chrismit7/pyquant:latest docker push chrismit7/pyquant:${GITHUB_REF#refs/heads/}
name: Deploy-To-Docker on: push: tags: - '*' jobs: build: runs-on: ${{ matrix.os }} strategy: max-parallel: 4 matrix: os: [ubuntu-latest] steps: - uses: actions/checkout@v1 - name: Build image run: | docker build -t chrismit7/pyquant:latest . docker tag chrismit7/pyquant:latest chrismit7/pyquant:${GITHUB_REF#refs/heads/} - name: Upload image to Dockerhub env: DOCKERHUB_ACCESS_TOKEN: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} if: matrix.os == 'ubuntu-latest' run: | docker login --username chrismit7 -p ${{ secrets.DOCKERHUB_ACCESS_TOKEN }} docker push chrismit7/pyquant:latest docker push chrismit7/pyquant:${GITHUB_REF#refs/heads/}
Deploy to docker only on tags
Deploy to docker only on tags
YAML
mit
Chris7/pyquant,Chris7/pyquant,Chris7/pyquant
6b41809a46d65b9898bc2e058669218bf48f066c
metadata/de.nulide.findmydevice.yml
metadata/de.nulide.findmydevice.yml
Categories: - Phone & SMS - Security - System License: GPL-3.0-only SourceCode: https://gitlab.com/Nulide/findmydevice IssueTracker: https://gitlab.com/Nulide/findmydevice/issues Liberapay: Nulide AutoName: FindMyDevice RepoType: git Repo: https://gitlab.com/Nulide/findmydevice.git Builds: - versionName: 0.0.1 versionCode: 1 commit: v0.0.1 subdir: app gradle: - yes - versionName: 0.0.2 versionCode: 2 commit: v0.0.2 subdir: app gradle: - yes - versionName: 0.0.3 versionCode: 3 commit: v0.0.3 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 0.0.3 CurrentVersionCode: 3
Categories: - Phone & SMS - Security - System License: GPL-3.0-only SourceCode: https://gitlab.com/Nulide/findmydevice IssueTracker: https://gitlab.com/Nulide/findmydevice/issues Liberapay: Nulide AutoName: FindMyDevice RepoType: git Repo: https://gitlab.com/Nulide/findmydevice.git Builds: - versionName: 0.0.1 versionCode: 1 commit: v0.0.1 subdir: app gradle: - yes - versionName: 0.0.2 versionCode: 2 commit: v0.0.2 subdir: app gradle: - yes - versionName: 0.0.3 versionCode: 3 commit: v0.0.3 subdir: app gradle: - yes - versionName: 0.0.4 versionCode: 4 commit: v0.0.4 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 0.0.4 CurrentVersionCode: 4
Update FindMyDevice to 0.0.4 (4)
Update FindMyDevice to 0.0.4 (4)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
25f9a33a2e69a3628dca95bcf99c17903134e5ee
metadata/org.metabrainz.android.yml
metadata/org.metabrainz.android.yml
Categories: - Internet - Multimedia License: GPL-3.0-or-later SourceCode: https://github.com/metabrainz/musicbrainz-android/ IssueTracker: http://tickets.musicbrainz.org/browse/MOBILE Donate: https://metabrainz.org/donate RepoType: git Repo: https://github.com/metabrainz/musicbrainz-android/ Builds: - versionName: '2.4' versionCode: 27 commit: v2.4 subdir: app gradle: - yes AutoUpdateMode: None UpdateCheckMode: Tags
Categories: - Internet - Multimedia License: GPL-3.0-or-later SourceCode: https://github.com/metabrainz/musicbrainz-android/ IssueTracker: http://tickets.musicbrainz.org/browse/MOBILE Donate: https://metabrainz.org/donate AutoName: MusicBrainz RepoType: git Repo: https://github.com/metabrainz/musicbrainz-android/ Builds: - versionName: '2.4' versionCode: 27 commit: v2.4 subdir: app gradle: - yes AutoUpdateMode: None UpdateCheckMode: Tags CurrentVersion: '2.4' CurrentVersionCode: 27
Update CV of MusicBrainz to 2.4 (27)
Update CV of MusicBrainz to 2.4 (27)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
97076a9390566a0fb396d2f1ae5de29760d886d6
.github/workflows/pythonpackage.yml
.github/workflows/pythonpackage.yml
# This workflow will install Python dependencies, run tests and lint 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: Python package on: push: branches: [ master, tproxy_mark_param ] pull_request: branches: [ master, tproxy_mark_param ] workflow_dispatch: branches: [ tproxy_mark_param ] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements-tests.txt - name: Lint with flake8 run: | flake8 sshuttle tests --count --show-source --statistics - name: Test with pytest run: | PYTHONPATH=$PWD pytest
# This workflow will install Python dependencies, run tests and lint 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: Python package on: push: branches: [ master ] pull_request: branches: [ master ] workflow_dispatch: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements-tests.txt - name: Lint with flake8 run: | flake8 sshuttle tests --count --show-source --statistics - name: Test with pytest run: | PYTHONPATH=$PWD pytest
Adjust branches, remove temporary branches
Adjust branches, remove temporary branches
YAML
lgpl-2.1
sshuttle/sshuttle,sshuttle/sshuttle
c700e03f7087b204277031b0bfe07c3e97f51cdb
.github/workflows/run-all-tests.yml
.github/workflows/run-all-tests.yml
# Copyright (c) 2014-2022 Kartik Kumar (me@kartikkumar.com) # Distributed under the MIT License. # See accompanying file LICENSE or copy at http://opensource.org/licenses/MIT # This workflow is based off of the following sources: # - name: run-all-tests on: [push] jobs: run-tests: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2.4.2 - name: Setup CMake uses: jwlawson/actions-setup-cmake@v1.12 with: cmake-version: '3.23.x' - name: Build CMake project run: | cmake -S . -B build -DBUILD_TESTING=on cmake --build build - name: Run tests run: make -C build test
# Copyright (c) 2014-2022 Kartik Kumar (me@kartikkumar.com) # Distributed under the MIT License. # See accompanying file LICENSE or copy at http://opensource.org/licenses/MIT # This workflow is based off of the GitHub Actions documentation: # - https://docs.github.com/en/actions name: run-all-tests on: [push] jobs: run-tests: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2.4.2 - name: Setup CMake uses: jwlawson/actions-setup-cmake@v1.12 with: cmake-version: '3.23.x' - name: Build CMake project run: | cmake -S . -B build -DBUILD_TESTING=on cmake --build build - name: Run tests run: make -C build test
Add source link to GitHub Actions documentation in actions workflow header text.
Add source link to GitHub Actions documentation in actions workflow header text.
YAML
mit
openastro/sml,kartikkumar/sml,Stardust2013/sml,Stardust2013/sml
bfff19cc4d4ccfccf992c8e39772af67f7599808
.github/workflows/go-mod-tidy-pr.yml
.github/workflows/go-mod-tidy-pr.yml
name: go-mod-tidy-pr on: schedule: - cron: "0 22 * * 0" # JST 7:00 (Mon) jobs: go-mod-tidy-pr: name: go-mod-tidy-pr runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Run go-mod-tidy-pr uses: sue445/go-mod-tidy-pr@master with: github_token: ${{ secrets.GITHUB_TOKEN }} git_user_name: GitHub Actions git_user_email: github-actions@example.cpm assign: sue445 labels: go-mod-tidy timezone: Asia/Tokyo
name: go-mod-tidy-pr on: schedule: - cron: "0 22 * * 0" # JST 7:00 (Mon) jobs: go-mod-tidy-pr: name: go-mod-tidy-pr runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Generate token id: generate_token uses: tibdex/github-app-token@v1 with: app_id: ${{ secrets.GH_APP_ID }} private_key: ${{ secrets.GH_PRIVATE_KEY }} - name: Run go-mod-tidy-pr uses: sue445/go-mod-tidy-pr@master with: github_token: ${{ steps.generate_token.outputs.token }} git_user_name: GitHub Actions git_user_email: github-actions@example.cpm assign: sue445 labels: go-mod-tidy timezone: Asia/Tokyo
Use GitHub App Token instead of GITHUB_TOKEN
Use GitHub App Token instead of GITHUB_TOKEN c.f. https://github.com/sue445/go-mod-tidy-pr#note-warning
YAML
mit
sue445/zatsu_monitor,sue445/zatsu_monitor
6f1123f4ba1521cca9fff6c935b0c807c9b1ce17
.github/workflows/kafka-utils-ci.yml
.github/workflows/kafka-utils-ci.yml
# This workflow will install Python dependencies, run tests and lint 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: kafka-utils-ci on: [pull_request] jobs: tox: runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: toxenv: - py36-unittest - py36-kafka10-dockeritest - py36-kafka11-dockeritest env: PIP_INDEX_URL: https://pypi.python.org/simple steps: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: python-version: 3.6 - name: Install dependencies run: | python -m pip install --upgrade pip pip install tox==3.2 tox-pip-extensions==1.3.0 - name: Run tests run: tox -i https://pypi.python.org/simple -e ${{ matrix.toxenv }}
# This workflow will install Python dependencies, run tests and lint 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: kafka-utils-ci on: [pull_request, release] jobs: tox: runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: toxenv: - py36-unittest - py36-kafka10-dockeritest - py36-kafka11-dockeritest env: PIP_INDEX_URL: https://pypi.python.org/simple steps: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: python-version: 3.6 - name: Install dependencies run: | python -m pip install --upgrade pip pip install tox==3.2 tox-pip-extensions==1.3.0 - name: Run tests run: tox -i https://pypi.python.org/simple -e ${{ matrix.toxenv }}
Test when releasing new versions
Test when releasing new versions
YAML
apache-2.0
Yelp/kafka-utils,Yelp/kafka-utils
4b5a5f68a2dbdea209a1f1f7be95b0d6af75b5a7
package/snapcraft.yaml
package/snapcraft.yaml
name: konstructs-client version: 0 summary: A voxel based game client description: An open source Infiniminer/Minecraft inspired multiplayer game. confinement: strict grade: devel apps: konstructs-client: command: desktop-launch $SNAP/konstructs-snap-wrapper plugs: - x11 - network - opengl - unity7 parts: launcher: plugin: dump source: . snap: [ "konstructs-snap-wrapper" ] gui: plugin: nil after: [desktop-gtk3] client: plugin: cmake source: .. configflags: [-DCMAKE_INSTALL_PREFIX=/] build-packages: - gcc-4.8 - g++-4.8 - xorg-dev - cmake - libx11-dev - zlib1g-dev stage-packages: - libgl1-mesa-dri
name: konstructs-client version: 0 summary: A voxel based game client description: An open source Infiniminer/Minecraft inspired multiplayer game. confinement: strict grade: stable apps: konstructs-client: command: desktop-launch $SNAP/konstructs-snap-wrapper plugs: - x11 - network - opengl - unity7 parts: launcher: plugin: dump source: . snap: [ "konstructs-snap-wrapper" ] gui: plugin: nil after: [desktop-gtk3] client: plugin: cmake source: .. configflags: [-DCMAKE_INSTALL_PREFIX=/] build-packages: - gcc-4.8 - g++-4.8 - xorg-dev - cmake - libx11-dev - zlib1g-dev stage-packages: - libgl1-mesa-dri
Set snap grade to stable and publish it.
Set snap grade to stable and publish it.
YAML
mit
konstructs/client,konstructs/client,konstructs/client
1341eb8bf13205fdd0ff4d285a57a28defb78b81
catalog/Web_Apps_Services_Interaction/API_Builders.yml
catalog/Web_Apps_Services_Interaction/API_Builders.yml
name: API Builders description: projects: - active_model_serializers - acts_as_api - api-versions - apiary - bldr - blueprinter - cache_crispies - fast_jsonapi - grape - grapethor - jb - jbuilder - jsonapi-serializer - mutils - nativeson - rabl - representable - roar - rocket_pants - roy - simple_ams - surrealist - versioncake - versionist - windsor - xmlrpc-rack_server
name: API Builders description: projects: - active_model_serializers - acts_as_api - api-versions - apiary - bldr - blueprinter - cache_crispies - fast_jsonapi - grape - grapethor - jb - jbuilder - jsonapi-serializer - mutils - nativeson - oj_serializers - rabl - representable - roar - rocket_pants - roy - simple_ams - surrealist - versioncake - versionist - windsor - xmlrpc-rack_server
Add oj_serializers to API builders
Add oj_serializers to API builders ⚡️ Faster JSON serialization for Ruby on Rails. Easily migrate away from Active Model Serializers. Repo: https://github.com/ElMassimo/oj_serializers Design & Comparison with other libraries: https://github.com/ElMassimo/oj_serializers#design- Migrating from ActiveModelSerializers: https://github.com/ElMassimo/oj_serializers/blob/master/MIGRATION_GUIDE.md
YAML
mit
rubytoolbox/catalog
c46cd483bbc18b6d33b0de85867143287305083a
packages/ca/canon.yaml
packages/ca/canon.yaml
homepage: https://github.com/grandpascorpion/canon changelog-type: text hash: 039c93b8cb4adf32d87cdace3acfdc11d76c4c72d2fcb940412fbd3fbb08ad35 test-bench-deps: {} maintainer: frederick dot schneider2011 at gmail dot com synopsis: Massive Number Arithmetic changelog: ! "0.1.0.1:\n Improvements to documentation.\n Fix typos and word omissions.\n Remove unused / \"unsafe\" Cr functions from AurifCyclo.hs\n\n0.1.0.0:\n \ First release\n" basic-deps: base: ! '>=4.9.1.0 && <5' array: ! '>=0.5.1.1 && <0.6' containers: ! '>=0.5.7.1 && <0.6' polynomial: ! '>=0.7.3 && <0.8' arithmoi: ! '>=0.6.0.1 && <0.7' all-versions: - '0.1.0.0' - '0.1.0.1' author: Frederick Schneider latest: '0.1.0.1' description-type: markdown description: ! '# canon ' license-name: MIT
homepage: https://github.com/grandpascorpion/canon changelog-type: text hash: 772feb917742602f83fab17afbe70d395b1a5ab83b4c2c1ccededa2cf3eb0204 test-bench-deps: {} maintainer: frederick dot schneider2011 at gmail dot com synopsis: Massive Number Arithmetic changelog: ! "0.1.0.2:\n Bug fix for pattern PN1 in Internals.hs\n0.1.0.1:\n Improvements to documentation.\n Fix typos and word omissions.\n Remove unused / \"unsafe\" Cr functions from AurifCyclo.hs\n0.1.0.0:\n First release\n" basic-deps: base: ! '>=4.9.1.0 && <5' array: ! '>=0.5.1.1 && <0.6' containers: ! '>=0.5.7.1 && <0.6' polynomial: ! '>=0.7.3 && <0.8' arithmoi: ! '>=0.6.0.1 && <0.7' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' author: Frederick Schneider latest: '0.1.0.2' description-type: markdown description: ! '# canon ' license-name: MIT
Update from Hackage at 2018-02-21T12:56:55Z
Update from Hackage at 2018-02-21T12:56:55Z
YAML
mit
commercialhaskell/all-cabal-metadata
ad15531df4f370ebcab92aa14627f6903ee2805a
packages/dm/dmenu.yaml
packages/dm/dmenu.yaml
homepage: https://github.com/m0rphism/haskell-dmenu changelog-type: '' hash: da8ba3ce08a07de4e75c25cdf3e48e52bba10f9c414df1aada8a8b89002f335b test-bench-deps: {} maintainer: Hannes Saffrich <m0rphism@zankapfel.org> synopsis: Complete bindings to the dmenu and dmenu2 command line tools. changelog: '' basic-deps: base: ! '>=4.7 && <5' process: -any containers: -any lens: -any mtl: -any transformers: -any directory: -any all-versions: - '0.1.0.1' author: Hannes Saffrich latest: '0.1.0.1' description-type: haddock description: Provides fuzzy selection via a GUI menu. license-name: BSD3
homepage: https://github.com/m0rphism/haskell-dmenu changelog-type: '' hash: 9fc040e034d861c2e0f72b12c02bc818347d26e03d81f93d95e19d6d075e045b test-bench-deps: {} maintainer: Hannes Saffrich <m0rphism@zankapfel.org> synopsis: Complete bindings to the dmenu and dmenu2 command line tools. changelog: '' basic-deps: base: ! '>=4.8 && <5' process: ! '>=1.4 && <1.5' containers: ! '>=0.5.7 && <0.6' lens: ! '>=4.10 && <4.16' mtl: ! '>=2.2 && <2.3' transformers: ! '>=0.5 && <0.6' directory: ! '>=1.2.6 && <1.3' all-versions: - '0.1.0.1' - '0.1.0.2' author: Hannes Saffrich latest: '0.1.0.2' description-type: haddock description: Provides fuzzy selection via a GUI menu. license-name: BSD3
Update from Hackage at 2016-11-19T22:42:05Z
Update from Hackage at 2016-11-19T22:42:05Z
YAML
mit
commercialhaskell/all-cabal-metadata
6f3aa5ea8b4e5768eb0798e9fd08e4a5c4764e1d
packages/ra/rando.yaml
packages/ra/rando.yaml
homepage: '' changelog-type: '' hash: e7db03e34c962ef8ec2087fb0bf01a84be98f7c43b1805a35ed9b32d4896f6ef test-bench-deps: {} maintainer: Tom Murphy synopsis: Easy-to-use randomness for livecoding changelog: '' basic-deps: tf-random: -any base: <5 all-versions: - '0.0.0.1' author: Tom Murphy latest: '0.0.0.1' description-type: haddock description: ! 'Easy-to-use randomness for livecoding. The goal is to provide the simplest possible experience, e.g. > >>> pickOne ["lemon", "lime", "strawberry"] > "lime" :: IO String This library is in flux: names will change, types will change, functions will appear and disappear.' license-name: GPL-3
homepage: '' changelog-type: '' hash: e3211d7e000db4589b9f514bd96d1fd6b9436ab83aa4a6dc76fa912d83ad12d1 test-bench-deps: tf-random: -any microspec: -any base: <5 containers: -any vector: -any maintainer: Tom Murphy synopsis: Easy-to-use randomness for livecoding changelog: '' basic-deps: tf-random: -any base: <5 vector: -any all-versions: - '0.0.0.1' - '0.0.0.2' author: Tom Murphy latest: '0.0.0.2' description-type: haddock description: ! 'Easy-to-use randomness for livecoding. The goal is to provide the simplest possible experience, e.g. > >>> pickOne ["lemon", "lime", "strawberry"] > "lime" :: IO String > >>> flipCoin > True > >>> shuffle [1..5] > [2,4,1,3,5] This library is in flux: names will change, types will change, functions will appear and disappear and move between modules!' license-name: GPL-3
Update from Hackage at 2018-02-24T18:39:47Z
Update from Hackage at 2018-02-24T18:39:47Z
YAML
mit
commercialhaskell/all-cabal-metadata
6e013805cfcb2b04dc04309f912a63ce125260af
Resources/config/smoke_tests.yml
Resources/config/smoke_tests.yml
parameters: smartesb.smoke_test.check_queue_driver_connection.class: Smartbox\Integration\FrameworkBundle\Tools\SmokeTests\QueueDriverConnectionSmokeTest smartesb.smoke_test.file_permissions.class: Smartbox\Integration\FrameworkBundle\Tools\SmokeTests\FilePermissionsSmokeTest smartesb.smoke_test.connectivity_check.class: Smartbox\Integration\FrameworkBundle\Tools\SmokeTests\ConnectivityCheckSmokeTest smartesb.smoke_test.database.class: Smartbox\Integration\FrameworkBundle\Tools\SmokeTests\DatabaseSmokeTest services: ## SMOKE TESTS ## smartesb.smoke_test.check_queue_driver_connection: class: "%smartesb.smoke_test.check_queue_driver_connection.class%" arguments: ["@smartesb.default_queue_driver"] tags: - { name: smartcore.smoke_test, labels: "critical" } smartesb.smoke_test.file_permissions: class: "%smartesb.smoke_test.file_permissions.class%" arguments: [ '%kernel.root_dir%/cache' ] tags: - { name: smartcore.smoke_test, labels: "important" } smartesb.smoke_test.database: class: "%smartesb.smoke_test.database.class%" arguments: ["@doctrine"] tags: - { name: smartcore.smoke_test, labels: "critical" }
parameters: smartesb.smoke_test.check_queue_driver_connection.class: Smartbox\Integration\FrameworkBundle\Tools\SmokeTests\QueueDriverConnectionSmokeTest smartesb.smoke_test.file_permissions.class: Smartbox\Integration\FrameworkBundle\Tools\SmokeTests\FilePermissionsSmokeTest smartesb.smoke_test.connectivity_check.class: Smartbox\Integration\FrameworkBundle\Tools\SmokeTests\ConnectivityCheckSmokeTest smartesb.smoke_test.database.class: Smartbox\Integration\FrameworkBundle\Tools\SmokeTests\DatabaseSmokeTest services: ## SMOKE TESTS ## smartesb.smoke_test.check_queue_driver_connection: class: "%smartesb.smoke_test.check_queue_driver_connection.class%" arguments: ["@smartesb.default_queue_driver"] tags: - { name: smartcore.smoke_test, labels: "critical" } smartesb.smoke_test.file_permissions: class: "%smartesb.smoke_test.file_permissions.class%" arguments: [ "@=service('kernel').getCacheDir()" ] # TODO: Once 2.8 support is dropped, replace this with '%kernel.cache_dir%' tags: - { name: smartcore.smoke_test, labels: "important" } smartesb.smoke_test.database: class: "%smartesb.smoke_test.database.class%" arguments: ["@doctrine"] tags: - { name: smartcore.smoke_test, labels: "critical" }
Fix incorrect path to cache folder
SF34: Fix incorrect path to cache folder
YAML
mit
smartboxgroup/integration-framework-bundle,smartboxgroup/integration-framework-bundle
042e61cb0c913c420c2949b9d7a97549f7b99092
site/data/countries.yml
site/data/countries.yml
Australia: name: Australia short: AUS continent: Oceania Hungary: name: Hungary short: HUN continent: Europe Croatia: name: Croatia short: HRV continent: Europe
--- countries: - name: Australia short: AUS continent: Oceania - name: Hungary short: HUN continent: Europe - name: Croatia short: HRV continent: Europe
Update formatting given forestry's feedbacl
Update formatting given forestry's feedbacl
YAML
mit
Jayphen/happeatravels,Jayphen/happeatravels
d8ffd92e541327e08747ce9d3db09cdc24882a35
.travis.yml
.travis.yml
language: python python: - "3.3" - "2.7" - "2.6" virtualenv: system_site_packages: true before_install: - sudo apt-get install -qq python-numpy python-scipy python-sympy script: nosetests
language: python python: - "3.3" - "2.7" - "2.6" virtualenv: system_site_packages: true before_install: - sudo apt-get install build-dep python-numpy python-scipy python-sympy install: - pip install numpy scipy sympy --use-mirrors script: nosetests
Install libraries with pip, but deps with apt
Travis: Install libraries with pip, but deps with apt
YAML
bsd-2-clause
neurord/pysb,LoLab-VU/pysb,johnbachman/pysb,neurord/pysb,neurord/pysb,jmuhlich/pysb,LoLab-VU/pysb,pysb/pysb,alubbock/pysb,johnbachman/pysb
76283cf224ced6a0d8186d60808172f85e7505b5
.travis.yml
.travis.yml
# octocatalog-diff language: ruby install: true script: "script/cibuild" matrix: include: # Build with latest ruby - rvm: 2.5 env: RUBOCOP_TEST="true" RSPEC_TEST="true" # Build with older ruby versions - rvm: 2.4 env: RUBOCOP_TEST="true" RSPEC_TEST="true" - rvm: 2.3.2 env: RUBOCOP_TEST="false" RSPEC_TEST="true" - rvm: 2.2.3 env: RUBOCOP_TEST="false" RSPEC_TEST="true" - rvm: 2.1 env: RUBOCOP_TEST="false" RSPEC_TEST="true" - rvm: 2.0 env: RUBOCOP_TEST="false" RSPEC_TEST="true"
# octocatalog-diff language: ruby install: true script: "script/cibuild" matrix: include: # Build with latest ruby - rvm: 2.5 env: RUBOCOP_TEST="true" RSPEC_TEST="true" PUPPET_VERSIONS="3.8.7" - rvm: 2.5 env: RUBOCOP_TEST="false" RSPEC_TEST="true" PUPPET_VERSIONS="4.10.8" - rvm: 2.5 env: RUBOCOP_TEST="false" RSPEC_TEST="true" PUPPET_VERSIONS="5.0.0" # Build with older ruby versions - rvm: 2.4 env: RUBOCOP_TEST="false" RSPEC_TEST="true" PUPPET_VERSIONS="3.8.7" - rvm: 2.3.2 env: RUBOCOP_TEST="false" RSPEC_TEST="true" PUPPET_VERSIONS="4.10.8" - rvm: 2.2.3 env: RUBOCOP_TEST="false" RSPEC_TEST="true" PUPPET_VERSIONS="5.0.0" - rvm: 2.1 env: RUBOCOP_TEST="false" RSPEC_TEST="true" PUPPET_VERSIONS="3.8.7" - rvm: 2.0 env: RUBOCOP_TEST="false" RSPEC_TEST="true" PUPPET_VERSIONS="3.8.7" - rvm: 2.0 env: RUBOCOP_TEST="false" RSPEC_TEST="true" PUPPET_VERSIONS="5.0.0"
Split builds, one ruby + puppet per job
Split builds, one ruby + puppet per job
YAML
mit
github/octocatalog-diff,github/octocatalog-diff,github/octocatalog-diff
b5b004a3d67a01ad83fd3e691ec02286ae7d4e7a
.travis.yml
.travis.yml
language: node_js # Node runs `npm install` and `npm test` automatically node_js: node # Uses the latest version (via nvm) sudo: false # Allows Travis to run this project in container deploy: provider: script script: scripts/deploy.sh skip_cleanup: true on: branch: master
language: node_js # Node runs `npm install` and `npm test` automatically node_js: node # Uses the latest version (via nvm) sudo: true # Allows Travis to run this project in container deploy: provider: script script: scripts/deploy.sh skip_cleanup: true on: branch: master
Deploy as sudo on Travis
Deploy as sudo on Travis
YAML
agpl-3.0
litewrite/litewrite,litewrite/litewrite
bb9c170a73af46f22d56c64cc4a6713c54e615a7
.travis.yml
.travis.yml
language: ruby cache: bundler rvm: # - 1.9.3 # - 2.0.0 # - 2.1.0 # - 2.1.1 - 2.1.2 # - jruby # - rbx-2 deploy: provider: rubygems api_key: secure: beHIrfhi+kpvA67zbiMXx5n2qAUaNUz+y3RO3yB19jIiTm4Zol8DRJH9jKO6YpIwLlolTrGVQsmZHqmmXRghv3qZXeYwLdp0mvyMIYc5w10OiRwDzlS1DFogevDszRDpypP7J48oFn2llRt1mw9HyLE83GFQcTEvxUJ+ENLA3tY= gem: minitest-capybara on: repo: wojtekmach/minitest-capybara before_deploy: - echo Deploying... env: global: secure: hhFhgyLXEf3CAQdiHhSXi7sS6E0Jo2t7xMz3rExdM8oUH+caKd+V1NOY23JItuljVwXTorOAZyNnvPdAVwwWEGX5haNk3s++YrBaaXb6YAv8isUNgNkthxRwc9h2ILy0R53I3OHrkA9r9DJTPo5hjrmzLtYOQScdxJPt03nKUyo=
language: ruby cache: bundler rvm: # - 1.9.3 # - 2.0.0 # - 2.1.0 # - 2.1.1 - 2.1.2 # - jruby # - rbx-2 deploy: provider: rubygems api_key: secure: beHIrfhi+kpvA67zbiMXx5n2qAUaNUz+y3RO3yB19jIiTm4Zol8DRJH9jKO6YpIwLlolTrGVQsmZHqmmXRghv3qZXeYwLdp0mvyMIYc5w10OiRwDzlS1DFogevDszRDpypP7J48oFn2llRt1mw9HyLE83GFQcTEvxUJ+ENLA3tY= gem: minitest-capybara on: repo: wojtekmach/minitest-capybara condition: ./script/unreleased before_deploy: - echo Deploying... env: global: secure: hhFhgyLXEf3CAQdiHhSXi7sS6E0Jo2t7xMz3rExdM8oUH+caKd+V1NOY23JItuljVwXTorOAZyNnvPdAVwwWEGX5haNk3s++YrBaaXb6YAv8isUNgNkthxRwc9h2ILy0R53I3OHrkA9r9DJTPo5hjrmzLtYOQScdxJPt03nKUyo=
Use unreleased as before hook
Use unreleased as before hook
YAML
mit
blowmage/minitest-capybara,wojtekmach/minitest-capybara
f104e79e5c6290c94ba6be78574959ef794fbb74
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.4" - "3.5.1" # command to install dependencies install: - pip install -r requirements.txt - pip install atari_py - pip install hacking # command to run tests script: - flake8 . - nosetests -a '!gpu' - ./test_examples.sh
language: python python: - "2.7" - "3.4" - "3.5.1" # command to install dependencies install: - pip install -r requirements.txt - pip install atari_py - pip install hacking # command to run tests script: - flake8 . - nosetests -a '!gpu' -x - ./test_examples.sh
Stop tests immediately after a failure
Stop tests immediately after a failure
YAML
mit
toslunar/chainerrl,toslunar/chainerrl
b834f8c610714fb6b04f35f6463ed0bd1bebb86e
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "4.2.3" addons: apt: sources: - ubuntu-toolchain-r-test packages: - libstdc++6 # upgrade libstdc++ on linux to support C++11 sudo: false after_success: - if [[ ${TRAVIS_NODE_VERSION} == "0.10" ]]; then npm run coverage; fi;
language: node_js node_js: - "0.10" - "4.2.3" - "6" addons: apt: sources: - ubuntu-toolchain-r-test packages: - libstdc++6 # upgrade libstdc++ on linux to support C++11 sudo: false after_success: - if [[ ${TRAVIS_NODE_VERSION} == "0.10" ]]; then npm run coverage; fi;
Add support to node v6
Add support to node v6
YAML
bsd-3-clause
CartoDB/tilelive-bridge
c68ad31074dcd2d3e919b476511bb525fd3e5daf
.travis.yml
.travis.yml
branches: except: - gh-pages language: scala scala: - 2.10.7 - 2.11.12 - 2.12.4 jdk: - oraclejdk8 - oraclejdk9 cache: directories: - "$HOME/.ivy2/cache" - "$HOME/.sbt/boot/" script: - sbt ++$TRAVIS_SCALA_VERSION validate - if [[ $TRAVIS_SCALA_VERSION == 2.12* ]]; then sbt ++$TRAVIS_SCALA_VERSION validateDocs; fi after_success: - bash <(curl -s https://codecov.io/bash) matrix: include: - scala: 2.11.12 sudo: required before_install: - curl https://raw.githubusercontent.com/scala-native/scala-native/v0.3.6/bin/travis_setup.sh | bash -x script: - sbt ++$TRAVIS_SCALA_VERSION validateNative
branches: except: - gh-pages language: scala scala: - 2.10.7 - 2.11.12 - 2.12.4 jdk: - oraclejdk8 cache: directories: - "$HOME/.ivy2/cache" - "$HOME/.sbt/boot/" script: - sbt ++$TRAVIS_SCALA_VERSION validate - if [[ $TRAVIS_SCALA_VERSION == 2.12* ]]; then sbt ++$TRAVIS_SCALA_VERSION validateDocs; fi after_success: - bash <(curl -s https://codecov.io/bash) matrix: include: - scala: 2.11.12 sudo: required before_install: - curl https://raw.githubusercontent.com/scala-native/scala-native/v0.3.6/bin/travis_setup.sh | bash -x script: - sbt ++$TRAVIS_SCALA_VERSION validateNative
Remove jdk9 builds to shorten build times
Remove jdk9 builds to shorten build times [ci skip]
YAML
mit
vlovgr/ciris
bfeb461a19ec48d5f40b7b04e6209b9295673481
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 branches: only: - master before_script: - composer install script: - bin/phpcs Api DependencyInjection --standard=PSR2 --extensions=php - phpunit
language: php php: - 5.4 - 5.5 - 5.6 branches: only: - master before_script: - composer install script: - bin/phpcs Api DependencyInjection --standard=PSR2 --extensions=php - phpunit
Build PHP 5.6 on Travis.
Build PHP 5.6 on Travis.
YAML
mit
boxuk/postcodes-io-bundle
732bcb609b706e22bfb4e9e00958d80b49151ae8
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.3 - 2.0.0 install: bundle install script: bundle exec rake travis branches: only: - master
language: ruby rvm: - 1.8.7 - 1.9.3 install: bundle install script: bundle exec rake travis branches: only: - master
Remove Ruby 2.0.0 from Travis config
Remove Ruby 2.0.0 from Travis config
YAML
apache-2.0
Jimdo/puppet-skeleton
a57370ba428b1da39c3553c8837633c4725201fd
.travis.yml
.travis.yml
language: cpp before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update -qq - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi - sudo apt-get -qq install libconfig++-dev libgtest-dev - "cd /usr/src/gtest && sudo cmake . && sudo cmake --build . && sudo mv libg* /usr/local/lib/ ; cd -" before_script: - cmake . -Dbuild_tests=BOOL:ON script: make after_success: - ./bin/test-stringutils - ./bin/test-restclient - ./bin/test-json - ./bin/test-jippi
language: cpp before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update -qq - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi - sudo apt-get -qq install libconfig++-dev libgtest-dev libjsoncpp-dev-0.5.0 - "cd /usr/src/gtest && sudo cmake . && sudo cmake --build . && sudo mv libg* /usr/local/lib/ ; cd -" before_script: - cmake . -Dbuild_tests=BOOL:ON script: make after_success: - ./bin/test-stringutils - ./bin/test-restclient - ./bin/test-json - ./bin/test-jippi
Add JsonCpp library to Travis configuration
Add JsonCpp library to Travis configuration
YAML
apache-2.0
kmichalak/jippi
12e7c93568f9a728b22f72dc188fd88ef402b48e
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.10" - "0.11" - "0.12" - "4.0" - "4.1" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm install -g bob coveralls --loglevel error script: - DEBUG=canihaz bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
sudo: false language: node_js node_js: - "4.4" - "6.3" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm install -g bob coveralls --loglevel error script: - DEBUG=canihaz bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
Update Travis config to latest. Update Travis config to latest.
Update Travis config to latest. Update Travis config to latest.
YAML
mit
cliffano/roombox
56a2d9def1799426773b91ccf5529bcfa907d672
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.6" matrix: include: - python: 3.6 env: TOXENV=py36 - python: 2.7 env: TOXENV=py27 before_install: - sudo apt-get update - sudo apt-get install meld install: - pip install tox script: - tox -c tox.ini
language: python matrix: include: - python: 3.6 env: TOXENV=py36 - python: 2.7 env: TOXENV=py27 before_install: - sudo apt-get update - sudo apt-get install meld install: - pip install tox script: - tox -c tox.ini
Remove 'python' key so only run tests for appropriate python version using TOXENV.
Remove 'python' key so only run tests for appropriate python version using TOXENV.
YAML
apache-2.0
approvals/ApprovalTests.Python,approvals/ApprovalTests.Python,approvals/ApprovalTests.Python,tdpreece/ApprovalTests.Python
428e064bdf16910b2e00775036e141eaa40313f6
.travis.yml
.travis.yml
sudo: false language: node_js cache: directories: - node_modules notifications: email: false node_js: - '8' - '7' - '6' - '4' before_install: - npm i -g yarn script: - yarn lint - yarn test:coverage -- --silent after_success: - yarn semantic-release after_script: - bash <(curl -s https://codecov.io/bash) branches: only: - master - /^greenkeeper/.*$/
sudo: false language: node_js cache: directories: - node_modules notifications: email: false node_js: - '8' - '7' - '6' - '4' before_install: - npm i -g yarn install: - yarn install --ignore-engine script: - yarn lint - yarn test:coverage -- --silent after_success: - yarn semantic-release after_script: - bash <(curl -s https://codecov.io/bash) branches: only: - master - /^greenkeeper/.*$/
Fix yarn blocking new semantic-release based on engine req
Fix yarn blocking new semantic-release based on engine req
YAML
mit
Velenir/combine-reducers-global-state
62693b66c1ca60d8aa6a5ad52d662d43196966ff
.travis.yml
.travis.yml
language: minimal matrix: include: - env: GHCVER=8.6 - env: GHCVER=8.8 - env: GHCVER=8.10 - env: GHCVER=head - os: osx script: - export HLINT_ARGUMENTS=src # - export UNIPLATE_VERBOSE=-1 # apply-refact doesn't compile with GHC head # if you are using ghc-exactprint-0.6.3 you get a compile error - "[ \"$GHCVER\" = \"head\" ] || export HASKELL_DEPENDENCIES=\"ghc-exactprint-0.6.2 apply-refact\"" - curl -sSL https://raw.github.com/ndmitchell/neil/master/travis.sh | sh deploy: provider: releases api_key: secure: "AGqjQtLxRE+MXWYuNK0oD2nqyGOUm67T3Bfa8p6fkSDM3hZ8zSeg48YcNb4IL0lB40l2ATK53hvIzdxqxg81pnMZIWZj3NoO/y0DT0uiYBDKN0xX8Lp7lJmjxCl5jyfBRx47t9Evk5HYZoyjPgRR2t4E84N4oSCcv2El1fJY9mU=" file_glob: true file: travis-release/* skip_cleanup: true on: tags: true
language: minimal matrix: include: - env: GHCVER=8.6 - env: GHCVER=8.8 - env: GHCVER=8.10 - env: GHCVER=head - os: osx script: - export HLINT_ARGUMENTS=src # - export UNIPLATE_VERBOSE=-1 # apply-refact doesn't compile with GHC head or 8.10 # if you are using ghc-exactprint-0.6.3 you get a compile error - "[ \"$GHCVER\" = \"head\" ] || [ \"$GHCVER\" = \"8.10\" ] || export HASKELL_DEPENDENCIES=\"ghc-exactprint-0.6.2 apply-refact\"" - curl -sSL https://raw.github.com/ndmitchell/neil/master/travis.sh | sh deploy: provider: releases api_key: secure: "AGqjQtLxRE+MXWYuNK0oD2nqyGOUm67T3Bfa8p6fkSDM3hZ8zSeg48YcNb4IL0lB40l2ATK53hvIzdxqxg81pnMZIWZj3NoO/y0DT0uiYBDKN0xX8Lp7lJmjxCl5jyfBRx47t9Evk5HYZoyjPgRR2t4E84N4oSCcv2El1fJY9mU=" file_glob: true file: travis-release/* skip_cleanup: true on: tags: true
Disable exact-print on GHC 8.10
Disable exact-print on GHC 8.10
YAML
bsd-3-clause
ndmitchell/hlint,ndmitchell/hlint
21b52d35a83022da4fd295daf8c05e89ff702a32
.travis.yml
.travis.yml
# Cf. http://docs.travis-ci.com/user/getting-started/ # Cf. http://docs.travis-ci.com/user/languages/go/ language: go
# Cf. http://docs.travis-ci.com/user/getting-started/ # Cf. http://docs.travis-ci.com/user/languages/go/ language: go go: - 1.4.3 - 1.5.3 - 1.6
Test on a variety of Go versions.
Test on a variety of Go versions.
YAML
apache-2.0
jacobsa/ogletest
8c20c358c9d76dd8108abcf1766fb58aac67dd68
.travis.yml
.travis.yml
language: node_js node_js: - '8' - '10' env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: 'sudo apt-get update && sudo apt-get install -y optipng pngcrush pngquant graphicsmagick libjpeg-turbo-progs inkscape libcairo2-dev libgif-dev libjpeg8-dev zlib1g-dev' script: 'npm run ci' after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
language: node_js node_js: - '8' - '10' - '12' env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: 'sudo apt-get update && sudo apt-get install -y optipng pngcrush pngquant graphicsmagick libjpeg-turbo-progs inkscape libcairo2-dev libgif-dev libjpeg8-dev zlib1g-dev' script: 'npm run ci' after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
Test on node 12 in CI.
Test on node 12 in CI.
YAML
bsd-3-clause
papandreou/express-processimage
54de9717118ddcc7958bf1f2274e310d92acaee4
.travis.yml
.travis.yml
--- script: "./script/tests" gemfile: "this/does/not/exist" rvm: - "2.0.0"
--- script: "./script/tests" gemfile: "this/does/not/exist" rvm: - "1.8.7" - "2.0.0"
Make tests run on both ruby 1.8.7 and 2.0.0
Make tests run on both ruby 1.8.7 and 2.0.0
YAML
mit
halyard/boxen,pattichan/boxen,pattichan/boxen,pattichan/boxen,1gitGrey/boxen-1,1gitGrey/boxen-1,1gitGrey/boxen-1,grosser/boxen,n0ts/boxen,boxen/boxen,boxen/boxen,halyard/boxen,dieterdemeyer/boxen,wolfd/boxen,grosser/boxen,grosser/boxen,boxen/boxen,wolfd/boxen,dieterdemeyer/boxen,n0ts/boxen,halyard/boxen,n0ts/boxen,wolfd/boxen,dieterdemeyer/boxen
7d60541493625ed142343f5e77bafd9ae4d2cf60
.travis.yml
.travis.yml
language: php # php compatibility php: [5.6, 7.0, hhvm] # This triggers builds to run on the new TravisCI infrastructure. # See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/ sudo: false before_script: - travis_retry composer self-update - travis_retry composer update --no-interaction --prefer-stable --prefer-dist - travis_retry composer require scrutinizer/ocular --no-interaction --prefer-dist script: - vendor/bin/phpcs --standard=psr2 sources/ tests/ - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover - vendor/bin/coveralls --coverage_clover=coverage.clover after_script: - if [[ $TRAVIS_PHP_VERSION == '5.6' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi
language: php # php compatibility php: [5.6, 7.0, hhvm] # This triggers builds to run on the new TravisCI infrastructure. # See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/ sudo: false before_script: - travis_retry composer self-update - travis_retry composer update --no-interaction --prefer-stable --prefer-dist - travis_retry composer require scrutinizer/ocular --no-interaction --prefer-dist script: - vendor/bin/phpcs --standard=psr2 sources/ tests/ - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover after_script: - if [[ $TRAVIS_PHP_VERSION == '5.6' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi
Remove coveralls execution, not connected yet
Remove coveralls execution, not connected yet
YAML
mit
eclipxe13/generic-collections
3624247cd3ae3ee976c8d7614a14bb8a3e982a75
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - '0.10' after_script: - npm run coveralls
language: node_js sudo: false node_js: - '0.10' - '0.12' - 'stable' after_script: - npm run coveralls
Add Node.js version 0.12 and stable to list of Travis runtimes to check.
Add Node.js version 0.12 and stable to list of Travis runtimes to check.
YAML
mit
Thorsten71/resol-vbus,danielwippermann/resol-vbus
67e28910d6290c7589ca3176ed89268946676a46
.travis.yml
.travis.yml
language: ruby rvm: - "1.9.2" - "1.9.3" before_script: - bundle exec rake db:migrate script: rake spec && rake jasmine:headless
language: ruby rvm: - "1.9.2" - "1.9.3" before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" before_script: - bundle exec rake db:migrate script: rake spec && rake jasmine:headless
Add before install for jasmine.
Add before install for jasmine.
YAML
mit
mmb/meme_captain_web,mmb/meme_captain_web,patrickmcguire/meme,mmb/meme_captain_web,patrickmcguire/meme,mmb/meme_captain_web
f853a715d06b1de74a7d8ba3c547ddfa580d5ffb
.travis.yml
.travis.yml
sudo: false language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 - pypy install: - pip install coverage coveralls flake8 nose pep8-naming wheel - pip wheel . - pip install --find-links=$PWD/wheelhouse honcho[export] script: - nosetests --with-coverage --cover-branches --cover-package honcho honcho/test/unit - nosetests honcho/test/integration - flake8 honcho after_success: - coveralls
sudo: false language: python matrix: include: - python: "2.6" env: TOXENV=py26 - python: "2.7" env: TOXENV=py27 - python: "3.0" env: TOXENV=py30 - python: "3.1" env: TOXENV=py31 - python: "3.2" env: TOXENV=py32 - python: "3.3" env: TOXENV=py33 - python: "3.4" env: TOXENV=py34 - python: "3.5" env: TOXENV=py35 - python: "pypy" env: TOXENV=pypy - python: "3.5" env: TOXENV=lint - python: "3.5" env: TOXENV=docs install: - pip install tox script: - tox after_success: - tox -e coverage
Integrate tox with Travis properly
Integrate tox with Travis properly
YAML
mit
nickstenning/honcho,nickstenning/honcho
c5463f63cad5382d988f47bbbceef17f6e764b16
.travis.yml
.travis.yml
language: java script: mvn clean package -P strict after_success: - mvn jacoco:report coveralls:report - bash ./deploy.sh jdk: - oraclejdk7 - oraclejdk8 sudo: false cache: directories: - $HOME/.m2 env: global: - GH_REF: github.com/vbauer/houdini.git - secure: "ay/H2CtvrjKol8rRT6eMj7dgkjOa1t8WDMY8gTiu1iXAGoAb6DusL+Xrn8I52GbifEZqQrIM9rCwvsENv83MUyJn8hbmnSBcdEtLmrCWcZynBsRCYfmAmqyT1HoLZnxUEflVSfW7UPXLxwf6Ny4ImiNg5KLLcc/HrNeplqDyLOE="
language: java script: mvn clean package -P strict after_success: - mvn jacoco:report coveralls:report - bash ./deploy.sh jdk: - openjdk7 - oraclejdk8 sudo: false cache: directories: - $HOME/.m2 env: global: - GH_REF: github.com/vbauer/houdini.git - secure: "ay/H2CtvrjKol8rRT6eMj7dgkjOa1t8WDMY8gTiu1iXAGoAb6DusL+Xrn8I52GbifEZqQrIM9rCwvsENv83MUyJn8hbmnSBcdEtLmrCWcZynBsRCYfmAmqyT1HoLZnxUEflVSfW7UPXLxwf6Ny4ImiNg5KLLcc/HrNeplqDyLOE="
Update Travis config: use openjdk7 instead of oraclejdk7
Update Travis config: use openjdk7 instead of oraclejdk7
YAML
apache-2.0
vbauer/houdini,vbauer/houdini
f9ef79d338af92ece43faa4380d9b6713f00159c
.travis.yml
.travis.yml
sudo: false language: node_js install: - npm install before_script: node_js: - "6" - "node" notifications: email: false
sudo: false language: node_js install: - npm install before_script: node_js: - "6" - "7" - "node" notifications: email: false
Enable node v7 for TravisCI
Enable node v7 for TravisCI Node v7 is not LTS version, so we would not like to support it positively and we efforts to move to v8 from v7. However, our internal repositories still use v7. We enable v7 in TravisCI for them.
YAML
mit
voyagegroup/tslint-config-fluct
2226252469a995361cdaca70c1044ac97cc3b4a4
.travis.yml
.travis.yml
language: node_js node_js: - "6" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 install: - npm install --global bower gulp - npm install - bower install script: gulp deploy: provider: pages skip_cleanup: true github_token: $GITHUB_TOKEN on: branch: master
language: node_js node_js: - "6" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 install: - npm install --global bower gulp - npm install - bower install script: gulp deploy: provider: pages skip_cleanup: true github_token: $GITHUB_TOKEN local_dir: dist on: branch: master
Deploy build directory, not source!
Deploy build directory, not source!
YAML
mit
clhynfield/resume,clhynfield/clayton-hynfield-resume,clhynfield/resume
2f54669d29d9d2f75794a8f058a141792db398b6
.travis.yml
.travis.yml
language: elixir elixir: - 1.3.0 - 1.4.0 - 1.5.1 otp_release: - 20.0 - 19.0 - 18.3 matrix: exclude: - otp_release: 20.0 elixir: 1.3.0 - otp_release: 20.0 elixir: 1.4.0 branches: only: - "master" - "develop" - "phoenix-pre" script: - MIX_ENV=test mix compile --warnings-as-errors && MIX_ENV=test mix test - MIX_ENV=test_phoenix mix compile --warnings-as-errors && MIX_ENV=test_phoenix mix test - MIX_ENV=test_no_nif mix compile --warnings-as-errors && MIX_ENV=test_no_nif mix test
language: elixir elixir: - 1.3.4 - 1.4.5 - 1.5.1 otp_release: - 20.0 - 19.0 - 18.3 matrix: exclude: - otp_release: 20.0 elixir: 1.3.4 branches: only: - "master" - "develop" - "phoenix-pre" script: - MIX_ENV=test mix compile --warnings-as-errors && MIX_ENV=test mix test - MIX_ENV=test_phoenix mix compile --warnings-as-errors && MIX_ENV=test_phoenix mix test - MIX_ENV=test_no_nif mix compile --warnings-as-errors && MIX_ENV=test_no_nif mix test
Update Elixir versions on Travis, run on 20.0/1.4.5
Update Elixir versions on Travis, run on 20.0/1.4.5
YAML
mit
appsignal/appsignal-elixir,appsignal/appsignal-elixir,appsignal/appsignal-elixir,appsignal/appsignal-elixir
3833da77c6d70f61877298fb057768192072e512
.travis.yml
.travis.yml
language: objective-c node_js: - 0.10 before_install: - npm install -g gulp - curl -L https://raw.githubusercontent.com/cognitom/dotfiles/master/lib/sketchtool.sh | sudo sh
os: - osx language: node_js node_js: - 0.10 before_install: - npm install -g gulp - curl -L https://raw.githubusercontent.com/cognitom/dotfiles/master/lib/sketchtool.sh | sudo sh
Use `os: osx` instead of `language: objective-c`
Use `os: osx` instead of `language: objective-c`
YAML
mit
cognitom/gulp-sketch
f82e427305dd0499913df22c08844c6df0fde0bf
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 - hhvm sudo: false matrix: include: - php: 5.6 env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"' allow_failures: - php: hhvm before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source script: - vendor/bin/phpcs --standard=psr2 src/ - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover after_script: - if [[ $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi
language: php php: - 5.5 - 5.6 - 7.0 - hhvm sudo: false cache: bundler: true directories: - vendor/guzzlehttp - vendor/psr matrix: include: - php: 5.6 env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"' allow_failures: - php: hhvm before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source script: - vendor/bin/phpcs --standard=psr2 src/ - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover after_script: - if [[ $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi
Add version 0.2 - add cache to vendor directories
Add version 0.2 - add cache to vendor directories
YAML
mit
insidieux/SlackApi
fcbd71fc5a246a8e5ef250a5d01f8a927bd2ec4c
.travis.yml
.travis.yml
# Config file for automatic testing at travis-ci.org sudo: false language: python python: 2.7 env: - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=pypy script: tox -e $TOX_ENV # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install -r requirements.txt - pip install -r requirements_dev.txt # command to run tests, e.g. python setup.py test script: python setup.py test
# Config file for automatic testing at travis-ci.org sudo: false language: python python: 3.4 env: - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=pypy script: tox -e $TOX_ENV # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install -r requirements.txt - pip install -r requirements_dev.txt # command to run tests, e.g. python setup.py test script: python setup.py test
Use 3.4 as base env for tox on Travis.
Use 3.4 as base env for tox on Travis.
YAML
bsd-3-clause
audreyr/jinja2_pluralize
2831d0eba9cd5f7435aa62d6b1b4d28c2bc6c413
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "iojs" install: - travis_retry npm install -g grunt-cli@0.1.9 - travis_retry npm install notifications: email: false cache: directories: - node_modules branches: only: - master env: - TEST_CMD: test:unit - TEST_CMD: shell:cheapseats:--range:0..1 # Add back in when we're out of emergency mode # - TEST_CMD: shell:cheapseats:--range:0..50 # - TEST_CMD: shell:cheapseats:--range:51..100 # - TEST_CMD: shell:cheapseats:--range:101..150 # - TEST_CMD: shell:cheapseats:--range:151.. # script: "grunt $TEST_CMD" matrix: fast_finish: true
language: node_js node_js: - "0.10" install: - travis_retry npm install -g grunt-cli@0.1.9 - travis_retry npm install notifications: email: false cache: directories: - node_modules branches: only: - master env: - TEST_CMD: test:unit - TEST_CMD: shell:cheapseats:--range:0..1 # Add back in when we're out of emergency mode # - TEST_CMD: shell:cheapseats:--range:0..50 # - TEST_CMD: shell:cheapseats:--range:51..100 # - TEST_CMD: shell:cheapseats:--range:101..150 # - TEST_CMD: shell:cheapseats:--range:151.. # script: "grunt $TEST_CMD" matrix: fast_finish: true
Revert "Try running builds in io.js too"
Revert "Try running builds in io.js too"
YAML
mit
alphagov/spotlight,keithiopia/spotlight,tijmenb/spotlight,alphagov/spotlight,keithiopia/spotlight,tijmenb/spotlight,keithiopia/spotlight,alphagov/spotlight,tijmenb/spotlight
e4aceb4d93d058eab964aebe11709688c14e6912
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.8 - 2.2.4 - 2.3.4 - 2.4.1 sudo: false env: - COVERAGE=true branches: only: - master notifications: email: false
language: ruby rvm: - 2.1.8 - 2.2.8 - 2.3.5 - 2.4.2 sudo: false env: - COVERAGE=true branches: only: - master notifications: email: false
Update build matrix to use the latest patch for each Ruby version
Update build matrix to use the latest patch for each Ruby version
YAML
mit
danascheider/json_test_data
d9aec6e96f9627aa420688757706b4874b83e959
.travis.yml
.travis.yml
language: node_js addons: chrome: stable # have Travis install chrome stable. notifications: email: false cache: yarn: true directories: - node_modules node_js: - '7' install: - yarn before_script: - yarn prune script: - yarn test after_success: - yarn semantic-release branches: except: - /^v\d+\.\d+\.\d+$/
language: node_js addons: chrome: stable # have Travis install chrome stable. notifications: email: false cache: yarn: true directories: - node_modules node_js: - '7' install: - yarn before_script: - npm prune script: - yarn test after_success: - yarn semantic-release branches: except: - /^v\d+\.\d+\.\d+$/
Fix the npm prune instead calling yarn prune
ci($compile): Fix the npm prune instead calling yarn prune Fix the npm prune instead calling yarn prune
YAML
mit
yallajs/yalla,yallajs/yalla
562431b78721f44194b8e21c0daaed2b41217e5d
.travis.yml
.travis.yml
language: go
language: go notifications: slack: secure: VJ2Dcr54N9VHUrUGaw8nRnaPko/o2U0cBK+zbMsDtKKiJ0/hMgD1kvnXcMcVWTXVdOAFzeDqKC9xGeuyD8ScZ9RLGlSWQGuF12igDpA4OBbhzhcsvFCfdf6oEhc1/Dd9FRU+KiXbF/UDm9l0rRSjNYRPRttM21KA0MNaoMdo4ONeGOwf1UKhJXLLX1qfeYecQCAwGftlCyLTHkQSWt/VIu6ZFCS4CMKN70b6w9JXcKUZeFU3iUG+KwHOtvwwxb8fEkF4XdN5Q+kcNGLBOQYk4ONoAvWLgGGy2hK2KW6LorhOMBdELDyMD/EFq+0DRk+RPeJ7euTzN7xDI4D8vmc0joehc12ky1/1gEy00spYR9wcajFofBEcHB4TnOaFyxQq/Y+T3m6J8906KGVsUxoIzSjf1/mr8vU8k7daprKS2AXu9ZGgkZ0p0txrXQFIY0zerBWYbtzlbydO3/EPflCCPFazJSv93qR/rpNy/W7XgqZhYrlsHA7u1zlbgHH5eeZ7/7B0u/gZm1ugFKCeanLpKvZJz0eiNwrVYgT4iPoETAn9vydhEV2l5FTns08Hes6IJjPmgS5ltjH1UfBX2aTlp6C7EMMtMlZNYmrX0uCMIpDPlijfpoajxGDhZARpGfGT5yopqo9ih7FKhkNmEx6KB7T8D1M8rRp9S2jqxjt/+kA=
Add Travis CI Slack token for Slack notifications
Add Travis CI Slack token for Slack notifications
YAML
mit
slate-io/slate
04831c08954f8ca613de9693ba8c9060df85bb46
.travis.yml
.travis.yml
language: python python: - "2.7" install: - "pip install -r requirements.txt" - "gem install sass" script: - "make test-coverage" - "make dev" - "make prod" before_script: - mysql -u root -e "CREATE DATABASE IF NOT EXISTS modern_paste; CREATE DATABASE IF NOT EXISTS modern_paste_dev; CREATE DATABASE IF NOT EXISTS modern_paste_test; GRANT ALL ON *.* TO 'modern_paste'@'localhost' IDENTIFIED BY 'U4bV96S7uchYnJv4WK4akKfzdqKhDFLOpfm0XspYkTF7gyJawhmpZnBi1KdAQNPqxqoUbNDZzuxX0LOgyMc2g8B2NS2j2Fib';" after_success: - coveralls
language: python python: - "2.7" install: - "pip install -r requirements.txt" - "gem install sass" script: - "make check-style" - "make test-coverage" - "make dev" - "make prod" before_script: - mysql -u root -e "CREATE DATABASE IF NOT EXISTS modern_paste; CREATE DATABASE IF NOT EXISTS modern_paste_dev; CREATE DATABASE IF NOT EXISTS modern_paste_test; GRANT ALL ON *.* TO 'modern_paste'@'localhost' IDENTIFIED BY 'U4bV96S7uchYnJv4WK4akKfzdqKhDFLOpfm0XspYkTF7gyJawhmpZnBi1KdAQNPqxqoUbNDZzuxX0LOgyMc2g8B2NS2j2Fib';" after_success: - coveralls
Add style checks to Travis build
Add style checks to Travis build
YAML
mit
LINKIWI/modern-paste,LINKIWI/modern-paste,LINKIWI/modern-paste
2fedab7119ed8d6e933cbf12ffc3265e819b1330
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.2" - "3.3" - "3.4" install: - "pip install ." script: nosetests
language: python python: - "2.7" - "3.3" - "3.4" install: - "pip install ." script: nosetests
Remove Python 3.2 from build matrix
Remove Python 3.2 from build matrix Flask supports only Python 3.3+
YAML
apache-2.0
Infinario/flask-redis-sentinel,exponea/redis-sentinel-url,exponea/flask-redis-sentinel
b12e1f55ce86c763948a8fc3a6eeb7deb24fe816
.travis.yml
.travis.yml
language: node_js node_js: - '12' - '14' - '15' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc prove script: - nyc npm test
language: node_js node_js: - '12' - '14' - '16' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc prove script: - nyc npm test
Build with Node.js 16 on Travis CI.
Build with Node.js 16 on Travis CI.
YAML
mit
bigeasy/dilute,bigeasy/dilute
573a2771bceeee6ea9a3ce137e779ebca16be704
.travis.yml
.travis.yml
# ref. http://docs.travis-ci.com/user/languages/objective-c/ language: objective-c osx_image: xcode8.1 xcode_workspace: CotEditor.xcworkspace xcode_scheme: CotEditor before_install: - gem install xcpretty - gem install xcpretty-travis-formatter - carthage update --platform macOS script: set -o pipefail && xcodebuild clean test -workspace "$TRAVIS_XCODE_WORKSPACE" -scheme "$TRAVIS_XCODE_SCHEME" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -f `xcpretty-travis-formatter`
# ref. http://docs.travis-ci.com/user/languages/objective-c/ language: objective-c osx_image: xcode8.2 xcode_workspace: CotEditor.xcworkspace xcode_scheme: CotEditor before_install: - gem install xcpretty - gem install xcpretty-travis-formatter - carthage update --platform macOS script: set -o pipefail && xcodebuild clean test -workspace "$TRAVIS_XCODE_WORKSPACE" -scheme "$TRAVIS_XCODE_SCHEME" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -f `xcpretty-travis-formatter`
Update Xcode image of Travis CI
Update Xcode image of Travis CI
YAML
apache-2.0
onevcat/CotEditor,onevcat/CotEditor,onevcat/CotEditor
e61f9ffe392b2e1f38f8565d0629d64667a042b9
.travis.yml
.travis.yml
language: node_js node_js: - '0.12' notifications: email: on_success: change on_failure: always
language: node_js node_js: - '5.5' - '4.2' #LTS notifications: email: on_success: change on_failure: always
Add Node 4.2, 5.5 to Travis
Add Node 4.2, 5.5 to Travis
YAML
mit
jedmao/postcss-nested-props
e0537725f296ce2935c0e8ffecd2f16ab5166e0c
.travis.yml
.travis.yml
matrix: include: - os: linux dist: focal arch: - arm64 compiler: gcc addons: apt: packages: - libhts-dev - libcurl4-openssl-dev - libtabixpp-dev - libtabixpp0 - python-pybind11 script: - pkg-config --list-all - mkdir -p build - cd build - cmake .. - cmake --build . --verbose - ctest --verbose
matrix: include: - os: linux dist: focal arch: - arm64 compiler: gcc addons: apt: packages: - libhts-dev - libcurl4-openssl-dev - libtabixpp-dev - libtabixpp0 - python-all-dev - pybind11-dev script: - pkg-config --list-all - mkdir -p build - cd build - cmake .. - cmake --build . --verbose - ctest --verbose
Fix Travis-CI to include pybind11 and python-dev packages
Fix Travis-CI to include pybind11 and python-dev packages
YAML
mit
vcflib/vcflib,vcflib/vcflib,vcflib/vcflib,ekg/vcflib,ekg/vcflib,ekg/vcflib,vcflib/vcflib,ekg/vcflib,vcflib/vcflib,vcflib/vcflib,vcflib/vcflib,vcflib/vcflib,ekg/vcflib
2db0447eb0acf3ff1388f6c38ed41c9b25034b08
.travis.yml
.travis.yml
language: python python: # - "2.6" - "2.7" # - "3.3" # - "3.4" install: "pip install -e ." script: python manage.py test notifications: slack: onespacemedia:NufeDxb1m4D0UkuQh1O0m9qt
language: python python: # - "2.6" - "2.7" # - "3.3" # - "3.4" install: - pip install -e . - start_cms_project.py testing . script: python manage.py test notifications: slack: onespacemedia:NufeDxb1m4D0UkuQh1O0m9qt email: false
Create a CMS project before testing.
Create a CMS project before testing.
YAML
bsd-3-clause
lewiscollard/cms,jamesfoley/cms,danielsamuels/cms,danielsamuels/cms,lewiscollard/cms,lewiscollard/cms,dan-gamble/cms,jamesfoley/cms,jamesfoley/cms,jamesfoley/cms,dan-gamble/cms,dan-gamble/cms,danielsamuels/cms
35f19b0dea8a88139080aea3c5a1e0b0f3e6d35e
.travis.yml
.travis.yml
language: php sudo: false cache: directories: - $HOME/.composer/cache/files php: - 5.5 - 5.6 - 7.0 - nightly - hhvm matrix: fast_finish: true before_install: - if ([ "hhvm" != "$TRAVIS_PHP_VERSION" ] && [ "nightly" != "$TRAVIS_PHP_VERSION" ]); then wget https://scrutinizer-ci.com/ocular.phar; fi install: - phpunit --self-update - composer install --prefer-dist script: - phpunit -c phpunit.xml.dist --coverage-text after_script: - if ([ "hhvm" != "$TRAVIS_PHP_VERSION" ] && [ "nightly" != "$TRAVIS_PHP_VERSION" ]); then php ocular.phar code-coverage:upload --format=php-clover coverage.xml; fi notifications: email: false
language: php sudo: false cache: directories: - $HOME/.composer/cache/files php: - 5.6 - 7.0 - nightly - hhvm matrix: fast_finish: true before_install: - if ([ "hhvm" != "$TRAVIS_PHP_VERSION" ] && [ "nightly" != "$TRAVIS_PHP_VERSION" ]); then wget https://scrutinizer-ci.com/ocular.phar; fi install: - phpunit --self-update - composer install --prefer-dist script: - phpunit -c phpunit.xml.dist --coverage-text after_script: - if ([ "hhvm" != "$TRAVIS_PHP_VERSION" ] && [ "nightly" != "$TRAVIS_PHP_VERSION" ]); then php ocular.phar code-coverage:upload --format=php-clover coverage.xml; fi notifications: email: false
Drop support for PHP 5.5
Drop support for PHP 5.5
YAML
mit
theofidry/LaravelYaml
d76bd44a4f5b7ffb993122b2ef57b1674aed5495
.travis.yml
.travis.yml
language: python sudo: false python: - 2.7 before_install: - git clone --quiet --depth 1 https://github.com/minrk/travis-wheels ~/travis-wheels install: - pip install -U pip setuptools - PIP_FIND_LINKS=~/travis-wheels/wheelhouse pip install -r dev-requirements.txt -e . script: - py.test -v -x
language: python sudo: false python: - 2.7 - 3.5 - 3.6 before_install: - git clone --quiet --depth 1 https://github.com/minrk/travis-wheels ~/travis-wheels install: - pip install -U pip setuptools - PIP_FIND_LINKS=~/travis-wheels/wheelhouse pip install -r dev-requirements.txt -e . script: - py.test -v -x
Add Python 3 to TravisCI
Add Python 3 to TravisCI
YAML
bsd-3-clause
jhamrick/nbflow
5f00292c9efa0846bc3d4a80484907cdd3486196
.travis.yml
.travis.yml
osx_image: xcode7.3 language: objective-c env: matrix: - PLATFORM="OSX" SDK="macosx10.11" - PLATFORM="iOS" SDK="iphonesimulator9.3" DESTINATION="OS=8.1,name=iPhone 6" - PLATFORM="iOS" SDK="iphonesimulator9.3" DESTINATION="OS=9.3,name=iPhone 6" - PLATFORM="tvOS" SDK="appletvsimulator9.2" DESTINATION="OS=9.2,name=Apple TV 1080p" before_script: - gem install xcpretty -N script: - set -o pipefail - travis_retry bash run_test.sh
branches: only: - master osx_image: xcode7.3 language: objective-c env: matrix: - PLATFORM="OSX" SDK="macosx10.11" - PLATFORM="iOS" SDK="iphonesimulator9.3" DESTINATION="OS=8.1,name=iPhone 6" - PLATFORM="iOS" SDK="iphonesimulator9.3" DESTINATION="OS=9.3,name=iPhone 6" - PLATFORM="tvOS" SDK="appletvsimulator9.2" DESTINATION="OS=9.2,name=Apple TV 1080p" before_script: - gem install xcpretty -N script: - set -o pipefail - travis_retry bash run_test.sh
Build only pushes to the master branch
[CI] Build only pushes to the master branch [ci skip] Pull requests should still continue to be built.
YAML
mit
algoliareadmebot/algoliasearch-client-swift,algoliareadmebot/algoliasearch-client-swift,algolia/algoliasearch-client-swift,algoliareadmebot/algoliasearch-client-swift,algolia/algoliasearch-client-swift
f823103888ae092f5c6914409737c80e1652e4b1
.travis.yml
.travis.yml
# # Copyright © 2014 Cask Data, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not # use this file except in compliance with the License. You may obtain a copy of # the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations under # the License. # language: ruby rvm: - 1.9.3 cache: bundler sudo: false bundler_args: --jobs 7 --without docs integration script: bundle exec rake
# # Copyright © 2014 Cask Data, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); you may not # use this file except in compliance with the License. You may obtain a copy of # the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations under # the License. # language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.4 cache: bundler sudo: false bundler_args: --jobs 7 --without docs integration script: bundle exec rake
Test Ruby 2.0.0 and 2.1.4, also
Test Ruby 2.0.0 and 2.1.4, also
YAML
apache-2.0
cdapio/coopr_cookbook,cdapio/coopr_cookbook
d6af26a8a2bac5ef68a6d943fb1d268f6993ac80
.travis.yml
.travis.yml
language: go sudo: true go_import_path: gobot.io/x/gobot go: - 1.5 - 1.6 - 1.7 - 1.8beta1 - tip matrix: allow_failures: - go: 1.5 - go: 1.8beta1 - go: tip before_install: - sudo add-apt-repository -y ppa:kubuntu-ppa/backports - sudo add-apt-repository -y ppa:zoogie/sdl2-snapshots - sudo apt-get update - sudo apt-get install --force-yes libcv-dev libcvaux-dev libhighgui-dev libopencv-dev libsdl2-dev libsdl2-image-dev libsdl2 libusb-dev xvfb unzip libgtk2.0-0 - cd $HOME/gopath/src/gobot.io/x/gobot - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi install: - make deps before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start script: - ./ci/travis.sh branches: except: - gobot.io - /^gobot-.*$/
language: go sudo: true go_import_path: gobot.io/x/gobot go: - 1.5 - 1.6 - 1.7 - 1.8beta2 - tip matrix: allow_failures: - go: 1.5 - go: tip before_install: - sudo add-apt-repository -y ppa:kubuntu-ppa/backports - sudo add-apt-repository -y ppa:zoogie/sdl2-snapshots - sudo apt-get update - sudo apt-get install --force-yes libcv-dev libcvaux-dev libhighgui-dev libopencv-dev libsdl2-dev libsdl2-image-dev libsdl2 libusb-dev xvfb unzip libgtk2.0-0 - cd $HOME/gopath/src/gobot.io/x/gobot - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi install: - make deps before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start script: - ./ci/travis.sh branches: except: - gobot.io - /^gobot-.*$/
Add Golang 1.8beta2 to Travis builds
test: Add Golang 1.8beta2 to Travis builds Signed-off-by: deadprogram <b937b287f61b7a223d4aac55072db1a5381d3bb3@hybridgroup.com>
YAML
apache-2.0
nzmichaelh/gobot,nzmichaelh/gobot
1680906e412b11711cbfb6c8147005b5392a9232
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 - php: hhvm fast_finish: true before_install: - travis_retry composer self-update install: - composer install --prefer-source script: phpunit --coverage-text --coverage-clover=coverage.clover after_script: - php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover - php vendor/bin/test-reporter --coverage-report=coverage.clover --stdout > codeclimate.json - "curl -X POST -d @codeclimate.json -H 'Content-Type: application/json' -H 'User-Agent: Code Climate (PHP Test Reporter v0.1.1)' https://codeclimate.com/test_reports" addons: code_climate: repo_token: f7bc5d6dd57b875e6bb6d748caaf937d41eac69f8e251fb43c05b8835fd07e78
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 - php: hhvm fast_finish: true before_install: - travis_retry composer self-update install: - composer install --prefer-source script: phpunit --coverage-text --coverage-clover=coverage.clover after_script: - php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover - php vendor/bin/test-reporter --coverage-report=coverage.clover --stdout > codeclimate.json - "curl -X POST -d @codeclimate.json -H 'Content-Type: application/json' -H 'User-Agent: Code Climate (PHP Test Reporter v0.1.1)' https://codeclimate.com/test_reports" sudo: false addons: code_climate: repo_token: f7bc5d6dd57b875e6bb6d748caaf937d41eac69f8e251fb43c05b8835fd07e78
Switch to Travis' container-based infrastructure
Switch to Travis' container-based infrastructure
YAML
isc
FlameCore/EventObserver
8102e646e05ee11325322b918773958e3f92d995
.travis.yml
.travis.yml
env: - DB=pg - DB=mysql language: ruby rvm: - 2.1.5 bundler_args: --without development production cache: bundler sudo: false services: - mysql - postgresql script: - RAILS_ENV=test bundle exec rake --trace db:migrate - bundle exec rspec before_script: - "echo -e 'test:\\n adapter: mysql2\\n database: onebody_test\\n username: travis\\n encoding: utf8' > config/database.yml.mysql" - "echo -e 'test:\\n adapter: postgresql\\n database: onebody_test\\n username: postgres\\n encoding: unicode' > config/database.yml.pg" - "cp config/database.yml.$DB config/database.yml" - "echo -e 'test:\\n secret_token: abc123\\n secret_key_base: 123abc' > config/secrets.yml" - "mysql -e 'create database onebody_test'" - "psql -c 'create database onebody_test;' -U postgres" notifications: irc: "chat.freenode.net#church.io" webhooks: urls: - https://webhooks.gitter.im/e/9e05a861c78289ee0608 on_success: change on_failure: always on_start: false
env: - DB=pg - DB=mysql language: ruby rvm: - 2.1.5 before_install: - "echo -e 'test:\\n adapter: mysql2\\n database: onebody_test\\n username: travis\\n encoding: utf8' > config/database.yml.mysql" - "echo -e 'test:\\n adapter: postgresql\\n database: onebody_test\\n username: postgres\\n encoding: unicode' > config/database.yml.pg" - "cp config/database.yml.$DB config/database.yml" bundler_args: --without development production cache: bundler sudo: false services: - mysql - postgresql script: - RAILS_ENV=test bundle exec rake --trace db:migrate - bundle exec rspec before_script: - "echo -e 'test:\\n secret_token: abc123\\n secret_key_base: 123abc' > config/secrets.yml" - "mysql -e 'create database onebody_test'" - "psql -c 'create database onebody_test;' -U postgres" notifications: irc: "chat.freenode.net#church.io" webhooks: urls: - https://webhooks.gitter.im/e/9e05a861c78289ee0608 on_success: change on_failure: always on_start: false
Fix build by configuring db before bundle install
Fix build by configuring db before bundle install
YAML
agpl-3.0
hschin/onebody,davidleach/onebody,tmecklem/onebody,ferdinandrosario/onebody,hschin/onebody,mattraykowski/onebody,tochman/onebody,calsaviour/onebody,brunoocasali/onebody,davidleach/onebody,seethemhigh/onebody,klarkc/onebody,cessien/onebody,klarkc/onebody,kevinjqiu/onebody,ebennaga/onebody,AVee/onebody,seethemhigh/onebody,acbilimoria/onebody,ebennaga/onebody,pgmcgee/onebody,ferdinandrosario/onebody,acbilimoria/onebody,hooray4me/onebody,tochman/onebody,kevinjqiu/onebody,fadiwissa/onebody,brunoocasali/onebody,cessien/onebody,AVee/onebody,calsaviour/onebody,dorman/onebody,fadiwissa/onebody,Capriatto/onebody,pgmcgee/onebody,dorman/onebody,Capriatto/onebody,brunoocasali/onebody,hooray4me/onebody,ferdinandrosario/onebody,tmecklem/onebody,nerdnorth/remote-workers-app,tochman/onebody,cessien/onebody,mattraykowski/onebody,dorman/onebody,mattraykowski/onebody,AVee/onebody,kevinjqiu/onebody,calsaviour/onebody,seethemhigh/onebody,hooray4me/onebody,calsaviour/onebody,nerdnorth/remote-workers-app,AVee/onebody,klarkc/onebody,hooray4me/onebody2,cessien/onebody,fadiwissa/onebody,ferdinandrosario/onebody,Capriatto/onebody,kevinjqiu/onebody,klarkc/onebody,hooray4me/onebody2,pgmcgee/onebody,acbilimoria/onebody,davidleach/onebody,acbilimoria/onebody,davidleach/onebody,tmecklem/onebody,pgmcgee/onebody,ebennaga/onebody,tochman/onebody,tmecklem/onebody,seethemhigh/onebody,fadiwissa/onebody,brunoocasali/onebody,nerdnorth/remote-workers-app,hooray4me/onebody2,mattraykowski/onebody,dorman/onebody,hschin/onebody,ebennaga/onebody,hschin/onebody,Capriatto/onebody,hooray4me/onebody2,hooray4me/onebody,nerdnorth/remote-workers-app
907724f0a6ef715ae5071e9c732289150dae6bc6
.travis.yml
.travis.yml
sudo: false osx_image: xcode7 language: objective-c cache: directories: - .nvm - node_modules - vendor/bundle before_install: - brew reinstall nvm - mkdir -p .nvm - export NVM_DIR="$PWD/.nvm" - source $(brew --prefix nvm)/nvm.sh install: - nvm install 5 - npm install -g react-native-cli - npm install - "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc" - bundle install --path=vendor/bundle before_script: - npm prune script: - npm test after_success: - "[ -f coverage/lcov.info ] && npm run codecov || echo 'coverage file not found'"
sudo: false osx_image: xcode7 language: objective-c cache: edge: true directories: - .nvm - node_modules - vendor/bundle before_install: - brew reinstall nvm - mkdir -p .nvm - export NVM_DIR="$PWD/.nvm" - source $(brew --prefix nvm)/nvm.sh install: - nvm install 5 - npm install -g react-native-cli - npm install - "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc" - bundle install --path=vendor/bundle before_script: - npm prune script: - npm test after_success: - "[ -f coverage/lcov.info ] && npm run codecov || echo 'coverage file not found'"
Add edge option to cache
chore(ci): Add edge option to cache
YAML
mit
moqada/GHReader,moqada/GHReader,moqada/GHReader,moqada/GHReader
005f79bc0f8422ee475f3e8040f58f45047ac0d5
.travis.yml
.travis.yml
language: "python" sudo: false cache: directories: - $HOME/.cache/pip branches: only: - master python: - "2.7" #- "pypy" env: - MODE=inplace - MODE=sdist - MODE=wheel install: # Upgrade pip/setuptools - pip install -U pip setuptools # Tools for checking coverage and uploading to coveralls - pip install coveralls coverage - | python setup.py --version if [ "${MODE}" == "inplace" ]; then pip install --editable . elif [ "${MODE}" == "sdist" ]; then python setup.py sdist pip install dist/Mantissa-"$(python setup.py --version)".tar.gz elif [ "${MODE}" == "wheel" ]; then pip install wheel python setup.py bdist_wheel pip install dist/Mantissa-"$(python setup.py --version)"-py2-none-any.whl fi script: - cd /tmp && coverage run --branch --source=xmantissa $(type -p trial) xmantissa - cd /tmp && coverage report -m after_success: - cd /tmp && GIT_DIR="${TRAVIS_BUILD_DIR}" coveralls notifications: email: false irc: channels: "chat.freenode.net#divmod" template: - "%{repository}@%{branch} - %{author}: %{message} (%{build_url})" use_notice: true
language: "python" sudo: false cache: directories: - $HOME/.cache/pip branches: only: - master python: - "2.7" #- "pypy" env: - MODE=inplace - MODE=sdist - MODE=wheel install: # Upgrade pip/setuptools - pip install -U pip setuptools # Tools for checking coverage and uploading to coveralls - pip install coveralls coverage - | python setup.py --version if [ "${MODE}" == "inplace" ]; then pip install --editable . elif [ "${MODE}" == "sdist" ]; then python setup.py sdist pip install dist/Mantissa-"$(python setup.py --version)".tar.gz elif [ "${MODE}" == "wheel" ]; then pip install wheel python setup.py bdist_wheel pip install dist/Mantissa-"$(python setup.py --version)"-py2-none-any.whl fi script: - cd /tmp && coverage run --branch --source=xmantissa $(type -p trial) xmantissa - cd /tmp && coverage report -m after_success: - cd "${TRAVIS_BUILD_DIR}" && mv /tmp/.coverage . && coveralls notifications: email: false irc: channels: "chat.freenode.net#divmod" template: - "%{repository}@%{branch} - %{author}: %{message} (%{build_url})" use_notice: true
Move coverage into the repository first.
Move coverage into the repository first.
YAML
mit
twisted/mantissa,twisted/mantissa,twisted/mantissa
e06ab63abe8284497dee766ec84d49188bc0fdd9
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "6.1.0" before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start before_script: - npm install -g gulp script: gulp build:prod addons: apt: sources: - ubuntu-toolchain-r-test packages: - xvfb
sudo: false language: node_js node_js: - "6.1.0" before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start before_script: - npm install -g gulp - cd src/ && npm install script: gulp build:prod addons: apt: sources: - ubuntu-toolchain-r-test packages: - xvfb
Fix npm install on src/
[Project] Fix npm install on src/
YAML
mit
oxyno-zeta/LibParsio,oxyno-zeta/LibParsio
bbf9d281c683904e8a3720f222f49fa58e0b690b
.travis.yml
.travis.yml
before_install: - sudo apt-get install libicu-dev # Workaround for a permissions issue with Travis virtual machine images # that breaks Python's multiprocessing: # https://github.com/travis-ci/travis-cookbooks/issues/155 - sudo rm -rf /dev/shm - sudo ln -s /run/shm /dev/shm - npm i -g npm language: node_js node_js: - "0.11" - "0.10" - 0.8
before_install: - sudo apt-get install libicu-dev # Workaround for a permissions issue with Travis virtual machine images # that breaks Python's multiprocessing: # https://github.com/travis-ci/travis-cookbooks/issues/155 - sudo rm -rf /dev/shm - sudo ln -s /run/shm /dev/shm - npm i -g npm language: node_js node_js: - "0.11" - "0.10" - "0.12" - "iojs"
Update what we test :)
Update what we test :)
YAML
apache-2.0
xmpp-ftw/xmpp-ftw-register
7b9d995b067eb554eaa12e5b7ce23da75b6704f2
.travis.yml
.travis.yml
language: node_js node_js: - '6' - '8' - '10'
language: node_js node_js: - '8' - '10' - '12'
Drop Node 6, add Node 12
Drop Node 6, add Node 12
YAML
bsd-2-clause
perliedman/reproject
9f261af5705a9d50afce4e004571cfab7b208458
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 install: - php composer.phar install
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 install: - php composer.phar install
Add PHP 7.0 to Travis build
Add PHP 7.0 to Travis build
YAML
mit
aag/fillmysuitcase,aag/fillmysuitcase,aag/fillmysuitcase
d0329cd0c3247caa0bfbef148a4b757a6059c291
.travis.yml
.travis.yml
script: spec/ci.sh language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 env: - "CI_DB_ADAPTER=sqlite3"
script: spec/ci.sh language: ruby rvm: - 1.9.2 - 1.9.3 env: - "CI_DB_ADAPTER=sqlite3"
Remove 1.8.7 its old now
Remove 1.8.7 its old now
YAML
mit
wacaw/helpdesk,wacaw/helpdesk,johnbeynon/helpdesk,wacaw/helpdesk,johnbeynon/helpdesk,alfadoblemas/helpdesk,johnbeynon/helpdesk,alfadoblemas/helpdesk,alfadoblemas/helpdesk,alfadoblemas/helpdesk,wacaw/helpdesk
d0335ea7a1f0db674dfde58ece36efca0128be02
.travis.yml
.travis.yml
language: go go: - 1.1 - tip script: go test -gocheck.v . notificaitons: email: recipients: jason.mcvetta@gmail.com on_success: change on_failure: always before_script: - go get -v launchpad.net/gocheck
language: go go: - 1.0 - 1.1 - tip script: go test -gocheck.v . notificaitons: email: recipients: jason.mcvetta@gmail.com on_success: change on_failure: always before_script: - go get -v launchpad.net/gocheck
Add Go 1.0 to Travis config
Add Go 1.0 to Travis config
YAML
agpl-3.0
jmcvetta/blocker
039cbd8c4e0998103db97bcd8916b1e2e216d79f
.travis.yml
.travis.yml
language: python python: - 2.7 - 3.3 - 3.4 install: - python setup.py install script: - export DJANGO_SETTINGS_MODULE=saleor.test_settings - python setup.py test notifications: webhooks: https://webhooks.gitter.im/e/af18bf2decb40329066b
language: python python: - 2.7 - 3.3 - 3.4 install: - python setup.py install - pip install coverage - pip install codecov script: coverage run setup.py test after_success: - codecov
Switch to codecov.io, drop gitter
Switch to codecov.io, drop gitter
YAML
bsd-3-clause
mociepka/saleor,Drekscott/Motlaesaleor,car3oon/saleor,KenMutemi/saleor,rodrigozn/CW-Shop,paweltin/saleor,car3oon/saleor,rchav/vinerack,avorio/saleor,itbabu/saleor,dashmug/saleor,laosunhust/saleor,HyperManTT/ECommerceSaleor,itbabu/saleor,car3oon/saleor,tfroehlich82/saleor,josesanch/saleor,paweltin/saleor,arth-co/saleor,paweltin/saleor,arth-co/saleor,hongquan/saleor,maferelo/saleor,spartonia/saleor,jreigel/saleor,UITools/saleor,josesanch/saleor,itbabu/saleor,UITools/saleor,jreigel/saleor,UITools/saleor,maferelo/saleor,laosunhust/saleor,rodrigozn/CW-Shop,arth-co/saleor,rodrigozn/CW-Shop,HyperManTT/ECommerceSaleor,laosunhust/saleor,rchav/vinerack,HyperManTT/ECommerceSaleor,avorio/saleor,spartonia/saleor,arth-co/saleor,Drekscott/Motlaesaleor,tfroehlich82/saleor,tfroehlich82/saleor,rchav/vinerack,UITools/saleor,mociepka/saleor,spartonia/saleor,KenMutemi/saleor,dashmug/saleor,taedori81/saleor,Drekscott/Motlaesaleor,josesanch/saleor,spartonia/saleor,avorio/saleor,jreigel/saleor,hongquan/saleor,laosunhust/saleor,UITools/saleor,avorio/saleor,dashmug/saleor,mociepka/saleor,taedori81/saleor,KenMutemi/saleor,hongquan/saleor,taedori81/saleor,maferelo/saleor,paweltin/saleor,Drekscott/Motlaesaleor,taedori81/saleor
93016d868b3d63129a33ab91d7ce87582deaa161
.travis.yml
.travis.yml
language: node_js node_js: - "node" - "7" - "6"
language: node_js node_js: - "node" - "7" - "6" - "5"
Add node 5 for kicks
Add node 5 for kicks
YAML
mit
donatj/CsvToMarkdownTable,donatj/CsvToMarkdownTable,donatj/CsvToMarkdownTable
d09138d7ab0d9e8dc222a0084cc7d5bb7cbc96a4
.travis.yml
.travis.yml
language: python python: - "2.7" sudo: - required before_install: - pip install pep8 install: - sudo python setup.py install script: # Run pep8 on all .py files in all subfolders # (I ignore "E402: module level import not at top of file" # because of use case sys.path.append('..'); import <module>) - find . -name \*.py -exec pep8 --ignore=E402 {} +
language: python python: - "2.7" sudo: - required before_install: - pip install pep8 install: - sudo python setup.py install script: # Run pep8 on all .py files in all subfolders # (I ignore "E402: module level import not at top of file" # because of use case sys.path.append('..'); import <module>) # E501 : line too ling (max 79 characters) - find . -name \*.py -exec pep8 --ignore=E402,E501 {} +
Exclude error 501 (line too long)
Exclude error 501 (line too long)
YAML
apache-2.0
nuagecommunity/nuage-amp,nuagecommunity/nuage-amp
2c869301f70f7686f5825d409afc8b25a34b105a
.travis.yml
.travis.yml
language: python python: - "3.5" - "3.6" - "3.7" install: - pip install -e .[dev] script: - python -m unittest discover - flake8 . - sphinx-build -E docs docs/_build
language: python python: - "3.5" - "3.6" - "3.7" - "3.8" install: - pip install -e .[dev] script: - python -m unittest discover - flake8 . - sphinx-build -E docs docs/_build
Add Python 3.8 to Travis CI config
Add Python 3.8 to Travis CI config Amends 6ecfb14
YAML
mit
wylee/runcommands,wylee/runcommands
4b93451e4509613765089a418c6df8073af2ab2b
.travis.yml
.travis.yml
jdk: - openjdk8 scala: - 2.12.10 services: - docker before_script: - docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" script: - ./sbt clean compile after_success: - ./sbt docker:publish # blacklist branches: except: - RELEASE notifications: slack: sdkman:QdA1XVUuYDjlYL4Z7gm16OEc
jdk: - openjdk8 scala: - 2.12.10 services: - docker before_script: - docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" script: - ./sbt clean compile after_success: - ./sbt docker:publish cache: directories: - "$HOME/.ivy2" - "$HOME/.sbt" # blacklist branches: except: - RELEASE notifications: slack: sdkman:QdA1XVUuYDjlYL4Z7gm16OEc
Revert "Remove sbt and ivy cache directories."
Revert "Remove sbt and ivy cache directories." This reverts commit 4f2016d85bfc12e4c9eb1ad874715f543550fca8.
YAML
apache-2.0
sdkman/sdkman-website,sdkman/sdkman-website
c53f477b56e446264c862a75130a68364075b485
.travis.yml
.travis.yml
language: java sudo: false jdk: - oraclejdk8 notifications: email: false branches: only: - master script: - gradle clean test
language: java sudo: false jdk: - oraclejdk8 notifications: email: false branches: only: - master script: - ./gradlew clean test
Use Gradle wrapper in TravisCI
Use Gradle wrapper in TravisCI
YAML
apache-2.0
engagingspaces/vertx-graphql-service-discovery
b6964f59d9da867f23c9f8fd60910154a48bc00a
.travis.yml
.travis.yml
dist: trusty sudo: false language: go go: - 1.8.1 install: # This script is used by the Travis build to install a cookie for # go.googlesource.com so rate limits are higher when using `go get` to fetch # packages that live there. # See: https://github.com/golang/go/issues/12933 - bash scripts/gogetcookie.sh - go get github.com/kardianos/govendor script: - make test - make vendor-status - make vet after_success: - test -n "$TRAVIS_TAG" && curl -sL https://git.io/goreleaser | bash branches: only: - master matrix: fast_finish: true allow_failures: - go: tip
dist: trusty sudo: false language: go go: - 1.8.1 install: # This script is used by the Travis build to install a cookie for # go.googlesource.com so rate limits are higher when using `go get` to fetch # packages that live there. # See: https://github.com/golang/go/issues/12933 - bash scripts/gogetcookie.sh - go get github.com/kardianos/govendor script: - make test - make vendor-status - make vet after_success: - test -n "$TRAVIS_TAG" && curl -sL https://git.io/goreleaser | bash matrix: fast_finish: true allow_failures: - go: tip
Remove master only branch restriction on Travis
Remove master only branch restriction on Travis
YAML
mpl-2.0
brightbox/terraform-provider-brightbox,brightbox/terraform-provider-brightbox,brightbox/terraform-provider-brightbox
11a584c1285475ed80e6bc5daa0f28c5835bada4
.travis.yml
.travis.yml
language: csharp mono: none dist: trusty dotnet: 1.0.3 script: - dotnet restore - dotnet build -f netstandard2.0 notifications: webhooks: https://outlook.office.com/webhook/2b7add9b-4261-4095-8521-3bcf267a002d@990414fa-d0a3-42f5-b740-21d864a44a28/TravisCI/de007a57b1d343699e8a09d075163eac/539ce6fa-e9aa-413f-a79b-fb7e8998fcac
language: csharp mono: none dist: trusty dotnet: 2.1.4 script: - dotnet restore - dotnet build -f netstandard2.0 notifications: webhooks: https://outlook.office.com/webhook/2b7add9b-4261-4095-8521-3bcf267a002d@990414fa-d0a3-42f5-b740-21d864a44a28/TravisCI/de007a57b1d343699e8a09d075163eac/539ce6fa-e9aa-413f-a79b-fb7e8998fcac
Use the dotnet version 2.1.4.
Use the dotnet version 2.1.4.
YAML
mit
minidfx/Rx.Contrib
f517f47dcd4bf456d41e6eea935ebe395c68fa12
.travis.yml
.travis.yml
language: ruby rvm: - 2.3.8 - 2.4.7 - 2.5.6 - 2.6.4 - ruby-head gemfile: - gemfiles/csv_15.0.gemfile - gemfiles/csv_16.0.gemfile matrix: allow_failures: - rvm: ruby-head fast_finish: true
language: ruby rvm: - 2.3.8 - 2.4.9 - 2.5.7 - 2.6.5 - ruby-head gemfile: - gemfiles/csv_15.0.gemfile - gemfiles/csv_16.0.gemfile matrix: allow_failures: - rvm: ruby-head fast_finish: true
Test against latest Ruby versions
Test against latest Ruby versions
YAML
mit
DavyJonesLocker/client_side_validations-simple_form,DavyJonesLocker/client_side_validations-simple_form,DavyJonesLocker/client_side_validations-simple_form
666ce8b4fbc0ae4e5aebaa7f1b436092d5e3d7f9
.travis.yml
.travis.yml
language: node_js node_js: - "0.8" - "0.10" # https://twitter.com/_munter_/status/465621408396365824 # When using `npm install --save` in node 0.8 tested projects on @travisci, do # before_install: "npm install -g npm" in .travis.yml #outdated # # Retweeted by @travisci before_install: "npm update -g npm" branches: only: - master - next
sudo: false language: node_js node_js: - "0.8" - "0.10" # https://twitter.com/_munter_/status/465621408396365824 # When using `npm install --save` in node 0.8 tested projects on @travisci, do # before_install: "npm install -g npm" in .travis.yml #outdated # # Retweeted by @travisci before_install: "npm update -g npm" branches: only: - master - next
Switch the Travis configuration to no-sudo
[TASK] Switch the Travis configuration to no-sudo This allows Travis to use their new container-based infrastructure, which should speed up the builds.
YAML
mit
cskeppstedt/coffeelint,sgentle/coffeelint,AsaAyers/coffeelint,lydell/coffeelint,swang/coffeelint,clutchski/coffeelint,mitar/coffeelint,machadoit/coffeelint
43dc344d17955c0b67ec422b22a478c7ae4193f4
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode - ruby-head matrix: allow_failures: - rvm: 1.9.2 - rvm: ruby-head - rvm: rbx-19mode notifications: irc: "irc.freenode.org#adhearsion"
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode - rbx-19mode - ruby-head matrix: allow_failures: - rvm: 1.9.2 - rvm: ruby-head - rvm: rbx-19mode notifications: irc: "irc.freenode.org#adhearsion"
Test on recent Ruby releases
Test on recent Ruby releases
YAML
mit
system123/punchblock,adhearsion/punchblock
df9871aa68227532758fad75e86b5621b7c616a6
.travis.yml
.travis.yml
language: python python: - '3.4' env: - DJANGO=Django>=1.9 install: - pip install coveralls -r requirements-dev.txt script: - flake8 democracy - py.test -vvv --cov democracy democracy/tests after_success: coveralls
language: python python: - '3.4' env: - DJANGO=Django>=1.9 install: - pip install coveralls -r requirements-dev.txt script: - flake8 democracy - py.test -vvv --cov democracy democracy/tests after_success: coveralls notifications: slack: secure: JSJCruF/Z4YtP28tNrv+/WcDG10viEbgQPQmeV96DvCYNjSKen9HrOzeUHkLWn3Jt4/SMulXSJ3iv5Lf2d4VEB49mXzCoJrhEQ8tjlOubNdPW4roIrMs8CFsJkirYMqUURvFEW496GiHFKCUhiKDyDXeaLMP+hgZ1OzuG5IncW+F7eLEj1SeaeXRACbM/QBCRt5lF8SNvFzzEHzZNHwRcamsAOadyTI5KOz8ZiQ6cOu3k48h9BGJIAoA+9nIgNa8bEVTYrRF432Yu2JsxkZ8Z2gPIDcAadP20cgVVi6ibVpO9hDOO++e21Hp5b5b0xA15lSJ0XkoviWvKjPoaXN9zEBg83aj/JWrmujnFujGbnrW2tlJ4WlBSJtsURTaY/5BLmA9NYlbw1ea7LMe+F9hy8MstXXnw3fEZg5C50PPPi1ucKp1lqGyP6DJE2V1G+yTg5j6d7qfulgD8KJMcF5VqrivLDTsn2NRqDkmGmVMzxxnkexdGXIZgxkz4PaM+uWFmTabSVw821CgWcomKRHc0VVkVv5yP3ZNNL48Y+OqPSUPBI8gz1CvjEaejRlaTFZvRzZl2TlRusVXyURBQPgap7o7vyJ/nELmMKv7p2QiGo+UDb0LQ0PYQLQhM85l9b43Vn8vZTsWlpsgoA7dpZJygJ3OT69cuzExkdQlYlr8VDk=
Add Slack hook configuration for Travis
Add Slack hook configuration for Travis
YAML
mit
City-of-Helsinki/kerrokantasi,stephawe/kerrokantasi,stephawe/kerrokantasi,stephawe/kerrokantasi,City-of-Helsinki/kerrokantasi,vikoivun/kerrokantasi,City-of-Helsinki/kerrokantasi,vikoivun/kerrokantasi,City-of-Helsinki/kerrokantasi,vikoivun/kerrokantasi
e734541cc2798df6bf91494a07978dc1b17dd746
.travis.yml
.travis.yml
language: node_js node_js: - "7" - "6" before_script: - pushd ./test/test_app - mv npmrc.rename_me .npmrc - mv node_modules.rename_me node_modules - npm install - popd script: - npm run travis_app_test - npm run travis_cli_test
language: node_js node_js: - "8" - "7" - "6" before_script: pushd ./test/test_app && mv npmrc.rename_me .npmrc && mv node_modules.rename_me node_modules && npm install && popd script: npm run travis_app_test && npm run travis_cli_test
Add Node v8 + Group shell commands
Travis: Add Node v8 + Group shell commands
YAML
mit
sickle2/package-config
cfafb9a86244a210c7436e5f1127b488c741e428
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 before_script: - composer install notifications: email: false
language: php php: - 5.4 - 5.5 sudo: false before_script: - composer install notifications: email: false
Set sudo to false so Travis runs on new infra
Set sudo to false so Travis runs on new infra
YAML
mit
cakephp/upgrade,cakephp/upgrade,tanuck/upgrade,tanuck/upgrade
0585d36d255ffc6bc5d6393fe8fef029cf81e70b
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 node_js: - '0.10' script: - './gradlew check'
language: java jdk: - oraclejdk8 node_js: - '0.10' env: - TERM=dumb script: - './gradlew check' after_success: - ./gradlew jacocoTestReport coveralls
Add Coveralls to Travis setup
Add Coveralls to Travis setup See #3
YAML
apache-2.0
bep/wikiboot,bep/wikiboot,bep/wikiboot
1cfae68b8c3089e6a58cd9423cd989d53924a1ac
.travis.yml
.travis.yml
language: node_js node_js: - "8" - "6" before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.28.1 - yarn config set workspaces-experimental true before_script: - export TZ=Europe/Madrid script: npm run travis after_success: - 'cat ./coverage/lcov.info | ./node_modules/.bin/coveralls' cache: directories: - ~/.yarn - ~/.nvm
language: node_js node_js: - "8" - "6" before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash - export PATH="$HOME/.yarn/bin:$PATH" - yarn config set workspaces-experimental true before_script: - export TZ=Europe/Madrid script: npm run travis after_success: - 'cat ./coverage/lcov.info | ./node_modules/.bin/coveralls' cache: yarn: true directories: - ".eslintcache" - "node_modules"
Fix Fix Travis, round 5
Fix Fix Travis, round 5
YAML
mit
guigrpa/storyboard,guigrpa/storyboard
29336143fc0ef2697c1fdac8c8781eb8a49289f6
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.9 - 2.2.6 - 2.3.3 - 2.4.2 before_install: - gem install ruby-debug-ide - nvm install v6.9.1 - nvm use v6.9.1 before_script: - npm install - npm run compile script: npm run test-debugger
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.9 - 2.2.6 - 2.3.3 - 2.4.2 before_install: - gem install ruby-debug-ide - nvm install 8.9.3 - echo "8.9.3" > .nvmrc before_script: - nvm use - npm install -g typescript -v 2.1.5 - npm install - npm run compile script: nvm use && npm run test-debugger
Upgrade to new LTS node. Use an nvmrc for version selection
Upgrade to new LTS node. Use an nvmrc for version selection
YAML
mit
rubyide/vscode-ruby,rubyide/vscode-ruby,rubyide/vscode-ruby,rubyide/vscode-ruby,rubyide/vscode-ruby
1c30d68e282fdd581abe4fb11920af6fbec5681b
.travis.yml
.travis.yml
os: - linux language: go sudo: false go: - "tip" - "1.10" - "1.9" install: - go get -v golang.org/x/exp/ebnf - make build script: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover - make test - make release version=testci after_success: - bash <(curl -s https://codecov.io/bash) notifications: webhooks: urls: - https://webhooks.gitter.im/e/52ad02845e880cdca2cf on_success: change on_failure: always on_start: never email: - tiago.natel@neoway.com.br - tiago.katcipis@neoway.com.br
os: - linux language: go sudo: false go: - "tip" - "1.10" - "1.9" install: - go get -v golang.org/x/exp/ebnf - make build script: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover - make test - make build - ./cmd/nash/nash ./hack/releaser.sh testci after_success: - bash <(curl -s https://codecov.io/bash) notifications: webhooks: urls: - https://webhooks.gitter.im/e/52ad02845e880cdca2cf on_success: change on_failure: always on_start: never email: - tiago.natel@neoway.com.br - tiagokatcipis@gmail.com
Fix releaser test on CI
Fix releaser test on CI
YAML
apache-2.0
NeowayLabs/nash,NeowayLabs/nash
9549ee2399ad89896a16ff332f95d474045ca535
.travis.yml
.travis.yml
language: python python: - 2.6 - 2.7 - 3.1 - 3.2 install: - pip install nose - pip install . script: make test
language: python python: - 2.6 - 2.7 - 3.1 - 3.2 env: - - MONGOHQ_URL='mongodb://dummy' - MONGOLAB_URI='mongodb://dummy' - MONGOHQ_URL='mongodb://dummy1' MONGOLAB_URI='mongodb://dummy2' install: - pip install nose - pip install . script: make test
Add additional Travis CI tests
Add additional Travis CI tests These tests will run the test suite with the possible combinations of provider URLs (using dummy values) already set in the environment.
YAML
bsd-3-clause
dirn/django-heroku-mongoify,dirn/django-heroku-mongoify
ab95de8142dd1d3002c9b9fe0a91ff082d8cf2a6
.travis.yml
.travis.yml
language: cpp compiler: - gcc sudo: required dist: trusty before_install: - sudo add-apt-repository ppa:beineri/opt-qt56-trusty -y - sudo apt-get update -qq install: - sudo apt-get install -qq libsdl2-dev build-essential - sudo apt-get install -qq qt56base; source /opt/qt56/bin/qt56-env.sh script: - qmake QDriverStation.pro - make -j4
language: cpp compiler: gcc dist: trusty sudo: required before_install: - sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test - sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa - sudo apt-get update -qq install: - sudo apt-get install -y --force-yes xbitmaps xterm python-software-properties build-essential g++-4.8 -y - sudo apt-get install -y --force-yes xorg-dev libudev-dev libts-dev libgl1-mesa-dev libglu1-mesa-dev libasound2-dev libpulse-dev -y - sudo apt-get install -y --force-yes libopenal-dev libogg-dev libvorbis-dev libaudiofile-dev libpng12-dev libfreetype6-dev -y - sudo apt-get install -y --force-yes libsdl2-dev libusb-dev libdbus-1-dev zlib1g-dev libdirectfb-dev -y - sudo apt-get install -y --force-yes qtbase5-dev qtdeclarative5-dev libqt5webkit5-dev libqt5gui5 qttools5-dev-tools qttools5-dev qtmultimedia5-dev script: - qmake -qt=qt5 QDriverStation.pro - make -j4
Revert "Use Qt 5.6 on Travis"
Revert "Use Qt 5.6 on Travis" This reverts commit 66d3c7989f1896743ce98c8326d4822136d62550.
YAML
mit
FRC-Utilities/QDriverStation,FRC-Utilities/QDriverStation,FRC-Utilities/QDriverStation
6c30c285f0a15b3a168558ee8e53df58308de58c
.travis.yml
.travis.yml
dist: xenial sudo: required language: go go: - 1.6 - 1.7.x - master before_install: - sudo apt-get update - sudo apt-get install -y btrfs-tools linux-headers-generic - dpkg -L btrfs-tools - ls /usr/include/btrfs # - go get golang.org/x/tools/cmd/vet #- go get golang.org/x/tools/cmd/cover - go get github.com/golang/lint/golint #- go get github.com/mattn/goveralls install: - go get -d ./...
dist: xenial sudo: required language: go go: - "1.9.x" - "1.10.x" - master before_install: - sudo apt-get update - sudo apt-get install -y btrfs-tools linux-headers-generic - dpkg -L btrfs-tools - ls /usr/include/btrfs # - go get golang.org/x/tools/cmd/vet #- go get golang.org/x/tools/cmd/cover - go get github.com/golang/lint/golint #- go get github.com/mattn/goveralls install: - go get -d ./...
Update go version in ci
Update go version in ci Signed-off-by: Derek McGowan <e1c79a582b6629e6b39e9679f4bb964d25db4aa8@mcgstyle.net>
YAML
apache-2.0
stevvooe/go-btrfs,stevvooe/go-btrfs
f7e662dc56f229c17ff73f2bd046b8d0e5753fda
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 # - jruby # - rbx notifications: email: - parndt@gmail.com branches: only: - master - rails4 env: - DB=postgres - DB=mysql - DB=sqlite3 gemfile: - gemfiles/Gemfile.rails-3.0.rb - gemfiles/Gemfile.rails-3.1.rb - gemfiles/Gemfile.rails-3.2.rb - gemfiles/Gemfile.rails-4.0.rb before_script: 'bundle exec rake db:create db:up > /dev/null' script: 'bundle exec rake test' matrix: allow_failures: - gemfile: gemfiles/Gemfile.rails-4.0.rb
language: ruby rvm: - 2.0.0 - 1.9.3 # - jruby # - rbx notifications: email: - parndt@gmail.com branches: only: - master - rails4 env: - DB=postgres - DB=mysql - DB=sqlite3 gemfile: # - gemfiles/Gemfile.rails-3.0.rb # - gemfiles/Gemfile.rails-3.1.rb # - gemfiles/Gemfile.rails-3.2.rb - gemfiles/Gemfile.rails-4.0.rb before_script: 'bundle exec rake db:create db:up' script: 'bundle exec rake test' matrix: allow_failures: - gemfile: gemfiles/Gemfile.rails-4.0.rb
Allow testing on Ruby 2.0.0 and disable other gemfiles for now.
Allow testing on Ruby 2.0.0 and disable other gemfiles for now.
YAML
mit
zenhacks/friendly_id
13e8095d796f7ddd18144d89f46dc8f4711482ed
.travis.yml
.travis.yml
language: node_js sudo: false dist: trusty env: - POSTGRESQL_VERSION="10" - POSTGRESQL_VERSION="11" node_js: - "10" before_install: - sudo service postgresql stop; - sudo apt-get install -y --allow-unauthenticated --no-install-recommends --no-install-suggests postgresql-$POSTGRESQL_VERSION postgresql-client-$POSTGRESQL_VERSION postgresql-server-dev-$POSTGRESQL_VERSION postgresql-$POSTGRESQL_VERSION-postgis-2.4 postgresql-$POSTGRESQL_VERSION-postgis-2.4-scripts postgresql-plpython-$POSTGRESQL_VERSION - echo -e "# TYPE DATABASE USER ADDRESS METHOD \nlocal all postgres trust\nlocal all all trust\nhost all all 127.0.0.1/32 trust" | sudo tee /etc/postgresql/$POSTGRESQL_VERSION/main/pg_hba.conf - export PGPORT=`grep ^port /etc/postgresql/$POSTGRESQL_VERSION/main/postgresql.conf | awk '{print $3}'` - sed -i 's/5432/'"$PGPORT"'/g' test/test-config.js - sudo service postgresql restart $POSTGRESQL_VERSION;
language: node_js sudo: false dist: trusty env: - POSTGRESQL_VERSION="10" node_js: - "10" before_install: - sudo service postgresql stop; - sudo apt-get install -y --allow-unauthenticated --no-install-recommends --no-install-suggests postgresql-$POSTGRESQL_VERSION postgresql-client-$POSTGRESQL_VERSION postgresql-server-dev-$POSTGRESQL_VERSION postgresql-$POSTGRESQL_VERSION-postgis-2.4 postgresql-$POSTGRESQL_VERSION-postgis-2.4-scripts postgresql-plpython-$POSTGRESQL_VERSION - echo -e "# TYPE DATABASE USER ADDRESS METHOD \nlocal all postgres trust\nlocal all all trust\nhost all all 127.0.0.1/32 trust" | sudo tee /etc/postgresql/$POSTGRESQL_VERSION/main/pg_hba.conf - export PGPORT=`grep ^port /etc/postgresql/$POSTGRESQL_VERSION/main/postgresql.conf | awk '{print $3}'` - sed -i 's/5432/'"$PGPORT"'/g' test/test-config.js - sudo service postgresql restart $POSTGRESQL_VERSION;
Revert "Try run CI against Postgres 11"
Revert "Try run CI against Postgres 11" This reverts commit 029cf9545088342e14be80a11920fed7aaf26a55.
YAML
bsd-3-clause
CartoDB/camshaft
3ccbe5b4c89b2365614ebfd26e255166aceccf30
.travis.yml
.travis.yml
language: java sudo: false matrix: fast_finish: true include: - os: linux dist: trusty jdk: oraclejdk8 - os: osx osx_image: xcode8.3 # The 'build' task runs most things, including test, check, & static analysis install: true script: ./gradlew -u -i -q -S build jacocoAggregateReport coveralls cache: directories: - $HOME/.gradle/
language: java matrix: fast_finish: true include: - os: linux dist: trusty jdk: oraclejdk8 sudo: required - os: osx osx_image: xcode8.3 # The 'build' task runs most things, including test, check, & static analysis install: true script: ./gradlew -u -i -q -S build jacocoAggregateReport coveralls cache: directories: - $HOME/.gradle/
Switch Linux build to sudo required image, which has more memory
UP-4861: Switch Linux build to sudo required image, which has more memory
YAML
apache-2.0
phillips1021/uPortal,mgillian/uPortal,ChristianMurphy/uPortal,groybal/uPortal,phillips1021/uPortal,bjagg/uPortal,groybal/uPortal,Jasig/uPortal,stalele/uPortal,ChristianMurphy/uPortal,GIP-RECIA/esco-portail,phillips1021/uPortal,bjagg/uPortal,GIP-RECIA/esup-uportal,cousquer/uPortal,jonathanmtran/uPortal,groybal/uPortal,stalele/uPortal,jonathanmtran/uPortal,mgillian/uPortal,GIP-RECIA/esup-uportal,stalele/uPortal,cousquer/uPortal,GIP-RECIA/esco-portail,GIP-RECIA/esup-uportal,phillips1021/uPortal,stalele/uPortal,bjagg/uPortal,Jasig/uPortal,groybal/uPortal,GIP-RECIA/esup-uportal,phillips1021/uPortal,Jasig/uPortal,GIP-RECIA/esup-uportal,groybal/uPortal,ChristianMurphy/uPortal,jonathanmtran/uPortal,cousquer/uPortal,mgillian/uPortal,stalele/uPortal,GIP-RECIA/esco-portail
8f3e9206370e3a6631e51a7d92df2f5f9fc3b0c5
.travis.yml
.travis.yml
language: ruby cache: bundler rvm: - 2.1.10 - 2.2.5 - 2.3.1 env: - CHEF_VERSION=12.6.0 - CHEF_VERSION=12.7.2 - CHEF_VERSION=11.18.12 notifications: email: false sudo: false
language: ruby cache: bundler rvm: - 2.3.3 - 2.4.0 env: - CHEF_VERSION=12.19.36 - CHEF_VERSION=12.7.2 - CHEF_VERSION=11.18.12 notifications: email: false sudo: false
Use a newer chef and don't test with Ruby 2.1 anymore
Use a newer chef and don't test with Ruby 2.1 anymore
YAML
mit
bmarini/knife-inspect
6302bc51cebfd1b70d432161d293e406baf0d3af
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode - jruby-19mode - rbx - ree
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby - rbx - ree
Revert "Test against JRuby in both Ruby 1.8 and 1.9 mode"
Revert "Test against JRuby in both Ruby 1.8 and 1.9 mode" This reverts commit 0b9577c1f9b217ea58c94d0ab780a307e46b4f15.
YAML
mit
sferik/mlb
d960aa53baa8208e879046d55a41587caba43d63
.travis.yml
.travis.yml
language: python python: - "2.7" # Command to install dependencies. install: - pip install -r requirements.txt # Command to run tests. script: - python rake_test.py
language: python python: - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.6" # Command to install dependencies. install: - pip install -r requirements.txt # Command to run tests. script: - python rake_test.py
Enable testing with different python versions.
Enable testing with different python versions.
YAML
mit
csurfer/rake-nltk,cgratie/rake-nltk
d550bd2c6d27225588dd9117e7eb0afaf1d07387
.travis.yml
.travis.yml
language: ruby cache: bundler dist: trusty sudo: false # Early warning system to catch if Rubygems breaks something before_install: - gem update --system - gem uninstall bundler -a -x - gem install bundler - rm -f .bundle/config rvm: - 2.2.7 - 2.3.4 - 2.4.1 - ruby-head matrix: allow_failures: - rvm: ruby-head script: bundle exec rake spec branches: only: - master
language: ruby cache: bundler dist: trusty sudo: false # Early warning system to catch if Rubygems breaks something before_install: - gem update --system - gem uninstall bundler -a -x - gem install bundler - rm -f .bundle/config matrix: include: - rvm: 2.2.10 - rvm: 2.3.7 - rvm: 2.4.4 - rvm: 2.5.1 - rvm: ruby-head allow_failures: - rvm: ruby-head script: bundle exec rake spec branches: only: - master
Update Ruby versions we test in Travis
Update Ruby versions we test in Travis Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
YAML
apache-2.0
ClogenyTechnologies/knife-ec2,chef/knife-ec2,MsysTechnologiesllc/knife-ec2,chef/knife-ec2,MsysTechnologiesllc/knife-ec2
b59739b564828047aa9e429b8eabfaed8cc125e2
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.11" matrix: fast_finish: true allow_failures: - node_js: 0.11
language: node_js node_js: - "0.10" - "0.12" - "iojs" matrix: fast_finish: true
Add iojs to Travis matrix
Build: Add iojs to Travis matrix
YAML
mit
js-cli/js-v8flags,tkellen/js-v8flags