commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
bd78aa77b9e4a735e13c380a62e7cf096cadab6e | .circleci/config.yml | .circleci/config.yml | # CircleCI config for automated test builds triggered from Github.
version: 2
jobs:
build:
docker:
- image: postgres:latest
environment:
- PGHOST: "/tmp"
steps:
- checkout
- run:
name: Install
command: apt update && apt install -y python g++ libpq-dev postgresql... | # CircleCI config for automated test builds triggered from Github.
version: 2
jobs:
build:
docker:
- image: postgres:latest
environment:
- PGHOST: "/tmp"
steps:
- checkout
- run:
name: Install
command: apt update && apt install -y python g++ libpq-dev postgresql... | Disable documentation in CircleCI build. | Disable documentation in CircleCI build.
That was a step too far: to build documentation, you need a bunch of
tools installed.
| YAML | bsd-3-clause | jtv/libpqxx,jtv/libpqxx,jtv/libpqxx,jtv/libpqxx |
7accda2c9a0e54e7d4d788a4887157f4a3512639 | .github/workflows/draft-release.yml | .github/workflows/draft-release.yml | on:
push:
tags:
- 'v*'
name: Create Release Draft
jobs:
build:
name: Create Release Asset
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Check version tag
run: |
[[ \
`git tag --points-at` \
... | on:
push:
tags:
- 'v*'
name: Create Release Draft
jobs:
build:
name: Create Release Asset
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Check version tag
run: |
[[ \
`git tag --points-at` \
... | Add eslint to github release action | Add eslint to github release action
| YAML | mit | mrEDitor/gnome-shell-extension-scroll-panel |
bcb8a7ecb68765802aa88bde813b335f40c95ecd | .github/workflows/draft-release.yml | .github/workflows/draft-release.yml | on:
push:
tags:
- 'v*'
name: Create Release Draft
jobs:
build:
name: Create Release Asset
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Check version tag
run: |
[[ \
`git tag --points-at` \
... | on:
push:
tags:
- 'v*'
name: Create Release Draft
jobs:
build:
name: Create Release Asset
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Check version tag
run: |
[[ \
`git tag --points-at` \
... | Use npx eslint in github release action | Use npx eslint in github release action
| YAML | mit | mrEDitor/gnome-shell-extension-scroll-panel |
45c0a78482dc420db58346e725204a00aa07fe88 | .github/workflows/linux_mkspecs.yml | .github/workflows/linux_mkspecs.yml | name: Linux C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Linux-mkspecs:
uses: steinwurf/linux-mkspecs-action/.github/workflows/actio... | name: Linux C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Linux-mkspecs:
uses: steinwurf/linux-mkspecs-action/.github/workflows/actio... | Update Linux C++ make-specs to new version 6.0.0 | Update Linux C++ make-specs to new version 6.0.0 | YAML | bsd-3-clause | steinwurf/stub,steinwurf/stub |
67a94b39124685819bb10c8342823dd96c6925a7 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/circleci-geogson
docker:
- image: circleci/openjdk:8-jdk-browsers
steps:
- checkout
- restore_cache:
key: circleci-geogson-{{ checksum "pom.xml" }}
- run: mvn package
- save_cache:
paths:
- ~/... | version: 2
jobs:
build:
working_directory: ~/circleci-geogson
docker:
- image: circleci/openjdk:8-jdk-browsers
steps:
- checkout
- restore_cache:
key: circleci-geogson-{{ checksum "pom.xml" }}
- run: mvn package
- save_cache:
paths:
- ~/... | Add git username for circleci | Add git username for circleci
| YAML | apache-2.0 | filosganga/geogson,filosganga/geogson |
2f518b380149829649aa5b27c66332c6aa73652e | .github/workflows/gradle.yml | .github/workflows/gradle.yml | name: Jenetics Build
on:
push:
branches:
- master
- releases/*
- r7.0.0
- issues/*
pull_request:
branches:
- master
- releases/*
- r7.0.0
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
j... | name: Jenetics Build
on:
push:
branches:
- master
- releases/*
- r7.0.0
- issues/*
pull_request:
branches:
- master
- releases/*
- r7.0.0
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
j... | Add '--infos' to Gradle build command. | Add '--infos' to Gradle build command.
| YAML | apache-2.0 | jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics |
2d1fcdc27647b40fa2d5c78d7bf4d1c3e3e37b79 | .github/workflows/linter.yml | .github/workflows/linter.yml | ---
name: Linter
on:
push:
branches: [ develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Update Bundler
run: bundle update --bundler
- name: R... | ---
name: Linter
on:
push:
branches: [ develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Install bundler
run: gem install --no-document bundler:2.... | Install bundler 2.2.16 before exec lint | Install bundler 2.2.16 before exec lint
| YAML | mit | Dev-Crea/evostream-event,Dev-Crea/evostream-event |
ddf42d56f83df8cdb8f480ba813de72e331a5cbe | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
haskell: haskell-works/haskell-build@1.6.0
github: haskell-works/github-release@1.2.1
hackage: haskell-works/hackage@1.0.0
workflows:
multiple-ghc-build:
jobs:
- haskell/build:
name: GHC 8.2.2
executor: haskell/ghc-8_2_2
- haskell/build:
name: ... | version: 2.1
orbs:
haskell: haskell-works/haskell-build@1.6.2
github: haskell-works/github-release@1.2.1
hackage: haskell-works/hackage@1.0.0
workflows:
multiple-ghc-build:
jobs:
- haskell/build:
name: GHC 8.2.2
executor: haskell/ghc-8_2_2
- haskell/build:
name: ... | Upgrade circleci to use haskell/build 1.6.2 | Upgrade circleci to use haskell/build 1.6.2
| YAML | bsd-3-clause | haskell-works/hw-json |
c177e1f24f89d96ba3f384f6936563439c8cb637 | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | name: Test template output
on: [push]
jobs:
test:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [8, 10, 12]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout... | name: Test template output
on: [push]
jobs:
test:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [9, 10, 11, 12]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/chec... | Fix other node-version to node_version typo | Fix other node-version to node_version typo | YAML | mit | fadeit/responsive-html-email-signature,fadeit/responsive-html-email-signature |
7bfe5b597512c6ef7b5a5387869b4f0142c62c3e | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/node:9@sha256:0ec3d7136ab6567ae4c9d13124ae3ae65bd8be3f026e3832836582b313b5ef90
- image: circleci/mongo:3@sha256:0c6436f8f925503028db4327db4baac2a626989a254dc15c4e5a94d2902d75ee
steps:
- checkout
- run: yarn install --frozen-lockfile
... | version: 2
jobs:
build:
docker:
- image: circleci/node:9@sha256:0ec3d7136ab6567ae4c9d13124ae3ae65bd8be3f026e3832836582b313b5ef90
- image: circleci/mongo:3@sha256:11ecec4935a0c69f00eab5eef60290223a92f36eb2c91892bfb3e821c6decbd5
steps:
- checkout
- run: yarn install --frozen-lockfile
... | Update circleci/mongo:3 Docker digest to 11ecec | Update circleci/mongo:3 Docker digest to 11ecec | YAML | mit | js-accounts/accounts |
c9cb517f0e83c48841f645eb5d52938c02c8ebeb | .circleci/config.yml | .circleci/config.yml | # Golang CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-go/ for more details
version: 2
jobs:
build:
docker:
# specify the version
- image: circleci/golang:1.9
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built im... | # Golang CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-go/ for more details
version: 2
jobs:
build:
docker:
# specify the version
- image: circleci/golang:1.9
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built im... | Replace template vars with actual values in circleci.yml | Replace template vars with actual values in circleci.yml
| YAML | apache-2.0 | pradeepg26/sifuconf,pradeepg26/sifuconf |
a7f13ba510616b035f2dd9bbf9fa2f44567019f5 | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
python: circleci/python@0.2.1
jobs:
build-and-test:
executor: python/default
steps:
- checkout
- python/load-cache
- python/install-deps
- python/save-cache
- run:
command: bash run_tests.sh
name: Test
workflows:
main:
jobs:
... | version: 2.1
orbs:
python: circleci/python@1.2.1
jobs:
build-and-test:
executor: python/default
steps:
- checkout
- python/load-cache
- python/install-deps
- python/save-cache
- run:
command: bash run_tests.sh
name: Test
workflows:
main:
jobs:
... | Update to current python orb. | Update to current python orb.
| YAML | apache-2.0 | conversationai/unintended-ml-bias-analysis,conversationai/unintended-ml-bias-analysis |
b75551df711cbddaf952e3ff7281080d156d23af | changelogs/unreleased/33441-supplement_simplified_chinese_translation_of_i18n.yml | changelogs/unreleased/33441-supplement_simplified_chinese_translation_of_i18n.yml | ---
title: Supplement Simplified Chinese translation of Project Page & Repository Page
merge_request: 11994
author:Huang Tao
| ---
title: Supplement Simplified Chinese translation of Project Page & Repository Page
merge_request: 11994
author: Huang Tao
| Change the format in changelog | Change the format in changelog
| YAML | mit | t-zuehlsdorff/gitlabhq,jirutka/gitlabhq,stoplightio/gitlabhq,iiet/iiet-git,axilleas/gitlabhq,iiet/iiet-git,stoplightio/gitlabhq,t-zuehlsdorff/gitlabhq,jirutka/gitlabhq,iiet/iiet-git,jirutka/gitlabhq,mmkassem/gitlabhq,axilleas/gitlabhq,dreampet/gitlab,mmkassem/gitlabhq,t-zuehlsdorff/gitlabhq,mmkassem/gitlabhq,iiet/iiet-... |
eff400d444d99bd323cff2833e2a76a0aebc338f | cfn/lib/NeutronPort.yaml | cfn/lib/NeutronPort.yaml | HeatTemplateFormatVersion: '2012-12-12'
Description: NeutronPort
Outputs:
PortId:
Description: Neutron Port ID
Value:
"Fn::GetAtt": [Interface, Outputs.PortId]
Parameters:
Name:
Default: ""
Description: Name for the port
Type: String
DefaultSecurityGroups:
AllowedValues: ["True", "Fa... | HeatTemplateFormatVersion: '2012-12-12'
Description: NeutronPort
Outputs:
PortId:
Description: Neutron Port ID
Value:
"Fn::GetAtt": [Interface, Outputs.PortId]
Parameters:
Name:
Default: ""
Description: Name for the port
Type: String
DefaultSecurityGroups:
AllowedValues: ["True", "Fa... | Move implementation specific templates into subdirectory to discurage their direct use. | Move implementation specific templates into subdirectory to discurage their direct use.
| YAML | apache-2.0 | EMSL-MSC/heat-templates |
57a8c143ccc87ac1d561df4cde781a098e96b4e5 | lib/generators/templates/heroku.yml | lib/generators/templates/heroku.yml | apps:
# map the environments to your desired heroku app names
# for example,
# production: awesomeapp
# would create the RACK_ENV=production
# and deploy to http://awesomeapp.heroku.com
production: awesomeapp
staging: awesomeapp-staging
legacy: awesomeapp-legacy
stacks:
# choose the stacks you want... | apps:
# map the environments to your desired heroku app names
# for example,
# production: awesomeapp
# would create the RACK_ENV=production
# and deploy to http://awesomeapp.heroku.com
production: awesomeapp
staging: awesomeapp-staging
legacy: awesomeapp-legacy
stacks:
# choose the stacks you want... | Add comment about including yourself as a collaborator. | Add comment about including yourself as a collaborator.
| YAML | mit | debreczeni/heroku-rails-saas,TerraCycleUS/heroku-rails-saas |
b0abbea07fc9c9a84743aa63324c9b666bff89d0 | metadata/com.secuso.torchlight2.yml | metadata/com.secuso.torchlight2.yml | Categories:
- System
License: GPL-3.0-only
WebSite: https://www.secuso.informatik.tu-darmstadt.de/en/secuso-home/
SourceCode: https://github.com/SecUSo/privacy-friendly-torchlight
IssueTracker: https://github.com/SecUSo/privacy-friendly-torchlight/issues
AutoName: Torchlight
Description: |-
Simple application to... | Categories:
- System
License: GPL-3.0-only
WebSite: https://www.secuso.informatik.tu-darmstadt.de/en/secuso-home/
SourceCode: https://github.com/SecUSo/privacy-friendly-torchlight
IssueTracker: https://github.com/SecUSo/privacy-friendly-torchlight/issues
AutoName: Torchlight
Description: |-
Simple application to... | Update CV of Torchlight to 1.3 (4) | Update CV of Torchlight to 1.3 (4)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
ab31f55750274a0089ca2ec20036f280a0e509a6 | config/snpp_sdr.yml | config/snpp_sdr.yml | configs:
viirs:
driver: viirs_sdr.sh
options: "-z"
rdr_glob: "RNSCA-RVIRS*.h5"
atms:
driver: atms_sdr.sh
options: "-z"
rdr_glob: "RATMS-RNSCA*.h5"
cris:
driver: cris_sdr.sh
options: "-z"
rdr_glob: "RCRIS-RNSC*.h5"
limits:
processor: 1
env: /opt/cspp/SDR_2_0/cspp_sdr_env.sh
| configs:
viirs:
driver: viirs_sdr.sh
options: "-z -e"
rdr_glob: "RNSCA-RVIRS*.h5"
atms:
driver: atms_sdr.sh
options: "-z"
rdr_glob: "RATMS-RNSCA*.h5"
cris:
driver: cris_sdr.sh
options: "-z"
rdr_glob: "RCRIS-RNSC*.h5"
limits:
processor: 1
env: /opt/cspp/SDR_2_0/cspp_sdr_env.sh
| Add -e flag to viirs_sdr processing | Add -e flag to viirs_sdr processing
| YAML | apache-2.0 | gina-alaska/sandy-utils,gina-alaska/sandy-utils,gina-alaska/sandy-utils |
e999065cb8c95368e1ad9192b82f0749b57fc5c4 | recipes/zen3geo/meta.yaml | recipes/zen3geo/meta.yaml | {% set name = "zen3geo" %}
{% set version = "0.3.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/zen3geo-{{ version }}.tar.gz
sha256: 09e84306809d03899155510f75dff83023e301c95bb0835b7bf5c34e58c72720
build:
noarch: python
s... | {% set name = "zen3geo" %}
{% set version = "0.3.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/zen3geo-{{ version }}.tar.gz
sha256: 09e84306809d03899155510f75dff83023e301c95bb0835b7bf5c34e58c72720
build:
noarch: python
s... | Set license to LGPL-3.0-or-later for SPDX compatibility | Set license to LGPL-3.0-or-later for SPDX compatibility
| YAML | bsd-3-clause | ocefpaf/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes |
7ee6e5b18bafad5c758f6c692a0180dc903729d8 | _data/_2021_members.yml | _data/_2021_members.yml | # -Example entry-
# - If you don't want to add cetain information just omit the line -
#- name: <Insert your name>
# short_bio: <One or two sentance about yourself>
# image_url: <Direct link to a photo of yourself, I suggest copying a image link from social media (Github, Twitter)>
# github: <Your github usern... | # -Example entry-
# - If you don't want to add cetain information just omit the line -
#- name: <Insert your name>
# short_bio: <One or two sentance about yourself>
# image_url: <Direct link to a photo of yourself, I suggest copying a image link from social media (Github, Twitter)>
# github: <Your github usern... | Add Chris Messmer to members | Add Chris Messmer to members
| YAML | mit | ACMatUC/acm-website,ACMatUC/acm-website,ACMatUC/acm-website |
b9d2b54237182a2a30c338b5776901d9eb04425f | examples/aws/docker-compose.yml | examples/aws/docker-compose.yml | version: "2.4"
services:
buildviz:
build: buildviz
volumes:
- ./data:/buildviz/data
image: cburgmer/buildviz
sync:
build: buildviz
command: schedule buildviz.teamcity.sync "https://guest@teamcity.jetbrains.com" --project TestNG --buildviz http://buildviz:3000
restart: always
imag... | version: "2.4"
services:
buildviz:
build: buildviz
volumes:
- ./data:/buildviz/data
image: cburgmer/buildviz
sync:
build: buildviz
command: schedule buildviz.teamcity.sync "https://guest@teamcity.jetbrains.com" --project KotlinTools --buildviz http://buildviz:3000
restart: always
... | Switch to a nicer example | Switch to a nicer example
| YAML | bsd-2-clause | cburgmer/buildviz,cburgmer/buildviz,cburgmer/buildviz |
85b6ed0c4f6f71bcea8c161876ab49ba6cfc7c4b | config/metric_writer.yml | config/metric_writer.yml | # Cloud Foundry Java Buildpack
# Copyright 2013-2019 the original author or authors.
#
# 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
#
# Un... | # Cloud Foundry Java Buildpack
# Copyright 2013-2019 the original author or authors.
#
# 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
#
# Un... | Disable Metric Writer by Default | Disable Metric Writer by Default
This change disables the metric writer by default.
[resolves #748]
Signed-off-by: Ben Hale <cf6bfba6a9cc3ab14105263f6e4be417b99c9860@pivotal.io>
| YAML | apache-2.0 | rakutentech/java-buildpack,cloudfoundry-community/jboss-buildpack,cloudfoundry/java-buildpack,rakutentech/java-buildpack,cloudfoundry-community/tomee-buildpack,cloudfoundry/java-buildpack,Appdynamics/java-buildpack,cloudfoundry-community/jboss-buildpack,cloudfoundry-community/tomee-buildpack,Appdynamics/java-buildpack |
baa3da6c0226110404e71ddba8651134891d3bbf | .poggit.yml | .poggit.yml | --- # Poggit-CI Manifest. Open the CI at https://poggit.pmmp.io/ci/diamond-gold/MiniBosses
build-by-default: true
branches:
- master
projects:
MiniBosses:
path: ""
icon: icon.png
...
| --- # Poggit-CI Manifest. Open the CI at https://poggit.pmmp.io/ci/diamond-gold/MiniBosses
build-by-default: true
branches:
- master
projects:
MiniBosses:
path: ""
icon: icon.png
lint:
phpstan: false
...
| Disable phpstan, it is reporting non-existent problems??? | Disable phpstan, it is reporting non-existent problems???
| YAML | agpl-3.0 | diamond-gold/MiniBosses |
ef8a66fe9015de039fc0f06abe6473a0d0dc832d | .travis.yml | .travis.yml | language: ruby
env:
global:
- RUBY_GC_MALLOC_LIMIT=90000000
- RUBY_FREE_MIN=200000
services:
- redis
addons:
postgresql: 9.3
rvm:
- jruby-19mode
jdk:
- oraclejdk7
- openjdk6
matrix:
include:
- rvm: 1.9.3
jdk:
- rvm: 2.0.0
jdk:
- rvm: rbx-2.1.1
jdk:
allow_failures:
... | language: ruby
env:
global:
- RUBY_GC_MALLOC_LIMIT=90000000
- RUBY_FREE_MIN=200000
services:
- redis
addons:
postgresql: 9.3
rvm:
- jruby-19mode
jdk:
- oraclejdk7
- openjdk6
matrix:
include:
- rvm: 1.9.3
jdk:
- rvm: 2.0.0
jdk:
- rvm: 2.1.0
jdk:
- rvm: rbx-2.1.1
... | Add MRI 2.1.0 to the mix | Add MRI 2.1.0 to the mix
And allow it to fail (for now).
| YAML | mit | developerfm/travis-core,Tiger66639/travis-core,GistIcon/travis-core,GistIcon/travis-core,GistIcon/travis-core,travis-ci/travis-core,final-ci/travis-core,jantman/travis-core,final-ci/travis-core,kidaa/travis-core,travis-ci/travis-core,kidaa/travis-core,Tiger66639/travis-core,Tiger66639/travis-core,kidaa/travis-core,deve... |
25d25f314c61dd1b07651d18873f73b0d6b21ab5 | .travis.yml | .travis.yml | language: python
python:
- "3.5"
- "3.6-dev"
install:
- pip install tox coveralls
script:
- if [[ $TRAVIS_PYTHON_VERSION != 3.6-dev ]]; then tox; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3.6-dev ]]; then tox -e py36-pytest28,py36-pytest29,py36-pytest30; fi
after_success:
- coveralls
deploy:
provider: pypi... | language: python
python:
- "3.6"
install:
- pip install tox coveralls
script:
- tox
after_success:
- coveralls
deploy:
provider: pypi
user: nicoddemus
password:
secure: bB4adUZVIkt31cmNklskyIDNehujKToGnStnlunp7P8CBF6CGeNqkYU17emAPvfZbTb/ClUpiO9r6AD1ej32Uyr+I8qUyhuYtHG3JGp+WRR/tw+ytAZIJ9i+PMjBv1RAd... | Remove special case for python 3.6-dev from Travis | Remove special case for python 3.6-dev from Travis
| YAML | mit | pytest-dev/pytest-mock |
0e6f3fa4f31e528ae7df464411daa154db06644b | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
env:
- KRB5_PPAS="" # 1.10
- KRB5_PPAS="sssd/updates" # 1.12
- KRB5_PPAS="rharwood/krb5-1.13 sssd/updates" # 1.13
install:
- "sudo sed -i '1i 127.0.0.1 test.box' /etc/hosts"
- "sudo hostname test.box"
- "for i in $KRB5_PPAS; do sudo apt-add-repository... | language: python
python:
- "2.7"
- "3.4"
env:
- KRB5_PPAS="" # 1.10
- KRB5_PPAS="sssd/updates" # 1.12
- KRB5_PPAS="rharwood/krb5-1.13 sssd/updates" # 1.13
- KRB5_PPAS="rharwood/krb5-master sssd/updates" # master
matrix:
exclude:
- python: "3.4"
env: KRB5_PPAS="" # 1.10
include:
- python:... | Add krb5-master target and pare down build matrix | Add krb5-master target and pare down build matrix
Since 4x3 build jobs will take quite some time, reduce it to 4x2 (+2-2). This
is a net reduction over the previous 3x3 but should not have significant loss
in coverage.
| YAML | isc | frozencemetery/python-gssapi,pythongssapi/python-gssapi,frozencemetery/python-gssapi,pythongssapi/python-gssapi,pythongssapi/python-gssapi,frozencemetery/python-gssapi |
d42df14d00dc5f265d44fec84ca4215558059c27 | .travis.yml | .travis.yml | language: python
# Restrict testing to system native python versions.
# This means that binary distributions can be used for the dependencies.
# Travis runs on Ubuntu 12.04 LTS currently. :(
python:
- "2.7"
- "3.2"
# - "3.3"
# - "pypy"
# Build inside docker containers instead of virtual machines. These are
# ... | language: python
# Restrict testing to system native python versions.
# This means that binary distributions can be used for the dependencies.
# Travis runs on Ubuntu 12.04 LTS currently. :(
python:
- "2.7"
- "3.4" # trusty's native python3 version
# - "pypy"
# Build inside docker containers instead of vi... | Update Travis config for build on trusty | Update Travis config for build on trusty
| YAML | mit | coldfix/udiskie,pstray/udiskie,pstray/udiskie,coldfix/udiskie |
dcc2f9a3b807ed70353fef16f281d77cab23cfc0 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "pypy"
install:
- sudo apt-get install zlib1g zlib1g-dev
- sudo ln -s /usr/lib/x86_64-linux-gnu/libz.so /usr/lib/
- pip install PIL --use-mirrors ; true
script: tests/alltests.py
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "pypy"
install:
- sudo apt-get install zlib1g zlib1g-dev
- sudo ln -s /usr/lib/x86_64-linux-gnu/libz.so /usr/lib/
- pip install pillow --use-mirrors ; true
script: tests/alltests.py
| Move from PIL to Pillow (PIL fork with Python 3 support). | Move from PIL to Pillow (PIL fork with Python 3 support). | YAML | mit | cburschka/NBT,twoolie/NBT,fwaggle/NBT,macfreek/NBT,devmario/NBT |
8c861f9d61b096b818babfef2df306e145c8a1fb | metadata/com.winston69.simpill.yml | metadata/com.winston69.simpill.yml | Categories:
- Sports & Health
License: GPL-3.0-only
AuthorName: Stephen
AuthorEmail: simpilldev@gmail.com
SourceCode: https://gitlab.com/Winston69/simpill
IssueTracker: https://gitlab.com/Winston69/simpill/-/issues
Bitcoin: bc1qy8avhvsmptrqkqyxw3w9kdc69p3dg4nky5u3gd
AutoName: Simpill
RepoType: git
Repo: https://git... | Categories:
- Sports & Health
License: GPL-3.0-only
AuthorName: Stephen
AuthorEmail: simpilldev@gmail.com
SourceCode: https://gitlab.com/Winston69/simpill
IssueTracker: https://gitlab.com/Winston69/simpill/-/issues
Bitcoin: bc1qy8avhvsmptrqkqyxw3w9kdc69p3dg4nky5u3gd
AutoName: Simpill
RepoType: git
Repo: https://git... | Update Simpill to 1.0.3.2 (5) | Update Simpill to 1.0.3.2 (5)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
69580020783307be209f11e58f64d6eba0a57c04 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-19mode
- ruby-head
- jruby-head
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-19mode
- ruby-head
- jruby-head
| Remove the CI flag for now | Remove the CI flag for now
| YAML | mit | petervandenabeele/dbd |
e9ee92142c5c7282673acea81d40b2c8901c78af | .travis.yml | .travis.yml | language: c
sudo: false
env:
global:
- LUAROCKS=2.2.2
matrix:
- LUA=lua5.1
- LUA=lua5.2
- LUA=lua5.3
- LUA=luajit # latest stable version (2.0.3)
- LUA=luajit2.0 # current head of 2.0 branch
- LUA=luajit2.1 # current head of 2.1 branch
branches:
only:
- master
before_inst... | language: c
sudo: false
env:
global:
- LUAROCKS=2.2.2
matrix:
- LUA=lua5.1
- LUA=lua5.2
- LUA=lua5.3
- LUA=luajit # latest stable version (2.0.3)
- LUA=luajit2.0 # current head of 2.0 branch
- LUA=luajit2.1 # current head of 2.1 branch
branches:
only:
- master
before_inst... | Fix libuv build on Travis | Fix libuv build on Travis | YAML | mit | tbastos/lift |
9d227f327e725164c3266be74cf5c00678edad13 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- rbx-18mode
- rbx-19mode | Remove jruby from test matrix | Remove jruby from test matrix
| YAML | mit | sosedoff/lxc-ruby |
0ee0512a353922aa1cd44d9a1bc6081145c2d099 | .travis.yml | .travis.yml | language: python
os:
- linux
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
- nightly
env:
global:
- VENV_ARGS="--system-site-packages"
install:
- pip install -U pip setuptools
- pip install .
- pip install PyYAML
- pip install coverage
- pip install coveralls
script:
- coverage run --source=exchangelib setup.py test
af... | language: python
os:
- linux
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
- nightly
install:
- pip install -U pip setuptools
- pip install cython
- pip install git+ssh://git@github.com/lxml/lxml.git
- pip install .
- pip install PyYAML
- pip install coverage
- pip install coveralls
script:
- coverage run --source=exchangeli... | Install lxml from GitHub instead of apt hack | Install lxml from GitHub instead of apt hack
Supposedly there's a fix in 4.0.0 for python nightly (3.7-pre) builds. | YAML | bsd-2-clause | ecederstrand/exchangelib |
9a66b76c9f70117ec7118e7e62c9785a47133534 | .travis.yml | .travis.yml | language: common-lisp
sudo: required
env:
matrix:
- LISP=allegro
- LISP=ccl
- LISP=ccl32
- LISP=clisp
- LISP=ecl
- LISP=sbcl
- LISP=sbcl32
install:
# Install cl-travis
- curl https://raw.githubusercontent.com/glv2/cl-travis/master/install.sh | bash
script:
- cl -l ironclad -l iron... | language: common-lisp
sudo: required
env:
matrix:
- LISP=allegro
- LISP=ccl-bin
- LISP=clisp
- LISP=ecl
- LISP=sbcl-bin
matrix:
allow_failures:
- env: LISP=allegro
- env: LISP=clisp
install:
- curl -L https://raw.githubusercontent.com/snmsts/roswell/release/scripts/install-for-ci.sh... | Use Roswell with Travis CI | Use Roswell with Travis CI
| YAML | bsd-3-clause | sharplispers/ironclad,eadmund/ironclad,glv2/ironclad |
733678ee63b500064cd365b59402fe79c7ad7066 | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: '5.5'
env: PHP_VERSION_USED="5.5"
- php: '5.6'
env: PHP_VERSION_USED="5.6"
- php: '7.0'
env: PHP_VERSION_USED="7.0"
- php: '7.1'
env: PHP_VERSION_USED="7.1"
- php: hhvm
env: PHP_VERSION_USED="hhvm"
before_script:
- wget https:... | language: php
matrix:
include:
- php: '5.5'
env: PHP_VERSION_USED="5.5"
- php: '5.6'
env: PHP_VERSION_USED="5.6"
- php: '7.0'
env: PHP_VERSION_USED="7.0"
- php: '7.1'
env: PHP_VERSION_USED="7.1"
- php: hhvm
env: PHP_VERSION_USED="hhvm"
before_script:
- wget https:... | Fix tests not running under PHP 7.1 | Fix tests not running under PHP 7.1
| YAML | apache-2.0 | arangodb/arangodb-php,diabl0/arangodb-php,arangodb/arangodb-php,diabl0/arangodb-php |
f3ce8a389357f56cc0ff65c14fe4a0349027344c | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "4"
- "5"
install:
- npm install
script:
- npm run check
- npm run build
- npm run validate
- npm run integration-test
after_success:
- npm run coveralls
| language: node_js
node_js:
- "0.12"
- "4"
- "5"
- "6"
install:
- npm install
script:
- npm run check
- npm run build
- npm run validate
- npm run integration-test
after_success:
- npm run coveralls
| Add Node.js version 6 to Travis CI configuration | Add Node.js version 6 to Travis CI configuration
| YAML | mit | ritterim/markdown-proofing |
ed768d8df52d0d0786404406b2115d8f6913fa8b | config/worker.nodejs.yml | config/worker.nodejs.yml | queue: builds.nodejs
shell:
buffer: 2.0
| queue: builds.nodejs
shell:
buffer: 2.0
timeouts:
before_install: 240
install: 240
before_script: 240
script: 720
| Use modest timeout values for node.js/php workers | Use modest timeout values for node.js/php workers
Ruby workers require higher values because huge projects like Diaspora
and RefineryCMS need more time running. We will adjust these timeouts
over time if the need arises.
| YAML | mit | ireznice/travis-worker,ireznice/travis-worker,gavioto/travis-worker,final-ci/travis-worker,travis-ci/travis-worker,final-ci/travis-worker,gavioto/travis-worker,travis-ci/travis-worker |
ab82c977ecb0e5afde4e8f5b95aed21101756d1e | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- 4
- 5
sudo: false
cache:
directories:
- node_modules
script:
- npm test
- npm run lint
| ---
language: node_js
node_js:
- '4'
- node
sudo: false
cache:
directories:
- node_modules
script:
- npm test
- npm run lint
| Configure Travis CI to test on Node.js 4 and current | Configure Travis CI to test on Node.js 4 and current
| YAML | mit | kemitchell/reviewers-edition-compare.js |
232dfe6f8925e7b3828052b5f015ab7a07524600 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- pypy
- 3.2
- 3.3
- 3.4
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
- if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then pip install -r requirements.pip; fi
- if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then ... | language: python
python:
- 2.6
- 2.7
- pypy
- 3.2
- 3.3
- 3.4
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
- if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then pip install -r requirements.pip; fi
- if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then ... | Add verbose flag to see where pypy is hanging | Add verbose flag to see where pypy is hanging
(on travis)
| YAML | bsd-3-clause | gmr/queries,gmr/queries |
fe5f9c055c3684ed7679f6df3af10cedc017e9c7 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
- 0.12
# Use container-based Travis infrastructure.
sudo: false
branches:
only:
- master
before_install:
# GUI for real browsers.
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- npm run check-ci
# Prune deps to just production and ensure we can... | language: node_js
node_js:
- 0.10
- 0.12
- 4.2
# Use container-based Travis infrastructure.
sudo: false
branches:
only:
- master
before_install:
# GUI for real browsers.
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- npm run check-ci
# Prune deps to just production and ensur... | Add Node 4.2 to Travis build | Add Node 4.2 to Travis build | YAML | mit | FormidableLabs/ecology,aurelienshz/ecology,FormidableLabs/ecology,aurelienshz/ecology |
4673f9834a194338202fa2986ba8cbc46452dc7a | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction
script:
- composer test
| # Use Docker environment
sudo: false
# Setup build matrix
language: php
php:
- 5.6
- 7.0
- hhvm
env:
matrix:
- PREFER_LOWEST="--prefer-lowest"
- PREFER_LOWEST=""
# Dependencies
before_install:
- travis_retry composer self-update
install:
- travis_retry composer update --no-interaction --prefer-s... | Remove extra versions from Travis file | Remove extra versions from Travis file
| YAML | mit | Anahkiasen/versioner |
5ab1f2e8e22723e884e1e8c1a83d9ca1373ec87d | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
# Coverage report on Coveralls
after_success:
- mvn cobertura:cobertura coveralls:report
# Coverity scan
# Execute only for builds on branch coverity_scan
env:
global:
- secure: "ifRt6xnHiBcwCBe7sJX+kUep8Vk4NAVlBcuCCPmFafZ8iHNKSvwqr8ajIIRuMEVHp1CyLUv5paPuGMAE+ivVEPLyHvhwbFQd... | language: java
sudo: false
jdk:
- oraclejdk7
# Coverage report on Coveralls
after_success:
- mvn cobertura:cobertura coveralls:report
# Coverity scan
# Execute only for builds on branch coverity_scan
env:
global:
- secure: "ifRt6xnHiBcwCBe7sJX+kUep8Vk4NAVlBcuCCPmFafZ8iHNKSvwqr8ajIIRuMEVHp1CyLUv5paPuGMAE+iv... | Modify Travis config for non-legacy infrastructure | Modify Travis config for non-legacy infrastructure
| YAML | mit | cyChop/property-mapper |
6665b013e9a1be5654e80ab05b1b35371569eccf | .travis.yml | .travis.yml | language: erlang
otp_release:
- R15B01
- R14B04
script: make clean test
branches:
only:
- master
notifications:
email:
recipients:
- zotonic-commits@googlegroups.com
on_success: change #[always|never|change] # default: change
on_failure: always #[always|never|change] # default: always
| language: erlang
otp_release:
- 17.0
- R16B
- R15B03
script: make clean test
branches:
only:
- master
notifications:
email:
recipients:
- zotonic-commits@googlegroups.com
on_success: change #[always|never|change] # default: change
on_failure: always #[always|never|change] # default: alwa... | Build R15B03 and up on Travis-CI | Build R15B03 and up on Travis-CI
| YAML | apache-2.0 | zotonic/z_stdlib |
b28f8511bcc3f18e719e074f58fa15f65aa762fa | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.0
- 2.1.5
- 2.1.4
- 2.0.0
- 1.9.3
- ruby-head
- jruby-1.7.18
- jruby-head
- rbx-2
jdk:
- oraclejdk8
sudo: false
branches:
only:
- master
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: 1.9.3
script: "rake compile && bundle exec rs... | language: ruby
rvm:
- 2.2.0
- 2.1.5
- 2.1.4
- 2.0.0
- 1.9.3
- ruby-head
- jruby-1.7.18
- jruby-head
- rbx-2
jdk:
- oraclejdk8
sudo: false
branches:
only:
- master
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: 1.9.3
script: "rake compile && bundle exec rs... | Set Travis test script back to documentation format. | Set Travis test script back to documentation format.
| YAML | mit | MadBomber/concurrent-ruby,MadBomber/concurrent-ruby,hobodave/concurrent-ruby,rranelli/concurrent-ruby,hsavit1/concurrent-ruby,colinsurprenant/concurrent-ruby,hobodave/concurrent-ruby,philipmw/concurrent-ruby,philipmw/concurrent-ruby,colinsurprenant/concurrent-ruby,marshall-lee/concurrent-ruby,lucasallan/concurrent-ruby... |
909a46a948fb36c607d761b114adcaf36779bd1f | .travis.yml | .travis.yml | language: node_js
node_js:
- "10"
- "12"
- "14"
script:
- npm test
jobs:
include:
- stage: release
node_js: lts/*
deploy:
provider: script
skip_cleanup: true
script:
- npx semantic-release
| language: node_js
node_js:
- '10'
- '12'
- '14'
script:
- npm test
jobs:
include:
- stage: release
node_js: lts/*
deploy:
provider: script
skip_cleanup: true
script:
- npx semantic-release
env:
global:
secure: cYzGRWo45pJAuZ46xwni1xpNYlmZfQpMNmfKjSppTTlEc4vLgNXvl6/npkU5m10putrg... | Add env var as encrypted string | chore: Add env var as encrypted string
| YAML | mit | runk/node-geolite2,runk/node-geolite2 |
103d7b255e131f46a406a79ed0eb51b793944da8 | .travis.yml | .travis.yml | script: make
| # The project doesn't really use node.js, but we want npm
language: node_js
before_script:
- npm install -g esprima
script: make && esvalidate *.js
| Add syntax validation in Travis | Add syntax validation in Travis
| YAML | mit | LiquidFire/jisho-quick-radicals |
8efd324645826b3613566b678d4cb9f06d4a2065 | .travis.yml | .travis.yml | language: csharp
solution: OpenGL.Net_Mono.sln
addons:
apt:
packages:
- xserver-xorg-video-dummy
- xpra
- mesa-utils
install:
- sudo nuget update -self
- sudo nuget restore OpenGL.Net_Mono.sln
- sudo nuget restore OpenGL.Net_VC14.sln
before_script:
- "export DISPLAY=:99.0"
- "sh... | language: csharp
solution: OpenGL.Net_Mono.sln
addons:
apt:
packages:
- xserver-xorg-video-dummy
- xpra
- mesa-utils
install:
- sudo nuget update -self
- sudo nuget restore OpenGL.Net_Mono.sln
- sudo nuget restore OpenGL.Net_VC14.sln
before_script:
- "export DISPLAY=:99.0"
- "sh... | Exclude .NET 3.5 test binaries. | Exclude .NET 3.5 test binaries.
| YAML | mit | luca-piccioni/OpenGL.Net,luca-piccioni/OpenGL.Net |
a89deab30c4c3b5724824b4308acaab15e0ec50b | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
before_install: npm install -g grunt-cli
| language: node_js
node_js:
- "0.10"
before_install: npm install -g grunt-cli
| Remove Node 0.11 from Travis builds | Remove Node 0.11 from Travis builds
| YAML | agpl-3.0 | inspireteam/geogw,jdesboeufs/geogw |
31ff8e6b6ebd8a87d9e95f8afc7ca79f996b4911 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.3
- 2.2.6
- jruby-1.7.20
- jruby-9.1.7.0
env:
global:
- JRUBY_OPTS="--debug"
after_success:
- bundle exec codeclimate-test-reporter
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
- jruby-1.7.20
- jruby-9.1.7.0
env:
global:
- JRUBY_OPTS="--debug"
after_success:
- bundle exec codeclimate-test-reporter
| Test with latest Ruby versions | Test with latest Ruby versions | YAML | mit | jbox-web/job-database-manager |
10062b68aa4eeb2617fc6ee3c4e2a51fbc9e4da1 | .travis.yml | .travis.yml | ---
language: python
python:
- "2.7"
# - "3.3"
# - "3.4"
# command to install dependencies
services:
- mysql
before_install:
- 'mysql -e "create database if not exists downstream;" -u root'
install:
- "pip install ."
# command to run tests
script: nosetests -v tests/ | ---
language: python
python:
- "2.7"
# - "3.3"
# - "3.4"
# command to install dependencies
services:
- mysql
before_install:
- 'mysql -e "create database if not exists downstream;" -u root'
install:
- "pip install --allow-external ."
# command to run tests
script: nosetests -v tes... | Add --allow-external to nab Hearbeat release from GitHub | Add --allow-external to nab Hearbeat release from GitHub
| YAML | mit | Storj/downstream-node,Storj/downstream-node |
251735bacc8483bbc3aa487cffcca200e6bbe0e7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
script: bundle exec rake spec
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ree
script: bundle exec rake spec
| Add support version of ruby | Add support version of ruby
| YAML | mit | astockwell/ruby-net-ldap,bkeepers/ruby-net-ldap,javanthropus/ruby-net-ldap,astockwell/ruby-net-ldap,cloudvolumes/ruby-net-ldap,cloudvolumes/ruby-net-ldap,bkeepers/ruby-net-ldap,javanthropus/ruby-net-ldap |
b7382555f831f7f960ca5dc694a9af766e345cd4 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
env:
- MONGO_VERSION=1.3.4
services: mongodb
before_script:
- pecl -q install -f mongo-${MONGO_VERSION} && echo "extension=mongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
- composer install --dev
script: phpunit --coverage-text
| language: php
php:
- 5.3
- 5.4
services: mongodb
before_script:
- pecl -q install -f mongo && echo "extension=mongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
- composer install --dev
script: phpunit --coverage-text
| Remove Mongo version for Travis | Remove Mongo version for Travis
| YAML | mit | yedey/SonataDoctrineMongoDBAdminBundle,zajca/SonataDoctrineMongoDBAdminBundle,zajca/SonataDoctrineMongoDBAdminBundle,yedey/SonataDoctrineMongoDBAdminBundle,zajca/SonataDoctrineMongoDBAdminBundle,zajca/SonataDoctrineMongoDBAdminBundle,yedey/SonataDoctrineMongoDBAdminBundle,peterkokot/SonataDoctrineMongoDBAdminBundle |
c4570fe58a04947cbc4181d231cd7de1c367037f | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
before_script:
- npm install -g gulp
script: gulp | language: node_js
node_js:
- "8"
- "7"
before_script:
- npm install -g gulp
script: gulp | Add support for Node v8 | Add support for Node v8
| YAML | mit | WarenGonzaga/AnimateCSSPlugin,WarenGonzaga/AnimateCSSPlugin |
9b4bd14438cbbb58257d182410947182ed9980b1 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 1.9.3
services: postgresql
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
- sqlite3 travis_ci_test ''
- "cp config/database.yml.test config/database.yml"
env:
- TABLETASK_ENV=postgresql_test
- TABLETASK_ENV=sqlite_test
notifications:
email:
... | language: ruby
cache: bundler
rvm:
- 1.9.3
services: postgresql
before_script:
- psql -c 'create database ci_test;' -U postgres
- sqlite3 ci_test ''
- "cp config/database.yml.test config/database.yml"
env:
- TABLETASK_ENV=postgresql_test
- TABLETASK_ENV=sqlite_test
notifications:
email:
on_success: ... | Make Travis work w/ generic db names | Make Travis work w/ generic db names
| YAML | mit | shahin/data_task |
53e3e841de491ac56b1e3122bac6fba67bc3c36e | .travis.yml | .travis.yml | rvm:
- jruby
- jruby-head
- 1.8.7
- 1.9.2
- 1.9.3
branches:
only:
- master
env:
- JRUBY_OPTS="--1.8 --server -Xcext.enabled=false -Xcompile.invokedynamic=false"
- JRUBY_OPTS="--1.9 --server -Xcext.enabled=false -Xcompile.invokedynamic=false"
| rvm:
- jruby
- jruby-head
- 1.8.7
- 1.9.2
- 1.9.3
branches:
only:
- master
env:
- JRUBY_OPTS="--1.8 --server -Xcext.enabled=false -Xcompile.invokedynamic=false"
- JRUBY_OPTS="--1.9 --server -Xcext.enabled=false -Xcompile.invokedynamic=false"
matrix:
exclude:
- rvm: 1.8.7
env:
- J... | Reduce matrix, exclude MRI-JRUBY_OPTS permutations | Reduce matrix, exclude MRI-JRUBY_OPTS permutations | YAML | mit | atambo/warbler,mkristian/warbler,idibon/warbler,mkristian/warbler,fedenusy/warbler,idibon/warbler,ctreatma/warbler,idibon/warbler,atambo/warbler,fedenusy/warbler,idibon/warbler,ctreatma/warbler,mkristian/warbler,fedenusy/warbler,fedenusy/warbler,ctreatma/warbler,ctreatma/warbler |
0a7c70d3257406745e30e1f450e26e6197c28513 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.4
- 5.3
- hhvm
before_script:
- composer self-update
- composer update
script:
- phpunit -c tests.xml | language: php
php:
- 5.5
- 5.4
- 5.3
- hhvm
before_script:
- composer self-update
- composer update
script:
- vendor/bin/phpunit -c tests.xml
| Use locally-installed PHPUnit instead of phar | Travis: Use locally-installed PHPUnit instead of phar | YAML | mit | rkrx/php-service-dispatcher |
43b0d21f98238df282159347e8b6d4ee329853de | .travis.yml | .travis.yml | sudo: false
language: rust
rust:
- stable
- beta
- nightly
install:
- nvm install stable
- nvm use stable
- npm install ffi glob
- gem install ffi
script:
- cargo build
- cd python && python main.py
- cd ../node && node main.js
- cd ../ruby && ruby main.rb
| sudo: false
language: rust
rust:
- stable
- beta
- nightly
install:
- nvm install stable
- nvm use stable
- npm install ffi glob
- gem install ffi
script:
- make node
- make python
- make ruby
| Use make commands on Travis CI. | Use make commands on Travis CI.
| YAML | mit | zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools,zsiciarz/rust-ffi-stringtools |
4c2e3d72c686424452eef05fde025aa649f15893 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "nightly"
install: pip install -r dev-requirements.txt
sudo: required
services:
- docker
env:
MINIO_STORAGE_ENDPOINT: "localhost:9000"
MINIO_STORAGE_ACCESS_KEY: weak_access_key
MINIO_STORAGE_SECRET_KEY: weak_secret_key
before_instal... | language: python
python:
# - "2.7"
- "3.4"
- "3.5"
- "nightly"
install: pip install -r dev-requirements.txt
sudo: required
services:
- docker
env:
MINIO_STORAGE_ENDPOINT: "localhost:9000"
MINIO_STORAGE_ACCESS_KEY: weak_access_key
MINIO_STORAGE_SECRET_KEY: weak_secret_key
before_inst... | Disable CI for python 2 | Disable CI for python 2
See #6 for discussion
| YAML | apache-2.0 | tomhoule/django-minio-storage |
9bf60ee139b72ad15bb8ad4f3485debbd2b8bd28 | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- master
matrix:
allow_failures:
- php: 7.4snapshot
sudo: false
install:
- composer install
script:
- ./vendor/bin/phpunit
notifications:
email: false
| language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- master
matrix:
allow_failures:
- php: 7.4snapshot
- php: master
sudo: false
install:
- composer install
script:
- ./vendor/bin/phpunit
notifications:
email: false
| Allow failures on PHP master | Allow failures on PHP master
| YAML | mit | Trainmaster/Vision |
abc54f36bfd9975c5e2f2968cfac3405c7a4d795 | .travis.yml | .travis.yml | language: ruby
notifications:
irc: "irc.freenode.org#axlsx"
email:
recipients:
- digital.ipseity@gmail.com
on_success: always
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- rbx-18mode
- rbx-19mode
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
... | language: ruby
notifications:
irc: "irc.freenode.org#axlsx"
email:
recipients:
- digital.ipseity@gmail.com
on_success: always
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- rbx-18mode
- rbx-19mode
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
... | Test a suggestion from @hsbt | Test a suggestion from @hsbt
| YAML | mit | clarkcutler/axlsx,randym/axlsx,alexanderfrankel/axlsx,Debiancc/axlsx,nilbus/axlsx,kappiah/axlsx,sh-ft/axlsx,romuloceccon/axlsx,woto/axlsx,mromulus/axlsx,VueOps/axlsx,sr-education/axlsx,raghavendra-prithvi/axlsx,legitscript/axlsx,pedrogarrett/axlsx,bradstewart/axlsx |
8411cf5ca828438ea2c44fe3cfb4832725627647 | ansible/deploy-ose.yaml | ansible/deploy-ose.yaml | - name: deploy OSE
hosts: installer
tasks:
- name: run deployment playbook
command: ansible-playbook /usr/share/ansible/openshift-ansible/playbooks/byo/config.yml
become: false
| - name: deploy OSE
hosts: installer
tags:
- install
tasks:
- name: run deployment playbook
command: ansible-playbook /usr/share/ansible/openshift-ansible/playbooks/byo/config.yml
become: false
- name: configure OSE components
hosts: demo-ose-master-1
tasks:
- name: deploy internal r... | Add task to configure the registry. | Add task to configure the registry.
| YAML | apache-2.0 | ajsmith/ose3-deployment-demo |
c0a44abcf7d0069f351671ee2830ccc03a1c6099 | .travis.yml | .travis.yml | sudo: required
language:
- cpp
compiler:
- gcc
addons:
apt:
sources:
-ubuntu-toolchain-r-test
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq
install:
- apt-get update
- apt-get install g++-4.8
- update-alternatives --install /usr/bin/g++ g++ /user/bin/g++-4.8 90
- upd... | sudo: false
language:
- cpp
compiler:
- gcc
addons:
apt:
sources:
-ubuntu-toolchain-r-test
before_install:
- apt-get update -qq
- apt-get install -qq
install:
- apt-get update
- apt-get install g++-4.8
- update-alternatives --install /usr/bin/g++ g++ /user/bin/g++-4.8 90
- update-alternati... | Edit .travs.yml in another attempt to instal gcc-4.8 again, sudo false | Edit .travs.yml in another attempt to instal gcc-4.8 again, sudo false
| YAML | mit | destessm/intro-to-game-dev,destessm/intro-to-game-dev,destessm/intro-to-game-dev,destessm/intro-to-game-dev |
abe4612fa3e77984bae49cef3eddfbcca9d5f73f | src/manifest.json.yml | src/manifest.json.yml | ---
name: reasonable
version: "2.3.4"
manifest_version: 2
description: For a site called reason, you'd think it would block trolls, help users
navigate comment threads, and show inline media. (Drink.)
icons:
'128': /img/icon_128.png
'16': /img/icon_16.png
'32': /img/icon_32.png
'48': /img/icon_48.pn... | ---
name: reasonable
version: "2.3.4"
manifest_version: 2
description: For a site called reason, you'd think it would block trolls, help users
navigate comment threads, and show inline media. (Drink.)
icons:
'128': /img/icon_128.png
'16': /img/icon_16.png
'32': /img/icon_32.png
'48': /img/icon_48.pn... | Fix quotation of matching URLs in manifest | Fix quotation of matching URLs in manifest
| YAML | mit | brymck/reasonable,brymck/reasonable,brymck/reasonable |
9e1090ef616d0dc3b8473866a493a9a93abd200d | .travis.yml | .travis.yml | language: java
| language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
matrix:
fast_finish: true
allow_failures:
- jdk: oraclejdk8
| Allow Travis CI to build with JDK 8, but ignore failures | Allow Travis CI to build with JDK 8, but ignore failures
| YAML | lgpl-2.1 | zanata/zanata-platform,zanata/zanata-platform,zanata/zanata-platform,zanata/zanata-platform,zanata/zanata-platform,zanata/zanata-platform,zanata/zanata-platform |
b33d659cf4ca8b4fc4457d6b5e3587348145fa75 | .travis.yml | .travis.yml | # see http://about.travis-ci.org/docs/user/languages/php/ for more hints
language: php
sudo: false
# list any PHP version you want to test against
php:
- 5.4
- 5.5
- 5.6
# optionally specify a list of environments, for example to test different RDBMS
env:
- SPOT_DB=mysql
- SPOT_DB=pgsql
- SPOT_DB=sqlite
... | # see http://about.travis-ci.org/docs/user/languages/php/ for more hints
language: php
sudo: false
# list any PHP version you want to test against
php:
- 5.4
- 5.5
- 5.6
# optionally specify a list of environments, for example to test different RDBMS
env:
- SPOT_DB=mysql
- SPOT_DB=pgsql
- SPOT_DB=sqlite
... | Install dependencies in install section | Fix: Install dependencies in install section
| YAML | bsd-3-clause | tuupola/spot2,NekaKawaii/spot2,vlucas/spot2,geggleto/spot2,localheinz/spot2,mitschool/spot2,splio-aleroux/spot2,willemwollebrants/spot2 |
54f5c7c8cd9ebf3f690503ff21fa3d839ac2628e | .travis.yml | .travis.yml | sudo: false
language: ruby
cache: bundler
matrix:
include:
- rvm: 2.0
- rvm: 2.1.10
- rvm: 2.2.10
- rvm: 2.3.7
- rvm: 2.4.4
- rvm: 2.5.1
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
branches:
only:
- master
bundler_args: --without docs development
script: bundle exec rak... | sudo: false
language: ruby
cache: bundler
matrix:
include:
- rvm: 2.0
- rvm: 2.1.10
- rvm: 2.2.10
- rvm: 2.3.8
- rvm: 2.4.5
- rvm: 2.5.3
- rvm: 2.6
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
branches:
only:
- master
bundler_args: --without docs development
script: ... | Add Ruby 2.6 testing in Travis | Add Ruby 2.6 testing in Travis
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef/mixlib-versioning,chef/mixlib-versioning |
d957fde8741aa26a3d64e4f615a780f01a44d49c | .travis.yml | .travis.yml | language: java
sudo: false
install:
- mvn install
deploy:
provider: releases
api_key:
secure: aMJRj29EMLocCiy7gmBnYxI/A1vR8Tu1q9PzzVdgcZJXSzSFHFDmhgDzOqgGIpEmlAMMLHPEFZGnwen8NLeMM6eyRqbDqavmWddVSz0L5hf8YXsAAWEpjjfIspTWTxGtM7xIAaBZ9uFKCLpSn9kXP4W2OB67L4Hr7V8wN4+/ET0=
file: target/WildSex.jar
on:
tags: ... | language: java
jdk:
- oraclejdk8
sudo: false
install:
- mvn install
deploy:
provider: releases
api_key:
secure: aMJRj29EMLocCiy7gmBnYxI/A1vR8Tu1q9PzzVdgcZJXSzSFHFDmhgDzOqgGIpEmlAMMLHPEFZGnwen8NLeMM6eyRqbDqavmWddVSz0L5hf8YXsAAWEpjjfIspTWTxGtM7xIAaBZ9uFKCLpSn9kXP4W2OB67L4Hr7V8wN4+/ET0=
file: target/WildSex.... | Set Java version to Java 8 | Set Java version to Java 8
| YAML | mit | sultanskyman/WildSex,DrkMatr1984/WildSex |
7eaf879747cf425bddb77a0dc3c6543a9e54044a | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.2
| language: objective-c
osx_image: xcode8.2
env:
global:
- WORKSPACE=Withings-SDK-iOS.xcworkspace
- SCHEME=Withings-SDK-iOS
- EXAMPLE_SCHEME=Withings-SDK-iOS-Demo
- SDK=iphonesimulator10.0
- BUILD_EXAMPLE=YES
matrix:
- DESTINATION="OS=10.0,name=iPhone 7 Plus" POD_LINT="YES"
- DESTINATION="OS=9.0,nam... | Configure Travis to build the right schemes | Configure Travis to build the right schemes
| YAML | mit | jdrevet/Withings-SDK-iOS |
1e6fb276f464afe4d950ef73eab519d0156338d0 | .travis.yml | .travis.yml | dist: trusty
sudo: false
language: go
go:
- 1.8.4
- 1.9.1
os:
- linux
- osx
before_install:
- openssl aes-256-cbc -K $encrypted_f2f8be5bc079_key -iv $encrypted_f2f8be5bc079_iv
-in gogetcookie.sh.enc -out scripts/gogetcookie.sh -d
install:
# This script is used by the Travis build to install a cookie for
# ... | dist: trusty
sudo: false
language: go
go:
- 1.9.1
os:
- linux
- osx
before_install:
- openssl aes-256-cbc -K $encrypted_f2f8be5bc079_key -iv $encrypted_f2f8be5bc079_iv
-in gogetcookie.sh.enc -out scripts/gogetcookie.sh -d
install:
# This script is used by the Travis build to install a cookie for
# go.googles... | Stop building with Go 1.8 | Stop building with Go 1.8
| YAML | mit | ringods/terraform-provider-xenserver,ringods/terraform-provider-xenserver,ringods/terraform-provider-xenserver |
d70bc7a90e7cfe430a8b175e54bf43927e1582bd | .travis.yml | .travis.yml | language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- rbx-19mode
- ruby-head
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPT... | language: ruby
before_install:
- gem update bundler
- bundle --version
- gem update --system 2.1.11
- gem --version
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- rbx-19mode
- ruby-head
matrix:
include:
- rvm: jruby-19mode
env: JR... | Add temporary workaround for failing build on Ruby 1.8.7 | Add temporary workaround for failing build on Ruby 1.8.7
Rubygems broke builds on Ruby 1.8.7:
https://github.com/travis-ci/travis-ci/issues/1793
https://github.com/rubygems/rubygems/pull/763
This patch is a temporary workaround until rubygems is updated.
| YAML | mit | dkubb/yardstick,backus/yardstick |
b3d633fadfe4abad10e0e8a0c9454c4f30bd7dbd | .travis.yml | .travis.yml | language: ruby
script: ./script/cibuild
before_install:
- "npm install jshint -g"
env:
- JQUERY_VERSION: 1.8.0
- JQUERY_VERSION: 1.8.1
- JQUERY_VERSION: 1.8.2
- JQUERY_VERSION: 1.8.3
- JQUERY_VERSION: 1.9.0
- JQUERY_VERSION: 1.9.1
- JQUERY_VERSION: 1.10.0
- JQUERY_VERSION: 1.10.1
- JQUERY_VERSION: 1... | language: ruby
script: ./script/cibuild
before_install:
- "npm install jshint -g"
env:
- JQUERY_VERSION: 1.8.0
- JQUERY_VERSION: 1.8.1
- JQUERY_VERSION: 1.8.2
- JQUERY_VERSION: 1.8.3
- JQUERY_VERSION: 1.9.0
- JQUERY_VERSION: 1.9.1
- JQUERY_VERSION: 1.10.0
- JQUERY_VERSION: 1.10.1
- JQUERY_VERSION: 1... | Test with jQuery 1.12.0 and 2.2.0 | Test with jQuery 1.12.0 and 2.2.0
| YAML | mit | rails/jquery-ujs,mycolorway/jquery-ujs,shakacode/jquery-ujs,callumacrae/jquery-ujs,mycolorway/jquery-ujs,callumacrae/jquery-ujs,rails/jquery-ujs,shakacode/jquery-ujs,mycolorway/jquery-ujs,callumacrae/jquery-ujs,shakacode/jquery-ujs,mycolorway/jquery-ujs,rails/jquery-ujs,shakacode/jquery-ujs,callumacrae/jquery-ujs,rails... |
3d0dfae83b6aee069009de080de66d546d384893 | .travis.yml | .travis.yml | language: node_js
node_js:
- iojs
- "0.12"
- "0.11"
- "0.10"
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- iojs
- "0.12"
- "0.10"
before_script:
- npm install -g grunt-cli
| Remove support for node 0.11 | Remove support for node 0.11
| YAML | mit | Rowno/sitemap-urls |
2a8ab780de9d38642051db22134765b4c7f21553 | .travis.yml | .travis.yml | language: node_js
sudo: false
before_script:
- npm install web-component-tester
- npm install bower
- 'export PATH=$PWD/node_modules/.bin:$PATH'
- bower install
branches:
only:
- gh-pages
- master
node_js: 4
addons:
firefox: latest
apt:
sources:
- google-chrome
packages:
- goog... | language: node_js
sudo: required
dist: trusty
before_script:
- npm install web-component-tester
- npm install bower
- 'export PATH=$PWD/node_modules/.bin:$PATH'
- bower install
branches:
only:
- gh-pages
- master
node_js: 4
addons:
firefox: latest
apt:
sources:
- google-chrome
packag... | Upgrade Travis CI to Ubuntu Trusty to fix Chrome usage in testing | Upgrade Travis CI to Ubuntu Trusty to fix Chrome usage in testing | YAML | mit | Juicy/juicy-html,Juicy/juicy-html |
d4378e47a573e02f3e9fe133186748b02038bc55 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
env:
global:
- SAMP_SDK_ROOT=$TRAVIS_BUILD_DIR/sdk
matrix:
- STATIC=ON
- STATIC=OFF
install:
- sudo apt-get update -qq
- sudo apt-get install -y gcc-multilib g++-multilib python-pip doxygen
- sudo pip install ply cidl
- wget http://www.cmake.org/fil... | language: cpp
compiler:
- gcc
- clang
env:
global:
- SAMP_SDK_ROOT=$TRAVIS_BUILD_DIR/sdk
matrix:
- STATIC=ON
- STATIC=OFF
install:
- sudo apt-add-repository -y ppa:kubuntu-ppa/backports
- sudo apt-get update -qq
- sudo apt-get install -y gcc-multilib g++-multilib cmake python-pip doxygen
... | Install CMake from a PPA | Install CMake from a PPA
This should fix the certificate issue on Travis CI:
Connecting to cmake.org (cmake.org)|66.194.253.19|:443... connected.
ERROR: no certificate subject alternative name matches
requested host name `cmake.org'.
To connect to cmake.org insecurely, use `--no-check-certificate'.
| YAML | apache-2.0 | WopsS/sampgdk,Zeex/sampgdk,Zeex/sampgdk,WopsS/sampgdk,WopsS/sampgdk,Zeex/sampgdk |
459e3c6693e37e95a5d6c4b89fb839108a9cd504 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
global:
- secure:
notifications:
email: false
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b -p $HOME/miniconda
- ... | sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
global:
- secure:
notifications:
email: false
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b -p $HOME/miniconda
- ... | Fix for cd'ing into Travis builddir. | Fix for cd'ing into Travis builddir.
| YAML | agpl-3.0 | csferrie/python-qinfer,QInfer/python-qinfer,ihincks/python-qinfer,whitewhim2718/python-qinfer,MichalKononenko/python-qinfer,Alan-Robertson/python-qinfer |
d2ff3cb52a32d9efb53d6a6f3533b8f350300a72 | .travis.yml | .travis.yml | rvm:
- 2.1
- 2.2
- 2.3
- 2.4
bundler_args: --jobs 7
branches:
only:
- master
before_install:
- gem install bundler
script: bundle exec rake travis:ci
notifications:
hipchat:
on_change: true
on_failure: true
on_success: false
on_pull_requests: false
rooms:
# Build Statuse... | language: ruby
cache: bundler
dist: xenial
sudo: false
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
bundler_args: --jobs 7
branches:
only:
- master
before_install:
- gem install bundler
script: bundle exec rake travis:ci
notifications:
hipchat:
on_change: true
on_failure: true
on_success: false
... | Enable caching and run on Xenial | Enable caching and run on Xenial
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef/artifactory-client,chef/artifactory-client |
4d4203080bdbba57d27b1dfaa2c69cdf43f98c89 | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 7.2
- 7.3
- 7.4snapshot
services: mongodb
before_install:
- pecl install -f mongodb
- composer validate --strict
before_script:
- composer install
script:
- ./vendor/bin/phpunit -v
| language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 7.2
- 7.3
- 7.4snapshot
services: mongodb
before_install:
- pecl install -f mongodb
- composer validate --strict
install:
- composer update --prefer-stable --prefer-dist ${COMPOSER_FLAGS}
script:
- ./vendor/bin/phpun... | Add test against lowest dependencies | Add test against lowest dependencies
| YAML | mit | doctrine/data-fixtures |
e495aaaf0b9dcea6bc8bc97d9143a0d7a649fa06 | .travis.yml | .travis.yml | # Travis (http://travis-ci.org/) is a continuous integration
# service for open source projects. This file configures
# Travis to install and run "tox" test runner, which is
# configured in tox.ini file.
language: python
install: pip install tox --use-mirrors
script: tox
| # Travis (http://travis-ci.org/) is a continuous integration
# service for open source projects. This file configures
# Travis to install and run "tox" test runner, which is
# configured in tox.ini file.
language: python
install: pip install tox --use-mirrors
script: tox
# Disable SSL (Python 2.5 does not have "ssl" ... | Disable SSL for pip inside Travis CI | Disable SSL for pip inside Travis CI
| YAML | mit | kenwilcox/docopt,wkentaro/docopt,devonjones/docopt,crcsmnky/docopt,docopt/docopt,snowsnail/docopt,jagguli/docopt,Zearin/docopt,benthomasson/docopt |
6244c8607620d1ebaf61679532eb972c7b2a1563 | .travis.yml | .travis.yml | # .travis.yml
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
before_script:
- npm run babel
- mysql -e 'create database knex_test;'
notifications:
email: false | # .travis.yml
sudo: false
language: node_js
node_js:
- '4'
- '5'
- '6'
- '7'
before_script:
- npm run babel
- mysql -e 'create database knex_test;'
notifications:
email: false | Drop support for Node 0.10 and 0.12 | Drop support for Node 0.10 and 0.12
| YAML | mit | vellotis/knex-generic-errors |
d014d3148b6af1a03294db377a9170e6f27e63f2 | .travis.yml | .travis.yml | language: go
go:
- 1.6.1
branches:
only:
- master
install: make
script:
- make test
sudo: false
| language: go
go:
- 1.6
branches:
only:
- master
install: make
script:
- make test
sudo: false
| Revert to Go 1.6 to see if that fixes Travis | Revert to Go 1.6 to see if that fixes Travis
| YAML | mpl-2.0 | tshak/consul,tugbabodrumlu/consul,youhong316/consul,i0rek/consul,hashicorp/consul,dankraw/consul,i0rek/consul,42wim/consul,andygoalkeeper/consul,pmalmgren/consul,sequenceiq/consul,pmalmgren/consul,rhyas/consul,scalp42/consul,calgaryscientific/consul,Thib17/consul,kingland/consul,rhyas/consul,youhong316/consul,scalp42/c... |
fb43ebfdcdeadd246c40aa7f9706482ed368d0d9 | .travis.yml | .travis.yml | language: node_js
node_js:
- '6'
- '7'
- '8'
- '9'
- '10'
before_script:
- npm install
script: npm test
| language: node_js
node_js:
- '6'
- '7'
- '8'
- '9'
- '10'
- '11'
- '12'
before_script:
- npm install
script: npm test
| Build from Node 6 to Node 12 | Build from Node 6 to Node 12
| YAML | mit | iredchuk/array-join,iredchuk/array-join |
3a8d1aa691c4dfa85f215d44db089c6e87bcd652 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
after_success:
- coveralls
rvm:
- 2.5.1
- 2.4.0
- ruby-head
- jruby-9.2.0.0
- jruby-head
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
| language: ruby
sudo: false
cache: bundler
after_success:
- coveralls
rvm:
- 2.4.0
- 2.5.1
- ruby-head
- jruby-9.2.0.0
- jruby-head
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
| Reorder ruby versions in .travil.yml | Reorder ruby versions in .travil.yml
for consistency.
| YAML | mit | Ana06/rantly,abargnesi/rantly |
9decc4b8cf2f8814bd73a2bbe3866db3a4682269 | .travis.yml | .travis.yml | language: generic
env:
global:
- PATH="/opt/chefdk/bin:/opt/chef/bin:$PATH"
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
install:
- unset GEM_PATH
script:
- make
- git diff --exit-code
- git diff --cached --exit-code
- rubocop
- ./run-foodcritic cookbooks
- ./runtests
| language: generic
env:
global:
- PATH="/opt/chefdk/bin:/opt/chefdk/embedded/bin:/opt/chef/bin:$PATH"
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
install:
- unset GEM_PATH
script:
- make
- git diff --exit-code
- git diff --cached --exit-code
- rubocop
- ./run-foodcritic cookb... | Use the embedded chef ruby, too | Use the embedded chef ruby, too
| YAML | mit | travis-ci/packer-templates,travis-ci/packer-templates,travis-ci/packer-templates |
d0db27fd2f16982113125da871fffce7de650fdd | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
- "6"
- "5"
- "4"
- "iojs"
before_install:
- npm config set spin false --global
| language: node_js
node_js:
- "9"
- "8"
- "6"
- "4"
before_install:
- npm config set spin false --global
| Test only on supported node versions | Test only on supported node versions
| YAML | bsd-3-clause | leebyron/async-to-gen |
5885a68def3a40a3b85bc576a7a2d299ff3af716 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
matrix:
allow_failures:
- rvm: 2.0.0
| Allow specs to fail under Ruby 2.0 | Allow specs to fail under Ruby 2.0
| YAML | mit | krautcomputing/tries |
0cba26fdd68c1fb1a652717cd0934f37ec94558e | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0
- jruby
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| Add non-head jruby to the build list. | Add non-head jruby to the build list.
| YAML | mit | nickelser/caddy,nickelser/caddy |
d39cdfba2ea7509195504240ad3926f1db88224c | .travis.yml | .travis.yml | language: ruby
bundler_args: --without local_development
script: bundle exec rake
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-2
notifications:
recipients:
- timo.roessner@googlemail.com
- matijs@matijs.net
- emil.rehnberg@gmail.com
irc: "irc.freenode.org#reek"
| language: ruby
bundler_args: --without local_development
script: bundle exec rake
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
- jruby-19mode
- rbx-2
notifications:
recipients:
- timo.roessner@googlemail.com
- matijs@matijs.net
- emil.rehnberg@gmail.com
irc: "irc.freenode.org#reek"
| Allow any Ruby 2.1 on Travis CI | Allow any Ruby 2.1 on Travis CI
| YAML | mit | skywinder/reek,chastell/reek,apuratepp/reek,troessner/reek,andyw8/reek,nTraum/reek,skywinder/reek,troessner/reek,HParker/reek,tansaku/reek,apuratepp/reek,weby/reek,andyw8/reek,apuratepp/reek,HParker/reek,tansaku/reek,HParker/reek,andyw8/reek,skywinder/reek,weby/reek,tansaku/reek,nTraum/reek,weby/reek |
6014817c568811abb628dc7f1a0f901a65954ce2 | .travis.yml | .travis.yml | language: c
os: osx
jobs:
include:
- os: osx
osx_image: xcode12.2
addons:
homebrew:
packages: ncurses
install:
- cmake -S . -B build -G "Unix Makefiles" -DCOVERAGE=ON -DHOMEBREW_NCURSES=ON
script:
... | language: c
jobs:
include:
- os: osx
osx_image: xcode12.2
addons:
homebrew:
packages: ncurses
install:
- cmake -S . -B build -G "Unix Makefiles" -DCOVERAGE=ON -DHOMEBREW_NCURSES=ON
script:
-... | Install libbsd in Travis CI Linux build. | Install libbsd in Travis CI Linux build.
Build fails since libbsd-dev package isn't installed on Ubuntu Focal
20.04 by default.
| YAML | bsd-2-clause | donmccaughey/FiendsAndFortune,donmccaughey/FiendsAndFortune,donmccaughey/FiendsAndFortune |
93e2b0c5fe1e35c9c49ce6b2a0d625f00b758f2a | .travis.yml | .travis.yml | language: java
before_install:
- "git clone -b travis `git config --get remote.origin.url` target/travis"
- "cp target/travis/settings.xml ~/.m2/settings.xml"
# whitelist
branches:
only:
- master
jdk:
- oraclejdk7
- openjdk7
- openjdk6
after_success: mvn site --settings target/travis/settings.xml
e... | language: java
before_install:
- "git clone -b travis `git config --get remote.origin.url` target/travis"
- "cp target/travis/settings.xml ~/.m2/settings.xml"
# whitelist
branches:
only:
- master
jdk:
- openjdk6
after_success: mvn site --settings target/travis/settings.xml
env:
global:
- secure: ... | Test only for one sdk (1.6) | Test only for one sdk (1.6)
| YAML | bsd-3-clause | codeforamerica/open311_java |
af5a1a3ab541bb4cbe1d4de4177dadfa9c48078f | .travis.yml | .travis.yml | language: go
go:
- master
addons:
ssh_known_hosts: overflod.chary.us
before_install:
- openssl aes-256-cbc -K $encrypted_da0730754d12_key -iv $encrypted_da0730754d12_iv -in travis_rsa.enc -out travis_rsa -d
- chmod 600 travis_rsa
- mv travis_rsa ~/.ssh/id_rsa
install:
- ./scripts/install-hugo.sh
jobs:
... | language: go
go:
- master
addons:
ssh_known_hosts: overflod.chary.us
before_install:
- openssl aes-256-cbc -K $encrypted_da0730754d12_key -iv $encrypted_da0730754d12_iv -in travis_rsa.enc -out travis_rsa -d
- chmod 600 travis_rsa
- mv travis_rsa ~/.ssh/id_rsa
install:
- ./scripts/install-hugo.sh
jobs:
... | Make the site's URL a variable (for easier deployment testing) | Make the site's URL a variable (for easier deployment testing)
| YAML | mit | snoonetIRC/website,snoonetIRC/website,snoonetIRC/website |
cb5b0aaa757cbd56b2ee3874018230e1b3d8f8b5 | .travis.yml | .travis.yml | after_success:
- bundle exec codeclimate-test-reporter
before_install:
- gem update bundler rake
branches:
only:
- master
- v3
env:
global:
- secure: | # CODECLIMATE_REPO_TOKEN
BIemhM273wHZMpuULDMYGPsxYdfw+NMw7IQbOD6gy5r+dha07y9ssTYYE5Gn
t1ptAb09lhQ4gexXTr83i6angMrnHgQ1ZX2wfeoZ0FvWDH... | after_success:
- bundle exec codeclimate-test-reporter
before_install:
- gem update bundler rake
branches:
only:
- master
- v3
env:
global:
- secure: | # CODECLIMATE_REPO_TOKEN
BIemhM273wHZMpuULDMYGPsxYdfw+NMw7IQbOD6gy5r+dha07y9ssTYYE5Gn
t1ptAb09lhQ4gexXTr83i6angMrnHgQ1ZX2wfeoZ0FvWDH... | Add support for Ruby 2.5 | Add support for Ruby 2.5
| YAML | mit | collectiveidea/interactor |
13e245cb3a535aa85f024a47525e711956df0a18 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.12"
- "stable"
| sudo: false
language: node_js
node_js:
- "4"
- "stable"
- "0.12"
| Add latest 4 node.js release to Travis CI | Add latest 4 node.js release to Travis CI
| YAML | mit | pascalduez/postcss,dehuszar/postcss,jonathantneal/postcss,postcss/postcss,Semigradsky/postcss,jedmao/postcss,maximkoretskiy/postcss,postcss/postcss,XOP/postcss,bezoerb/postcss,alanev/postcss,andrepolischuk/postcss |
6f335bf7dc45751e9d536aa737e4bcac92473855 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.3
env:
- DB=postgres
install:
- bundle install
env:
matrix:
- SOLIDUS_BRANCH=v1.3
- SOLIDUS_BRANCH=v1.4
- SOLIDUS_BRANCH=v2.0
- SOLIDUS_BRANCH=v2.1
- SOLIDUS_BRANCH=v2.2
- SOLIDUS_BRANCH=master
script:
- bundle exec rake test_app
- ( cd ./spec/dummy && bundl... | language: ruby
rvm:
- 2.2.3
env:
- DB=postgres
install:
- bundle install
env:
matrix:
- SOLIDUS_BRANCH=v1.3
- SOLIDUS_BRANCH=v1.4
- SOLIDUS_BRANCH=v2.0
- SOLIDUS_BRANCH=v2.1
- SOLIDUS_BRANCH=v2.2
script:
- bundle exec rake test_app
- ( cd ./spec/dummy && bundle exec rake solidus-adyen:fa... | Remove master from testing grid | Remove master from testing grid
This extension is not at all ready for master. Additional work will be
required to fix everything up.
| YAML | mit | freerunningtech/solidus-adyen,StemboltHQ/solidus-adyen,freerunningtech/solidus-adyen,StemboltHQ/solidus-adyen,StemboltHQ/solidus-adyen,freerunningtech/solidus-adyen,StemboltHQ/solidus-adyen,freerunningtech/solidus-adyen |
f22f3c466106a66b8e43137063d1d74d4c5b8282 | .travis.yml | .travis.yml | dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: '49.0.2'
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "[ x$(cat node_modules/.last-node-version 2>/dev/null) = x$(node -e 'console.log(process.version)') ] || (npm rebuild && node -e 'console.log(process.... | dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "[ x$(cat node_modules/.last-node-version 2>/dev/null) = x$(node -e 'console.log(process.version)') ] || (npm rebuild && node -e 'console.log(proces... | Use the latest Firefox ESR for testing | Use the latest Firefox ESR for testing
| YAML | apache-2.0 | Collaborne/paper-alert-dialog |
57413afd5aa7ee3ea5df9ee241e5aba347027b10 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
services: mongodb
install:
- "pip install -r requirements.txt --use-mirrors"
script: "python test.py"
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
services: mongodb
install:
- "pip install -r requirements.txt"
script: "python test.py"
| Remove --use-mirrors from libraries installation. | Remove --use-mirrors from libraries installation.
| YAML | bsd-2-clause | puentesarrin/mongodb-log,puentesarrin/mongodb-log |
8489570dc81a31c4ba14d25e1c1ea6ed7000c6a7 | .travis.yml | .travis.yml | language: python
python:
- 3.6
cache:
directories:
- $HOME/.cache/pip
- $HOME/.ccache # https://github.com/travis-ci/travis-ci/issues/5853
install:
# Install this package and the packages listed in requirements.txt.
- pip install .[complete]
# Install extra requirements for running tests and buildin... | language: python
sudo: false
cache:
directories:
- $HOME/.cache/pip
- $HOME/.ccache # https://github.com/travis-ci/travis-ci/issues/5853
services:
- mongodb
matrix:
fast_finish: true
include:
- python: 3.6
- python: 3.7
dist: xenial
env: PUBLISH_DOCS=1
- python: nightly
allow_... | Set up CI in usual way. | Set up CI in usual way.
| YAML | bsd-3-clause | NSLS-II/amostra |
537ede1c86b741475c9887fc0975e5320310c39a | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '6'
- '7'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Build with Node.js 7 on Travis CI. | Build with Node.js 7 on Travis CI.
| YAML | mit | bigeasy/operation |
7c6e2dbe7067dfc375e77387580c813f52f85740 | .travis.yml | .travis.yml | sudo: false
rvm:
- "2.0"
- "2.1"
- "2.2.5"
- "2.3.1"
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
branches:
only:
- master
before_install: gem install bundler -v ">= 1.12.5"
| sudo: false
rvm:
- "2.0"
- "2.1"
- "2.2.6"
- "2.3.3"
- "2.4.0"
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
branches:
only:
- master
before_install: gem install bundler -v ">= 1.12.5"
| Use the latest Rubies on Travis | Use the latest Rubies on Travis
| YAML | mit | danielsdeleo/deep_merge |
adcbb8135c8a8760d78424e964665f51dfb63a58 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.12'
sudo: false
env:
matrix:
- GROUP=
global:
- GH_REF: github.com/jupyter/jupyter-js-plugins.git
install:
- bash ./scripts/travis_install.sh
script:
- bash ./scripts/travis_script.sh
after_success:
- bash ./scripts/travis_after_success.sh
| language: node_js
node_js:
- '0.12'
sudo: false
env:
matrix:
- GROUP=
global:
- GH_REF: github.com/jupyter/jupyter-js-plugins.git
- secure: UwfNcdwPGuWRY6A0kjeEC0Py7OEuSOO14aSypr779D1jabGkXLVPtmXQzy3kRQuMRVse/OVC88wNzYDnTEikwrWHOguANlYyTjJCmeG+YVWjpDN6OzAWYJ/RCacPyY7+mkQKizzKBfgJy39AXMRTp17kYePVo4yTfvkQpaZfFV... | Add a docs push token | Add a docs push token
| YAML | bsd-3-clause | jupyter/jupyter-js-plugins,blink1073/jupyter-js-plugins,jupyter/jupyter-js-plugins,blink1073/jupyter-js-plugins,jupyter/jupyter-js-plugins,blink1073/jupyter-js-plugins,jupyter/jupyter-js-plugins,blink1073/jupyter-js-plugins,jupyter/jupyter-js-plugins,blink1073/jupyter-js-plugins |
c832a8434622217a8b1dfbf674242961169a4376 | .travis.yml | .travis.yml | language: python
env:
- PYTHON=2.6
- PYTHON=2.7
- PYTHON=3.3
- PYTHON=3.4
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
install:
- conda update con... | language: python
env:
- PYTHON=2.6
- PYTHON=2.7
- PYTHON=3.3
- PYTHON=3.4
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
install:
- conda update con... | Use a different channel for r-survival | Use a different channel for r-survival
| YAML | mit | brentp/combat.py,brentp/combat.py |
c1798361bcfcc70d7bb81d0f99266f99a662c029 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
- "0.11"
before_script:
- npm install -g grunt-cli
- git config --global user.name 'Travis CI'
- git config --global user.email 'test@travis-ci.org'
| language: node_js
node_js:
- "0.8"
- "0.10"
before_script:
- npm install -g grunt-cli
- git config --global user.name 'Travis CI'
- git config --global user.email 'test@travis-ci.org'
| Disable testing on 0.11 for now. | Disable testing on 0.11 for now.
| YAML | mit | rubenv/grunt-git,y-a-r-g/grunt-git |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.