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 |
|---|---|---|---|---|---|---|---|---|---|
0ba3d595cb6a4de5a5b5d4a3461522a36fd47704 | packages/pi/pipes-http.yaml | packages/pi/pipes-http.yaml | homepage: ''
changelog-type: ''
hash: cf863d984190162475447374eef4939a729dce51857ea9077de374eff3f9fdc8
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: HTTP client with pipes interface
changelog: ''
basic-deps:
http-client: ! '>=0.2 && <0.6'
bytestring: ! '>=0.9.2.1 && <0.11'
base: ! '>=4 && <5'
pipes: ! '>=4.0 && <4.4'
http-client-tls: <0.4
all-versions:
- 1.0.0
- 1.0.1
- 1.0.2
- 1.0.3
- 1.0.4
- 1.0.5
author: Gabriel Gonzalez
latest: 1.0.5
description-type: haddock
description: ! '@pipes-http@ is a @pipes@ wrapper around the @http-client@ library'
license-name: BSD-3-Clause
| homepage: ''
changelog-type: ''
hash: 94950f5640b2f41bec290c9c181f2963bf138ecd1600d630b8c7505ee4d3b704
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: HTTP client with pipes interface
changelog: ''
basic-deps:
http-client: ! '>=0.2 && <0.7'
bytestring: ! '>=0.9.2.1 && <0.11'
base: ! '>=4 && <5'
pipes: ! '>=4.0 && <4.4'
http-client-tls: <0.4
all-versions:
- 1.0.0
- 1.0.1
- 1.0.2
- 1.0.3
- 1.0.4
- 1.0.5
author: Gabriel Gonzalez
latest: 1.0.5
description-type: haddock
description: ! '@pipes-http@ is a @pipes@ wrapper around the @http-client@ library'
license-name: BSD-3-Clause
| Update from Hackage at 2019-01-11T03:30:51Z | Update from Hackage at 2019-01-11T03:30:51Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
d0f4b52a4e1933eedfbf73b86d783e59b2fbfa10 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
test:
docker:
- image: rust:latest
steps:
- checkout
- run: cargo test
build:
docker:
- image: rust:latest
steps:
- checkout
- run: cargo build --release
- run: cp target/release/mm_api_notify workspace/mm_api_notify
- run: echo $CIRCLE_SHA1 > .circle-sha
- save_cache:
key: build-{{ .Branch }}-{{ checksum ".circle-sha" }}
paths:
- ~/project/target/release
build_container:
working_directory: /tmp
docker:
- image: docker:latest
steps:
- run: echo $CIRCLE_SHA1 > .circle-sha
- restore_cache:
key: build-{{ .Branch }}-{{ checksum ".circle-sha" }}
- setup_remote_docker
- run:
command: |
cp target/release/mm_api_notify .deploy/mm_api_notify
cd .deploy
docker build -t mm_api_notify .
docker tag mm_api_notify:latest
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push tptwebmaster/mm_api_notify:latest
workflows:
version: 2
build:
jobs:
- test
- build:
requires:
- test
filters:
branches:
only:
- master | version: 2
jobs:
test:
docker:
- image: rust:latest
steps:
- checkout
- run: cargo test
build:
docker:
- image: rust:latest
steps:
- checkout
- run: cargo build --release
- run: cp target/release/mm_api_notify workspace/mm_api_notify
- run: echo $CIRCLE_SHA1 > .circle-sha
- save_cache:
key: build-{{ .Branch }}-{{ checksum ".circle-sha" }}
paths:
- ~/project/target/release
build_container:
working_directory: /tmp
docker:
- image: docker:latest
steps:
- run: echo $CIRCLE_SHA1 > .circle-sha
- restore_cache:
key: build-{{ .Branch }}-{{ checksum ".circle-sha" }}
- setup_remote_docker
- run:
command: |
cp target/release/mm_api_notify .deploy/mm_api_notify
cd .deploy
docker build -t mm_api_notify .
docker tag mm_api_notify:latest
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push tptwebmaster/mm_api_notify:latest
workflows:
version: 2
build:
jobs:
- test
- build:
requires:
- test
- build_container:
requires:
- build
filters:
branches:
only:
- master | Add back in container step | Add back in container step
| YAML | apache-2.0 | twincitiespublictelevision/mm_api_notify,twincitiespublictelevision/mm_api_notify |
8defce4223123d27626e2ae765760f7cc93e538c | .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.8
working_directory: /go/src/github.com/HeySquirrel/tribe
steps:
- checkout
- run: go get -v -t -d ./...
- run: make test
| # 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
working_directory: /go/src/github.com/HeySquirrel/tribe
steps:
- checkout
- run: go get -v -t -d ./...
- run: make test
| Move to golang 1.9 in circle ci. | Move to golang 1.9 in circle ci.
| YAML | mit | HeySquirrel/tribe |
0fbacaef92c84b1f85f5b101e5bf86ffa58970be | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/closex
docker:
- image: elixir:1.5
environment:
COVERALLS_REPO_TOKEN: 3T8c9tUBXMAmGPmnBO1SUv7xGFr32gbLs
MIX_ENV: test
steps:
- checkout
- run: mix local.hex --force
- run: mix local.rebar --force
- run: elixir --version
- run: mix deps.get
- run: mix coveralls.circle
| version: 2
jobs:
build:
working_directory: ~/closex
docker:
- image: elixir:1.5
environment:
COVERALLS_REPO_TOKEN: 3T8c9tUBXMAmGPmnBO1SUv7xGFr32gbLs
MIX_ENV: test
steps:
- checkout
- run: mix local.hex --force
- run: mix local.rebar --force
- run: elixir --version
- run: mix deps.get
- run: mix format --check-formatted
- run: mix coveralls.circle
| Check formatting on build in ci | Check formatting on build in ci
| YAML | mit | nested-tech/closex |
ed703be8c8c64a035d68a7e187720dfb1a4449df | config/examples/low_memory_strip.yaml | config/examples/low_memory_strip.yaml | # More stripping for low memory environments, removing e.g. RegExp support,
# coroutine support, etc.
DUK_USE_BUFFEROBJECT_SUPPORT: false
DUK_USE_REGEXP_SUPPORT: false
DUK_USE_REFERENCE_COUNTING: false
DUK_USE_DOUBLE_LINKED_HEAP: false
# Consider to reduce code footprint at the expense of less safeguards against
# bugs in calling C code
DUK_USE_VALSTACK_UNSAFE: true
# Short term workaround with large footprint, disable.
DUK_USE_REGEXP_CANON_WORKAROUND: false
# Coroutine support has about 2kB footprint.
DUK_USE_COROUTINE_SUPPORT: false
# Finalizer support has about 0.8kB footprint.
DUK_USE_FINALIZER_SUPPORT: false
# ES6 Proxy has about 2kB footprint.
DUK_USE_ES6_PROXY: false
# Don't support non-BMP characters in source code (UTF-8 otherwise OK).
DUK_USE_SOURCE_NONBMP: false
| # More stripping for low memory environments, removing e.g. RegExp support,
# coroutine support, etc.
DUK_USE_BUFFEROBJECT_SUPPORT: false
DUK_USE_REGEXP_SUPPORT: false
DUK_USE_REFERENCE_COUNTING: false
DUK_USE_DOUBLE_LINKED_HEAP: false
# Consider to reduce code footprint at the expense of less safeguards against
# bugs in calling C code
DUK_USE_VALSTACK_UNSAFE: true
# Short term workaround with large footprint, disable.
DUK_USE_REGEXP_CANON_WORKAROUND: false
# Coroutine support has about 2kB footprint.
DUK_USE_COROUTINE_SUPPORT: false
# Finalizer support has about 0.8kB footprint.
DUK_USE_FINALIZER_SUPPORT: false
# ES6 Proxy has about 2kB footprint.
DUK_USE_ES6_PROXY: false
# Don't support non-BMP characters in source code (UTF-8 otherwise OK).
DUK_USE_SOURCE_NONBMP: false
# Remove Math built-in.
DUK_USE_MATH_BUILTIN: false
| Disable Math built-in for stripped build | Disable Math built-in for stripped build
| YAML | mit | svaarala/duktape,jmptrader/duktape,harold-b/duktape,markand/duktape,svaarala/duktape,jmptrader/duktape,jmptrader/duktape,markand/duktape,markand/duktape,svaarala/duktape,svaarala/duktape,svaarala/duktape,svaarala/duktape,markand/duktape,jmptrader/duktape,harold-b/duktape,jmptrader/duktape,svaarala/duktape,jmptrader/duktape,markand/duktape,jmptrader/duktape,harold-b/duktape,harold-b/duktape,svaarala/duktape,harold-b/duktape,svaarala/duktape,harold-b/duktape,harold-b/duktape,harold-b/duktape,markand/duktape,markand/duktape,jmptrader/duktape,markand/duktape,jmptrader/duktape,harold-b/duktape,harold-b/duktape,markand/duktape,jmptrader/duktape,markand/duktape |
472cd90a052a16ef2b97a82b60755dc39c90d22b | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
py26:
macos:
# macOS 10.12, last version with Python 2.6
xcode: 9.2.0
steps:
- checkout
- run: /usr/bin/python2.6 run.py deps
- run: /usr/bin/python2.6 run.py ci
pypy:
macos:
# macOS 10.14.4
xcode: 10.3.0
steps:
- run: brew install pypy
- run: pypy run.py deps
- run: pypy run.py ci
workflows:
version: 2
python-26:
jobs:
- py26
python-pypy:
jobs:
- pypy
| version: 2
jobs:
py26:
macos:
# macOS 10.12, last version with Python 2.6
xcode: 9.2.0
steps:
- checkout
- run: /usr/bin/python2.6 run.py deps
- run: /usr/bin/python2.6 run.py ci
pypy:
macos:
# macOS 10.14.4
xcode: 10.3.0
steps:
- checkout
- run: brew install pypy
- run: pypy run.py deps
- run: pypy run.py ci
workflows:
version: 2
python-26:
jobs:
- py26
python-pypy:
jobs:
- pypy
| Fix CircleCI to check out repo for PyPy job | Fix CircleCI to check out repo for PyPy job
| YAML | mit | wbond/asn1crypto |
66a2d1ceaeb92362d9bd03b1046c2e6145086881 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/iypm
docker:
- image: minn/node-awscli:latest
steps:
- checkout
- restore_cache:
key: deps-{{ checksum "package.json" }}
- run: yarn install
- save_cache:
key: deps-{{ checksum "package.json" }}
paths:
- ~/.cache
- run: yarn build
- run: yarn test
- deploy:
name: Deploy release or release candidate
command: |
if git describe | grep "^[0-9]\+\.[0-9]\+\.[0-9]\+-rc\.[0-9]\+$";
then
echo "Deploying release candidate..."
$(yarn bin)/now -t ${ZEIT_TOKEN} switch ${ZEIT_TEAM}
$(yarn bin)/now -p -t ${ZEIT_TOKEN}
elif git describe | grep "^[0-9]\+\.[0-9]\+\.[0-9]\+$";
then
echo "Deploying release onto production..."
aws s3 sync build s3://${S3_BUCKET_PROD} --delete --acl public-read
aws configure set preview.cloudfront true
aws cloudfront create-invalidation --distribution-id ${CF_DIST_ID} --paths "/*"
else
echo "Skipping deploy..."
fi
deployment:
fake_deploy_for_cci2:
tag: /.*/
commands:
- echo "make tags run in 2.0"
| version: 2
jobs:
build:
working_directory: ~/iypm
docker:
- image: minn/node-awscli:latest
steps:
- checkout
- restore_cache:
key: deps-{{ checksum "package.json" }}
- run: yarn install
- save_cache:
key: deps-{{ checksum "package.json" }}
paths:
- ~/.cache
- run: yarn build
- run: yarn test
- deploy:
name: Deploy release or release candidate
command: |
if git describe | grep "^[0-9]\+\.[0-9]\+\.[0-9]\+-rc\.[0-9]\+$";
then
echo "Deploying release candidate..."
$(yarn bin)/now -t ${ZEIT_TOKEN} switch ${ZEIT_TEAM}
$(yarn bin)/now -p -t ${ZEIT_TOKEN} \
| tee $(tty) \
| grep -o "[a-zA-Z0-9_-]\+\.now\.sh" \
| (read NOW_ID; now alias ${NOW_ID} "iypm-$(git rev-parse --short HEAD)")
elif git describe | grep "^[0-9]\+\.[0-9]\+\.[0-9]\+$";
then
echo "Deploying release onto production..."
aws s3 sync build s3://${S3_BUCKET_PROD} --delete --acl public-read
aws configure set preview.cloudfront true
aws cloudfront create-invalidation --distribution-id ${CF_DIST_ID} --paths "/*"
else
echo "Skipping deploy..."
fi
deployment:
fake_deploy_for_cci2:
tag: /.*/
commands:
- echo "make tags run in 2.0"
| Add steps to alias release candidate deploy | Add steps to alias release candidate deploy
| YAML | mpl-2.0 | MinnSoe/ifyoupayme,MinnSoe/ifyoupayme,MinnSoe/ifyoupayme |
63bf819628f3ee5d4f081916fd0e78ed5e302bd8 | .circleci/config.yml | .circleci/config.yml | # Java Gradle CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-java/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: cimg/openjdk:8.0
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory: ~/repo
environment:
# Customize the JVM maximum heap limit
JVM_OPTS: -Xmx3200m
TERM: dumb
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "build.gradle" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: ./gradlew dependencies
- save_cache:
paths:
- ~/.gradle
key: v1-dependencies-{{ checksum "build.gradle" }}
# run tests!
- run: ./gradlew test -Porg.gradle.dependency.verification.console=verbose --dependency-verification lenient
- store_test_results:
path: rd-cli-tool/build/test-results
- store_test_results:
path: rd-cli-base/build/test-results
- store_test_results:
path: rd-api-client/build/test-results
| # Java Gradle CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-java/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: cimg/openjdk:8.0
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory: ~/repo
environment:
# Customize the JVM maximum heap limit
JVM_OPTS: -Xmx3200m
TERM: dumb
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "build.gradle" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: ./gradlew dependencies --dependency-verification off
- save_cache:
paths:
- ~/.gradle
key: v1-dependencies-{{ checksum "build.gradle" }}
# run tests!
- run: ./gradlew test -Porg.gradle.dependency.verification.console=verbose --dependency-verification lenient
- store_test_results:
path: rd-cli-tool/build/test-results
- store_test_results:
path: rd-cli-base/build/test-results
- store_test_results:
path: rd-api-client/build/test-results
| Disable dep verification in circle tests | Disable dep verification in circle tests
| YAML | apache-2.0 | rundeck/rundeck-cli,rundeck/rundeck-cli |
8ee0a3a869fb7e78c62a5ced2de60a80cf7257ac | playbooks/proposal/pre.yaml | playbooks/proposal/pre.yaml | - hosts: all
pre_tasks:
- name: Install git-review
command: pip install git-review
become: yes
- name: Copy scripts to the script dir on the node
copy:
dest: '{{ ansible_user_dir }}/scripts/'
src: '{{ item }}'
mode: 0755
with_items:
- generate_puppetfile.sh
- propose_update.sh
- sync_openstack_ansible_common_files.sh
roles:
- role: configure-git
git_config:
user.name: OpenStack Proposal Bot
user.email: openstack-infra@lists.openstack.org
gitreview.username: proposal-bot
- copy-proposal-common-scripts
# For propose-update-constraints
- copy-release-tools-scripts
- add-sshkey
- bindep
- ensure-python
- ensure-tox
| - hosts: all
pre_tasks:
- name: Install git-review
command: pip3 install git-review
become: yes
- name: Copy scripts to the script dir on the node
copy:
dest: '{{ ansible_user_dir }}/scripts/'
src: '{{ item }}'
mode: 0755
with_items:
- generate_puppetfile.sh
- propose_update.sh
- sync_openstack_ansible_common_files.sh
roles:
- role: configure-git
git_config:
user.name: OpenStack Proposal Bot
user.email: openstack-infra@lists.openstack.org
gitreview.username: proposal-bot
- copy-proposal-common-scripts
# For propose-update-constraints
- copy-release-tools-scripts
- add-sshkey
- bindep
- ensure-python
- ensure-tox
| Install git-review under python3 for proposed updates | Install git-review under python3 for proposed updates
We were installing git-review under python2 in order to propose updates
to Gerrit. git-review happily runs under python3 so update the
installation to avoid python2.
Change-Id: I1671345d71cd60f6508a2c067c4e308680234afe
| YAML | apache-2.0 | openstack-infra/project-config,openstack-infra/project-config |
05486983dc8df24dcb6cafcf36212cffb99e90f2 | kubernetesPod.yaml | kubernetesPod.yaml | apiVersion: v1
kind: Pod
metadata:
labels:
ci: rpooli-build
spec:
containers:
- name: rpooli-build
image: 196229073436.dkr.ecr.eu-west-1.amazonaws.com/openanalytics/rpooli-build
command:
- cat
tty: true
| apiVersion: v1
kind: Pod
metadata:
labels:
ci: rpooli-build
spec:
containers:
- name: rpooli-build
image: 196229073436.dkr.ecr.eu-west-1.amazonaws.com/openanalytics/rpooli-build
resources:
limits:
memory: "2Gi"
cpu: "2000m"
requests:
memory: "1.5Gi"
cpu: "1000m"
command:
- cat
tty: true
| Add resource limits for Jenkins build | Add resource limits for Jenkins build | YAML | apache-2.0 | openanalytics/RPooli,openanalytics/RPooli,openanalytics/RPooli |
07111913671123d032f36207cdbb1a3385bdeeb1 | packages/co/constrictor.yaml | packages/co/constrictor.yaml | homepage: https://github.com/chessai/constrictor.git
changelog-type: markdown
hash: e60a86841e225a982a3029f0a403a2b1fadb65ece09d3218f393f1ee63cf686c
test-bench-deps: {}
maintainer: chessai1996@gmail.com
synopsis: strict versions of many things in base
changelog: ! '# Revision history for constrictor
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
'
basic-deps:
base: ! '>=4.7 && <5.0'
transformers: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
author: chessai
latest: '0.1.0.2'
description-type: haddock
description: ! 'This package provides strict versions of many functions in
base, including some functions not present, such as
''foldlMapA'', ''foldlMapM'', ''foldrMapA'', and foldrMapM.'
license-name: MIT
| homepage: https://github.com/chessai/constrictor.git
changelog-type: markdown
hash: eaf4ba51cd4cbd0669d694bdd6a83fb30efa3c428a00b99858a979d737005723
test-bench-deps: {}
maintainer: chessai1996@gmail.com
synopsis: strict versions of many things in base
changelog: ! '# Revision history for constrictor
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
'
basic-deps:
base: ! '>=4.7 && <5.0'
transformers: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.1.0'
author: chessai
latest: '0.1.1.0'
description-type: haddock
description: ! 'This package provides strict versions of many functions in
base, including many folding functions not present in there.'
license-name: MIT
| Update from Hackage at 2018-04-17T15:53:10Z | Update from Hackage at 2018-04-17T15:53:10Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
f8d209a655b34595a89400037d081ee1859f8b19 | phpspec.yml | phpspec.yml | suites:
davidgarciacat_suite:
namespace: DavidGarciaCat
extensions:
- PhpSpec\Extension\CodeCoverageExtension
code_coverage:
format:
- html
- clover
output:
html: coverage
clover: coverage.xml
| suites:
davidgarciacat_suite:
namespace: DavidGarciaCat\NetworkPolyfill
psr4_prefix: DavidGarciaCat\NetworkPolyfill
extensions:
- PhpSpec\Extension\CodeCoverageExtension
code_coverage:
format:
- html
- clover
output:
html: coverage
clover: coverage.xml
| Set Namespace and PSR-4 Prefix | Set Namespace and PSR-4 Prefix
| YAML | mit | DavidGarciaCat/network-polyfill |
045e62dd13782a68f425760aa69efe42dc0f050c | .travis.yml | .travis.yml | language: "node_js"
node_js:
- 0.10
- 4.0
- 5.0
| language: "node_js"
node_js:
- 6
- 8
- 10
| Update node versions on CI | Update node versions on CI
| YAML | mit | hokaccha/node-jwt-simple |
8f40aaa67fa302ac210ef5e7c113769dbcb10597 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python: 3.5 # this is needed to fool travis to have python3.5 as well
# See tox.ini for env list
# This list should be generated using tox -l
env:
- TOXENV=py27-django17
- TOXENV=py33-django17
- TOXENV=py34-django17
- TOXENV=py27-django18
- TOXENV=py33-django18
- TOXENV=py34-django18
- TOXENV=py35-django18
- TOXENV=py27-django19
- TOXENV=py34-django19
- TOXENV=py35-django19
install:
- pip install tox>=2.1
- pip install coveralls
script:
- tox
sudo: false
| # Config file for automatic testing at travis-ci.org
language: python
python: 3.5 # this is needed to fool travis to have python3.5 as well
# See tox.ini for env list
# This list should be generated using tox -l
env:
- TOXENV=py27-django17
- TOXENV=py33-django17
- TOXENV=py34-django17
- TOXENV=py27-django18
- TOXENV=py33-django18
- TOXENV=py34-django18
- TOXENV=py35-django18
- TOXENV=py27-django19
- TOXENV=py34-django19
- TOXENV=py35-django19
- TOXENV=checkmanifest
- TOXENV=isort-check
- TOXENV=flake8-check
install:
- pip install tox>=2.1
- pip install coveralls
script:
- tox
sudo: false
| Include code-quality checks in Travis | Include code-quality checks in Travis
| YAML | bsd-3-clause | django-functest/django-functest,django-functest/django-functest,django-functest/django-functest |
107eb7fab3646727987a609185784a3631f77d5c | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.0
- 2.2.4
- 2.0.0-p598
- 1.9.3
- 1.8.7-head
- jruby-head
- ruby-head
- rbx-3.13
bundler_args: --without test
script: bundle exec rspec spec
| language: ruby
rvm:
- 2.3.1
- 2.2.5
- ruby-head
- rbx-3.13
bundler_args: --without test
script: bundle exec rspec spec
| Remove testing with 2.0.0, 1.9.3, 1.8.7-head, jruby-head | Remove testing with 2.0.0, 1.9.3, 1.8.7-head, jruby-head
| YAML | mit | robmckinnon/morph |
0aa518d6ce392e4434645591f38de9c3005bbcac | .travis.yml | .travis.yml | sudo: required
services:
- docker
before_install:
- docker pull adamryman/splunk-travis-ci:latest
- docker images
- docker run --hostname splunk -p 8089:8089 -d adamryman/splunk-travis-ci
- docker ps -a
- sudo apt-get update
- sudo apt-get install curl
- docker exec `docker ps -q` cat /opt/splunk/etc/system/local/server.conf
- curl --version
- curl -k --verbose --sslv3 https://0.0.0.0:8089/services/auth/login -d username=admin -d password=changeme
- node sdkdo tests context
- curl -k --verbose https://localhost:8089/services/auth/login -d username=admin -d password=changeme
- curl -k --verbose https://localhost:8089/services/auth/login -d username=admin -d password=changeme
language: node_js
script:
node sdkdo tests context
| sudo: required
services:
- docker
before_install:
- docker pull adamryman/splunk-travis-ci:latest
- docker images
- docker run --hostname splunk -p 8089:8089 -d adamryman/splunk-travis-ci
- docker ps -a
- docker ps -q
- sudo apt-get update
- sudo apt-get install curl
- docker exec `docker ps -q` cat /opt/splunk/etc/system/local/server.conf
- curl --version
- curl -k --verbose --sslv3 https://0.0.0.0:8089/services/auth/login -d username=admin -d password=changeme
- node sdkdo tests context
- curl -k --verbose https://localhost:8089/services/auth/login -d username=admin -d password=changeme
- curl -k --verbose https://localhost:8089/services/auth/login -d username=admin -d password=changeme
language: node_js
script:
node sdkdo tests context
| Add docker ps -q to see docker container id | Add docker ps -q to see docker container id
| YAML | apache-2.0 | adamryman/splunk-sdk-javascript,adamryman/splunk-sdk-javascript |
214cfeddb138ef3de455661bddef543fd6f5f6fa | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- rbx
- rbx-2.0
- ree
- jruby
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- rbx
- rbx-2.0
- ree
| Revert "Add support back for Jruby" | Revert "Add support back for Jruby"
This reverts commit 41f39c2c370617f93aecb62a506739c801164194.
| YAML | bsd-3-clause | ryanatwork/Connexionz |
fccf1814f1af153ede074dcdad12f02b407b092d | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
env:
- DJANGO=https://github.com/django/django/zipball/master
- DJANGO=https://www.djangoproject.com/download/1.5b2/tarball/
- DJANGO=django==1.4.3 --use-mirrors
- DJANGO=django==1.3.5 --use-mirrors
install:
- pip install $DJANGO
- pip install django-filter==0.5.4 --use-mirrors
- pip install six --use-mirrors
- export PYTHONPATH=.
script:
- python rest_framework/runtests/runtests.py
matrix:
exclude:
- python: "3.2"
env: DJANGO=django==1.4.3 --use-mirrors
- python: "3.2"
env: DJANGO=django==1.3.5 --use-mirrors
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
env:
- DJANGO=https://github.com/django/django/zipball/master
- DJANGO=https://www.djangoproject.com/download/1.5c1/tarball/
- DJANGO=django==1.4.3 --use-mirrors
- DJANGO=django==1.3.5 --use-mirrors
install:
- pip install $DJANGO
- pip install django-filter==0.5.4 --use-mirrors
- pip install six --use-mirrors
- export PYTHONPATH=.
script:
- python rest_framework/runtests/runtests.py
matrix:
exclude:
- python: "3.2"
env: DJANGO=django==1.4.3 --use-mirrors
- python: "3.2"
env: DJANGO=django==1.3.5 --use-mirrors
| Test against Django 1.5 rc1 | Test against Django 1.5 rc1
| YAML | bsd-2-clause | leeahoward/django-rest-framework,jpulec/django-rest-framework,callorico/django-rest-framework,fishky/django-rest-framework,tomchristie/django-rest-framework,hunter007/django-rest-framework,yiyocx/django-rest-framework,d0ugal/django-rest-framework,arpheno/django-rest-framework,hnarayanan/django-rest-framework,ossanna16/django-rest-framework,ashishfinoit/django-rest-framework,johnraz/django-rest-framework,kezabelle/django-rest-framework,justanr/django-rest-framework,maryokhin/django-rest-framework,alacritythief/django-rest-framework,dmwyatt/django-rest-framework,waytai/django-rest-framework,yiyocx/django-rest-framework,hunter007/django-rest-framework,rubendura/django-rest-framework,delinhabit/django-rest-framework,raphaelmerx/django-rest-framework,paolopaolopaolo/django-rest-framework,YBJAY00000/django-rest-framework,MJafarMashhadi/django-rest-framework,agconti/django-rest-framework,rafaelang/django-rest-framework,andriy-s/django-rest-framework,rafaelang/django-rest-framework,elim/django-rest-framework,ticosax/django-rest-framework,rafaelcaricio/django-rest-framework,elim/django-rest-framework,antonyc/django-rest-framework,leeahoward/django-rest-framework,pombredanne/django-rest-framework,nhorelik/django-rest-framework,rafaelcaricio/django-rest-framework,tcroiset/django-rest-framework,brandoncazander/django-rest-framework,wzbozon/django-rest-framework,ambivalentno/django-rest-framework,cheif/django-rest-framework,dmwyatt/django-rest-framework,zeldalink0515/django-rest-framework,callorico/django-rest-framework,krinart/django-rest-framework,nryoung/django-rest-framework,MJafarMashhadi/django-rest-framework,kennydude/django-rest-framework,canassa/django-rest-framework,sehmaschine/django-rest-framework,akalipetis/django-rest-framework,davesque/django-rest-framework,johnraz/django-rest-framework,fishky/django-rest-framework,mgaitan/django-rest-framework,hunter007/django-rest-framework,canassa/django-rest-framework,raphaelmerx/django-rest-framework,wangpanjun/django-rest-framework,hnakamur/django-rest-framework,xiaotangyuan/django-rest-framework,agconti/django-rest-framework,buptlsl/django-rest-framework,James1345/django-rest-framework,sehmaschine/django-rest-framework,rhblind/django-rest-framework,fishky/django-rest-framework,cheif/django-rest-framework,jness/django-rest-framework,sbellem/django-rest-framework,douwevandermeij/django-rest-framework,brandoncazander/django-rest-framework,douwevandermeij/django-rest-framework,bluedazzle/django-rest-framework,kylefox/django-rest-framework,buptlsl/django-rest-framework,jpadilla/django-rest-framework,rhblind/django-rest-framework,alacritythief/django-rest-framework,HireAnEsquire/django-rest-framework,wedaly/django-rest-framework,mgaitan/django-rest-framework,atombrella/django-rest-framework,gregmuellegger/django-rest-framework,nhorelik/django-rest-framework,ezheidtmann/django-rest-framework,sheppard/django-rest-framework,aericson/django-rest-framework,thedrow/django-rest-framework-1,adambain-vokal/django-rest-framework,ashishfinoit/django-rest-framework,ticosax/django-rest-framework,uploadcare/django-rest-framework,uruz/django-rest-framework,waytai/django-rest-framework,iheitlager/django-rest-framework,YBJAY00000/django-rest-framework,nhorelik/django-rest-framework,agconti/django-rest-framework,jpulec/django-rest-framework,thedrow/django-rest-framework-1,krinart/django-rest-framework,akalipetis/django-rest-framework,wwj718/django-rest-framework,ebsaral/django-rest-framework,adambain-vokal/django-rest-framework,potpath/django-rest-framework,elim/django-rest-framework,akalipetis/django-rest-framework,ambivalentno/django-rest-framework,waytai/django-rest-framework,brandoncazander/django-rest-framework,ezheidtmann/django-rest-framework,abdulhaq-e/django-rest-framework,ossanna16/django-rest-framework,jpadilla/django-rest-framework,damycra/django-rest-framework,edx/django-rest-framework,jtiai/django-rest-framework,wwj718/django-rest-framework,gregmuellegger/django-rest-framework,kezabelle/django-rest-framework,jerryhebert/django-rest-framework,uruz/django-rest-framework,d0ugal/django-rest-framework,andriy-s/django-rest-framework,buptlsl/django-rest-framework,werthen/django-rest-framework,VishvajitP/django-rest-framework,tomchristie/django-rest-framework,kylefox/django-rest-framework,qsorix/django-rest-framework,jness/django-rest-framework,wedaly/django-rest-framework,cyberj/django-rest-framework,cyberj/django-rest-framework,jtiai/django-rest-framework,douwevandermeij/django-rest-framework,tigeraniya/django-rest-framework,mgaitan/django-rest-framework,tcroiset/django-rest-framework,aericson/django-rest-framework,callorico/django-rest-framework,damycra/django-rest-framework,arpheno/django-rest-framework,maryokhin/django-rest-framework,rubendura/django-rest-framework,bluedazzle/django-rest-framework,aericson/django-rest-framework,nryoung/django-rest-framework,sbellem/django-rest-framework,vstoykov/django-rest-framework,cyberj/django-rest-framework,kgeorgy/django-rest-framework,ezheidtmann/django-rest-framework,zeldalink0515/django-rest-framework,simudream/django-rest-framework,sbellem/django-rest-framework,alacritythief/django-rest-framework,delinhabit/django-rest-framework,HireAnEsquire/django-rest-framework,rubendura/django-rest-framework,d0ugal/django-rest-framework,simudream/django-rest-framework,ambivalentno/django-rest-framework,rafaelcaricio/django-rest-framework,ajaali/django-rest-framework,canassa/django-rest-framework,yiyocx/django-rest-framework,AlexandreProenca/django-rest-framework,sheppard/django-rest-framework,davesque/django-rest-framework,kgeorgy/django-rest-framework,atombrella/django-rest-framework,antonyc/django-rest-framework,simudream/django-rest-framework,ajaali/django-rest-framework,AlexandreProenca/django-rest-framework,YBJAY00000/django-rest-framework,uploadcare/django-rest-framework,wzbozon/django-rest-framework,MJafarMashhadi/django-rest-framework,vstoykov/django-rest-framework,uploadcare/django-rest-framework,edx/django-rest-framework,potpath/django-rest-framework,andriy-s/django-rest-framework,jpulec/django-rest-framework,cheif/django-rest-framework,tcroiset/django-rest-framework,iheitlager/django-rest-framework,linovia/django-rest-framework,paolopaolopaolo/django-rest-framework,damycra/django-rest-framework,wangpanjun/django-rest-framework,arpheno/django-rest-framework,jtiai/django-rest-framework,pombredanne/django-rest-framework,kennydude/django-rest-framework,atombrella/django-rest-framework,tigeraniya/django-rest-framework,wzbozon/django-rest-framework,kennydude/django-rest-framework,delinhabit/django-rest-framework,uruz/django-rest-framework,sheppard/django-rest-framework,hnakamur/django-rest-framework,ossanna16/django-rest-framework,ebsaral/django-rest-framework,jerryhebert/django-rest-framework,kylefox/django-rest-framework,kezabelle/django-rest-framework,jness/django-rest-framework,davesque/django-rest-framework,jpadilla/django-rest-framework,tomchristie/django-rest-framework,werthen/django-rest-framework,rafaelang/django-rest-framework,johnraz/django-rest-framework,VishvajitP/django-rest-framework,sehmaschine/django-rest-framework,paolopaolopaolo/django-rest-framework,raphaelmerx/django-rest-framework,James1345/django-rest-framework,HireAnEsquire/django-rest-framework,hnakamur/django-rest-framework,abdulhaq-e/django-rest-framework,lubomir/django-rest-framework,qsorix/django-rest-framework,kgeorgy/django-rest-framework,rhblind/django-rest-framework,wwj718/django-rest-framework,xiaotangyuan/django-rest-framework,dmwyatt/django-rest-framework,pombredanne/django-rest-framework,VishvajitP/django-rest-framework,James1345/django-rest-framework,wangpanjun/django-rest-framework,linovia/django-rest-framework,antonyc/django-rest-framework,potpath/django-rest-framework,bluedazzle/django-rest-framework,wedaly/django-rest-framework,abdulhaq-e/django-rest-framework,justanr/django-rest-framework,werthen/django-rest-framework,nryoung/django-rest-framework,maryokhin/django-rest-framework,thedrow/django-rest-framework-1,ebsaral/django-rest-framework,ticosax/django-rest-framework,leeahoward/django-rest-framework,linovia/django-rest-framework,vstoykov/django-rest-framework,hnarayanan/django-rest-framework,hnarayanan/django-rest-framework,justanr/django-rest-framework,krinart/django-rest-framework,edx/django-rest-framework,qsorix/django-rest-framework,iheitlager/django-rest-framework,lubomir/django-rest-framework,zeldalink0515/django-rest-framework,ajaali/django-rest-framework,AlexandreProenca/django-rest-framework,gregmuellegger/django-rest-framework,jerryhebert/django-rest-framework,xiaotangyuan/django-rest-framework,tigeraniya/django-rest-framework,adambain-vokal/django-rest-framework,ashishfinoit/django-rest-framework,lubomir/django-rest-framework |
220b6dc02e0809e918748e4b1d7ae0704932d6e3 | .travis.yml | .travis.yml | before_install:
- gem update bundler
- bundle --version
- gem update --system 2.1.11
- gem --version
bundler_args: --standalone --without development
script: RUBYLIB=./bundle script/test
env:
- SSL=no
- SSL=yes
language: ruby
matrix:
allow_failures:
# "A fatal error has been detected by the Java Runtime Environment:
# Internal Error (sharedRuntime.cpp:843)"
- rvm: jruby-18mode
env: SSL=yes
- rvm: jruby-19mode
env: SSL=yes
- rvm: jruby-head
# random crashes
- rvm: rbx
fast_finish: true
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx
| before_install:
- gem update bundler
- bundle --version
- gem update --system 2.1.11
- gem --version
bundler_args: --standalone --without development
script: RUBYLIB=./bundle script/test
env:
- SSL=no
- SSL=yes
language: ruby
matrix:
allow_failures:
# "A fatal error has been detected by the Java Runtime Environment:
# Internal Error (sharedRuntime.cpp:843)"
- rvm: jruby-18mode
- rvm: jruby-19mode
- rvm: jruby-head
# random crashes
- rvm: rbx
fast_finish: true
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx
| Allow jruby-XYmode failures on Travis due to RVM bug | Allow jruby-XYmode failures on Travis due to RVM bug
travis-ci/travis-ci#1948
| YAML | mit | mauricionr/faraday,stayhero/faraday,daviswahl/faraday,ekampp/faraday,jhass/faraday,O-I/faraday,nevans/faraday,hrysd/faraday,hstrowd/faraday,hrysd/faraday,lostisland/faraday,davidcornu/faraday,customink/faraday,AvaelKross/faraday,apepper/faraday,nevans/faraday,engineyard/faraday,pvdb/faraday,luvtechno/faraday,jhass/faraday,mehulkar/faraday,mehulkar/faraday,prcongithub/faraday,jrafanie/faraday,prcongithub/faraday,davoclavo/faraday,zhaoxl/faraday,pvdb/faraday,davidcornu/faraday,hstrowd/faraday,zanker/faraday,ngpestelos/faraday,stayhero/faraday,lostisland/faraday,grosser/faraday,jrafanie/faraday,O-I/faraday,AvaelKross/faraday,coinbase/faraday,grosser/faraday,spyofchina/faraday,ru-faraon/Faraday-is-an-HTTP-client,coinbase/faraday,ekampp/faraday,engineyard/faraday,zanker/faraday,mauricionr/faraday,zhaoxl/faraday,spyofchina/faraday,luvtechno/faraday,customink/faraday,apepper/faraday,daviswahl/faraday,iamjarvo/faraday,flower-pot/faraday,ru-faraon/Faraday-is-an-HTTP-client,davoclavo/faraday,flower-pot/faraday,santiagodoldan/faraday,ngpestelos/faraday,santiagodoldan/faraday,iamjarvo/faraday |
9541858406b925aa12a77eaf002bc0cc0012520b | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO=1.8.17
- DJANGO=1.9.12
- DJANGO=1.10.5
install:
- pip install Django==$DJANGO times da-vinci pillow redis shortuuid
- sudo apt-get install -qq optipng
script: make test
services: redis
| language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
- DJANGO=1.8.17
- DJANGO=1.9.12
- DJANGO=1.10.5
install:
- pip install Django==$DJANGO times da-vinci pillow redis shortuuid
- sudo apt-get install -qq optipng
script: make test
services: redis
| Exclude Python 3.3 from test matrix. | Exclude Python 3.3 from test matrix.
| YAML | mit | ui/django-thumbnails |
292395903e41f7ed175207c0379d12972dbfe656 | .travis.yml | .travis.yml | language: ruby
sudo: false
script: bundle exec rake travis
matrix:
fast_finish: true
include:
- rvm: 1.8.7
gemfile: gemfiles/Gemfile-ruby-1.8.7
- rvm: 1.9.3
gemfile: Gemfile
- rvm: 2.0.0
gemfile: Gemfile
- rvm: 2.1.0
gemfile: Gemfile
- rvm: 2.1.1
gemfile: Gemfile
- rvm: 2.1.1
gemfile: gemfiles/Gemfile-edge
- rvm: 2.2.0
gemfile: Gemfile
- rvm: 2.2.0
gemfile: gemfiles/Gemfile-edge
- rvm: jruby-18mode
gemfile: gemfiles/Gemfile-ruby-1.8.7
- rvm: jruby-19mode
gemfile: Gemfile
- rvm: jruby-head
gemfile: Gemfile
allow_failures:
- rvm: jruby-head
notifications:
email: false
irc:
channels:
- "irc.freenode.org#ruby-fog"
template:
- "[#%{build_number}] %{message} %{build_url}"
- "[#%{build_number}] %{commit} on %{branch} by %{author}"
- "[#%{build_number}] %{compare_url}"
on_success: always
on_failure: always
use_notice: false
| language: ruby
sudo: required
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libvirt-dev
script: bundle exec rake travis
matrix:
fast_finish: true
include:
- rvm: 1.8.7
gemfile: gemfiles/Gemfile-ruby-1.8.7
- rvm: 1.9.3
gemfile: Gemfile
- rvm: 2.0.0
gemfile: Gemfile
- rvm: 2.1.0
gemfile: Gemfile
- rvm: 2.1.1
gemfile: Gemfile
- rvm: 2.1.1
gemfile: gemfiles/Gemfile-edge
- rvm: 2.2.0
gemfile: Gemfile
- rvm: 2.2.0
gemfile: gemfiles/Gemfile-edge
- rvm: jruby-18mode
gemfile: gemfiles/Gemfile-ruby-1.8.7
- rvm: jruby-19mode
gemfile: Gemfile
- rvm: jruby-head
gemfile: Gemfile
allow_failures:
- rvm: jruby-head
notifications:
email: false
irc:
channels:
- "irc.freenode.org#ruby-fog"
template:
- "[#%{build_number}] %{message} %{build_url}"
- "[#%{build_number}] %{commit} on %{branch} by %{author}"
- "[#%{build_number}] %{compare_url}"
on_success: always
on_failure: always
use_notice: false
| Install libvirt header files to compile ruby-libvirt | Travis: Install libvirt header files to compile ruby-libvirt
| YAML | mit | yyuu/fog,theforeman/fog,bryanl/fog,joshmyers/fog,eLobato/fog,ack/fog,pravi/fog,ManageIQ/fog,dhague/fog,mohitsethi/fog,adamleff/fog,mavenlink/fog,kongslund/fog,dustacio/fog,papedaniel/fog,fog/fog,dLobatog/fog,joshisa/fog,mitchlloyd/fog,bryanl/fog,sapcc/fog,glennpratt/fog,mohitsethi/fog,nalabjp/fog,icco/fog,kongslund/fog,Ladas/fog,b0ric/fog,TerryHowe/fog,nicolasbrechet/fog,dtdream/fog,pravi/fog,dLobatog/fog,runtimerevolution/fog,lwander/fog,asebastian-r7/fog,Programatica/fog,adecarolis/fog,lwander/fog,adamleff/fog,pyama86/fog,yyuu/fog,cocktail-io/fog,surminus/fog,dhague/fog,mavenlink/fog,covario-cdiaz/fog,plribeiro3000/fog,rackspace/fog,b0ric/fog,dtdream/fog,fog/fog,sapcc/fog,dustacio/fog,duhast/fog,TerryHowe/fog,asebastian-r7/fog,seanhandley/fog,papedaniel/fog,martinb3/fog,adecarolis/fog,SpryBTS/fog,glennpratt/fog,eLobato/fog,nalabjp/fog,runtimerevolution/fog,icco/fog,mitchlloyd/fog,nicolasbrechet/fog,plribeiro3000/fog,joshisa/fog,Programatica/fog,seanhandley/fog,rackspace/fog,ack/fog,Ladas/fog,ManageIQ/fog,joshmyers/fog,cocktail-io/fog,duhast/fog,theforeman/fog,covario-cdiaz/fog,SpryBTS/fog,surminus/fog,pyama86/fog,martinb3/fog |
b63d403700547cb261a2e3cc23477c75d55c92d3 | .travis.yml | .travis.yml | language: node_js
node_js:
- 6.1.0
branches:
only:
- develop
env:
- TEST_DIR=backend
- TEST_DIR=frontend
services:
- mongodb
before_script:
- sleep 5
- npm install -g gulp typings jspm pm2 jasmine
script: cd $TEST_DIR && npm install && tsd install && jspm install
| language: node_js
node_js:
- 6.1.0
branches:
only:
- develop
env:
- TEST_DIR=backend
- TEST_DIR=frontend
services:
- mongodb
before_script:
- sleep 5
- npm install -g gulp typings jspm pm2 jasmine
script: cd $TEST_DIR && npm install && typings install && jspm install
| Fix to use typings instead of deprecated tsd | Fix to use typings instead of deprecated tsd
| YAML | mit | sundriver/RAM,dave-cheong/RAM,sundriver/RAM,dave-cheong/RAM,dave-cheong/RAM,atogov/RAM,sundriver/RAM,sundriver/RAM,dave-cheong/RAM,atogov/RAM,atogov/RAM,atogov/RAM |
b79c31832ef98033651af8ef07116e00064fa69c | .travis.yml | .travis.yml | # https://travis-ci.org/diyan/assimilator
language: go
dist: trusty
# Define 'sudo: false' to run on container-based workers
sudo: false
cache:
directories:
- $HOME/.glide/cache
go:
- 1.5.x
- 1.6.x
- 1.7.x
- master
env:
- GOOS=linux GOARCH=amd64
- GOOS=linux GOARCH=386
- GOOS=linux GOARCH=arm
- GOOS=darwin GOARCH=amd64
- GOOS=darwin GOARCH=386
- GOOS=darwin GOARCH=arm
- GOOS=windows GOARCH=amd64
- GOOS=windows GOARCH=386
- GOOS=freebsd GOARCH=amd64
- GOOS=freebsd GOARCH=386
- GOOS=freebsd GOARCH=arm
services:
- postgresql
before_install:
- if go version | grep --quiet go1.5; then export GO15VENDOREXPERIMENT=1; fi
- go get github.com/Masterminds/glide
install:
- make get-go-deps
before_script:
- psql --username=postgres -c 'create database sentry_ci;'
script:
- make build-go
- make test-go
#after_success:
# - coveralls
| # https://travis-ci.org/diyan/assimilator
language: go
dist: trusty
# Define 'sudo: false' to run on container-based workers
sudo: false
cache:
directories:
- $HOME/.glide/cache
go:
- 1.5.x
- 1.6.x
- 1.7.x
- master
env:
- GOOS=linux GOARCH=amd64
- GOOS=linux GOARCH=386
- GOOS=linux GOARCH=arm
- GOOS=darwin GOARCH=amd64
- GOOS=darwin GOARCH=386
- GOOS=darwin GOARCH=arm
- GOOS=windows GOARCH=amd64
- GOOS=windows GOARCH=386
- GOOS=freebsd GOARCH=amd64
- GOOS=freebsd GOARCH=386
- GOOS=freebsd GOARCH=arm
services:
- postgresql
before_install:
- if go version | grep --quiet go1.5; then export GO15VENDOREXPERIMENT=1; fi
- go get github.com/Masterminds/glide
install:
- make get-go-deps
script:
- make build-go
- make test-go
#after_success:
# - coveralls
| Use code instead of psql to create sentry_ci db | Use code instead of psql to create sentry_ci db
| YAML | mit | diyan/assimilator,diyan/assimilator,diyan/assimilator |
d4c310865e84e240409bf43bde0fc7683c388e6d | .travis.yml | .travis.yml | language: java
jdk: oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
deploy:
- provider: s3
access_key_id: $AWS_ACCESS_KEY
secret_access_key: $AWS_SECRET_KEY
local_dir: deployment
skip_cleanup: true
bundle_type: jar
on: &2
branch: master
bucket: telegram-bots-delivery-bucket
region: eu-central-1
- provider: codedeploy
access_key_id: $AWS_ACCESS_KEY
secret_access_key: $AWS_SECRET_KEY
bucket: telegram-bots-delivery-bucket
key: telegram-bots.jar
bundle_type: jar
application: telegram-bots-deploy
deployment_group: bots
region: eu-central-1
on: *2
script:
- ./gradlew shadowJar
- mkdir -p deployment
- mv build/libs/telegram-bots.jar deployment/.
| language: java
jdk: oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
deploy:
- provider: s3
access_key_id: $AWS_ACCESS_KEY
secret_access_key: $AWS_SECRET_KEY
local_dir: deployment
skip_cleanup: true
bundle_type: zip
on: &2
branch: master
bucket: telegram-bots-delivery-bucket
region: eu-central-1
- provider: codedeploy
access_key_id: $AWS_ACCESS_KEY
secret_access_key: $AWS_SECRET_KEY
bucket: telegram-bots-delivery-bucket
key: telegram-bots.zip
bundle_type: zip
application: telegram-bots-deploy
deployment_group: bots
region: eu-central-1
on: *2
script:
- ./gradlew shadowJar
- zip build/libs/telegram-bots.zip build/libs/telegram-bots.jar
- mkdir -p deployment
- mv build/libs/telegram-bots.zip deployment/.
| Change deployed bundle to zip instead of jar | Change deployed bundle to zip instead of jar
| YAML | mit | z3on/telegram-bots,z3on/telegram-bots |
66b19abd476768ea9e7ef95a8c3403100964d31b | .travis.yml | .travis.yml | # Travis CI (http://travis-ci.org/) is a continuous integration service for
# open source projects. This file configures it to run unit tests for rtfblog.
language: go
go:
- 1.5
- 1.6
- tip
before_install:
- go get -v golang.org/x/tools/cmd/cover
- go get -v github.com/mattn/goveralls
- go get -v github.com/steinbacher/goose/cmd/goose
- go get -v github.com/jteeuwen/go-bindata/...
- npm install -g grunt-cli bower browserify json
- sudo /etc/init.d/postgresql stop
script:
- make
- ./scripts/run-pg-tests.sh
- ./scripts/run-sqlite-tests.sh
after_script:
- $HOME/gopath/bin/goveralls -coverprofile=profile.cov -service=travis-ci
| # Travis CI (http://travis-ci.org/) is a continuous integration service for
# open source projects. This file configures it to run unit tests for rtfblog.
language: go
go:
- 1.5
- 1.6
- tip
before_install:
- go get -v golang.org/x/tools/cmd/cover
- go get -v github.com/mattn/goveralls
- go get -v github.com/steinbacher/goose/cmd/goose
- go get -v github.com/jteeuwen/go-bindata/...
- npm install -g grunt-cli bower browserify json
- sudo apt-get purge postgresql-client-9.5
- sudo apt-get install postgresql-server-dev-9.4
- sudo /etc/init.d/postgresql stop
script:
- make
- ./scripts/run-pg-tests.sh
- ./scripts/run-sqlite-tests.sh
after_script:
- $HOME/gopath/bin/goveralls -coverprofile=profile.cov -service=travis-ci
| Fix build on Travis by switching to PG 9.4 | Fix build on Travis by switching to PG 9.4
Travis support has recommended that since they seem to be experiencing
problems with 9.5 on Precise images.
| YAML | bsd-2-clause | rtfb/rtfblog,rtfb/rtfblog,rtfb/rtfblog,rtfb/rtfblog,rtfb/rtfblog |
d06b0b25708ec12e526364677e987c6ab18f118f | .travis.yml | .travis.yml | language: node_js
node_js:
- '8'
- '6'
- '4'
services:
- redis-server
script: npm run test:full
after_success: npm run coverage
notifications:
email:
on_success: never
| language: node_js
node_js:
- '8'
- '6'
- '4'
services:
- redis-server
- mongodb
script: npm run test:full
after_success: npm run coverage
notifications:
email:
on_success: never
| Add MongoDB service to Travis | Add MongoDB service to Travis
| YAML | mit | lukechilds/keyv |
262a51882107fc84a64a489f992c8d384c06dad0 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
- nightly
matrix:
allow_failures:
- php: 7
- php: hhvm
- php: nightly
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
before_script:
- mysql -e 'create database test;'
script: phpunit | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
- nightly
matrix:
allow_failures:
- php: 7
- php: nightly
sudo: false
before_install:
- travis_retry composer self-update
install: travis_retry composer install --no-interaction --prefer-source
before_script:
- mysql -e 'create database test;'
script: vendor/bin/phpunit
| Remove HHVM allow failure & edited phpunit script path | Remove HHVM allow failure & edited phpunit script path
| YAML | mit | qlake/framework,qlake/framework |
c54ddb466663986b968dee67a4db7421a38215d7 | .travis.yml | .travis.yml | ---
language: lisp
env:
matrix:
- LISP=sbcl-bin
- LISP=ccl-bin
- LISP=ecl
- LISP=clisp
- LISP=abcl-bin
- LISP=allegro
# - LISP=clasp
# - LISP=cmu-bin
matrix:
fast_finish: true
allow_failures:
- env: LISP=abcl-bin
- env: LISP=allegro
# - env: LISP=cmu-bin
# - env: LISP=clasp
install:
- curl -L 'https://raw.githubusercontent.com/snmsts/roswell/release/scripts/install-for-ci.sh' | sh
before_script:
- bin/fetch-configlet
- bin/configlet .
script:
- ros run -l 'bin/xlisp-test.lisp' -e '(xlisp-test:travis-build)' -q
# Cut and paste above to run all tests locally.
# Add a numeric argument to XLISP-TEST:RUN-TESTS-ALL between 0 and 7
# to control optional verbosity (default is 3).
| ---
language: lisp
env:
matrix:
- LISP=sbcl-bin
- LISP=ccl-bin
- LISP=ecl
- LISP=clisp
- LISP=abcl-bin
- LISP=allegro
# - LISP=clasp
# - LISP=cmu-bin
matrix:
fast_finish: true
allow_failures:
- env: LISP=abcl-bin
- env: LISP=allegro
# - env: LISP=cmu-bin
# - env: LISP=clasp
install:
- curl -L 'https://raw.githubusercontent.com/snmsts/roswell/release/scripts/install-for-ci.sh' | sh
before_script:
- bin/fetch-configlet
- bin/configlet lint .
script:
- ros run -l 'bin/xlisp-test.lisp' -e '(xlisp-test:travis-build)' -q
# Cut and paste above to run all tests locally.
# Add a numeric argument to XLISP-TEST:RUN-TESTS-ALL between 0 and 7
# to control optional verbosity (default is 3).
| Call configlet subcommand on CI | Call configlet subcommand on CI
This changes configlet to pass a subcommand.
For now, we've released a version of configlet which handles both the old command:
configlet path/to/track
as well as the new command:
configlet lint path/to/track
This will let us update all the travis files to include the subcommand before we
release the version of configlet that requires the subcommand.
| YAML | mit | exercism/xlisp,exercism/xlisp,wobh/xlisp,verdammelt/xlisp,wobh/xlisp,verdammelt/xlisp |
695accacd8ca39964b189da59c90a1d03cf9146a | .travis.yml | .travis.yml | sudo: required
dist: precise
language: cpp
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- g++-5
- gcc-5
- cmake
- cmake-data
env:
- CXX_COMPILER=g++-5
- C_COMPILER=gcc-5
# - compiler: clang
# addons:
# apt:
# sources:
# - ubuntu-toolchain-r-test
# - george-edison55-precise-backports
# packages:
# - cmake
# - cmake-data
# env: COMPILER=clang++
before_install:
- sudo apt-get update -qq
- sudo apt-get install libboost-all-dev
script:
- mkdir build
- cd build
- cmake -DCMAKE_CXX_COMPILER=$CXX_COMPILER -DCMAKE_C_COMPILER=$C_COMPILER ..
- make
notifications:
email: false | sudo: required
dist: trusty
language: cpp
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- g++-5
- gcc-5
- cmake
- cmake-data
env:
- CXX_COMPILER=g++-5
- C_COMPILER=gcc-5
# - compiler: clang
# addons:
# apt:
# sources:
# - ubuntu-toolchain-r-test
# - george-edison55-precise-backports
# packages:
# - cmake
# - cmake-data
# env: COMPILER=clang++
before_install:
- sudo apt-get update -qq
- sudo apt-get install libboost-all-dev
script:
- mkdir build
- cd build
- cmake -DCMAKE_CXX_COMPILER=$CXX_COMPILER -DCMAKE_C_COMPILER=$C_COMPILER ..
- make
notifications:
email: false | Fix compile with boost filesystem 2 | Fix compile with boost filesystem 2
| YAML | mit | benvenutti/hasm,benvenutti/hasmTest,benvenutti/hasm,benvenutti/hasmTest |
6c593d56475d58b607f718ca27f913dfba623ae7 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
before_install:
# We need GraphViz to draw figures of graphs and lattices:
- "sudo apt-get install graphviz 2>&1 | tail -n 2"
# We need these to call GraphViz from Python:
- "pip install pydot pyparsing --use-mirrors | tail -n 2"
# We need NumPy, which currently isn't directly available in TravisCI
# under Python 3.2 due to an installation problem, thus this trick.
# See https://github.com/travis-ci/travis-cookbooks/issues/48
- "if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then sudo apt-get install python3-numpy 2>&1 | tail -n 2; fi"
- "if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then ln -s /usr/lib/python3/dist-packages/numpy ~/virtualenv/python3.2/lib/python3.2/site-packages/; fi"
install:
# Don't need to do any install step for Python 2, but for Python 3
# must run 2to3 (once for main code, doctests don't need changing):
- "if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then 2to3 -w -n --no-diffs -x print graphs.py 2>&1; fi"
- "echo Ready to test..."
script:
- "python graphs.py"
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
before_install:
# We need GraphViz to draw figures of graphs and lattices:
- "sudo apt-get install graphviz 2>&1 | tail -n 2"
# We need these to call GraphViz from Python:
- "pip install pydot pyparsing --use-mirrors | tail -n 2"
# We also need NumPy, which TravisCI should have by default now :)
script:
- "python graphs.py"
| Remove 2to3 call in TravisCI testing; TravisCI provides NumPy now | Remove 2to3 call in TravisCI testing; TravisCI provides NumPy now
| YAML | bsd-3-clause | peterjc/ccn |
2f65f21868d886c45c637db3f48b182d3389e090 | .travis.yml | .travis.yml |
language: php
php:
- 5.3
before_script:
- curl -sS https://getcomposer.org/installer | php
script: make
|
language: php
php:
- 5.4
before_script:
- curl -sS https://getcomposer.org/installer | php
script: make
| Update PHP version in Travis for Composer install | Update PHP version in Travis for Composer install
| YAML | mit | hnrysmth/reddit-api-client,Zetaphor/reddit-api-client |
f0cde605e7c42f16e9375db1bd9bfcaec9c03a89 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=1.5.2
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- pip install Django==$DJANGO selenium --use-mirrors
script:
- python setup.py test
| language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=1.5.5
- DJANGO=1.6
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- pip install Django==$DJANGO selenium --use-mirrors
script:
- python setup.py test
| Add Django 1.6 to Travis testing matrix. | Add Django 1.6 to Travis testing matrix.
| YAML | bsd-3-clause | jondbaker/django-critique |
c42c5c64fd0019d4de2b6dc1598e6623cbb3f014 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode9.3
env:
- LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
before_install:
- pod repo update
- brew install gnu-sed s3cmd
- gem install xcpretty -N
script: "./Tests/travis.sh"
notifications:
slack:
secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI=
deploy:
provider: releases
api_key:
secure: a7osq2mGo9nnc/tb5SuWpB+CXmeWUqH3TIAyxWooe17KCcKJ4cFRZi5W7MORySSfi7IzSsJ3igWRbXx+P3cwk+/AEqDA1Gmv2ZiIBE7m4fee/wnuA1eIOrzpaBevcEO+s9ooS2Dlq4S3UUSsBB+2slRXZQOcIG2n5imHs9ckGWM=
file_glob: true
skip_cleanup: true
file: Frameworks/packages/*.zip
on:
repo: AudioKit/AudioKit
tags: true
| language: objective-c
osx_image: xcode9.4
env:
- LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
before_install:
- pod repo update
- brew install gnu-sed s3cmd
- gem install xcpretty -N
script: "./Tests/travis.sh"
notifications:
slack:
secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI=
deploy:
provider: releases
api_key:
secure: a7osq2mGo9nnc/tb5SuWpB+CXmeWUqH3TIAyxWooe17KCcKJ4cFRZi5W7MORySSfi7IzSsJ3igWRbXx+P3cwk+/AEqDA1Gmv2ZiIBE7m4fee/wnuA1eIOrzpaBevcEO+s9ooS2Dlq4S3UUSsBB+2slRXZQOcIG2n5imHs9ckGWM=
file_glob: true
skip_cleanup: true
file: Frameworks/packages/*.zip
on:
repo: AudioKit/AudioKit
tags: true
| Use Xcode 9.4 image on Travis CI | Use Xcode 9.4 image on Travis CI
| YAML | mit | eljeff/AudioKit,adamnemecek/AudioKit,adamnemecek/AudioKit,eljeff/AudioKit,adamnemecek/AudioKit,audiokit/AudioKit,audiokit/AudioKit,eljeff/AudioKit,adamnemecek/AudioKit,audiokit/AudioKit,audiokit/AudioKit,eljeff/AudioKit |
564706d814280c669b3c222170a0459d4212366c | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
cache:
yarn: true
install:
- yarn
- cd functions && npm install && cd ..
script:
- npm test
- npm run deploy:ci | language: node_js
node_js:
- "7"
cache:
yarn: true
install:
- yarn
- cd functions && npm install && cd ..
script:
- npm test
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" -a "$TRAVIS_BRANCH" = "master" ]; then npm run deploy:ci; fi'
| Deploy on only master in Travis | :green_heart: Deploy on only master in Travis
| YAML | mit | nownabe/brainfuck-board,nownabe/brainfuck-board |
23220cca8f9bbfd7aa52abf3fb7a8b307a075033 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- ruby-head
- rbx-2.1.1
env:
- DB=sqlite SEQUEL='~> 3.38'
- DB=sqlite SEQUEL='~> 4.0'
- DB=mysql SEQUEL='~> 3.38'
- DB=mysql SEQUEL='~> 4.0'
- DB=postgres SEQUEL='~> 3.38'
- DB=postgres SEQUEL='~> 4.0'
gemfile: ci/Gemfile.ci
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- ruby-head
- rbx-2.1.1
env:
- DB=sqlite SEQUEL='~> 3.38'
- DB=sqlite SEQUEL='~> 4.0'
- DB=mysql SEQUEL='~> 3.38'
- DB=mysql SEQUEL='~> 4.0'
- DB=postgres SEQUEL='~> 3.38'
- DB=postgres SEQUEL='~> 4.0'
gemfile: ci/Gemfile.ci
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-2.1.1
| Allow ruby-head and rbx to fail | Allow ruby-head and rbx to fail
| YAML | mit | TalentBox/delayed_job_sequel,cloudfoundry/delayed_job_sequel |
f823e9df90ffe0938f9f590becf9ad7cbc0ffd89 | .travis.yml | .travis.yml | cache:
directories:
- $HOME/.m2
language: java
jdk:
- oraclejdk7
- oraclejdk8
email:
- ben.alex@acegi.com.au
install:
- mvn -B -Pdeploy -DexcludeGroupIds=com.github.github -V dependency:go-offline
script:
- mvn -B -Pdeploy -Dgpg.skip=true verify
after_success:
- if [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]; then bash <(curl -s https://codecov.io/bash); fi
- if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" != "" ] && [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]; then echo $GPG_KEY | base64 -d | gpg --batch --fast-import -; fi
- if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" != "" ] && [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]; then mvn -B -Pdeploy --settings .travis-settings.xml deploy; fi
- if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" != "" ] && [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]; then mvn -B -Pdeploy --settings .travis-settings.xml site-deploy; fi
| cache:
directories:
- $HOME/.m2
language: java
jdk:
- oraclejdk7
- oraclejdk8
email:
- ben.alex@acegi.com.au
install:
- mvn -B -Pdeploy -DexcludeGroupIds=com.github.github -V dependency:go-offline
script:
- mvn -B -Pdeploy -Dgpg.skip=true verify
after_success:
- if [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]; then bash <(curl -s https://codecov.io/bash); fi
- if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" != "" ] && [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]; then echo $GPG_KEY | base64 --decode | gpg --batch --fast-import -; fi
- if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" != "" ] && [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]; then mvn -B -Pdeploy --settings .travis-settings.xml deploy; fi
- if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" != "" ] && [ "$TRAVIS_JDK_VERSION" == "oraclejdk8" ]; then mvn -B -Pdeploy --settings .travis-settings.xml site-deploy; fi
| Use base64 --decode for OS X compatibility | Use base64 --decode for OS X compatibility
| YAML | apache-2.0 | acegi/xml-format-maven-plugin |
a285997f694e32bd009cb2b24e88613e9cc57b09 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby
- rbx
matrix:
allow_failures:
- rvm: rbx
fast_finish: true
| language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- jruby
- rbx
matrix:
allow_failures:
- rvm: rbx
fast_finish: true
| Use latest Rubies on Travis | Use latest Rubies on Travis
| YAML | mit | splattael/minitest-around |
8c84d9e8e207371973d7d1f8cd126fd05a371dc8 | .travis.yml | .travis.yml | branches:
only:
- development
os:
- linux
- osx
language: generic
env:
global:
- SWIFT_VERSION=DEVELOPMENT-SNAPSHOT-2016-05-03-a
sudo: required
dist: trusty
osx_image: xcode7.3
install:
- eval "$(cat ./install-swiftenv.sh)"
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
sudo apt-get install -y libcurl4-openssl-dev libblocksruntime-dev libkqueue-dev libpthread-workqueue-dev libbsd-dev;
git clone -b experimental/foundation https://github.com/apple/swift-corelibs-libdispatch.git;
cd swift-corelibs-libdispatch && git submodule init && git submodule update && sh ./autogen.sh && ./configure --with-swift-toolchain=/home/travis/.swiftenv/versions/$SWIFT_VERSION/usr --prefix=/home/travis/.swiftenv/versions/$SWIFT_VERSION/usr && make && make install;
fi
script:
- swift build --fetch
- swift build -Xswiftc -I/usr/local/include -Xcc -fblocks -Xlinker -ldispatch -Xlinker -rpath -Xlinker $(pwd)/.build/debug/ -Xlinker -L/usr/local/lib
- if [[ "$TRAVIS_OS_NAME" != "linux" ]]; then
swift test;
fi
| branches:
only:
- development
os:
- linux
- osx
language: generic
env:
global:
- SWIFT_VERSION=DEVELOPMENT-SNAPSHOT-2016-05-03-a
sudo: required
dist: trusty
osx_image: xcode7.3
install:
- eval "$(cat ./install-swiftenv.sh)"
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
sudo apt-get install -y libcurl4-openssl-dev libblocksruntime-dev libkqueue-dev libpthread-workqueue-dev libbsd-dev;
git clone -b experimental/foundation https://github.com/apple/swift-corelibs-libdispatch.git;
cd swift-corelibs-libdispatch && git submodule init && git submodule update && sh ./autogen.sh && ./configure --with-swift-toolchain=/home/travis/.swiftenv/versions/$SWIFT_VERSION/usr --prefix=/home/travis/.swiftenv/versions/$SWIFT_VERSION/usr && make && make install;
fi
script:
- swift build --fetch
- swift build -Xswiftc -I/usr/local/include -Xcc -fblocks -Xlinker -ldispatch -Xlinker -rpath -Xlinker $(pwd)/.build/debug/ -Xlinker -L/usr/local/lib
- if [[ "$TRAVIS_OS_NAME" != "linux" ]]; then
xcodebuild test -scheme 'PushNotificationsTestsTestSuite' -destination 'platform=OSX,arch=x86_64';
fi
| Change command to run tests | Change command to run tests
| YAML | apache-2.0 | ibm-bluemix-mobile-services/bms-pushnotifications-serversdk-swift,ibm-bluemix-mobile-services/bluemix-pushnotifications-swift-sdk,ibm-bluemix-mobile-services/bluemix-pushnotifications-swift-sdk,ibm-bluemix-mobile-services/bms-pushnotifications-serversdk-swift |
f2c0afac8f1fda0d1b408da9fb9e61a2df3393b6 | .travis.yml | .travis.yml | language: node_js
addons:
chrome: stable
node_js:
- "8"
- "10"
- "12"
env:
- WEBPACK_VERSION=4
- WEBPACK_VERSION=3
script: yarn lint && yarn add --dev webpack@$WEBPACK_VERSION && yarn test
| language: node_js
addons:
chrome: stable
node_js:
- "8"
- "10"
- "12"
env:
- WEBPACK_VERSION=4
- WEBPACK_VERSION=3
install: yarn install --ignore-engines
script: yarn lint && yarn add --dev webpack@$WEBPACK_VERSION --ignore-engines && yarn test
| Work around installation issue in Travis | Work around installation issue in Travis
file-loader isn't compatible with Node 8, but it still works. Instead of
removing Node 8 support for this module I'm simply making the install
command ignore the incompat.
| YAML | mit | enduire/happo.io,enduire/happo.io |
65c90ebe87c8f3626cf5a53457888417f7a0078c | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.3.0
- 2.3.3
- 2.4.0
- 2.4.4
- 2.5.0
- 2.5.3
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
before_install: 'gem install bundler'
script: 'bundle exec rake'
notifications:
email:
on_failure: change
on_success: never
| language: ruby
cache: bundler
env:
global:
- CC_TEST_REPORTER_ID=6dc7db591131b55839297349c4a843ee7d7d9b28731c6bb4f1db9d42fa86c7b6
rvm:
- 2.3.0
- 2.3.3
- 2.4.0
- 2.4.4
- 2.5.0
- 2.5.3
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
before_install: 'gem install bundler'
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script: 'bundle exec rake'
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
notifications:
email:
on_failure: change
on_success: never
| Test for codeclimate code coverage uploads. Might clash with multiple ruby/rails versions. | Test for codeclimate code coverage uploads. Might clash with multiple ruby/rails versions.
| YAML | mit | Stex/setting_accessors,Stex/setting_accessors,Stex/setting_accessors |
00a1569e473553b5b4a4ecddb7b03dcb06bcd998 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
env:
global:
- WAIT_FOR_ES=1
matrix:
- ES_VERSION=1.0.3
- ES_VERSION=1.1.2
- ES_VERSION=1.2.1
install:
- mkdir /tmp/elasticsearch
- wget -O - https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-${ES_VERSION}.tar.gz | tar xz --directory=/tmp/elasticsearch --strip-components=1
- /tmp/elasticsearch/bin/elasticsearch -d -D es.path.data=/tmp -D es.gateway.type=none -D es.index.store.type=memory -D es.discovery.zen.ping.multicast.enabled=false
- pip install git+https://github.com/elasticsearch/elasticsearch-py.git#egg=elasticsearch
- pip install .
script:
- python setup.py test
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
env:
global:
- WAIT_FOR_ES=1
matrix:
- ES_VERSION=1.0.3
- ES_VERSION=1.1.2
- ES_VERSION=1.2.1
install:
- mkdir /tmp/elasticsearch
- wget -O - https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-${ES_VERSION}.tar.gz | tar xz --directory=/tmp/elasticsearch --strip-components=1
- /tmp/elasticsearch/bin/elasticsearch -d -D es.path.data=/tmp -D es.gateway.type=none -D es.index.store.type=memory -D es.discovery.zen.ping.multicast.enabled=false
- pip install git+https://github.com/elasticsearch/elasticsearch-py.git#egg=elasticsearch
- pip install .
script:
- python setup.py test
| Add 3.4 to the testing matrix | Add 3.4 to the testing matrix
| YAML | apache-2.0 | Quiri/elasticsearch-dsl-py,elastic/elasticsearch-dsl-py,hampsterx/elasticsearch-dsl-py,REVLWorld/elasticsearch-dsl-py,ziky90/elasticsearch-dsl-py,solarissmoke/elasticsearch-dsl-py,ngokevin/elasticsearch-dsl-py,f-santos/elasticsearch-dsl-py,harshmaur/elasticsearch-dsl-py,gkirkpatrick/elasticsearch-dsl-py,3lnc/elasticsearch-dsl-py,reflection/elasticsearch-dsl-py,avishai-ish-shalom/elasticsearch-dsl-py,harshit298/elasticsearch-dsl-py,sangheestyle/elasticsearch-dsl-py |
c2f45b4bca9ea031fd264460dbdbe78a055259ca | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
gemfile:
- test/gemfiles/5.0.gemfile
- test/gemfiles/5.1.gemfile
- test/gemfiles/5.2.gemfile
before_install:
- gem i rubygems-update -v '<3' && update_rubygems
- gem install bundler --no-document
script:
- bundle exec rake test
matrix:
include:
# Bleeding edge
- rvm: ruby-head
gemfile: test/gemfiles/5.2.gemfile
# Running one job to execute DANGER bot and linting
- rvm: 2.5.0
gemfile: test/gemfiles/5.2.gemfile
script:
- gem install danger
- danger
- bundle exec rake rubocop
allow_failures:
- rvm: ruby-head
| language: ruby
rvm:
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
gemfile:
- test/gemfiles/5.0.gemfile
- test/gemfiles/5.1.gemfile
- test/gemfiles/5.2.gemfile
before_install:
- gem i rubygems-update -v '<3' && update_rubygems
- gem install bundler -v 1.17.3 --no-document
script:
- bundle exec rake test
matrix:
include:
# Bleeding edge
- rvm: ruby-head
gemfile: test/gemfiles/5.2.gemfile
# Running one job to execute DANGER bot and linting
- rvm: 2.5.0
gemfile: test/gemfiles/5.2.gemfile
script:
- gem install danger
- danger
- bundle exec rake rubocop
allow_failures:
- rvm: ruby-head
| Fix bundler to a supported version. | Fix bundler to a supported version. | YAML | mit | bootstrap-ruby/rails-bootstrap-forms,donv/rails-bootstrap-forms |
7950dc1843df588849162f475e816027f5905f77 | .travis.yml | .travis.yml | language: node_js
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN # Set in travis-ci.org dashboard, marked secure
keep-history: true
on:
branch: gh-pages
local-dir: demo | language: node_js
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN # Set in travis-ci.org dashboard, marked secure
keep-history: true
on:
branch: gh-pages
local-dir: packages/simplebar/demo | Fix Travis deployment folder path | Fix Travis deployment folder path
| YAML | mit | Grsmto/simplebar,Grsmto/simplebar,Grsmto/simplebar |
c7e8a0597a6ac08c60a25e65f49cdc9bbaf46e2e | .travis.yml | .travis.yml | language: python
sudo: false
cache:
directories:
- $HOME/.cache/pip
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "nightly"
env:
global:
- TEST=-v
matrix:
- DOCUTILS=0.11
- DOCUTILS=0.12
install:
- pip install -U pip
- pip install docutils==$DOCUTILS
- pip install -r requirements.txt
script:
- make -C demo_docs html
| language: python
sudo: false
cache:
directories:
- $HOME/.cache/pip
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
- "pypy"
env:
global:
- TEST=-v
matrix:
- DOCUTILS=0.11
- DOCUTILS=0.12
- DOCUTILS=0.13.1
matrix:
exclude:
- python: "3.4"
env: DOCUTILS=0.11
- python: "3.4"
env: DOCUTILS=0.12
- python: "3.5"
env: DOCUTILS=0.11
- python: "3.5"
env: DOCUTILS=0.12
- python: "3.6"
env: DOCUTILS=0.11
- python: "3.6"
env: DOCUTILS=0.12
- python: nightly
env: DOCUTILS=0.11
- python: nightly
env: DOCUTILS=0.12
- python: pypy
env: DOCUTILS=0.11
- python: pypy
env: DOCUTILS=0.12
install:
- pip install -U pip
- pip install docutils==$DOCUTILS
- pip install -r requirements.txt
script:
- make -C demo_docs html
| Add Python 3.6 and pypy | [FIX] Add Python 3.6 and pypy
| YAML | bsd-3-clause | mga-sphinx/sphinx_adc_theme,mga-sphinx/sphinx_adc_theme,mga-sphinx/sphinx_adc_theme |
6f1b25a6453f7f1015088e537ab242ea0b249323 | .travis.yml | .travis.yml | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/cookstyle
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec -f any -P
- /opt/chefdk/embedded/bin/rspec spec
| # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/cookstyle
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec -f any -P
- /opt/chefdk/embedded/bin/rspec spec
| Switch back to stable ChefDK builds for testing | Switch back to stable ChefDK builds for testing
| YAML | apache-2.0 | chef-cookbooks/chef-analytics,chef-cookbooks/chef-analytics |
f3cf0f7f70dd0322808acb6ae4a91d236ecf9ede | .travis.yml | .travis.yml | language: java
env:
- secure: "h08AjZZ0G2A9gHFbUrLNwBgjqj52On0+psV82JAopZxcdynIK2QQ5uDavZKOU/W3rUSUHJvl7pjzZkZgUccJX+iqUXZh7hJxY79nTPSjMNW4Hl9I7qQp1etKZMxfc0x+1ikZVpzbsfpYaypkf8hTYVKVZTcFDg6yueHL+Q2rI0Q="
after_success:
"mvn -B package cargo:redeploy"
| language: java
env:
- secure: "h08AjZZ0G2A9gHFbUrLNwBgjqj52On0+psV82JAopZxcdynIK2QQ5uDavZKOU/W3rUSUHJvl7pjzZkZgUccJX+iqUXZh7hJxY79nTPSjMNW4Hl9I7qQp1etKZMxfc0x+1ikZVpzbsfpYaypkf8hTYVKVZTcFDg6yueHL+Q2rI0Q="
after_success:
"if [ $TRAVIS_PULL_REQUEST -eq false ]; then mvn -B package cargo:redeploy; fi"
| Disable deploy of pull requests | Disable deploy of pull requests
| YAML | agpl-3.0 | mvk13ogb/qwait,mvk13ogb/qwait,mvk13ogb/qwait |
45e0fd7c42321b350f7832887a4c48c6058f5c8d | .travis.yml | .travis.yml | sudo: false
language: c
addons:
apt:
packages:
- pandoc
script: curl -s https://raw.githubusercontent.com/BigWigsMods/packager/master/release.sh | bash
branches:
only:
- /^\d+\.\d+(\.\d+)?(-\S*)?$/
| sudo: false
language: c
addons:
apt:
packages:
- pandoc
script: curl -s https://raw.githubusercontent.com/BigWigsMods/packager/master/release.sh | bash
| Package on all commits, not just tags | Package on all commits, not just tags
| YAML | mit | Choonster/PetBattleMusic,Choonster/PetBattleMusic |
0aa536d39912a42c1282321ab5c808877e51d957 | .travis.yml | .travis.yml | language: perl6
sudo: false
perl6:
- latest
install:
- rakudobrew build-panda
- panda update && panda install Compress::Bzip2::Raw
| language: perl6
sudo: false
perl6:
- latest
install:
- rakudobrew build-zef
- zef install .
| Use zef instead of panda | Use zef instead of panda
| YAML | artistic-2.0 | Altai-man/perl6-Compress-Bzip2 |
487ed9f514475042023c582d5eba419fe2f0081b | .travis.yml | .travis.yml | dist: bionic
language: ruby
rvm: 2.6
gemfile:
- Gemfile
- test/gemfiles/activerecord52.gemfile
- test/gemfiles/activerecord51.gemfile
- test/gemfiles/activerecord50.gemfile
script: bundle exec rake test
services:
- postgresql
addons:
postgresql: 10
before_script:
- createdb strong_migrations_test
matrix:
include:
- name: MySQL
gemfile: test/gemfiles/mysql2.gemfile
env: ADAPTER=mysql2
services:
- mysql
before_script:
- mysqladmin create strong_migrations_test
- name: MariaDB
gemfile: test/gemfiles/mysql2.gemfile
env: ADAPTER=mysql2
addons:
mariadb: 10.3
before_script:
- mysqladmin create strong_migrations_test
- mysql -u root -e 'CREATE USER IF NOT EXISTS travis@localhost'
- mysql -u root -e 'GRANT ALL ON *.* TO travis@localhost'
notifications:
email:
on_success: never
on_failure: change
| dist: bionic
language: ruby
script: bundle exec rake test
services:
- postgresql
addons:
postgresql: 10
before_script:
- createdb strong_migrations_test
jobs:
include:
- rvm: 2.7
gemfile: Gemfile
- rvm: 2.6
gemfile: test/gemfiles/activerecord52.gemfile
- rvm: 2.5
gemfile: test/gemfiles/activerecord51.gemfile
- rvm: 2.4
gemfile: test/gemfiles/activerecord50.gemfile
- name: MySQL
rvm: 2.7
gemfile: test/gemfiles/mysql2.gemfile
env: ADAPTER=mysql2
services:
- mysql
before_script:
- mysqladmin create strong_migrations_test
- name: MariaDB
rvm: 2.7
gemfile: test/gemfiles/mysql2.gemfile
env: ADAPTER=mysql2
addons:
mariadb: 10.3
before_script:
- mysqladmin create strong_migrations_test
- mysql -u root -e 'CREATE USER IF NOT EXISTS travis@localhost'
- mysql -u root -e 'GRANT ALL ON *.* TO travis@localhost'
notifications:
email:
on_success: never
on_failure: change
| Test against multiple Ruby versions on Travis | Test against multiple Ruby versions on Travis
| YAML | mit | ankane/strong_migrations |
7ebbf2c86e08651ae590c7620c7801b92de20201 | .travis.yml | .travis.yml | sudo: false
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- jruby
- ruby-head
matrix:
fast_finish: true
| sudo: false
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- jruby
- ruby-head
matrix:
fast_finish: true
env:
global:
- "JRUBY_OPTS=-Xcext.enabled=true"
| Fix error on Travis for JRuby. | Fix error on Travis for JRuby.
| YAML | mit | AEgan/rails-controller-testing,rails/rails-controller-testing,AEgan/rails-controller-testing,AEgan/rails-controller-testing,rails/rails-controller-testing |
af9d7d31ef224f1848e6e8e95607b7e10f58c439 | .travis.yml | .travis.yml | language: python
git:
depth: 5
matrix:
include:
- python: '2.7'
env: TOXENV=py27
- python: '2.7'
env: TOXENV=lint
- python: '3.6'
env: TOXENV=py36
fast_finish: true
install:
- pip install tox
script:
- tox -e $TOXENV
| language: python
git:
depth: 5
matrix:
include:
- python: '2.7'
env: TOXENV=py27
- python: '2.7'
env: TOXENV=lint
- python: '3.3'
env: TOXENV=py33
- python: '3.4'
env: TOXENV=py34
- python: '3.5'
env: TOXENV=py35
- python: '3.6'
env: TOXENV=py36
- python: '3.7'
env: TOXENV=py37
fast_finish: true
install:
- pip install tox
script:
- tox -e $TOXENV
| Use various python environments for running tests | Travis: Use various python environments for running tests
| YAML | mit | manrajgrover/halo,ManrajGrover/halo |
f1a6da8b2b1ec9bd914f41eaa2a6990880e04375 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
before_script:
- "pip install paramiko || true"
- "echo NoHostAuthenticationForLocalhost yes >> ~/.ssh/config"
- "echo StrictHostKeyChecking no >> ~/.ssh/config"
- "ssh-keygen -q -f ~/.ssh/id_rsa -N ''"
- "cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys"
- "python setup.py install"
- "cd tests"
script: nosetests -vv -d
notifications:
email:
on_success: change
on_failure: change
| sudo: true
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
before_script:
- "pip install paramiko || true"
- "echo NoHostAuthenticationForLocalhost yes >> ~/.ssh/config"
- "echo StrictHostKeyChecking no >> ~/.ssh/config"
- "ssh-keygen -q -f ~/.ssh/id_rsa -N ''"
- "cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys"
- "python setup.py install"
- "cd tests"
script: nosetests -vv -d
notifications:
email:
on_success: change
on_failure: change
| Fix for Travis not building on newer forks. | Fix for Travis not building on newer forks.
| YAML | mit | astraw38/plumbum,astraw38/plumbum,tomerfiliba/plumbum,pombredanne/plumbum,AndydeCleyre/plumbum,adamchainz/plumbum,fahhem/plumbum,fahhem/plumbum,AndydeCleyre/plumbum,henryiii/plumbum,tigrawap/plumbum,vodik/plumbum,pombredanne/plumbum,tigrawap/plumbum,henryiii/plumbum,tomerfiliba/plumbum,weka-io/plumbum,vodik/plumbum,adamchainz/plumbum,weka-io/plumbum |
54be0e1043e8b3e19ef4e99e08dc0610a5554ca5 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install .
- pip install nose
script: nosetests
| language: python
python:
- "2.7"
- "3.1"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install .
- pip install nose
- pip install pandas
script: nosetests
| Add Python 3.1 and pandas to Travis specs | Add Python 3.1 and pandas to Travis specs
| YAML | mit | jsvine/pdfplumber |
5324755292dbee95cef31e622c0b0b059543f5ec | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx-18mode
- rbx-19mode
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx-18mode
- rbx-19mode
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec
| Remove support of MRI 1.8.7 and add support of MRI 2.0.0 | Remove support of MRI 1.8.7 and add support of MRI 2.0.0
| YAML | mit | avokhmin/gon,gazay/gon,be9/gon,razum2um/gon |
d3429e83f8f03ba4fae1047ea9a0466b3b71b221 | packages/in/incremental.yaml | packages/in/incremental.yaml | homepage: https://github.com/fumieval/incremental#readme
changelog-type: ''
hash: dd0476fff20028dd0e349c6c14537ad3cb8ed3b76551eb356e337c4ce67d41e7
test-bench-deps:
incremental: -any
base: -any
maintainer: fumiexcel@gmail.com
synopsis: incremental update library
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
text: -any
semigroups: -any
containers: -any
deepseq: -any
extensible: ! '>=0.6.1 && <0.7'
aeson: -any
all-versions:
- '0'
- '0.1'
author: Fumiaki Kinoshita
latest: '0.1'
description-type: markdown
description: |
# incremental
license-name: BSD-3-Clause
| homepage: https://github.com/fumieval/incremental#readme
changelog-type: ''
hash: c57bf111ce4faed0c9f0d87b608fb1c1995d78b6099d73f55b321b2209a2e225
test-bench-deps:
incremental: -any
base: -any
maintainer: fumiexcel@gmail.com
synopsis: incremental update library
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
text: -any
semigroups: -any
containers: -any
deepseq: -any
extensible: ! '>=0.6.1 && <0.8'
aeson: -any
all-versions:
- '0'
- '0.1'
author: Fumiaki Kinoshita
latest: '0.1'
description-type: markdown
description: |
# incremental
license-name: BSD-3-Clause
| Update from Hackage at 2020-01-11T05:47:38Z | Update from Hackage at 2020-01-11T05:47:38Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
ac94e80a6e9689490992064aafb95d7af20476d9 | .travis.yml | .travis.yml | language: go
go:
- 1.8.x
- tip
before_install:
- go get github.com/modocache/gover
- go get -t -v ./...
script:
- go test -v ./...
- go list -f '{{if len .TestGoFiles}}"go test -coverprofile={{.Dir}}/.coverprofile {{.ImportPath}}"{{end}}' ./... | xargs -i sh -c {}
- gover . coverprofile.txt
after_success:
- bash < (curl -s https://codecov.io/bash) -f coverprofile.txt
| language: go
go:
- 1.8.x
- tip
before_install:
- go get github.com/modocache/gover
- go get -t -v ./...
script:
- go test -v ./...
- go list -f '{{if len .TestGoFiles}}"go test -coverprofile={{.Dir}}/.coverprofile {{.ImportPath}}"{{end}}' ./... | xargs -i sh -c {}
- gover . coverprofile.txt
after_success:
- bash <(curl -s https://codecov.io/bash) -f coverprofile.txt
| Fix Travis-CI and Codecov integration | Fix Travis-CI and Codecov integration
| YAML | mit | ak-sahli/kata-bank-golang |
6fc69c47844e7791d37fe1d20c53dd231a912aee | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.3
env:
- DB=postgresql CODECLIMATE_REPO_TOKEN=60f24faadd4214af105e217fca320e3a6d4eab015ca1eaf672aed2fbcc77b296
before_install:
- sudo apt-get install libpq-dev
before_script:
- cp config/database.travis.yml config/database.yml
- psql -c 'create database con_on_rails_test' -U postgres
- sqlite3 -batch db/attendees.sqlite3 < db/attendees.seed
script:
- RAILS_ENV=test bundle exec rake db:migrate test
| language: ruby
cache: bundler
rvm:
- 2.3.3
env:
- DB=postgresql CODECLIMATE_REPO_TOKEN=60f24faadd4214af105e217fca320e3a6d4eab015ca1eaf672aed2fbcc77b296
before_install:
- sudo apt-get install libpq-dev
before_script:
- cp config/database.travis.yml config/database.yml
- psql -c 'create database con_on_rails_test' -U postgres
- sqlite3 -batch db/attendees.sqlite3 < db/attendees.seed
script:
- RAILS_ENV=test bundle exec rake db:migrate test
| Improve Travis performance by caching bundle | Improve Travis performance by caching bundle
| YAML | apache-2.0 | ConOnRails/ConOnRails,ConOnRails/ConOnRails,ConOnRails/ConOnRails,ConOnRails/ConOnRails |
2226214a99f0061113ae0889c91ff693f1b1e912 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "6.0"
- "6.1"
- "6.2"
before_script:
- npm install -g gulp
script:
- gulp xpi crx webext test
| language: node_js
node_js:
- "6"
- "6.0"
- "7"
- "7.0"
before_script:
- npm install -g gulp
script:
- gulp xpi crx webext test
| Make sure to run tests in latest Node 7 version | Make sure to run tests in latest Node 7 version
| YAML | mpl-2.0 | palant/easypasswords,palant/easypasswords |
bb56a396b521310e59056794f0e9f0e13a5f8aa7 | .travis.yml | .travis.yml | language: android
android:
components:
- tools
- platform-tools
- build-tools-25.0.2
- android-25
- extra-android-m2repository
- sys-img-armeabi-v7a-android-22
jdk:
- oraclejdk8
sudo: true
before_script:
- echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
- emulator -avd test -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82
env:
matrix:
- TEST=:sample:app:connectedDebugAndroidTest
- TEST=:activitystarter:test
- TEST=:activitystarter-compiler:test
script:
- ./gradlew $TEST -i
notifications:
email: true
cache:
directories:
- $HOME/.m2
- $HOME/.gradle | language: android
android:
components:
- tools
- platform-tools
- build-tools-25.0.2
- android-25
- extra-android-m2repository
- sys-img-armeabi-v7a-android-18
jdk:
- oraclejdk8
sudo: true
before_script:
- echo no | android create avd --force -n test -t android-18 --abi armeabi-v7a
- emulator -avd test -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82
env:
matrix:
- TEST=:sample:app:connectedDebugAndroidTest
- TEST=:activitystarter:test
- TEST=:activitystarter-compiler:test
script:
- ./gradlew $TEST -i
notifications:
email: true
cache:
directories:
- $HOME/.m2
- $HOME/.gradle | Change Travis coniguration to new names | Change Travis coniguration to new names
| YAML | apache-2.0 | MarcinMoskala/ActivityStarter,MarcinMoskala/ActivityStarter,MarcinMoskala/ActivityStarter |
7c0f966657358cdcffbdab907869052b331b4529 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0-p643
- 2.1.5
- 2.2.0
| language: ruby
rvm:
- 1.9.3
- 2.0.0-p598
- 2.1.5
- 2.2.0
| Update ruby version for Travis (2.0.0 complaining) | Update ruby version for Travis (2.0.0 complaining)
| YAML | mit | neanias/parvus |
e06b7f1b8070df2f8e79a95019277e754b42cf51 | .travis.yml | .travis.yml | language: python
dist: xenial
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
install:
- pip install tox tox-travis
script:
- tox
| language: python
dist: xenial
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
install:
- pip install -U tox tox-travis pip virtualenv
script:
- tox
| Install latest pip, tox and virtualenv | Install latest pip, tox and virtualenv
Right now tests are failing on installing cryptography for anything
older than 3.7 (3.6 fails on building crptography on missing rust
compiler). This should fix it, see: https://travis-ci.community/t/pip-install-cryptography-fails-on-py36/11233
| YAML | mit | ByteInternet/drf-oidc-auth |
b45a746df41553103f72aa4b5a5fd15c02ba8f2e | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "5"
script:
- npm run test
cache:
directories:
- $HOME/.npm
- node_modules
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
| language: node_js
sudo: false
node_js:
- "4"
script:
- npm run test
cache:
directories:
- $HOME/.npm
- node_modules
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
| Move to version Node v.4.x | Move to version Node v.4.x
| YAML | mit | agreco/loggerware |
a34749e2e52f63776322a80ba53e4d1e085071d5 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.2.8
- 2.3.5
- 2.4.2
gemfile:
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
| language: ruby
sudo: false
rvm:
- 2.2.9
- 2.3.6
- 2.4.2
gemfile:
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
| Test against latest ruby versions | Test against latest ruby versions | YAML | mit | DavyJonesLocker/client_side_validations,DavyJonesLocker/client_side_validations,DavyJonesLocker/client_side_validations |
31c529d95de6355eba6669ae6e60bfa7bd7607e4 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
script: bundle exec rake spec
| language: objective-c
env:
# This is what 10.8.x comes with and we want to support that.
- RVM_RUBY_VERSION=system NOEXEC_DISABLE=1 RUBY_VERSION_SPECIFIC='sudo gem install bundler --no-ri --no-rdoc' GIT_AUTHOR_NAME=CocoaPods GIT_AUTHOR_EMAIL=cocoapods@example.com PYTHONPATH=/usr/local/lib/python2.7/site-packages
- RVM_RUBY_VERSION=1.8.7-p358 NOEXEC_DISABLE=1 RUBY_VERSION_SPECIFIC='sudo ln -s /usr/bin/llvm-gcc-4.2 /usr/bin/gcc-4.2' SSL_CERT_FILE=/usr/local/share/cacert.pem GIT_AUTHOR_NAME=CocoaPods GIT_AUTHOR_EMAIL=cocoapods@example.com PYTHONPATH=/usr/local/lib/python2.7/site-packages
before_install:
- curl http://curl.haxx.se/ca/cacert.pem -o /usr/local/share/cacert.pem
- sh -c 'if [ "$RVM_RUBY_VERSION" != "system" ]; then rvm install $RVM_RUBY_VERSION --without-tcl --without-tk; fi'
- source ~/.rvm/scripts/rvm && rvm use $RVM_RUBY_VERSION
install: eval $RUBY_VERSION_SPECIFIC
script: bundle exec rake specs
| Use Objective-C to allow to install CocoaPods | [Travis] Use Objective-C to allow to install CocoaPods
| YAML | mit | rockwotj/cocoapods-try,CocoaPods/cocoapods-try |
441bcd549bd06a53a7e2a041800785eced4957a5 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.1.5
- 2.2.2
- 2.3.4
- 2.4.1
sudo: false
dist: trusty
cache: bundler
before_script:
- gem update bundler
| rvm:
- 1.9.3
- 2.1.5
- 2.2.2
- 2.3.4
- 2.4.1
sudo: false
dist: trusty
cache: bundler
install:
- gem update --system 2.6.12 # https://github.com/rubygems/rubygems/issues/2024
- gem install bundler
- "bundle install --verbose --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}"
| Fix Travis config and pin rubygems version | Fix Travis config and pin rubygems version
to avoid a Rubygems regression which is making builds fail
on older Rubies
https://github.com/rubygems/rubygems/issues/2024
| YAML | mit | toland/patron,toland/patron |
fe5613e73ffd17386c811fe96aa0facd0b69d81e | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 1.9.3
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx-18mode
- rbx-19mode
- 1.8.7
bundler_args: --without development
script: bundle exec rake -f Rakefile.ci
| language: ruby
rvm:
- 2.0.0
- 1.9.3
# - jruby-18mode # JRuby in 1.8 mode
# - jruby-19mode # JRuby in 1.9 mode
- rbx-18mode
- rbx-19mode
- 1.8.7
bundler_args: --without development
script: bundle exec rake -f Rakefile.ci
| Remove JRuby from Travis CI tests | Remove JRuby from Travis CI tests
Upstream issues[1] with getting terminal size are causing tests to
fail. Until this is fixed upstream, spinning_cursor will not work
in JRuby.
[1] https://jira.codehaus.org/browse/JRUBY-6693
| YAML | mit | prydonius/spinning_cursor |
f0835048487695fe601fe492e958dbd95f102a83 | .travis.yml | .travis.yml | language:
python
python:
- "2.7"
- "3.3"
env:
- DJANGO=1.7
install:
- pip install django==$DJANGO --quiet
- pip install psycopg2 --quiet
- pip install coveralls --quiet
script:
- cd testing && python runtests.py
- coverage run --source=filtered_contenttypes runtests.py
services:
- postgresql
after_success:
coveralls
| language:
python
python:
- "2.7"
- "3.5"
env:
- DJANGO=1.7
- DJANGO=1.8
install:
- pip install django==$DJANGO --quiet
- pip install psycopg2 --quiet
- pip install coveralls --quiet
script:
- cd testing && python runtests.py
- coverage run --source=filtered_contenttypes runtests.py
services:
- postgresql
after_success:
coveralls
| Support 3.5 and 1.8 over Travis.CI | Support 3.5 and 1.8 over Travis.CI
| YAML | mit | mpasternak/djorm-ext-filtered-contenttypes |
599bfc3644497cd936342d78cc7de420eb397e1e | .travis.yml | .travis.yml | language: php
php:
- hhvm
- hhvm-nightly
before_script:
- composer self-update
- composer install
script: vendor/bin/phpunit tests/
| language: php
php:
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm-nightly
before_script:
- composer self-update
- composer install
script: vendor/bin/phpunit tests/
| Allow failures for hhvm-nightly on Travis | Allow failures for hhvm-nightly on Travis
Travis are running Ubuntu Precise, which HHVM no longer supports.
| YAML | bsd-3-clause | facebook/xhp-lib |
f0aa8180c93af12b182216fe5bdaee7eedd4d5f2 | .travis.yml | .travis.yml | language: c
compiler:
- gcc
- clang
before_install:
- sudo apt-get install check
- sudo pip install cpp-coveralls
# Change this to your needs
script:
- ./bootstrap.sh
- ./configure --with-check && make && make check
#coveralls, how to do this with only gcc?
after_success:
- ./configure --with-check --enable-gcov && make && make check
- coveralls --exclude-pattern ".+?\.h" --exclude-pattern "\w+/test" --exclude samplecode --gcov-options '\-lp'
| language: c
compiler:
- clang
- gcc
before_install:
- sudo apt-get install check
- sudo pip install cpp-coveralls
# Change this to your needs
script:
- ./bootstrap.sh
- ./configure --with-check && make && make check
#coveralls, how to do this with only gcc?
after_success:
- ./configure --with-check --enable-gcov && make && make check
- coveralls --exclude-pattern ".+?\.h" --exclude-pattern "\w+/test" --exclude samplecode --gcov-options '\-lp'
| Change order of build. Coveralls hack. | Change order of build. Coveralls hack.
| YAML | bsd-2-clause | iptube/SPUDlib,iptube/SPUDlib,iptube/SPUDlib,iptube/SPUDlib,iptube/SPUDlib |
f9399133c4c7f5fa4a69da225e049fbde70f01ec | .travis.yml | .travis.yml | sudo: false
language: php
php:
- 5.6
- 7
env:
global:
- DB=sqlite
matrix:
- CORE_BRANCH=master
- CORE_BRANCH=stable9
matrix:
fast_finish: true
before_install:
# install core
- cd ../
- git clone https://github.com/owncloud/core.git --recursive --depth 1 -b $CORE_BRANCH owncloud
- mv apporder owncloud/apps/
before_script:
# fill owncloud with default configs and enable apporder
- cd owncloud
- mkdir data
- ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass=''
- ./occ app:enable apporder
- ./occ app:check-code apporder
- php -S localhost:8080 &
- cd apps/apporder
script:
- make test
after_failure:
- cat ../../data/owncloud.log
after_success:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/php-unit.clover
| sudo: false
language: php
php:
- 5.6
- 7
env:
global:
- DB=sqlite
matrix:
- CORE_BRANCH=master
- CORE_BRANCH=stable9
- REPO=owncloud/core
- REPO=nextcloud/servier
matrix:
fast_finish: true
before_install:
# install core
- cd ../
- git clone https://github.com/$REPO.git --recursive --depth 1 -b $CORE_BRANCH mainrepo
- mv apporder mainrepo/apps/
before_script:
# fill owncloud with default configs and enable apporder
- cd mainrepo
- mkdir data
- ./occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass=''
- ./occ app:enable apporder
- ./occ app:check-code apporder
- php -S localhost:8080 &
- cd apps/apporder
script:
- make test
after_failure:
- cat ../../data/owncloud.log
after_success:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/php-unit.clover
| Add ci for nextcloud repo | Add ci for nextcloud repo
| YAML | agpl-3.0 | juliushaertl/apporder,juliushaertl/apporder |
c8530e3266e76b063961a8e27e313487b58e0546 | .travis.yml | .travis.yml | language: go
services:
- docker
go:
- 1.6
install:
- go get github.com/fsouza/go-dockerclient
script:
- go test -v ./...
- go build -o build/boot github.com/tueftler/boot
| language: go
go:
- 1.6
install:
- go get github.com/fsouza/go-dockerclient
script:
- go test -v ./...
- go build -o build/boot github.com/tueftler/boot
| Remove currently unneeded docker service | Remove currently unneeded docker service
| YAML | bsd-3-clause | tueftler/boot |
14949f86ea9f323c29cf5e2f447e2a46ae9d986e | .travis.yml | .travis.yml | language: java
sudo: false
dist: trusty
install: true
addons:
firefox: latest
install:
- sudo apt-add-repository "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main"
- sudo apt-add-repository "ppa:cwchien/gradle"
- sudo sed -i s/deb-src.*google.*//g /etc/apt/sources.list
- wget -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
- sudo apt-get update -qq
- sudo apt-get install -y google-chrome-stable travis
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start &
- sleep 3
script:
- gradle -v && gradle test
| language: java
sudo: false
dist: trusty
install: true
addons:
firefox: latest
install:
- sudo apt-add-repository "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main"
- sudo apt-add-repository ppa:cwchien/gradle -y
- sudo sed -i s/deb-src.*google.*//g /etc/apt/sources.list
- wget -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
- sudo apt-get update -qq
- sudo apt-get install -y google-chrome-stable travis
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start &
- sleep 3
script:
- gradle -v && gradle test
| Add ppa for Gradle automatically in Travix | Add ppa for Gradle automatically in Travix
| YAML | apache-2.0 | bonigarcia/mastering-junit5,bonigarcia/mastering-junit5 |
9548cbe5e2c2bb48ee91489227acfccdf841d7ec | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- openjdk7
- oraclejdk8
- oraclejdk9
script:
- mvn clean install javadoc:javadoc
after_success:
- mvn jacoco:prepare-agent test jacoco:report coveralls:report
cache:
directories:
- $HOME/.m2
| sudo: false
language: java
jdk:
- oraclejdk8
- oraclejdk9
script:
- mvn clean install javadoc:javadoc
after_success:
- mvn jacoco:prepare-agent test jacoco:report coveralls:report
cache:
directories:
- $HOME/.m2
| Disable Java 7 build due to incompatibility with the Takari libraries | Disable Java 7 build due to incompatibility with the Takari libraries
The takari libraries are compiled for Java 8 which leads to
UnsupportedClassVersionError during the build
| YAML | apache-2.0 | ferstl/pedantic-pom-enforcers |
65c3c20287a14d84af455db46f6087f2e91760db | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
before_install:
- ./admin/travis-install-deps.sh
env:
- AS_ROOT=no
- AS_ROOT=yes
script:
- ./admin/travis-build.sh
| language: cpp
compiler:
- gcc
- clang
before_install:
- ./admin/travis-install-deps.sh
env:
- AS_ROOT=no
- AS_ROOT=yes
script:
- ./admin/travis-build.sh
notifications:
email:
- lutok-log@googlegroups.com
| Send Travis CI notifications to lutok-log | Send Travis CI notifications to lutok-log
| YAML | bsd-3-clause | jmmv/lutok,jmmv/lutok |
8df5a08ca4db2c43d6bff80f90d97f169e29489c | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.11'
- '0.10'
- '0.8'
- '0.6'
script: npm test
| language: node_js
node_js:
- '0.11'
- '0.10'
script: npm test
| Remove old node engines from test mx | Remove old node engines from test mx
Do not test with 0.8, 0.6 while npm install fails.
| YAML | mit | purposeindustries/node-dimoco-wrapper |
d900419d54441cadc5aba2904d5ce585cf8dd3a3 | .travis.yml | .travis.yml | sudo: true
language: cpp
dist: trusty
compiler:
- gcc
os:
- linux
before_script:
- wget https://github.com/glfw/glfw/releases/download/3.1.2/glfw-3.1.2.zip
- unzip glfw-3.1.2.zip
- cd glfw-3.1.2
- cmake .
- make
- sudo make install
- cd ..
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
- libglfw-dev
- libglew-dev
- libglm-dev
- libassimp-dev
- libncurses5-dev
- unzip
- xorg-dev
- libglu1-mesa-dev
script:
- git submodule update
- git submodule sync
- cd Mopfile/
- git pull origin master
- cd ..
- make
| sudo: true
language: cpp
dist: trusty
compiler:
- gcc
os:
- linux
before_script:
- wget https://github.com/glfw/glfw/releases/download/3.1.2/glfw-3.1.2.zip
- unzip glfw-3.1.2.zip
- cd glfw-3.1.2
- cmake .
- make
- sudo make install
- cd ..
- wget https://github.com/nothings/stb/archive/master.zip
- unzip master.zip
- sudo cp stb-master/ /usr/include/stb -R
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
- libglfw-dev
- libglew-dev
- libglm-dev
- libassimp-dev
- libncurses5-dev
- unzip
- xorg-dev
- libglu1-mesa-dev
- libsoil-dev
script:
- git submodule update
- git submodule sync
- cd Mopfile/
- git pull origin master
- cd ..
- make
| Add stb depend, hopefully that is everything | Add stb depend, hopefully that is everything
| YAML | apache-2.0 | Afrostie/Mopviewer |
651429e9ef5c858f039ec7f0c13d14f155c2212b | .travis.yml | .travis.yml | language: python
python:
# - "2.5"
- "2.6"
- "2.7"
before_install:
- export PIP_USE_MIRRORS=true
- export DJANGO_SETTINGS_MODULE=queued_storage.test_settings
install:
- pip install -r requirements/tests.txt Django==$DJANGO
- pip install .
before_script:
- flake8 queued_storage --ignore=E501
script:
- django-admin.py test queued_storage.tests
env:
- DJANGO=1.3.1
- DJANGO=1.4
branches:
only:
- develop
| language: python
python:
# - "2.5"
- "2.6"
- "2.7"
before_install:
- export PIP_USE_MIRRORS=true
- export PIP_INDEX_URL=https://simple.crate.io/
install:
- pip install -e .
- pip install -r requirements/tests.txt Django==$DJANGO
before_script:
- flake8 queued_storage --ignore=E501
script:
- django-admin.py test --settings=queued_storage.test_settings queued_storage
env:
- DJANGO=1.3.1
- DJANGO=1.4
branches:
only:
- develop
| Use crate and try to fix the runner. | Use crate and try to fix the runner.
| YAML | bsd-3-clause | bak1an/django-queued-storage,jezdez/django-queued-storage,jannon/django-queued-storage,jazzband/django-queued-storage,seanbrant/django-queued-storage,melfelr/django-queued-storage |
f14331f7d6879bafb951f1305757c4955dfb1fa8 | recipes/capytaine/meta.yaml | recipes/capytaine/meta.yaml | {% set version = "1.0" %}
package:
name: capytaine
version: {{ version }}
source:
url: https://github.com/mancellin/capytaine/archive/v{{version}}.tar.gz
sha256: 072de801b50b4052277b5eb3d634734a11079b69789e5fb3bccb7363d199f637
build:
skip: True # [py<36]
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps -vv"
requirements:
build:
- {{ compiler('fortran') }}
- {{ compiler('c') }}
- llvm-openmp # [osx]
host:
- python
- pip
- setuptools
- numpy
- llvm-openmp # [osx]
run:
- python
- attrs
- {{ pin_compatible('numpy') }}
- pandas
- matplotlib
- scipy
- vtk
- xarray
- llvm-openmp # [osx]
test:
imports:
- capytaine
about:
home: https://github.com/mancellin/capytaine
license: GPL-3.0
license_family: GPL
license_file: LICENSE
summary: A Python-based linear potential flow solver based on Nemoh
extra:
recipe-maintainers:
- mancellin
| {% set version = "1.0" %}
package:
name: capytaine
version: {{ version }}
source:
url: https://github.com/mancellin/capytaine/archive/v{{version}}.tar.gz
sha256: 072de801b50b4052277b5eb3d634734a11079b69789e5fb3bccb7363d199f637
build:
skip: True # [py<36]
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps -vv"
requirements:
build:
- {{ compiler('fortran') }}
- {{ compiler('c') }}
- llvm-openmp # [osx]
host:
- python
- pip
- setuptools
- numpy
- llvm-openmp # [osx]
run:
- python
- attrs
- {{ pin_compatible('numpy') }}
- pandas
- matplotlib
- scipy
- vtk
- xarray
- llvm-openmp # [osx]
test:
imports:
- capytaine
requires:
- pytest
source_files:
- pytest/*.py
- pytest/**/*
commands:
- pytest
about:
home: https://github.com/mancellin/capytaine
license: GPL-3.0
license_family: GPL
license_file: LICENSE
summary: A Python-based linear potential flow solver based on Nemoh
extra:
recipe-maintainers:
- mancellin
| Copy test files for testing. | Copy test files for testing.
| YAML | bsd-3-clause | johanneskoester/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,jochym/staged-recipes,kwilcox/staged-recipes,petrushy/staged-recipes,johanneskoester/staged-recipes,jochym/staged-recipes,jakirkham/staged-recipes,isuruf/staged-recipes,ceholden/staged-recipes,scopatz/staged-recipes,Juanlu001/staged-recipes,mariusvniekerk/staged-recipes,SylvainCorlay/staged-recipes,dschreij/staged-recipes,ocefpaf/staged-recipes,chrisburr/staged-recipes,isuruf/staged-recipes,synapticarbors/staged-recipes,cpaulik/staged-recipes,igortg/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,birdsarah/staged-recipes,dschreij/staged-recipes,hadim/staged-recipes,kwilcox/staged-recipes,patricksnape/staged-recipes,rmcgibbo/staged-recipes,goanpeca/staged-recipes,jjhelmus/staged-recipes,scopatz/staged-recipes,ocefpaf/staged-recipes,Juanlu001/staged-recipes,igortg/staged-recipes,mcs07/staged-recipes,patricksnape/staged-recipes,ceholden/staged-recipes,goanpeca/staged-recipes,ReimarBauer/staged-recipes,jjhelmus/staged-recipes,SylvainCorlay/staged-recipes,stuertz/staged-recipes,jakirkham/staged-recipes,cpaulik/staged-recipes,chrisburr/staged-recipes,petrushy/staged-recipes,stuertz/staged-recipes,rmcgibbo/staged-recipes,asmeurer/staged-recipes,mcs07/staged-recipes,synapticarbors/staged-recipes,ReimarBauer/staged-recipes,basnijholt/staged-recipes,asmeurer/staged-recipes,basnijholt/staged-recipes,birdsarah/staged-recipes |
a84fa259c361f6c3d6ccc49589a4ba37758a5400 | .travis.yml | .travis.yml | language: go
env: PATH=$PATH:$GOBIN:$HOME/gopath/bin
go:
- 1.1
- tip
| language: go
go:
- 1.4
before_install:
- mkdir -p $HOME/gopath/src/sourcegraph.com/sourcegraph
- mv $TRAVIS_BUILD_DIR $HOME/gopath/src/sourcegraph.com/sourcegraph/rwvfs
- export TRAVIS_BUILD_DIR=$HOME/gopath/src/sourcegraph.com/sourcegraph/rwvfs
- cd $TRAVIS_BUILD_DIR
install:
- go get golang.org/x/tools/cmd/vet
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d ./)
- go tool vet -composites=false ./
- go test -v -race ./...
| Fix import path, update to Go 1.4. | Travis: Fix import path, update to Go 1.4. | YAML | bsd-3-clause | sourcegraph/rwvfs |
fc07e4be5c4df5375a0db9f46282be9ab12bfc64 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.6"
- "pypy"
- "pypy3"
install:
- pip install coveralls
- pip install -r requirements.txt
script:
- coverage run --source=textparser setup.py test
- make test-sdist
- env PYTHONPATH=. python examples/hello_world.py
- env PYTHONPATH=. python examples/benchmarks/json/errors.py
- env PYTHONPATH=. python examples/benchmarks/json/parse_tree.py
- env PYTHONPATH=. python examples/json.py
- env PYTHONPATH=. python examples/benchmarks/json/speed.py
after_success:
coveralls
| language: python
python:
- "2.7"
- "3.6"
- "3.8"
- "pypy"
- "pypy3"
install:
- pip install coveralls
- pip install -r requirements.txt
script:
- coverage run --source=textparser setup.py test
- make test-sdist
- env PYTHONPATH=. python examples/hello_world.py
- env PYTHONPATH=. python examples/benchmarks/json/errors.py
- env PYTHONPATH=. python examples/benchmarks/json/parse_tree.py
- env PYTHONPATH=. python examples/json.py
- env PYTHONPATH=. python examples/benchmarks/json/speed.py
after_success:
coveralls
| Test with Python 3.8 on Travis. | Test with Python 3.8 on Travis.
| YAML | mit | eerimoq/textparser |
80ee1b347ecfd5f4f6d3396b8e39b5f62aa28517 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.1
- 1.9.2
- 1.9.3
before_script:
- "bundle exec rake db:test:prepare"
| language: ruby
rvm:
- 1.9.2
- 1.9.3
before_script:
- "bundle exec rake db:test:prepare"
| Remove testing for ruby 1.9.1 | Remove testing for ruby 1.9.1
| YAML | mit | cyrilpic/sql_pager,cyrilpic/sql_pager,cyrilpic/sql_pager |
8a89c043de7281979aa016f77b6aa7eb11f607ce | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| sudo: false
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
| Test on the latest Node instead of io.js | Test on the latest Node instead of io.js
| YAML | mit | kevva/download |
19cd138d25fb461dc57125589a026ca0fa8f7805 | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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: java
sudo: false
jdk:
- openjdk7
- openjdk10
- openjdk11
- openjdk12
- oraclejdk8
- oraclejdk9
- oraclejdk11
script:
- mvn
after_success:
- mvn clean cobertura:cobertura coveralls:report -Ptravis-cobertura
| # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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: java
sudo: false
jdk:
- openjdk7
- openjdk8
- openjdk11
- openjdk12
- oraclejdk8
- oraclejdk11
script:
- mvn
after_success:
- mvn clean cobertura:cobertura coveralls:report -Ptravis-cobertura
| Update Travis build with current JDKs. | Update Travis build with current JDKs. | YAML | apache-2.0 | apache/commons-io,apache/commons-io,apache/commons-io |
6c8f8977a7ed26aff90a84698a0d9d3d3e55e904 | .travis.yml | .travis.yml | language: node_js
node_js:
- "5"
| language: node_js
node_js:
- "5"
before_install: npm install -g grunt-cli
install: npm install
before_script: grunt build
| Add Install and Grunt commands. | Add Install and Grunt commands.
| YAML | mit | kushalpandya/poster,kushalpandya/poster |
88ddbaf1fcb9cf55cbdaee8a1cc8b99f92c56941 | .travis.yml | .travis.yml | language: cpp
compiler: g++
before_install:
# CMake
- echo "yes" | sudo add-apt-repository ppa:kalakris/cmake
- echo "yes" | sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- sudo apt-get install -qq
- sudo apt-get install cmake
# g++ 4.8
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
# sfml
- sudo apt-get install libsfml-dev
- sudo apt-get install libopenal-dev
- sudo apt-get install libsndfile-dev
install:
# g++4.8
- sudo apt-get install -qq g++-4.8
- export CXX="g++-4.8"
before_script: cmake CMakeLists.txt
script:
- make
notifications:
email:
recipients: swang927@gmail.com
on_success: change
on_failure: always
| language: cpp
compiler: g++
before_install:
# CMake
- echo "yes" | sudo add-apt-repository ppa:kalakris/cmake
- echo "yes" | sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- sudo apt-get install -qq
- sudo apt-get install cmake
# g++ 4.8
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
# sfml
- sudo apt-get install libsfml-dev
- sudo apt-get update -qq
install:
# g++4.8
- sudo apt-get install -qq g++-4.8
- export CXX="g++-4.8"
before_script: cmake CMakeLists.txt
script:
- make
notifications:
email:
recipients: swang927@gmail.com
on_success: change
on_failure: always
| Fix the cmake file for linking sfml | Fix the cmake file for linking sfml
| YAML | mit | swang927/CS585-Shaokang-Wang,swang927/CS585-Shaokang-Wang,swang927/CS585-Shaokang-Wang,swang927/CS585-Shaokang-Wang,swang927/CS585-Shaokang-Wang |
5e815de82a69f8e7b50e8cd6a4d6e12631e42d6c | .travis.yml | .travis.yml | language: node_js
os:
- linux
- osx
node_js:
- 6
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq install g++-4.8 ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-4.8 ; fi
env:
# global:
# - CXX=g++-4.8
matrix:
- NPM_COMMAND=lint
- NPM_COMMAND=test
# addons:
# apt:
# sources:
# - ubuntu-toolchain-r-test
# packages:
# - g++-4.8
notifications:
email: false
script: npm run $NPM_COMMAND
after_success: npm run coveralls
| language: node_js
os:
- linux
- osx
node_js:
- 6
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq install g++-4.8 ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-4.8 ; fi
env:
matrix:
- NPM_COMMAND=lint
- NPM_COMMAND=test
notifications:
email: false
script: npm run $NPM_COMMAND
after_success: npm run coveralls
| Remove comments from Travis config | Remove comments from Travis config
| YAML | mit | akalipetis/xterm.js,sourcelair/xterm.js,sourcelair/xterm.js,xtermjs/xterm.js,xtermjs/xterm.js,Tyriar/xterm.js,Tyriar/xterm.js,Tyriar/xterm.js,Tyriar/xterm.js,sourcelair/xterm.js,akalipetis/xterm.js,xtermjs/xterm.js,akalipetis/xterm.js,sourcelair/xterm.js,xtermjs/xterm.js,akalipetis/xterm.js,xtermjs/xterm.js,Tyriar/xterm.js |
6740dc14ac3902c1fbfabc639f96bf8f4f788e68 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
install: mvn install -DskipTests=true -Dgpg.skip=true
after_script: mvn cobertura:cobertura coveralls:cobertura
notifications:
email:
recipients:
- dev@maxmind.com
on_success: change
on_failure: always
| language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
install: mvn install -DskipTests=true -Dgpg.skip=true
after_script: mvn cobertura:cobertura coveralls:cobertura
notifications:
email:
recipients:
- dev@maxmind.com
on_success: change
on_failure: always
env:
global:
- secure: "KXF3RVBZDxeASAnleYlTaqvxRRB9FSzSAdVV9h7Kw81+p4UO64b8CPJR1p4fLIVwAp8C4R8h0xZDN3pAv/iyeA4ndIeh9tQXNZBm737RE5x+6x6nf/shP/Em1w9T1s3KmretXoTFK5NJGv2yTesgaIAV/JV1OFvlG6ArswhrPFc="
addons:
coverity_scan:
project:
name: "maxmind/MaxMind-DB-Reader-java"
description: "Build submitted via Travis CI"
notification_email: dev@maxmind.com
build_command_prepend: "mvn clean"
build_command: "mvn -DskipTests=true compile"
branch_pattern: coverity_scan
| Test Coverity upload from Travis | Test Coverity upload from Travis
| YAML | apache-2.0 | phraktle/MaxMind-DB-Reader-java,maxmind/MaxMind-DB-Reader-java,phraktle/MaxMind-DB-Reader-java,maxmind/MaxMind-DB-Reader-java |
9a54a837e6f92d59387c3cd9446b64f4f1b406d2 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
allow_failures:
- php: 7
- php: hhvm
- php: hhvm-nightly
script:
- ./vendor/bin/phpcs --standard=PSR2 ./src/ ./tests/
- ./vendor/bin/phpunit --coverage-clover=coverage.clover
before_script:
- composer self-update
- composer update --prefer-source
| language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
allow_failures:
- php: 7
- php: hhvm
- php: hhvm-nightly
script:
- ./vendor/bin/phpcs --standard=PSR2 ./src/ ./tests/
- ./vendor/bin/phpunit
before_script:
- composer self-update
- composer update --prefer-source
| Remove coverage-clover option for PHPUnit | Remove coverage-clover option for PHPUnit
| YAML | mit | mpalourdio/ConsoleTools |
3af2b5b203a0323b28b249da80103aed596ea336 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
deploy:
provider: npm
email: bvdrucker@gmail.com
api_key:
secure: fgWnM5aNquSYyG1u5p9ppOaAQ6QNd/hJyUZ9MpBmsR6Akcm5ZKqp9iCpjTT5gjE6fX7VMKewJxx3PbwXwIvDJhsDCh/nbBa4oOWMO65P/l22SWREnJu+ktNGGeQIn8nvRBlMZ8jpcwSYrQDigANPoTRX6QyQU0YHQp9CD21THKU=
on:
tags: true
all_branches: true
repo: bendrucker/proxyquire-universal
| language: node_js
node_js:
- '0.10'
sudo: false
deploy:
provider: npm
email: bvdrucker@gmail.com
api_key:
secure: fgWnM5aNquSYyG1u5p9ppOaAQ6QNd/hJyUZ9MpBmsR6Akcm5ZKqp9iCpjTT5gjE6fX7VMKewJxx3PbwXwIvDJhsDCh/nbBa4oOWMO65P/l22SWREnJu+ktNGGeQIn8nvRBlMZ8jpcwSYrQDigANPoTRX6QyQU0YHQp9CD21THKU=
on:
tags: true
all_branches: true
repo: bendrucker/proxyquire-universal
| Use Docker to speed up Travis | Use Docker to speed up Travis
| YAML | mit | modulexcite/proxyquire-universal,bendrucker/proxyquire-universal,royriojas/proxyquire-universal |
b173315208387bc245d7556e9ea00de9cb1847e3 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "3.4"
- "3.5"
install: pip install tox-travis coveralls
script: tox
after_success: coveralls
notifications:
irc: "chat.freenode.net#asphalt"
| sudo: false
language: python
python:
- "3.4"
- "3.5"
install: pip install tox-travis coveralls
script: tox
after_success: coveralls
notifications:
irc:
channels:
- "chat.freenode.net#asphalt"
use_notice: true
skip_join: true
| Send Travis messages as notices to the IRC channel | Send Travis messages as notices to the IRC channel
| YAML | apache-2.0 | asphalt-framework/asphalt |
aca144342b84b7c232a811bbc9fd26577e1d8bc8 | .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'
- '0.11'
- '0.12'
- 'iojs'
- '4'
- '5'
- '6'
- '7'
- 'node'
before_install: npm install -g grunt-cli
| Add test runs for more recent versions of node | Add test runs for more recent versions of node
Node versions below v4, as well as v5, have reached their end of life and
support should be dropped in the next major release to reduce the
maintenance effort.
Refer to https://github.com/nodejs/LTS.
| YAML | mit | UnbounDev/node-strava-v3 |
b8993cd7638ca59e75d228a3b8cd585e7e667c64 | .travis.yml | .travis.yml | sudo: required
services:
- docker
before_install:
- mkdir -p output
- docker pull asciidoctor/docker-asciidoctor
script:
- docker run -v $TRAVIS_BUILD_DIR:/documents/ --name asciidoc-to-html asciidoctor/docker-asciidoctor asciidoctor -D /documents/output *.adoc
- docker run -v $TRAVIS_BUILD_DIR:/documents/ --name asciidoc-to-pdf asciidoctor/docker-asciidoctor asciidoctor-pdf -D /documents/output *.adoc
after_error:
- docker logs asciidoc-to-html
- docker logs asciidoc-to-pdf
after_failure:
- docker logs asciidoc-to-html
- docker logs asciidoc-to-pdf
after_success:
- cd output ; cp -R ../examples examples
- git init
- git config user.name "${GH_USER_NAME}"
- git config user.email "{GH_USER_EMAIL}"
- git add . ; git commit -m "Deploy to GitHub Pages"
- git push --force --quiet "https://${GH_TOKEN}@${GH_REF}" master:gh-pages > /dev/null 2>&1 | sudo: required
services:
- docker
before_install:
- mkdir -p output
- docker pull asciidoctor/docker-asciidoctor
script:
- docker run -v $TRAVIS_BUILD_DIR:/documents/ --name asciidoc-to-html asciidoctor/docker-asciidoctor asciidoctor -D /documents/output *.adoc
- docker run -v $TRAVIS_BUILD_DIR:/documents/ --name asciidoc-to-pdf asciidoctor/docker-asciidoctor asciidoctor-pdf -D /documents/output *.adoc
after_error:
- docker logs asciidoc-to-html
- docker logs asciidoc-to-pdf
after_failure:
- docker logs asciidoc-to-html
- docker logs asciidoc-to-pdf
after_success:
- cd output ; cp -R ../examples examples ; cp -R ../schema schema
- git init
- git config user.name "${GH_USER_NAME}"
- git config user.email "{GH_USER_EMAIL}"
- git add . ; git commit -m "Deploy to GitHub Pages"
- git push --force --quiet "https://${GH_TOKEN}@${GH_REF}" master:gh-pages > /dev/null 2>&1 | Update build to include schema files. | Update build to include schema files.
| YAML | apache-2.0 | mattbanderson/seed,mattbanderson/seed,ngageoint/seed,ngageoint/seed,ngageoint/seed |
1972c1ac3114b46b7259fd63fa7d4617880d9ffe | .travis.yml | .travis.yml | language: objective-c
branches:
only:
- master
xcode_project: Permission.xcodeproj
xcode_scheme: PermissionTests
osx_image: xcode11.2
xcode_sdk: iphonesimulator12.4
script:
- xcodebuild test -project Permission.xcodeproj -scheme PermissionTests -destination "platform=iOS Simulator,name=iPhone Xs"
| language: objective-c
branches:
only:
- master
xcode_project: Permission.xcodeproj
xcode_scheme: PermissionTests
osx_image: xcode11.2
xcode_sdk: iphonesimulator12.4
script:
- xcodebuild test -project Permission.xcodeproj -scheme PermissionTests -destination "platform=iOS Simulator,name=iPhone 11"
| Change simulator to iPhone 11 | Change simulator to iPhone 11
| YAML | mit | delba/Sorry,delba/Permission,delba/Permission,delba/Sorry |
1d01644d56be129c3509ae96a8164b645aa4322d | .travis.yml | .travis.yml | language: python
python: 3.6
install:
- pip install -r requirements.txt
- pip install coveralls
env:
global:
- TWITTER_ACCESS_TOKEN_KEY=YOUR_ACCESS_TOKEN_KEY
- TWITTER_ACCESS_TOKEN_SECRET=YOUR_ACCESS_TOKEN_SECRET
- TWITTER_CONSUMER_KEY=YOUR_CONSUMER_KEY
- TWITTER_CONSUMER_SECRET=YOUR_CONSUMER_SECRET
script: coverage run -m unittest discover tests
after_success: coveralls
| language: python
python: 3.6
install:
- pip install -r requirements.txt
- pip install coveralls
env:
global:
- FACEBOOK_PAGE_ACCESS_TOKEN=YOUR_PAGE_ACCESS_TOKEN
- TWITTER_ACCESS_TOKEN_KEY=YOUR_ACCESS_TOKEN_KEY
- TWITTER_ACCESS_TOKEN_SECRET=YOUR_ACCESS_TOKEN_SECRET
- TWITTER_CONSUMER_KEY=YOUR_CONSUMER_KEY
- TWITTER_CONSUMER_SECRET=YOUR_CONSUMER_SECRET
script: coverage run -m unittest discover tests
after_success: coveralls
| Add new env var to CI | Add new env var to CI
| YAML | unlicense | datasciencebr/whistleblower |
434e7bd1e1e5db7f5e861a462f49e991fbf49b10 | .travis.yml | .travis.yml | dist: trusty
sudo: false
language: python
branches:
only:
- master
install:
- ./bin/travis/install
services:
- mysql
matrix:
include:
- python: 3.6
env: TOXENV=flake8
- python: 3.6
env: TOXENV=mypy
- python: 3.6
env: TOXENV=docs
- python: 3.6
env: TOXENV=coverage-py36,codecov
allow_failures:
# Needs work
- env: TOXENV=docs
script:
- ./bin/travis/run tox
| dist: trusty
sudo: false
language: python
branches:
only:
- master
install:
- ./bin/travis/install
services:
- mysql
matrix:
include:
- python: 3.6
env: TOXENV=flake8
- python: 3.6
env: TOXENV=mypy
- python: 3.6
env: TOXENV=docs
- python: 3.6
env: TOXENV=coverage-py36,codecov
allow_failures:
# Needs work
- env: TOXENV=docs
script:
- ./bin/travis/run tox -- --exitfirst ims
| Exit at first error for now | Exit at first error for now
| YAML | apache-2.0 | burningmantech/ranger-ims-server,burningmantech/ranger-ims-server,burningmantech/ranger-ims-server,burningmantech/ranger-ims-server |
40249aaea115b18e11a4098a895b732a4101cec2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- 0.8
before_install: "npm install -g bob --loglevel error"
script: "bob build"
| language: node_js
node_js:
- "0.10"
before_install: "npm install -g bob --loglevel error"
script: "bob build"
| Drop 0.8 and temp 0.11 from CI run. | Drop 0.8 and temp 0.11 from CI run.
| YAML | mit | cliffano/jazz-cli |
70ebddb3fdc35a5dd31f0b16c22a2cc36c3e8ff9 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "pypy"
install:
- pip install nose==1.3.0 flask==0.10.1 injector==0.7.4 flask_cache flask_sqlalchemy
script: nosetests -v
| language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "pypy"
env:
- INJECTOR_VERSION=0.7.4
- INJECTOR_VERSION=0.8.0
- INJECTOR_VERSION=0.9.0
install:
- pip install nose==1.3.0 flask==0.10.1 injector==$INJECTOR_VERSION flask_cache flask_sqlalchemy
script: nosetests -v
| Build with multiple Injector versions | Build with multiple Injector versions
| YAML | bsd-3-clause | alecthomas/flask_injector |
87945ee634593f2e68572a8a987774534c52fd8c | .travis.yml | .travis.yml | language: erlang
script: "make && make test"
env: DB=couchdb
services:
- couchdb
otp_release:
- R15B03
- R16B
- R16B01
- R16B02
- R16B03
- R16B03-1
- 17.0
- 17.1
- 17.3 | language: erlang
script: "make && make test"
env: DB=couchdb
services:
- couchdb
otp_release:
- 17.0
- 17.1
- 17.3 | Drop support for < 17 erl versions | Drop support for < 17 erl versions
| YAML | apache-2.0 | epappas/datasmart |
feef7cd8a0fa0cf47f0b15d406fe88ad68681458 | .travis.yml | .travis.yml | sudo: required
language: ruby
rvm:
- 2.1.4
env:
- BERKSHELF_PATH=/tmp/
before_install:
- sudo apt-get update -qq
- curl -L https://www.chef.io/chef/install.sh | sudo bash
- rm -Rf .bundle
install:
- bundle install
- bundle exec berks vendor /tmp/cookbooks
- cp dummy-validation.pem /tmp/validation.pem
- cp dna.json /tmp/dna.json
script:
- bundle exec foodcritic -f any .
- bundle exec tailor
- sudo chef-client -z -c client.rb -j dna.json
- cp dna-source.json /tmp/dna.json
- sudo chef-client -z -c client.rb -j dna.json
| sudo: required
language: ruby
rvm:
- 2.1.4
env:
- BERKSHELF_PATH=/tmp/
before_install:
- sudo apt-get update -qq
- curl -L https://www.chef.io/chef/install.sh | sudo bash
- rm -Rf .bundle
install:
- bundle install
- bundle exec berks vendor /tmp/cookbooks
- cp dummy-validation.pem /tmp/validation.pem
- cp dna.json /tmp/dna.json
script:
- bundle exec foodcritic -f any .
- bundle exec tailor
- sudo chef-client -z -c client.rb -j dna.json
- cp dna-source.json /tmp/dna.json
- sudo chef-client -z -c client.rb -j dna.json
| Add source build with Travis CI | Add source build with Travis CI
| YAML | apache-2.0 | stonevil/mono3-cookbook |
373c2852f51380608ba2f9681b952cba3296d86e | .travis.yml | .travis.yml | language: python
python:
- "3.5"
- "3.6"
- "3.7"
install:
pip install -r requirements.txt
script:
- pytest
- find bin dark test -name '*.py' -print0 | xargs -0 flake8 --ignore E402,W504
notifications:
irc: "irc.freenode.net#acorg"
slack: acorg:PBqi8M1O5JVt26evSkRoX40z
| language: python
python:
- "3.6"
- "3.7"
install:
pip install -r requirements.txt
script:
- pytest
- find bin dark test -name '*.py' -print0 | xargs -0 flake8 --ignore E402,W504
notifications:
irc: "irc.freenode.net#acorg"
slack: acorg:PBqi8M1O5JVt26evSkRoX40z
| Drop Python 3.5 from Travis. | Drop Python 3.5 from Travis.
| YAML | mit | terrycojones/dark-matter,acorg/dark-matter,acorg/dark-matter,terrycojones/dark-matter |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.