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
|
---|---|---|---|---|---|---|---|---|---|
2ddd55001a39bb284373b5a25a36166179a06b84
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- "4"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- google-chrome
- ubuntu-toolchain-r-test
packages:
- google-chrome-stable
- g++-4.8
cache:
directories:
- node_modules
install:
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
- npm install
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start &
- sleep 3
script:
- npm run lint
- npm test
|
sudo: required
dist: trusty
language: node_js
node_js:
- "4"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- google-chrome
- ubuntu-toolchain-r-test
packages:
- google-chrome-stable
- g++-4.8
cache:
directories:
- node_modules
install:
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
- npm install
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start &
- sleep 3
script:
- npm run lint
- npm test
|
Upgrade to ubuntu trusty for Travis
|
Upgrade to ubuntu trusty for Travis
|
YAML
|
mit
|
zalmoxisus/crossbuilder,zalmoxisus/browser-redux,zalmoxisus/crossbuilder,jordanco/drafter-frontend,zalmoxisus/browser-redux,jordanco/drafter-frontend,jordanco/drafter-frontend,zalmoxisus/crossbuilder,zalmoxisus/browser-redux
|
40107962d8f1ae073d82c46288f75e481bfc4698
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "4.2"
- "0.10"
addons:
code_climate:
repo_token: 1bebac5220990d286c9f0706d2fef547d0cc33d6cc488e7d3aadcaa26ed07c60
after_script:
- npm install codeclimate-test-reporter
- codeclimate-test-reporter < coverage/lcov.info
|
language: node_js
node_js:
- "4.3"
- "0.10"
addons:
code_climate:
repo_token: 1bebac5220990d286c9f0706d2fef547d0cc33d6cc488e7d3aadcaa26ed07c60
after_script:
- npm install codeclimate-test-reporter
- codeclimate-test-reporter < coverage/lcov.info
|
Update Node LTS to 4.3 branch
|
Update Node LTS to 4.3 branch
|
YAML
|
mit
|
oleksiyk/binary-protocol
|
5d86213fc7c59473e19d989a31ac209043c852e9
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
cache: bundler
bundler_args: --without tools
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.0
- rbx-2
- jruby-9000
- ruby-head
- jruby-head
before_install:
- gem update bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
addons:
code_climate:
repo_token: 2c92f1dc6b512f11d06153bcf2f3f5b507af6faa95b3319f559bae1a6bcb2c1a
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/19098b4253a72c9796db
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
language: ruby
sudo: false
cache: bundler
bundler_args: --without tools
rvm:
- 2.1
- 2.2
- 2.3.0
- rbx-2
- jruby-9000
- ruby-head
- jruby-head
before_install:
- gem update bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
addons:
code_climate:
repo_token: 2c92f1dc6b512f11d06153bcf2f3f5b507af6faa95b3319f559bae1a6bcb2c1a
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/19098b4253a72c9796db
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
Remove Ruby 2.0 from Travis build matrix
|
Remove Ruby 2.0 from Travis build matrix
|
YAML
|
mit
|
icelab/call_sheet
|
34ea6d6415b37f09db7ad029718fe7970ad96c3f
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk7
script:
- gradle build
deploy:
- provider: releases
api_key: ${GITHUB_API_KEY}
file_glob: true
file:
- ./build/libs/commons-configuration2-jackson-*.jar
skip_cleanup: true
on:
repo: Virtlink/commons-configuration2-jackson
branch: master
tags: true
- provider: script
script: gradle bintrayUpload
skip_cleanup: true
on:
repo: Virtlink/commons-configuration2-jackson
branch: master
tags: true
|
language: java
jdk:
- oraclejdk8
script:
- gradle build
deploy:
- provider: releases
api_key: ${GITHUB_API_KEY}
file_glob: true
file:
- ./build/libs/commons-configuration2-jackson-*.jar
skip_cleanup: true
on:
repo: Virtlink/commons-configuration2-jackson
branch: master
tags: true
- provider: script
script: gradle bintrayUpload
skip_cleanup: true
on:
repo: Virtlink/commons-configuration2-jackson
branch: master
tags: true
|
Move Travis to Oracle JDK 8
|
Move Travis to Oracle JDK 8
|
YAML
|
apache-2.0
|
Virtlink/commons-configuration2-jackson,Virtlink/commons-configuration2-jackson
|
bc2c4ef8af3c6a6ebcc1604537b48206560bbd91
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.5"
- "2.6"
- "2.7"
install: pip install -r requirements.txt --use-mirrors
script: nosetests
|
language: python
python:
- "2.6"
- "2.7"
install: pip install -r requirements.txt --use-mirrors
script: nosetests
|
Remove 2.5 compatibility from Travis
|
Remove 2.5 compatibility from Travis
Just because it is a pain in the ass.
|
YAML
|
bsd-3-clause
|
westernx/sgsession
|
aeeb938e18ab58795c1f1d05908fdb713456abfb
|
.travis.yml
|
.travis.yml
|
dist: trusty
sudo: false
language: c
matrix:
include:
- env: CABALVER="1.24" GHCVER="8.0.2"
compiler: ": #GHC 8.0.2"
addons: {apt: {packages: [cabal-install-1.24,ghc-8.0.2], sources: [hvr-ghc]}}
- os: osx
env: CABALVER="1.24" GHCVER="8.0.2"
compiler: ": #GHC 8.0.2"
before_install:
- if [[ $TRAVIS_OS_NAME == 'linux' ]];
then
export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$HOME/.cabal/bin:$PATH;
fi
- if [[ $TRAVIS_OS_NAME == 'osx' ]];
then
brew install ghc cabal-install;
export PATH=$HOME/.cabal/bin:$PATH;
fi
- env
install:
- cabal update
- cabal sandbox init
- cabal install Cabal
- make
script:
- make test DIFF=""
notifications:
email: false
|
dist: trusty
sudo: false
language: c
matrix:
include:
- env: CABALVER="1.24" GHCVER="8.0.2"
compiler: ": #GHC 8.0.2"
addons: {apt: {packages: [cabal-install-1.24,ghc-8.0.2], sources: [hvr-ghc]}}
- os: osx
env: CABALVER="1.24" GHCVER="8.0.2"
compiler: ": #GHC 8.0.2"
before_install:
- if [[ $TRAVIS_OS_NAME == 'linux' ]];
then
export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$HOME/.cabal/bin:$PATH;
curl https://saw.galois.com/builds/z3/z3 > z3;
chmod +x z3;
mv z3 $HOME/.cabal/bin/z3
fi
- if [[ $TRAVIS_OS_NAME == 'osx' ]];
then
brew install ghc cabal-install z3;
export PATH=$HOME/.cabal/bin:$PATH;
fi
- env
install:
- cabal update
- cabal sandbox init
- cabal install Cabal
- make
script:
- make test DIFF=""
notifications:
email: false
|
Update Travis config to install Z3
|
Update Travis config to install Z3
|
YAML
|
bsd-3-clause
|
GaloisInc/cryptol,GaloisInc/cryptol,GaloisInc/cryptol
|
540db764a479896a6549cfa64e1f0219c7a69aac
|
.travis.yml
|
.travis.yml
|
language: python
# needed to use trusty
sudo: required
dist: trusty
python:
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -r requirements.txt
- pip install coveralls
- pip install codecov
- python setup.py install
script:
- coverage run --source=twstock setup.py test
after_success:
- coveralls
- codecov
|
language: python
# needed to use trusty
sudo: required
dist: trusty
python:
- "3.4"
- "3.5"
- "3.6"
- "nightly"
install:
- pip install -r requirements.txt
- pip install coveralls
- pip install codecov
- python setup.py install
script:
- coverage run --source=twstock setup.py test
after_success:
- coveralls
- codecov
|
Add python 3 nightly to help to test
|
Add python 3 nightly to help to test
|
YAML
|
mit
|
TCCinTaiwan/twstock,mlouielu/twstock
|
6e45c01302952866c0fb70f731acd58c3d5bc4f9
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
env:
- SYMFONY_VERSION=v2.0.7
- SYMFONY_VERSION=origin/2.0
- SYMFONY_VERSION=origin/master
before_script:
- wget -nc http://getcomposer.org/composer.phar
- php composer.phar update
|
language: php
php:
- 5.3
- 5.4
env:
- SYMFONY_VERSION=v2.0.11
- SYMFONY_VERSION=origin/master
before_script:
- wget -nc http://getcomposer.org/composer.phar
- php composer.phar update
|
Update Travis config for new Symfony version
|
Update Travis config for new Symfony version
|
YAML
|
mit
|
elcweb/soap-client,byng-systems/phpforce-soap-client,fluxuator/soap-client,phpforce/soap-client
|
e64db571b259ba60eb9ecf95077538a5bd6a2b02
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "5"
- "4"
- "0.12"
|
language: node_js
node_js:
- "6"
- "4"
- "0.12"
|
Use node.js 6 on Travis CI
|
Use node.js 6 on Travis CI
|
YAML
|
mit
|
rzhw/autoprefixer,yisibl/autoprefixer,postcss/autoprefixer
|
38e6fd74fd2b81bafc1ebafcbb45fca6de15bf2e
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- "2.1.2"
- "2.0.0"
- "1.9.3"
|
language: ruby
rvm:
- 2.1.2
- 2.0.0
- 1.9.3
deploy:
provider: rubygems
api_key:
secure: E1RIsTEaqHLqOxgcYac+0hAo6gWeJgWkbRnlqMkoL1uL7r+69JRwJ13NPa/BEzn87ukJ4/arRRC6TI9NFtof3TbN7uceVjab2kVQmqjNxva5OZBGE4V+a/4i6PN1nzmDESijQtdMxvSE4tt4xcCzSKjR1abKETwItCp2sehCzDoVG7SmUt0NsiLv57NCmq3APJYvn9bcnA3R1zfTYoRkCePdoeZBs3m+TVs7fS1fg7q8UbjCjIVJjPWGeYqca9TVdRRDxoWHOhEyf+/9rJAJg36/qM6iJlchbFdnTTMuJQiFWzXVrFfjdqm9U86JS0K00Gkm/2f+P+534tH3519z4PpDh611RGkWewXWBZYzwAu4qeMfgvTo7MQ0tBrEtjcH54EiDRn4II3bhHps31mUx5BtkOnawjbdLfRZBkpuUNm8rCuRDw+N57h1HB97oJXYW9YCMyTIAAL+92KxutHystze2i/0CpT9kigAbTaUBsoEQam3Wt81ncQHkqrpwXRzxDvEbkgqMd+79NFLHVnu0C/e3TvThnpyBZwOXSByH909DXfLnPwO67GSDYwh3IWE+LHI90jIRZpQ9/5yFDSpklpZ+bUXlPQ19JwGXCuty52RRdHz+nKdUh+4TgccV9KHEgDKa4UAICjUIPzgJbpbfuv5LBOZHRVDJxCh5Unzzws=
gem: kitchen-chef_zero_berks_env
on:
tags: true
repo: ruizink/kitchen-chef_zero_berks_env
|
Deploy to rubygems from Travis CI.
|
Deploy to rubygems from Travis CI.
|
YAML
|
mit
|
ruizink/kitchen-chef_zero_berks_env
|
939d76b1d89a8d989b5aee877e9f764627c494a8
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '7'
- '6'
- '4.1.1'
- '0.12'
- '0.11'
- '0.10'
|
sudo: false
language: node_js
node_js:
- '7'
- '6'
- '4.1.1'
|
Drop support for legacy Node.js versions
|
build: Drop support for legacy Node.js versions
This will be a breaking change.
To be released as part of the next major version.
|
YAML
|
mit
|
kof/node-qunit
|
2a5a6311b5c5568260dafe7f34f521f0ac829150
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 'pypy2.7'
- 'pypy3.5'
- '2.7'
- '3.3'
- '3.7'
- 'nightly'
install:
- pip install mock==2.0
- pip install requests
script:
- python -m unittest discover -s tests/ -p test_*.py -v
matrix:
allow_failures:
- python: 'nightly'
|
language: python
python:
- 'pypy2.7'
- 'pypy3.5'
- '2.7'
- '3.3'
- '3.6'
- 'nightly'
install:
- pip install mock==2.0
- pip install requests
script:
- python -m unittest discover -s tests/ -p test_*.py -v
matrix:
allow_failures:
- python: 'nightly'
|
Use Python 3.6 instead of 3.7: latter doesn't seem to be supported by Travis
|
Use Python 3.6 instead of 3.7: latter doesn't seem to be supported by Travis
|
YAML
|
bsd-2-clause
|
messagebird/python-rest-api
|
d329bfe300a63175a74e0c2d8d85333928e2e366
|
.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
cache:
directories:
- $HOME/.m2
matrix:
include:
- os: linux-ppc64le
jdk: openjdk8
allow_failures:
- jdk: openjdk-ea
jdk:
- oraclejdk11
- openjdk8
- openjdk11
- openjdk14
- openjdk-ea
after_success:
- mvn clean test jacoco:report coveralls:report -Ptravis-jacoco
|
# 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
cache:
directories:
- $HOME/.m2
matrix:
include:
- jdk: openjdk8
- jdk: openjdk11
- jdk: openjdk15
- jdk: openjdk-ea
allow_failures:
- jdk: openjdk-ea
after_success:
- mvn clean test jacoco:report coveralls:report -Ptravis-jacoco
|
Replace Java 14 with 15. No need for a PPC build. One Java 11 build.
|
Travis: Replace Java 14 with 15. No need for a PPC build. One Java 11
build.
|
YAML
|
apache-2.0
|
apache/commons-fileupload,apache/commons-fileupload
|
02ac549093e9ca7996e840251b596bed48f5c465
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
matrix:
allow_failures:
- python: "3.3"
- python: "3.4"
fast_finish: true
install:
- uname -a
- sudo apt-get update -qq
- sudo apt-get install -qq curl protobuf-compiler libprotobuf-dev libncurses5 libc6 wget
- sudo wget https://raw.github.com/alavrik/piqi-binary/master/Linux-x86_64/piqi -O /usr/bin/piqi
- sudo chmod +x /usr/bin/piqi
- pip install --upgrade https://bitbucket.org/logilab/astroid/get/5ed6266cab78.zip
- if [[ ${TRAVIS_PYTHON_VERSION:0:1} == '3' ]];
then pip install -r requirements-dev-py3.txt;
else pip install -r requirements-dev-py2.txt;
fi;
- python setup.py build
script: make test && make check
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "nightly"
- "pypy"
- "pypy3"
matrix:
allow_failures:
- python: "3.3"
- python: "3.4"
- python: "3.5"
- python: "3.5-dev"
- python: "nightly"
- python: "pypy3"
fast_finish: true
install:
- uname -a
- sudo apt-get update -qq
- sudo apt-get install -qq curl protobuf-compiler libprotobuf-dev libncurses5 libc6 wget
- sudo wget https://raw.github.com/alavrik/piqi-binary/master/Linux-x86_64/piqi -O /usr/bin/piqi
- sudo chmod +x /usr/bin/piqi
- pip install --upgrade https://bitbucket.org/logilab/astroid/get/5ed6266cab78.zip
- if [[ ${TRAVIS_PYTHON_VERSION:0:1} == '3' ]];
then pip install -r requirements-dev-py3.txt;
else pip install -r requirements-dev-py2.txt;
fi;
- python setup.py build
script: make test && make check
|
Build with more Python versions
|
Build with more Python versions
|
YAML
|
mit
|
smarkets/smk_python_sdk
|
9e0840318a4902b0589b4d071b08a9f7be9e4be3
|
.travis.yml
|
.travis.yml
|
addons:
apt:
packages:
- python-matplotlib
- python-scipy
- pandoc
language: python
cache: pip
python:
- "2.7"
- "3.4"
# command to install dependencies
install:
- pip install --upgrade pip
- pip install scipy
- pip install --upgrade .
- pip install --upgrade -r requirements.txt
- pip install --upgrade tox-travis
# command to run tests
script: tox
after_success: coveralls
|
addons:
apt:
packages:
- python-matplotlib
- python-scipy
- pandoc
language: python
cache: pip
python:
- "2.7"
- "3.4"
# command to install dependencies
install:
- pip install --upgrade pip
- pip install scipy
- pip install --upgrade .
- pip install --upgrade -r requirements.txt
- pip install --upgrade tox-travis
# command to run tests
script: tox
after_success: codecov
|
Update from coveralls to codecov
|
Update from coveralls to codecov
|
YAML
|
mit
|
wsmorgan/analyzefit
|
17f408991de23e3851e310478c80a8fe08cfae95
|
providers/audiomack.yml
|
providers/audiomack.yml
|
---
- provider_name: Audiomack
provider_url: https://www.audiomack.com
endpoints:
- schemes:
- https://www.audiomack.com/song/*
- https://www.audiomack.com/album/*
- https://www.audiomack.com/playlist/*
url: https://www.audiomack.com/oembed
example_urls:
- https://www.audiomack.com/oembed?url=https%3A%2F%2Fwww.audiomack.com%2Foembed%2Fplaylist%2Faudiomack%2Fjust-chillin&format=json
discovery: true
...
|
---
- provider_name: Audiomack
provider_url: https://www.audiomack.com
endpoints:
- schemes:
- https://www.audiomack.com/song/*
- https://www.audiomack.com/album/*
- https://www.audiomack.com/playlist/*
url: https://www.audiomack.com/oembed
example_urls:
- https://www.audiomack.com/oembed?url=https%3A%2F%2Fwww.audiomack.com%2Fplaylist%2Faudiomack%2Fjust-chillin&format=json
discovery: true
...
|
Remove oembed segment from url parameter
|
Remove oembed segment from url parameter
It would still work with this but is technically incorrect.
|
YAML
|
mit
|
iamcal/oembed,iamcal/oembed,iamcal/oembed,iamcal/oembed
|
65e1446863a9d29bfec243729a3548015c7ff7b8
|
stack.yaml
|
stack.yaml
|
flags: {}
packages:
- '.'
extra-deps:
- aeson-0.11.0.0
- yaml-0.8.21.2
resolver: lts-5.3
|
resolver: lts-9.0
|
Upgrade to Stackage LTS 9.0
|
Upgrade to Stackage LTS 9.0
|
YAML
|
mit
|
haskell-tinc/hpack,sol/hpack
|
5ebcbf3094c8347b30eca345b444e917dca2eda3
|
metadata/kasun.sinhala.keyboard.yml
|
metadata/kasun.sinhala.keyboard.yml
|
Categories:
- System
- Writing
License: GPL-3.0-only
WebSite: https://sinha.la
SourceCode: https://codeberg.org/sinhala/sithakuru.git
IssueTracker: https://codeberg.org/sinhala/sithakuru/issues
AutoName: Sithakuru
RepoType: git
Repo: https://codeberg.org/sinhala/sithakuru.git
Builds:
- versionName: 1.0.2
versionCode: 3
commit: 1.0.2
subdir: app
gradle:
- yes
- versionName: 1.0.3
versionCode: 4
commit: 165cbb4bc54ef32e9bb66a71815d2e701b01ad38
subdir: app
gradle:
- yes
- versionName: 1.0.4
versionCode: 5
commit: 804efa7d70cf551e825ee6c8fbe41c53c0286452
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.0.4
CurrentVersionCode: 5
|
Categories:
- System
- Writing
License: GPL-3.0-only
WebSite: https://sinha.la
SourceCode: https://codeberg.org/sinhala/sithakuru.git
IssueTracker: https://codeberg.org/sinhala/sithakuru/issues
AutoName: Sithakuru
RepoType: git
Repo: https://codeberg.org/sinhala/sithakuru.git
Builds:
- versionName: 1.0.2
versionCode: 3
commit: 1.0.2
subdir: app
gradle:
- yes
- versionName: 1.0.3
versionCode: 4
commit: 165cbb4bc54ef32e9bb66a71815d2e701b01ad38
subdir: app
gradle:
- yes
- versionName: 1.0.4
versionCode: 5
commit: 804efa7d70cf551e825ee6c8fbe41c53c0286452
subdir: app
gradle:
- yes
- versionName: 1.0.5
versionCode: 6
commit: 166f5e107b7aea3a9609cbca3d70093700979c0c
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.0.5
CurrentVersionCode: 6
|
Update Sithakuru to 1.0.5 (6)
|
Update Sithakuru to 1.0.5 (6)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
7d1598c94f6f0b73ea25001defb40f94257999f6
|
.travis.yml
|
.travis.yml
|
language: ruby
before_install:
- gem install bundler # the default bundler version on travis is very old and causes 1.9.3 build issues
rvm:
- 1.9.3
- jruby-19mode
- rbx
- 2.0.0
- 2.1.0
|
language: ruby
before_install:
- gem install bundler # the default bundler version on travis is very old and causes 1.9.3 build issues
rvm:
- 1.9.3
- jruby-19mode
- rbx
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0
|
Add ruby 2.2.0 and 2.3.0 to the test matrix
|
Add ruby 2.2.0 and 2.3.0 to the test matrix
Expand the test matrix to add the two most recent stable releases of ruby.
|
YAML
|
mit
|
lorcan/mutations,cypriss/mutations
|
11159fa2d139325e504ea828ec585423db2e5988
|
.travis.yml
|
.travis.yml
|
language: python
python: 3.5
cache:
directories:
- $HOME/virtualenv/python3.5.3/
jobs:
include:
- stage: unit
script: pytest tests/unit
- stage: journey
script: travis_wait 40 pytest tests/journey
- stage: deploy
script: skip
deploy:
provider: pypi
user: serenata
password: $PYPI_PASSWORD
distributions: "sdist bdist_wheel"
on:
branch: master
install:
- rm -rf .coverage
- python setup.py develop
- pip install coveralls pytest pytest-cov
after_success:
- coveralls
|
language: python
python: 3.5
cache:
directories:
- $HOME/virtualenv/python3.5.3/
jobs:
include:
- stage: unit
script: pytest tests/unit
- stage: journey
script: travis_wait 40 pytest tests/journey
- stage: deploy
script: skip
deploy:
provider: pypi
user: serenata
password: $PYPI_PASSWORD
distributions: "sdist bdist_wheel"
on:
branch: master
install:
- rm -rf .coverage
- python -m pip install -e .
- python -m pip install coveralls pytest pytest-cov
after_success:
- coveralls
|
Update technique to install package locally in CI
|
Update technique to install package locally in CI
|
YAML
|
mit
|
datasciencebr/serenata-toolbox
|
0ac4eb6a533fa7cde5c85fa996e0c872c0ddae4a
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanbul coveralls
|
sudo: false
language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanbul coveralls
|
Build without `sudo` on Travis CI.
|
Build without `sudo` on Travis CI.
|
YAML
|
mit
|
bigeasy/item,bigeasy/item
|
25761f7e44650b00ac6a165ab92619d68d851bab
|
.travis.yml
|
.travis.yml
|
language: rust
rust:
- nightly
sudo: false
after_success: |
cargo doc \
&& echo '<meta http-equiv=refresh content=0;url=typedef/index.html>' > target/doc/index.html && \
sudo pip install ghp-import && \
ghp-import -n target/doc && \
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
|
language: rust
rust:
- nightly
after_success: |
cargo doc \
&& echo '<meta http-equiv=refresh content=0;url=typedef/index.html>' > target/doc/index.html && \
sudo pip install ghp-import && \
ghp-import -n target/doc && \
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
|
Add back sudo because ghp does not work without root.
|
Add back sudo because ghp does not work without root.
|
YAML
|
mit
|
Nercury/typedef-rs
|
9890c65ef5426d2b7255fc40a620bdf14f9d1cc6
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.6
- 5.5
- 5.4
# cache composer downloads so installing is quicker
cache:
directories:
- $HOME/.composer
addons:
code_climate:
repo_token: 9deb249b01a414d979959cfd05a4c351b19a5959858653b20276454d4189edc3
before_script:
- sh tools/travis/setup-mail.sh
- cp phinx.yml.dist phinx.yml
- composer self-update
- composer install
script:
- sh tools/travis/build.sh
after_script:
- vendor/bin/test-reporter --stdout > codeclimate.json
- "curl -X POST -d @codeclimate.json -H 'Content-Type: application/json' -H 'User-Agent: Code Climate (PHP Test Reporter v0.1.1)' https://codeclimate.com/test_reports"
|
language: php
sudo: false
php:
- 5.6
- 5.5
- 5.4
# cache composer downloads so installing is quicker
cache:
directories:
- $HOME/.composer
addons:
code_climate:
repo_token: 9deb249b01a414d979959cfd05a4c351b19a5959858653b20276454d4189edc3
before_script:
- sh tools/travis/setup-mail.sh
- cp phinx.yml.dist phinx.yml
- composer self-update
- composer install
script:
- sh tools/travis/build.sh
after_script:
- vendor/bin/test-reporter --stdout > codeclimate.json
- "curl -X POST -d @codeclimate.json -H 'Content-Type: application/json' -H 'User-Agent: Code Climate (PHP Test Reporter v0.1.1)' https://codeclimate.com/test_reports"
|
Use container-based infrastructure on Travis
|
Enhancement: Use container-based infrastructure on Travis
|
YAML
|
mit
|
GrUSP/opencfp,jugisahunk/200OK_CFP,brynary/opencfp,DevOpsDaysChicago/opencfp,monoku/opencfp,DallasPHP/opencfp,opencfp/opencfp,DevOpsDaysChicago/opencfp,sunshinephp/opencfp,MidwestPHP/opencfp_mwphp15,PHPBenelux/opencfp,MidwestPHP/opencfp_mwphp15,GrUSP/opencfp,Acidburn0zzz/opencfp,DallasPHP/opencfp,PHPBenelux/opencfp,Acidburn0zzz/opencfp,monoku/opencfp,mdwheele/opencfp,monoku/opencfp,noahd1/opencfp,OpenWestConference/opencfp,OpenWestConference/opencfp,mdwheele/opencfp,opencfp/opencfp,noahd1/opencfp,Acidburn0zzz/opencfp,GrUSP/opencfp,localheinz/opencfp,OpenWestConference/opencfp,brynary/opencfp,noahd1/opencfp,jugisahunk/200OK_CFP,mdwheele/opencfp,opencfp/opencfp,pmeth/opencfp,localheinz/opencfp,sunshinephp/opencfp,phphants/opencfp,sunshinephp/opencfp,localheinz/opencfp,DevOpsDaysChicago/opencfp,localheinz/opencfp,jugisahunk/200OK_CFP,PHPBenelux/opencfp,mdwheele/opencfp,pmeth/opencfp,brynary/opencfp,phphants/opencfp,monoku/opencfp,GrUSP/opencfp,pmeth/opencfp,MidwestPHP/opencfp_mwphp15,phphants/opencfp,MidwestPHP/opencfp_mwphp15,OpenWestConference/opencfp,PHPBenelux/opencfp,DallasPHP/opencfp,phphants/opencfp
|
229641af2468cd56b0c82b6439bcc5ee6f436688
|
config/default.yml
|
config/default.yml
|
server:
port: 3000
host: localhost
db:
host: localhost
database: wbt-framework
jwt:
options:
expiresIn: 7d
subject: authenticate
download:
cwd: ./
dest: .tmp
assets:
serve: true
root: /dist
title: WBT Framework
base: wbt-framework
versions:
angular: 1.4.7
bootstrap: 3.3.5
fontAwesome: 4.4.0
lodash: 3.10.1
restangular: 1.5.1
logging: true
|
server:
port: 3000
host: localhost
db:
host: localhost
database: wbt-framework
jwt:
options:
expiresIn: 7d
subject: authenticate
assets:
serve: true
root: /dist
title: WBT Framework
base: wbt-framework
versions:
angular: 1.4.8
bootstrap: 3.3.5
fontAwesome: 4.4.0
lodash: 3.10.1
restangular: 1.5.1
logging: true
|
Update angular and remove download key
|
Update angular and remove download key
|
YAML
|
mit
|
tamaracha/wbt-framework,tamaracha/wbt-framework,tamaracha/wbt-framework
|
55dda46e9768d87017438a9b0e995f8d3541e5fb
|
config/default.yml
|
config/default.yml
|
server_port: 9001
service_map_backend: http://api.hel.fi/servicemap/v1
linkedevents_backend: http://api.hel.fi/linkedevents/v0.1
static_path: /static/
livereload: true
url_prefix: /
# user_location_override: [60.171111, 24.943889]
# sentry_url: http://[email protected]/sentry/2
debug_state: false
geocoder_url: http://dev.hel.fi/geocoder/v1
mobile_ui_breakpoint: 768 # Mobile UI is used below this screen width.
|
server_port: 9001
service_map_backend: http://api.hel.fi/servicemap/v1
linkedevents_backend: http://api.hel.fi/linkedevents/v0.1
otp_backend: http://144.76.78.72/otp/routers/default/plan
static_path: /static/
livereload: true
url_prefix: /
# user_location_override: [60.171111, 24.943889]
# sentry_url: http://[email protected]/sentry/2
debug_state: false
geocoder_url: http://dev.hel.fi/geocoder/v1
mobile_ui_breakpoint: 768 # Mobile UI is used below this screen width.
|
Move otp server config to settings.
|
Move otp server config to settings.
|
YAML
|
agpl-3.0
|
City-of-Helsinki/servicemap,Zeukkari/servicemap,vaaralav/servicemap,City-of-Helsinki/servicemap,vaaralav/servicemap,Zeukkari/servicemap,vaaralav/servicemap,City-of-Helsinki/servicemap
|
001d44b10fc9e82733539fafd76c2fc5fb7895d8
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
env:
- DJANGO="Django>=1.4,<1.5"
- DJANGO="Django>=1.5,<1.6"
- DJANGO="Django>=1.6,<1.7"
- DJANGO="Django>=1.7,<1.8"
- DJANGO="Django>=1.8,<1.9"
matrix:
exclude:
- python: "2.6"
env: DJANGO="Django>=1.7,<1.8"
- python: "2.6"
env: DJANGO="Django>=1.8,<1.9"
- python: "3.3"
env: DJANGO="Django>=1.4,<1.5"
- python: "3.4"
env: DJANGO="Django>=1.4,<1.5"
install:
- pip install $DJANGO
script:
- python setup.py test
|
language: python
install:
- pip install tox
script:
- tox
env: # generate list with: $ tox -l | xargs -I ITEM echo " - TOXENV="ITEM
- TOXENV=py26-django14
- TOXENV=py26-django15
- TOXENV=py26-django16
- TOXENV=py27-django14
- TOXENV=py27-django15
- TOXENV=py27-django16
- TOXENV=py27-django17
- TOXENV=py27-django18
- TOXENV=py33-django15
- TOXENV=py33-django16
- TOXENV=py33-django17
- TOXENV=py33-django18
- TOXENV=py34-django15
- TOXENV=py34-django16
- TOXENV=py34-django17
- TOXENV=py34-django18
|
Make Travis-CI use Tox for test matrix execution
|
Make Travis-CI use Tox for test matrix execution
see http://jsatt.com/blog/using-tox-with-travis-ci-to-test-django-apps/
|
YAML
|
mit
|
apocquet/django-analytical,jcassee/django-analytical,ChristosChristofidis/django-analytical,ericdwang/django-analytical,pjdelport/django-analytical,machtfit/django-analytical,bittner/django-analytical
|
d4db33991eb98055016f6d9ae01edf0591bd302e
|
.travis.yml
|
.travis.yml
|
language: node_js
cache:
yarn: true
directories:
- open-zwave-master
sudo: required
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
- libudev-dev
before_install:
- ./tools/compile-openzwave.sh
env:
global:
- CC=gcc-4.9
- CXX=g++-4.9
script:
- npm run lint
- ./tools/make-self-signed-cert.sh
- ./node_modules/.bin/jest --coverage
- npm run yarn-check
after_script:
- ./node_modules/.bin/codecov
node_js:
- 7
notifications:
irc: "irc.mozilla.org#iot"
|
language: node_js
cache:
yarn: true
directories:
- open-zwave-master
sudo: required
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
- libudev-dev
before_install:
- ./tools/compile-openzwave.sh
env:
global:
- CC=gcc-4.9
- CXX=g++-4.9
script:
- npm run lint
- ./tools/make-self-signed-cert.sh
- ./node_modules/.bin/jest --runInBand --coverage
- npm run yarn-check
after_script:
- ./node_modules/.bin/codecov
node_js:
- 7
notifications:
irc: "irc.mozilla.org#iot"
|
Make Travis run Jest tests in serial as well.
|
Make Travis run Jest tests in serial as well.
|
YAML
|
mpl-2.0
|
mozilla-iot/gateway,mozilla-iot/gateway,mozilla-iot/gateway,mozilla-iot/gateway,moziot/gateway,moziot/gateway,mozilla-iot/gateway,moziot/gateway
|
355857ff701c2545f08a02bbe9979fa0604730e2
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO=1.8
- DJANGO=1.9
- DJANGO=1.10
matrix:
exclude:
- python: "3.3"
env: DJANGO=1.9
- python: "3.3"
env: DJANGO=1.10
before_install:
# Workaround for a permissions issue with Travis virtual machine images
# that breaks Python's multiprocessing:
# https://github.com/travis-ci/travis-cookbooks/issues/155
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
install:
- pip install "Django>=$DJANGO,<${DJANGO}.99" jsonfield
script:
- "`which django-admin.py` test post_office --settings=post_office.test_settings --pythonpath=."
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
env:
- DJANGO=1.8
- DJANGO=1.9
- DJANGO=1.10
matrix:
exclude:
- python: "3.3"
env: DJANGO=1.9
- python: "3.3"
env: DJANGO=1.10
before_install:
# Workaround for a permissions issue with Travis virtual machine images
# that breaks Python's multiprocessing:
# https://github.com/travis-ci/travis-cookbooks/issues/155
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
install:
- pip install "Django>=$DJANGO,<${DJANGO}.99" jsonfield
script:
- "`which django-admin.py` test post_office --settings=post_office.test_settings --pythonpath=."
|
Add Python 3.6 to build matrix.
|
Add Python 3.6 to build matrix.
|
YAML
|
mit
|
jrief/django-post_office,ui/django-post_office,ui/django-post_office
|
093b77a09e17d8fda8d27cfa821744b344af45c2
|
.travis.yml
|
.travis.yml
|
# This is the config file for building TileStache and running the test suite
# with Travis-ci.org
language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
services:
- memcached
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq gdal-bin memcached python-pip
- sudo apt-get install -qq python-nose python-imaging python-memcache python-gdal
- sudo apt-get install -qq python-coverage python-werkzeug python-psycopg2
- ogrinfo --version
- ogrinfo --formats
before_script:
- sudo -u postgres psql -c "drop database if exists test_tilestache"
- sudo -u postgres psql -c "create database test_tilestache"
- sudo -u postgres psql -c "create extension postgis" -d test_tilestache
- sudo -u postgres ogr2ogr -nlt MULTIPOLYGON -f "PostgreSQL" PG:"user=postgres dbname=test_tilestache" ./examples/sample_data/world_merc.shp
install:
- sudo pip install -r requirements.txt
script:
- nosetests -v --with-coverage --cover-package TileStache
notifications:
email:
recipients:
- [email protected]
|
# This is the config file for building TileStache and running the test suite
# with Travis-ci.org
language: python
python:
- "2.7"
addons:
postgresql: "9.4"
virtualenv:
system_site_packages: true
services:
- memcached
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq gdal-bin memcached python-pip
- sudo apt-get install -qq python-nose python-imaging python-memcache python-gdal
- sudo apt-get install -qq python-coverage python-werkzeug python-psycopg2
- ogrinfo --version
- ogrinfo --formats
before_script:
- sudo -u postgres psql -c "drop database if exists test_tilestache"
- sudo -u postgres psql -c "create database test_tilestache"
- sudo -u postgres psql -c "create extension postgis" -d test_tilestache
- sudo -u postgres ogr2ogr -nlt MULTIPOLYGON -f "PostgreSQL" PG:"user=postgres dbname=test_tilestache" ./examples/sample_data/world_merc.shp
install:
- sudo pip install -r requirements.txt
script:
- nosetests -v --with-coverage --cover-package TileStache
notifications:
email:
recipients:
- [email protected]
|
Use postgres 9.4 for testing
|
Use postgres 9.4 for testing
|
YAML
|
bsd-3-clause
|
TileStache/TileStache,Billups/TileStache,MetGIS/TileStache,jbants/TileStache,Billups/TileStache,TileStache/TileStache,Billups/TileStache,MetGIS/TileStache,MetGIS/TileStache,TileStache/TileStache,jbants/TileStache,jbants/TileStache
|
9cadcf85e20f11f3de000eca9ce5a3035f2f8fcd
|
.travis.yml
|
.travis.yml
|
language: php
php:
- "7.3"
before_script:
- curl -s https://getcomposer.org/installer | php && php composer.phar update
script:
- php vendor/bin/phpunit -c SilMock/tests/phpunit.xml SilMock/tests/
|
language: php
php:
- "7.4"
before_script:
- curl -s https://getcomposer.org/installer | php && php composer.phar update
script:
- php vendor/bin/phpunit -c SilMock/tests/phpunit.xml SilMock/tests/
|
Update Travis CI to use PHP7.4
|
Update Travis CI to use PHP7.4
|
YAML
|
mit
|
silinternational/google-api-php-client-mock,silinternational/google-api-php-client-mock
|
06a98b7c26b45848225b93737c7cbdc20dfd82f7
|
.travis.yml
|
.travis.yml
|
language: android
jdk:
- oraclejdk8
android:
components:
- tools
- tools # https://github.com/travis-ci/travis-ci/issues/6059
- platform-tools
- android-25
- build-tools-25.0.1
before_script: cd $TRAVIS_BUILD_DIR/AndroidTestingBlueprint
script: ./gradlew app:connectedAndroidTest
|
language: android
jdk:
- oraclejdk8
android:
components:
- tools
- tools # https://github.com/travis-ci/travis-ci/issues/6059
- platform-tools
- android-25
- build-tools-25.0.1
- extra-android-support
before_script: cd $TRAVIS_BUILD_DIR/AndroidTestingBlueprint
script: ./gradlew app:connectedAndroidTest
|
Call out the extra-android-support so that Travis will accept its license (I hope).
|
Call out the extra-android-support so that Travis will accept its license (I hope).
|
YAML
|
apache-2.0
|
DavidWhitlock/android-testing-templates
|
0077ba698aa749228755780e42ea62c91c8734ec
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '6'
cache:
directories:
- node_modules
script:
- npm run lint
- npm install redis --production
- npm test
|
language: node_js
node_js:
- '6'
services:
- redis-server
cache:
directories:
- node_modules
script:
- npm run lint
- npm install redis --production
- npm test
|
Add Redis server to Travis
|
Add Redis server to Travis
|
YAML
|
mit
|
CapacitorSet/rebridge
|
ba0512ae2e181c3c9070ad48f6b868ad70ec5288
|
.travis.yml
|
.travis.yml
|
language: rust
rust:
- stable
- nightly
sudo: false
script:
- cargo test
- cd kite && cargo test
|
dist: trusty
language: rust
rust:
# - stable
- nightly
sudo: true
addons:
apt:
sources:
# add PPAs with more up-to-date toolchains
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.6
packages:
# install toolchains
- gcc-5
- g++-5
- clang-3.6
install:
- sudo apt-get install -y libsnappy-dev zlib1g-dev libbz2-dev
- curl -L https://github.com/facebook/rocksdb/archive/4.13.fb.tar.gz | tar xvz
- make -C rocksdb-4.13.fb shared_lib
env:
- LD_LIBRARY_PATH=$PWD/rocksdb-4.13.fb
script:
- cargo test
- cd kite && cargo test
|
Build and install RocksDB on Travis
|
Build and install RocksDB on Travis
|
YAML
|
apache-2.0
|
kaedroho/rusticsearch
|
f2839064acb7aa0c12b08eba9bd27741872349d3
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.11'
- '0.10'
- '0.8'
|
language: node_js
node_js:
- '0.11'
- '0.10'
- '0.8'
matrix:
allow_failures:
- node_js: '0.11'
|
Allow NodeJS 0.11 to fail
|
Allow NodeJS 0.11 to fail
|
YAML
|
mit
|
theakman2/node-modules-webant-handler-scss
|
9f1477566dcfa47f259d9b45360c53c852cfc4e4
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.1
- 1.2
- tip
install:
- go get -t github.com/smartystreets/goconvey
|
language: go
go:
- 1.2
- tip
install:
- go get -t github.com/smartystreets/goconvey
|
Stop testing against go1.1. a) who cares, b) need 'go get -t'
|
Stop testing against go1.1. a) who cares, b) need 'go get -t'
|
YAML
|
mit
|
sdboyer/gogl,sdboyer/gogl
|
1d4866a383c7d50495d44233b4c69b40985ddad6
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
|
language: ruby
rvm:
- 1.9.3
before_script:
- psql --command 'create database nypl_tweetwall_test;' --username postgres
script:
- RAILS_ENV=test bundle exec rake db:test:load test --trace
|
Add Travis CI hooks to create database and run tests.
|
Add Travis CI hooks to create database and run tests.
|
YAML
|
mit
|
lolibrarian/nypl-tweetwall,lolibrarian/nypl-tweetwall,lolibrarian/nypl-tweetwall
|
58d2043e889362656205e067c272107fa1d50dec
|
.travis.yml
|
.travis.yml
|
language: php
sudo: false
## Cache composer bits
cache:
directories:
- $HOME/.composer/cache
## PHP versions we test against
php:
- 5.5
- 5.6
- 7.0
- hhvm
## Build matrix for lowest and highest possible targets
matrix:
include:
- php: 5.5
env: dependencies=lowest
- php: 5.6
env: dependencies=lowest
- php: 7.0
env: dependencies=lowest
- php: hhvm
env: dependencies=lowest
- php: 5.5
env: dependencies=highest
- php: 5.6
env: dependencies=highest
- php: 7.0
env: dependencies=highest
- php: hhvm
env: dependencies=highest
## Update composer and run the appropriate composer command
before_script:
- composer self-update -q
- composer config --unset platform.php
- if [ -z "$dependencies" ]; then composer install; fi;
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest -n; fi;
- if [ "$dependencies" = "highest" ]; then composer update -n; fi;
- composer show -i
## Run the actual test
script: make travis
after_script: make travis-coverage
|
language: php
sudo: false
## Cache composer bits
cache:
directories:
- $HOME/.composer/cache
## PHP versions we test against
php:
- 5.5
- 5.6
- 7.0
- hhvm
## Build matrix for lowest and highest possible targets
matrix:
include:
- php: 5.5
env: dependencies=lowest
- php: 5.6
env: dependencies=lowest
- php: 7.0
env: dependencies=lowest
- php: hhvm
env: dependencies=lowest
- php: 5.5
env: dependencies=highest
- php: 5.6
env: dependencies=highest
- php: 7.0
env: dependencies=highest
- php: hhvm
env: dependencies=highest
## Update composer and run the appropriate composer command
before_script:
- composer self-update -q
- composer config --unset platform.php
- if [ -z "$dependencies" ]; then composer install; fi;
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest -n; fi;
- if [ "$dependencies" = "highest" ]; then composer update -n; fi;
- composer show
## Run the actual test
script: make travis
after_script: make travis-coverage
|
Remove -i since only show installed packages is now the default
|
Remove -i since only show installed packages is now the default
|
YAML
|
mit
|
WyriHaximus/cakephp-async-orm
|
75d0b2980bfab82da98c23de7e26dec545dbadd5
|
.travis.yml
|
.travis.yml
|
language: php
sudo: false
php:
- 5.6
- 7.0
- hhvm
env:
global:
- setup=basic
- coverage=no
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
- if [[ $setup = 'coveralls' ]]; then travis_retry composer require "satooshi/php-coveralls=~0.7" --prefer-dist --no-interaction --dev; fi
script:
- if [[ $coverage = 'yes' ]]; then phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml; fi
- if [[ $coverage = 'no' ]]; then phpunit -c phpunit.xml; fi
after_script:
- if [[ $setup = 'coveralls' ]]; then php vendor/bin/coveralls -v; fi
matrix:
include:
- php: 5.6
env: setup=lowest
- php: 5.6
env: setup=stable
- php: 5.6
env: setup=coveralls coverage=yes
allow_failures:
- env: setup=stable
- env: setup=coveralls coverage=yes
fast_finish: true
|
language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
env:
global:
- setup=basic
- coverage=no
before_script:
- travis_retry composer self-update
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
- if [[ $setup = 'coveralls' ]]; then travis_retry composer require "satooshi/php-coveralls=~0.7" --prefer-dist --no-interaction --dev; fi
script:
- if [[ $coverage = 'yes' ]]; then phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml; fi
- if [[ $coverage = 'no' ]]; then phpunit -c phpunit.xml; fi
after_script:
- if [[ $setup = 'coveralls' ]]; then php vendor/bin/coveralls -v; fi
matrix:
include:
- php: 5.6
env: setup=lowest
- php: 5.6
env: setup=stable
- php: 5.6
env: setup=coveralls coverage=yes
allow_failures:
- env: setup=stable
- env: setup=coveralls coverage=yes
fast_finish: true
|
Remove hhvm and add 7.1
|
Remove hhvm and add 7.1
Signed-off-by: crynobone <[email protected]>
|
YAML
|
mit
|
orchestral/widget
|
2a945edf121ba99b4caad87d84d3ccdab14f4838
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- openjdk7
deploy:
provider: heroku
api_key:
secure: IH2Gf+FDNUGLLxpke3RSqWOQCakUIvgLrWwYNoYq6X6hkXSfe5MDiSzASsIUEfix+eOuSSXTDCZE69lyGqxos1giI/fwY4E+qJZd72gEgbJyEaIn8QD+4KUjZ4d7gflLAa4xQO/3PjedUKGwiNepuc839bZO0sWpTRunDLA3t0E=
app: tredegar
on:
repo: ONSdigital/tredegar
|
language: java
jdk:
- openjdk7
deploy:
provider: heroku
api_key:
secure: IH2Gf+FDNUGLLxpke3RSqWOQCakUIvgLrWwYNoYq6X6hkXSfe5MDiSzASsIUEfix+eOuSSXTDCZE69lyGqxos1giI/fwY4E+qJZd72gEgbJyEaIn8QD+4KUjZ4d7gflLAa4xQO/3PjedUKGwiNepuc839bZO0sWpTRunDLA3t0E=
app: tredegar
on:
repo: ONSdigital/tredegar
before_script:
- echo -e "Host codebasehq.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
|
Tweak to see if this will enable Travis to accept the Codebasehq.com ssh key.
|
Tweak to see if this will enable Travis to accept the Codebasehq.com ssh key.
|
YAML
|
mit
|
ONSdigital/babbage,ONSdigital/tredegar,ONSdigital/tredegar,ONSdigital/tredegar,ONSdigital/tredegar,ONSdigital/babbage,ONSdigital/babbage,ONSdigital/babbage
|
b41935055df2e340af574c8517935369b0fc9400
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.6.2
- tip
env:
- GIMME_OS=linux GIMME_ARCH=amd64
- GIMME_OS=darwin GIMME_ARCH=amd64
- GIMME_OS=windows GIMME_ARCH=amd64
install:
- go get -d -v ./...
script:
- go test -v ./...
- go build -v ./...
|
language: go
go:
- 1.6.2
- tip
env:
- GIMME_OS=linux GIMME_ARCH=amd64
- GIMME_OS=darwin GIMME_ARCH=amd64
- GIMME_OS=windows GIMME_ARCH=amd64
install:
- go get -d -v ./...
script:
- go test -v ./...
- go build -v ./...
notifications:
slack: miracloud:5r69ZAasA5mX50aig27LVKrs
|
Add integration Slack with TravisCI
|
Add integration Slack with TravisCI
|
YAML
|
apache-2.0
|
oleksandr-minakov/northshore,oleksandr-minakov/northshore,psumkin/northshore,oleksandr-minakov/northshore,carmine/northshore,psumkin/northshore,carmine/northshore,psumkin/northshore,psumkin/northshore,oleksandr-minakov/northshore,carmine/northshore,carmine/northshore,psumkin/northshore,oleksandr-minakov/northshore
|
ba1b9a378f44db939114fa6db17118e7c905892e
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
script: phpunit
|
language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
script: phpunit
|
Test against PHP version 5.5
|
Test against PHP version 5.5
|
YAML
|
mit
|
betawax/role-model
|
421285964b7ee8419bd8c12f3689578b78922d8e
|
.travis.yml
|
.travis.yml
|
language: "node_js"
node_js:
- "0.10"
- "0.8"
- "0.6"
- "0.4"
before_install:
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-cov-to-coveralls"
|
language: "node_js"
node_js:
- "0.10"
- "0.8"
# - "0.6"
- "0.4"
before_install:
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-cov-to-coveralls"
|
Disable node 0.6 on Travis CI.
|
Disable node 0.6 on Travis CI.
|
YAML
|
mit
|
jaredhanson/antenna
|
2ef9cc30bc06a403707764699483483efb483253
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
rvm:
- 2.1.7
services:
- docker
before_install:
- ruby _scripts/build.rb
script:
- echo "Container tests go here."
after_success:
if ([ "$TRAVIS_BRANCH" == "master" ]); then
ruby _scripts/publish.rb
fi
|
sudo: required
language: ruby
rvm:
- 2.1.7
services:
- docker
before_install:
- ruby _scripts/build.rb
script:
- echo "Container tests go here."
after_success:
if ([ "$TRAVIS_BRANCH" == "master" ]); then
ruby _scripts/publish.rb
fi
|
Revert "Attempt to use container infrastructure on Travis."
|
Revert "Attempt to use container infrastructure on Travis."
This reverts commit c746300d543c11570bf3b74759a17342e20e23ea.
|
YAML
|
mit
|
chinthakagodawita/docker-containers,chinthakagodawita/docker-containers,Sitback/docker-containers,Sitback/docker-containers
|
8392ed9df1719959961e066cd5051ec4c6bbd8ac
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.12"
- "4"
- "5"
- "6"
env:
- KEYSTONE_PREBUILD_ADMIN=true
before_script:
- npm run lint
- sleep 15
script:
- npm run test-cov
- npm run test-e2e-saucelabs
- npm run test-react
sudo: required
notifications:
email:
- [email protected]
services:
- mongodb
git:
depth:
10
cache:
directories:
- node_modules
addons:
apt:
sources:
- mongodb-3.2-precise
packages:
- mongodb-org-server
sauce_connect: true
|
language: node_js
node_js:
- '0.12'
- '4'
- '5'
- '6'
env:
- KEYSTONE_PREBUILD_ADMIN=true
before_script:
- npm run lint
- sleep 15
script:
- npm run test-cov
- npm run test-e2e-saucelabs
- npm run test-react
sudo: required
notifications:
email:
- [email protected]
slack:
secure: AqayzYjoHTlwE85pgB0h5yqpyBDWbdrpiXKXhb8tSqWPKi6unhkfZ4r11kQRowoDQXb+fue9367u+lJ9lKBfMv+SSFnKY+OccasfrW6JwJ8Wi258aB7bjcSP9kUtUfvbbvPSwQjY6Z8+9TlMxP6kyabeZ69SGnhnaJNt+vbAJzc=
services:
- mongodb
git:
depth: 10
cache:
directories:
- node_modules
addons:
apt:
sources:
- mongodb-3.2-precise
packages:
- mongodb-org-server
sauce_connect: true
|
Add Slack integration for Travis
|
Add Slack integration for Travis
|
YAML
|
mit
|
pr1ntr/keystone,michaelerobertsjr/keystone,matthewstyers/keystone,alobodig/keystone,xyzteam2016/keystone,rafmsou/keystone,brianjd/keystone,jstockwin/keystone,benkroeger/keystone,benkroeger/keystone,sendyhalim/keystone,brianjd/keystone,frontyard/keystone,andrewlinfoot/keystone,jstockwin/keystone,snowkeeper/keystone,naustudio/keystone,pr1ntr/keystone,Pop-Code/keystone,vokal/keystone,alobodig/keystone,Yaska/keystone,concoursbyappointment/keystoneRedux,jacargentina/keystone,matthieugayon/keystone,jacargentina/keystone,danielmahon/keystone,ONode/keystone,linhanyang/keystone,Pop-Code/keystone,andrewlinfoot/keystone,vokal/keystone,dvdcastro/keystone,trentmillar/keystone,Yaska/keystone,cermati/keystone,benkroeger/keystone,frontyard/keystone,dryna/keystone-twoje-urodziny,naustudio/keystone,matthewstyers/keystone,Adam14Four/keystone,dryna/keystone-twoje-urodziny,concoursbyappointment/keystoneRedux,ONode/keystone,w01fgang/keystone,matthewstyers/keystone,xyzteam2016/keystone,snowkeeper/keystone,matthieugayon/keystone,michaelerobertsjr/keystone,Adam14Four/keystone,ratecity/keystone,trentmillar/keystone,trentmillar/keystone,dvdcastro/keystone,danielmahon/keystone,w01fgang/keystone,ratecity/keystone,vokal/keystone,frontyard/keystone,naustudio/keystone,cermati/keystone,danielmahon/keystone,rafmsou/keystone,sendyhalim/keystone,andrewlinfoot/keystone,Yaska/keystone
|
8cff2741a95c6e4760d13c390060d4b4b82d10bb
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "stable"
- "8.6.0"
install:
- npm install
script:
- nvm use stable
- npm test
|
language: node_js
node_js:
- "stable"
- "6.3.0"
install:
- npm install
script:
- nvm use stable
- npm test
|
Revert "feat(ci): use latest Node and npm"
|
Revert "feat(ci): use latest Node and npm"
This reverts commit 63fedaab5e4249c0ca1d8c07f73f8b5388d98e6c.
|
YAML
|
mit
|
punit1108/upstatejs
|
e537011b456764f68ea076ce0f030eedc5e01ecd
|
.travis.yml
|
.travis.yml
|
language: generic
osx_image: xcode10.2
sudo: false
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- FASTLANE_LANE=ci_commit
matrix:
include:
- os: osx
env: FASTLANE_LANE=code_coverage FASTLANE_ENV=default
- os: osx
env: FASTLANE_ENV=ios93
- os: osx
env: FASTLANE_ENV=tvos92
- os: osx
env: FASTLANE_ENV=osx
- os: linux
sudo: required
dist: trusty
env: SWIFT_VERSION=5.0
- os: linux
sudo: required
dist: trusty
env: SWIFT_VERSION=5.1-DEVELOPMENT-SNAPSHOT-2019-07-03-a
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./script/travis-install-linux; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./script/travis-install-macos; fi
script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./script/travis-script-linux; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./script/travis-script-macos; fi
after_success:
- if [ "$FASTLANE_LANE" == "code_coverage" ]; then
make post_coverage;
fi
|
language: generic
osx_image: xcode10.2
sudo: false
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- FASTLANE_LANE=ci_commit
matrix:
include:
- os: osx
env: FASTLANE_LANE=code_coverage FASTLANE_ENV=default
- os: osx
env: FASTLANE_ENV=ios93
- os: osx
env: FASTLANE_ENV=tvos92
- os: osx
env: FASTLANE_ENV=osx
- os: linux
sudo: required
dist: trusty
env: SWIFT_VERSION=5.0
- os: linux
sudo: required
dist: trusty
env: SWIFT_VERSION=DEVELOPMENT-SNAPSHOT-2019-07-03-a
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./script/travis-install-linux; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./script/travis-install-macos; fi
script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./script/travis-script-linux; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./script/travis-script-macos; fi
after_success:
- if [ "$FASTLANE_LANE" == "code_coverage" ]; then
make post_coverage;
fi
|
Fix 5.1 beta version used on linux CI
|
Fix 5.1 beta version used on linux CI
|
YAML
|
mit
|
nerdishbynature/RequestKit,nerdishbynature/RequestKit,nerdishbynature/RequestKit
|
d93ab3008d8c7bf6f39761e8ea0bca25bfbc72e6
|
.travis.yml
|
.travis.yml
|
language: java
sudo: false
jdk:
- oraclejdk7
install: "./installViaTravis.sh"
script: "./buildViaTravis.sh"
cache:
directories:
- "$HOME/.gradle/caches/"
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_7460ed1e628d_key -iv $encrypted_7460ed1e628d_iv
-in gradle.properties.enc -out ../../templates/gradle.properties -d || true
after_success:
- "./gradlew jacocoTestReport coveralls"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/32e7cdf345fb9c05a8d1
on_success: change
on_failure: always
on_start: never
|
language: java
sudo: false
jdk:
- oraclejdk7
install: "./installViaTravis.sh"
script: "./buildViaTravis.sh"
cache:
directories:
- "$HOME/.gradle/caches/"
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_7460ed1e628d_key -iv $encrypted_7460ed1e628d_iv
-in gradle.properties.enc -out gradle.properties -d || true
after_success:
- "./gradlew jacocoTestReport coveralls"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/32e7cdf345fb9c05a8d1
on_success: change
on_failure: always
on_start: never
|
Fix path problem in Travis CI configuration
|
Fix path problem in Travis CI configuration
|
YAML
|
mit
|
nebula-plugins/nebula-clojure-plugin
|
75e3a4b6da8b89be7d55f846134798364a02434f
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install --dev --no-interaction
script:
- mkdir -p build/logs
- phpunit --coverage-clover build/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
notifications:
irc: "chat.freenode.net#sujevo-dev"
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install --dev --no-interaction
script:
- mkdir -p build/logs
- phpunit --coverage-clover build/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
notifications:
webhooks:
- http://helit.org:8093/+sujevo-dev/showSuccessfulBuildMessages=always
|
Use boal for IRC notifications
|
Use boal for IRC notifications
|
YAML
|
mit
|
fullyconnected/PhpSoda,allejo/PhpSoda,allejo/PhpSoda,fullyconnected/PhpSoda
|
f161fca4bad3b55149d2f610d1690e7aec5a243c
|
.travis.yml
|
.travis.yml
|
# For more information about the configurations used
# in this file, please see the Travis CI documentation:
# https://docs.travis-ci.com
before_install:
- ./test/customize_environment.sh
install:
- ./src/os/setup.sh -y
language: generic
matrix:
include:
- os: osx
osx_image: xcode8
env:
- INSTALL_APPLICATION_IF_READABLE_NAME_MATCH_REGEX="^([a-fA-F0-9]|Bash|Java).*$"
- os: osx
osx_image: xcode8
env:
- INSTALL_APPLICATION_IF_READABLE_NAME_MATCH_REGEX="^([g-pG-P]|Bash|Java).*$"
- os: osx
osx_image: xcode8
env:
- INSTALL_APPLICATION_IF_READABLE_NAME_MATCH_REGEX="^([q-zQ-Z]|Bash|Java).*$"
script:
- ./test/main.sh
sudo: required
|
# For more information about the configurations used
# in this file, please see the Travis CI documentation:
# https://docs.travis-ci.com
before_install:
- ./test/customize_environment.sh
install:
- ./src/os/setup.sh -y
language: generic
matrix:
include:
- os: osx
osx_image: xcode8.1
env:
- INSTALL_APPLICATION_IF_READABLE_NAME_MATCH_REGEX="^([a-fA-F0-9]|Bash|Java).*$"
- os: osx
osx_image: xcode8.1
env:
- INSTALL_APPLICATION_IF_READABLE_NAME_MATCH_REGEX="^([g-pG-P]|Bash|Java).*$"
- os: osx
osx_image: xcode8.1
env:
- INSTALL_APPLICATION_IF_READABLE_NAME_MATCH_REGEX="^([q-zQ-Z]|Bash|Java).*$"
script:
- ./test/main.sh
sudo: required
|
Use `xcode8.1` image to test macOS code
|
[test] Use `xcode8.1` image to test macOS code
Ref: https://blog.travis-ci.com/2016-11-15-xcode-81-is-here
|
YAML
|
mit
|
wingy3181/dotfiles,wingy3181/dotfiles,wingy3181/dotfiles
|
466658aa4a329a22c39a307cfaa3be273c1efc1c
|
.travis.yml
|
.travis.yml
|
language: ruby
before_install: gem install bundler --version '~> 1.5.2'
bundler_args: --without=development
rvm:
- 2.0.0
env:
- VAGRANT_VERSION=v1.5.2
matrix:
include:
- env: VAGRANT_VERSION=v1.4.3
- env: VAGRANT_VERSION=v1.3.5
rvm: 1.9.3
- env: VAGRANT_VERSION=v1.2.7
rvm: 1.9.3
- env: VAGRANT_VERSION=master
allow_failures:
- env: VAGRANT_VERSION=master
|
language: ruby
before_install: gem install bundler --version '~> 1.5.2'
bundler_args: --without=development
rvm:
- 2.0.0
env:
- VAGRANT_VERSION=v1.5.4
matrix:
include:
- env: VAGRANT_VERSION=v1.4.3
- env: VAGRANT_VERSION=v1.3.5
rvm: 1.9.3
- env: VAGRANT_VERSION=v1.2.7
rvm: 1.9.3
- env: VAGRANT_VERSION=master
allow_failures:
- env: VAGRANT_VERSION=master
|
Update Vagrant 1.5 version to 1.5.4 in Travis
|
Update Vagrant 1.5 version to 1.5.4 in Travis
|
YAML
|
mit
|
tmatilai/vagrant-proxyconf,tmatilai/vagrant-proxyconf,otahi/vagrant-proxyconf,mrsheepuk/vagrant-proxyconf
|
0dd5fab20f37705beb26d7a71bb98d83cc172aea
|
.travis.yml
|
.travis.yml
|
language: android
env:
global:
- ANDROID_API=29
- ANDROID_BUILD_TOOLS=29.0.2
before_install:
cd Android;
android:
components:
- tools
- platform-tools
- build-tools-$ANDROID_BUILD_TOOLS
- android-$ANDROID_API
- extra-google-m2repository
- extra-android-m2repository
- extra-google-google_play_services
script:
- ./gradlew clean assembleDebug check
|
language: android
env:
global:
- ANDROID_API=29
- ANDROID_BUILD_TOOLS=29.0.3
before_install:
cd Android;
android:
components:
- tools
- platform-tools
- build-tools-$ANDROID_BUILD_TOOLS
- android-$ANDROID_API
- extra-google-m2repository
- extra-android-m2repository
- extra-google-google_play_services
script:
- ./gradlew clean assembleDebug check
|
Update SDK version for Travis
|
Update SDK version for Travis
|
YAML
|
apache-2.0
|
Jigsaw-Code/Intra,Jigsaw-Code/Intra
|
ca7d6c4fd362c026e1652065e29189a729d04bd9
|
.travis.yml
|
.travis.yml
|
# Enables support for a docker container-based build
# which should provide faster startup times and beefier
# "machines". This is also required in order to use the
# cache configured below.
sudo: false
language: python
cache: pip
python:
- 2.7
- 3.4
- 3.5
before_install:
- pip install --upgrade pip pylint
- pip install -r requirements.txt
-
if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then
pip install pylint==1.4.4
pip install -r requirements2.txt;
fi
script:
- py.test --strict -r w tests/
- pylint --rcfile=pylintrc *.py mtgcdb/
- pylint --rcfile=pylintrc --disable=similarities tests/
|
# Enables support for a docker container-based build
# which should provide faster startup times and beefier
# "machines". This is also required in order to use the
# cache configured below.
sudo: false
language: python
cache: pip
python:
- 2.7
- 3.4
- 3.5
before_install:
- pip install --upgrade pip pylint
- pip install -r requirements.txt
-
if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then
pip install -I pylint==1.4.4;
pip install -r requirements2.txt;
fi
script:
- py.test --strict -r w tests/
- pylint --rcfile=pylintrc *.py mtgcdb/
- pylint --rcfile=pylintrc --disable=similarities tests/
|
Use -I to downgrade pylint.
|
Use -I to downgrade pylint.
|
YAML
|
mit
|
gwax/mtg_ssm,gwax/mtgcdb
|
d211562c128f975d56e9a31cfd717a10d8c611ea
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.5
- 1.6
- 1.7
- 1.8
- tip
services:
- mongodb
script:
- make setup && make test
|
language: go
go:
- 1.5
- 1.6
- 1.7
- 1.8
- 1.9
- tip
services:
- mongodb
script:
- make setup && make test
|
Add Go 1.9 to CI
|
Add Go 1.9 to CI
|
YAML
|
mit
|
fulldump/kip
|
baa3c16747c4c5d7748752f57aad0687f4fb99ac
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
sudo: false
rvm:
- 2.4.6
- 2.5.5
- 2.6.3
- ruby-head
env:
- RAILS_VERSION="~> 4.2.0"
- RAILS_VERSION="~> 5.0.0"
- RAILS_VERSION="~> 5.1.0"
- RAILS_VERSION="~> 5.2.0"
- RAILS_VERSION="~> 6.0.0.rc1"
matrix:
exclude:
- rvm: 2.4.6
env: RAILS_VERSION="~> 6.0.0.rc1"
- rvm: 2.6.3
env: RAILS_VERSION="~> 4.2.0"
allow_failures:
- rvm: ruby-head
fast_finish: true
before_install:
- gem update --system 3.0.3
- gem uninstall bundler && gem install bundler -v 1.17.3
before_script:
- travis_retry gem install rails --version "$RAILS_VERSION"
|
language: ruby
cache: bundler
rvm:
- 2.4.6
- 2.5.5
- 2.6.3
- ruby-head
env:
- RAILS_VERSION="~> 4.2.0"
- RAILS_VERSION="~> 5.0.0"
- RAILS_VERSION="~> 5.1.0"
- RAILS_VERSION="~> 5.2.0"
- RAILS_VERSION="~> 6.0.0.rc1"
matrix:
exclude:
- rvm: 2.4.6
env: RAILS_VERSION="~> 6.0.0.rc1"
- rvm: 2.6.3
env: RAILS_VERSION="~> 4.2.0"
allow_failures:
- rvm: ruby-head
fast_finish: true
before_install:
- gem update --system 3.0.3
- gem uninstall bundler && gem install bundler -v 1.17.3
before_script:
- travis_retry gem install rails --version "$RAILS_VERSION"
|
Drop unused sudo: false Travis directive
|
CI: Drop unused sudo: false Travis directive
- See https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration for more details
|
YAML
|
mit
|
rails/spring
|
92e76c274555b78fd19d816999b6e5ac71695060
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.5"
before_install:
- sudo apt-get install -y libgdal1-dev libgdal-dev
- sudo apt-get install -y python-gdal
# install dependencies
install:
- cd backend
- pip install -r requirements-dev.txt
- cd tests/travis_test
- ./travis_test.sh
# install frontend
- cd ../../../frontend
- nvm install 8.16.0
- npm install
script:
- # test backend
- cd ../backend
- pytest
- cd ../docs
- make html
# create a repository for frontend doc
- mkdir build/html/frontend
- cd ../frontend
#- npm run build
- npm run compodoc
# deploy github pages on commit on master
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # set in the Travis dashboard
local_dir: docs/build/html
github_url: http://docs.geonature.fr
on:
branch: master
notifications:
email:
recipients:
- [email protected]
on_failure: never
on_success: never
|
language: python
python:
- "3.5"
before_install:
- sudo apt-get install -y libgdal1-dev libgdal-dev
- sudo apt-get install -y python-gdal
- python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)"
# install dependencies
install:
- cd backend
- pip install -r requirements-dev.txt
- cd tests/travis_test
- ./travis_test.sh
# install frontend
- cd ../../../frontend
- nvm install 8.16.0
- npm install
script:
- # test backend
- cd ../backend
- pytest --disable-warnings
- cd ../docs
- make html
# create a repository for frontend doc
- mkdir build/html/frontend
- cd ../frontend
#- npm run build
- npm run compodoc
# deploy github pages on commit on master
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # set in the Travis dashboard
local_dir: docs/build/html
github_url: http://docs.geonature.fr
on:
branch: master
notifications:
email:
recipients:
- [email protected]
on_failure: never
on_success: never
|
Fix python niveau de log pour eviter des probleme de d'espace disque sur Travis
|
Fix python niveau de log pour eviter des probleme de d'espace disque sur Travis
|
YAML
|
bsd-2-clause
|
PnEcrins/GeoNature,PnEcrins/GeoNature,PnEcrins/GeoNature,PnEcrins/GeoNature
|
3cc2927b0334892c1ecc1399d21e4b2aa906678d
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=django==1.5 --use-mirrors
- DJANGO=django==1.4.5 --use-mirrors
install:
- pip install $DJANGO
script:
- "`which django-admin.py` test post_office --settings=post_office.test_settings --pythonpath=."
|
language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=django==1.5.1 --use-mirrors
- DJANGO=django==1.4.5 --use-mirrors
install:
- pip install $DJANGO
script:
- "`which django-admin.py` test post_office --settings=post_office.test_settings --pythonpath=."
|
Use django 1.5.1 to test.
|
Use django 1.5.1 to test.
|
YAML
|
mit
|
ekohl/django-post_office,yprez/django-post_office,ui/django-post_office,ui/django-post_office,RafRaf/django-post_office,CasherWest/django-post_office,fapelhanz/django-post_office,JostCrow/django-post_office,LeGast00n/django-post_office,CasherWest/django-post_office,jrief/django-post_office,carrerasrodrigo/django-post_office
|
4aa0d7b55a967c2a50b78ba999f7d16a986ba53f
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
- hhvm
sudo: false
install:
- composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-text
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
# also test against HHVM, but require "trusty" and ignore errors
matrix:
include:
- php: hhvm
dist: trusty
allow_failures:
- php: hhvm
sudo: false
install:
- composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-text
|
Fix HHVM build for now again and ignore future HHVM build errors
|
Fix HHVM build for now again and ignore future HHVM build errors
|
YAML
|
mit
|
clue/php-socks-react
|
4db24f203160ee9026fc52cad1579a08c4679ed1
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.6
- 7
matrix:
fast_finish: true
allow_failures:
- php: 7
services:
- postgresql
addons:
postgresql: "9.3"
before_script:
- psql -c "create role symfony login superuser password 'symfony';" -U postgres
- psql -c 'create database symfony owner symfony;' -U postgres
- composer selfupdate
- composer install --dev --prefer-dist
script:
- ./bin/phpunit -c app
|
language: php
php:
- 5.6
- 7
matrix:
fast_finish: true
allow_failures:
- php: 7
services:
- postgresql
addons:
postgresql: "9.3"
before_script:
- psql -c "create role symfony login superuser password 'symfony';" -U postgres
- psql -c 'create database cms owner symfony;' -U postgres
- composer selfupdate
- composer install --dev --prefer-dist
script:
- ./bin/phpunit -c app
|
Add Travis support for PostgreSQL
|
Add Travis support for PostgreSQL
|
YAML
|
mit
|
diegonobre/symfony-cms,diegonobre/symfony-cms,diegonobre/symfony-cms
|
67a2b62f130e235b1d1ed870fc89873d8757b91e
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- "0.10"
- "4"
script:
- npm test
after_success:
- npm run coveralls
notifications:
email: false
|
sudo: false
language: node_js
node_js:
- "4"
script:
- npm test
after_success:
- npm run coveralls
notifications:
email: false
|
Stop testing node versions pre v4
|
Stop testing node versions pre v4
|
YAML
|
mit
|
Springworks/node-holidays
|
b4f8715dbe93185d7f2102ddbcfebb04f804fa04
|
.travis.yml
|
.travis.yml
|
language: node_js
matrix:
include:
- node_js: "node"
- node_js: "8"
- node_js: "6"
sudo: false
cache:
directories:
- node_modules
dist: trusty
addons:
chrome: stable
before_script:
# dump the current versions
- google-chrome-stable --version
- npm list
# start a fresh new Chrome instance
- google-chrome-stable
--user-data-dir=$(mktemp -d)
--no-sandbox --no-first-run --disable-extensions
--remote-debugging-port=9222 --headless --disable-gpu
about:blank &>/dev/null &
# wait for Chrome to start up
- while ! curl http://localhost:9222 &>/dev/null; do sleep 1; done
|
language: node_js
matrix:
include:
- node_js: "node"
- node_js: "8"
sudo: false
cache:
directories:
- node_modules
dist: trusty
addons:
chrome: stable
before_script:
# dump the current versions
- google-chrome-stable --version
- npm list
# start a fresh new Chrome instance
- google-chrome-stable
--user-data-dir=$(mktemp -d)
--no-sandbox --no-first-run --disable-extensions
--remote-debugging-port=9222 --headless --disable-gpu
about:blank &>/dev/null &
# wait for Chrome to start up
- while ! curl http://localhost:9222 &>/dev/null; do sleep 1; done
|
Drop support for Node.js 6
|
Drop support for Node.js 6
|
YAML
|
mit
|
cyrus-and/chrome-remote-interface,cyrus-and/chrome-remote-interface
|
2a17e4f01dfd7e5a57e9c63c96c8e9f1593abe85
|
.travis.yml
|
.travis.yml
|
language: C
sudo: false
install:
- ./vagrant/bootstrap.sh
script:
- make -C src
- cucumber
|
language: C
sudo: required
install:
- ./vagrant/bootstrap.sh
script:
- make -C src
- cucumber
|
Change SUDO to be required
|
Change SUDO to be required
|
YAML
|
apache-2.0
|
bright-tools/wd,bright-tools/wd,bright-tools/wd
|
6719bd0569b548e29b840b27193939511eb182d7
|
.travis.yml
|
.travis.yml
|
services:
- docker
language: node_js
cache:
directories:
- node_modules
node_js:
- "7"
- "8"
addons:
apt:
packages:
- gcc-4.8
- g++-4.8
env: CXX="g++-4.8" CC="gcc-4.8"
before_script:
- sudo pip install fonttools brotli zopfli
script: "npm install && npm run-script travis"
after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/bce1a1b401d97fe096e2
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
services:
- docker
language: node_js
cache:
directories:
- node_modules
node_js:
- "8"
- "9"
addons:
apt:
packages:
- gcc-4.8
- g++-4.8
env: CXX="g++-4.8" CC="gcc-4.8"
before_script:
- sudo pip install fonttools brotli zopfli
script: "npm install && npm run-script travis"
after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/bce1a1b401d97fe096e2
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
Build with node 8 and 9
|
Travis: Build with node 8 and 9
|
YAML
|
bsd-3-clause
|
assetgraph/assetgraph
|
86e827a2a2526cabdd7a723f457d0bd4ca05e1f1
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install -qq python-numpy
install:
- pip install -r requirements.txt --use-mirrors
script: make test
|
language: python
python:
- "2.7"
- "3.3"
virtualenv:
system_site_packages: true
# Using apt doesn't help for Python 3.3, because the packages on Precise
# are compiled for 3.2. This uses Miniconda to install numpy & pandas.
# Cribbed from https://gist.github.com/dan-blanchard/7045057
# Setup anaconda
before_install:
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-2.0.0-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-2.0.0-Linux-x86_64.sh -O miniconda.sh; fi
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/anaconda/bin:$PATH
# Install packages
install:
- conda install --yes pip python=$TRAVIS_PYTHON_VERSION numpy nose pandas
script: nosetests
|
Use Miniconda to set up numpy & pandas on Travis
|
Use Miniconda to set up numpy & pandas on Travis
|
YAML
|
mit
|
jhamrick/dbtools,jhamrick/dbtools
|
3bfc209cb8171d013576b913e1062c61c76eb905
|
.travis.yml
|
.travis.yml
|
matrix:
include:
- os: osx
osx_image: xcode8
language: objective-c # so wrong
before_install: brew install snappy && ./install-rocksdb-master.sh
script: swift build -Xlinker -L/usr/local/lib && swift test
|
matrix:
include:
- os: osx
osx_image: xcode8
language: objective-c # so wrong
before_install: brew install snappy && ./install-rocksdb-master.sh
script: swift build -Xlinker -L/usr/local/lib && swift test -Xlinker -L/usr/local/lib
|
Add -Xlinker for test as well
|
Add -Xlinker for test as well
|
YAML
|
apache-2.0
|
jatoben/RocksDB,jatoben/RocksDB
|
42ae26ab46d279cc9e79bb776da213deb0c37038
|
.travis.yml
|
.travis.yml
|
language: rust
script:
- cargo build --verbose
- cargo test --verbose
- cargo test --verbose -p edn
- cargo test --verbose -p mentat_parser_utils
- cargo test --verbose -p mentat_core
- cargo test --verbose -p mentat_db
- cargo test --verbose -p mentat_query
- cargo test --verbose -p mentat_query_parser
- cargo test --verbose -p mentat_query_algebrizer
- cargo test --verbose -p mentat_tx_parser
|
language: rust
script:
- cargo build --verbose
- cargo test --verbose
- cargo test --verbose -p edn
- cargo test --verbose -p mentat_parser_utils
- cargo test --verbose -p mentat_core
- cargo test --verbose -p mentat_db
- cargo test --verbose -p mentat_query
- cargo test --verbose -p mentat_query_parser
- cargo test --verbose -p mentat_query_algebrizer
- cargo test --verbose -p mentat_query_translator
- cargo test --verbose -p mentat_sql
- cargo test --verbose -p mentat_tx_parser
|
Add new stuff to Travis.
|
Add new stuff to Travis.
|
YAML
|
apache-2.0
|
mozilla/mentat,mozilla/mentat,ncalexan/mentat,mozilla/mentat,ncalexan/mentat,ncalexan/mentat,mozilla/mentat,ncalexan/mentat,ncalexan/datomish,mozilla/mentat,ncalexan/mentat,ncalexan/datomish,ncalexan/mentat,mozilla/mentat
|
e4ebd271bd49b13cc530d37adbc88a806f8ec0df
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '4.0'
- '9.0'
sudo: false
deploy:
- provider: npm
email: [email protected]
api_key:
secure: Qau6SlUg8DviNQPQyiazu7c8VSMXeChcGfNUeRPJbJC+u4gOX2DesfzNiIlJCueHifwdqIp0q8Sabj/EOcuAvSpZwlsRp1lqIaXiTEHZHXxsZRWk6RTkGCKNRG6/rhATE8W7RNdYcan39YR1qpKPdn7svtO0UTi/z7WZsVHp+DQ=
on:
tags: true
node: '9.0'
- provider: releases
skip_cleanup: true
api_key:
secure: Ll8D7i6u2mSDtcfL12FLixDODn7paHUXfvGsNGlOu3p7juoAuAajPQxr+mtdMhGFkL/QHa8b+3gdiUEy9az0+eKdtFgTaYECTVIbiBGZmu2vlIed1OYy1wan2lKmYAItAt+K9kRNvl6Kp2v1+HFFVSCbIMe1BqvYgCbwud+yShM=
file:
- "weasels.js"
- "weasels.min.js"
on:
tags: true
node: '9.0'
|
language: node_js
node_js:
- '4.0'
- '9.0'
sudo: false
deploy:
- provider: npm
skip_cleanup: true
email: [email protected]
api_key:
secure: Qau6SlUg8DviNQPQyiazu7c8VSMXeChcGfNUeRPJbJC+u4gOX2DesfzNiIlJCueHifwdqIp0q8Sabj/EOcuAvSpZwlsRp1lqIaXiTEHZHXxsZRWk6RTkGCKNRG6/rhATE8W7RNdYcan39YR1qpKPdn7svtO0UTi/z7WZsVHp+DQ=
on:
tags: true
node: '9.0'
- provider: releases
skip_cleanup: true
api_key:
secure: Ll8D7i6u2mSDtcfL12FLixDODn7paHUXfvGsNGlOu3p7juoAuAajPQxr+mtdMhGFkL/QHa8b+3gdiUEy9az0+eKdtFgTaYECTVIbiBGZmu2vlIed1OYy1wan2lKmYAItAt+K9kRNvl6Kp2v1+HFFVSCbIMe1BqvYgCbwud+yShM=
file:
- "weasels.js"
- "weasels.min.js"
on:
tags: true
node: '9.0'
|
Add `skip_cleanup` to npm deployment
|
Add `skip_cleanup` to npm deployment
|
YAML
|
mit
|
wooorm/weasels
|
fa858b1b1b8291b7e9966d57e66f508f01789e85
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.4"
- "3.5"
- "3.6"
cache: pip
env:
- SET="-m logic"
- SET="-m live"
- SET="-m destructive"
install:
- pip install --quiet -r requirements.txt -r test_requirements.txt
before_script:
- mkdir -p $HOME/$DEST
- curl -u $KEY $HOST/$FILE > $HOME/$DEST/$FILE
script:
- coverage run setup.py test --addopts "--profile $SET"
after_success:
- coveralls
before_deploy:
- echo "[gist]\ntoken: $GIST" > $HOME/.gist
deploy:
provider: script
script: gist create "Travis $TRAVIS_REPO_SLUG $TRAVIS_JOB_NUMBER $SET" prof/combined.svg
|
language: python
python:
- "3.4"
- "3.5"
- "3.6"
cache: pip
env:
- SET="-m logic"
- SET="-m live"
- SET="-m destructive"
install:
- pip install --quiet -r requirements.txt -r test_requirements.txt
before_script:
- mkdir -p $HOME/$DEST
- curl -u $KEY $HOST/$FILE > $HOME/$DEST/$FILE
script:
- coverage run setup.py test --addopts "--profile $SET"
after_success:
- coveralls
before_deploy:
- echo "[gist]\ntoken: $GIST" > $HOME/.gist
deploy:
provider: script
script: gist create "Travis $TRAVIS_REPO_SLUG $TRAVIS_JOB_NUMBER $SET" prof/combined.svg
on:
all-branches: true
repo: Artanicus/python-cozify
|
Allow profiling deploy on all branches but limit by repo
|
Allow profiling deploy on all branches but limit by repo
|
YAML
|
mit
|
Artanicus/python-cozify,Artanicus/python-cozify
|
1002d45c20cb5e1b1c5b111662fb6b8404d6a02b
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
- ruby-head-clang
- jruby-9.0
- jruby-9.1.2.0
- jruby-head
- rbx-3.26
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: ruby-head-clang
- rvm: jruby-9.0
- rvm: jruby-9.1.2.0
before_install:
- gem install bundler
- sudo apt-get -qq update
- sudo apt-get install -y libgirepository1.0-dev gobject-introspection gir1.2-gtop-2.0
- sudo apt-get install -y gir1.2-gtk-3.0 gir1.2-pango-1.0 gir1.2-secret-1
- sudo apt-get install -y gir1.2-gstreamer-1.0
install:
- bundle install --retry=3
branches:
only:
- master
|
sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
- ruby-head-clang
- jruby-9.0
- jruby-9.1.2.0
- jruby-head
- rbx-3.58
matrix:
allow_failures:
- rvm: ruby-head
- rvm: ruby-head-clang
- rvm: jruby-9.0
- rvm: jruby-9.1.2.0
- rvm: jruby-head
- rvm: rbx-3.58
before_install:
- gem install bundler
- sudo apt-get -qq update
- sudo apt-get install -y libgirepository1.0-dev gobject-introspection gir1.2-gtop-2.0
- sudo apt-get install -y gir1.2-gtk-3.0 gir1.2-pango-1.0 gir1.2-secret-1
- sudo apt-get install -y gir1.2-gstreamer-1.0
install:
- bundle install --retry=3
branches:
only:
- master
|
Update rbx version and allow failure
|
Update rbx version and allow failure
|
YAML
|
lgpl-2.1
|
mvz/gir_ffi,mvz/gir_ffi,mvz/gir_ffi
|
81dd127b05af6d179bf3afe58268a9fb4d0df5ad
|
.travis.yml
|
.travis.yml
|
language: java
jdk: openjdk7
script:
- mvn verify
- mvn clean compile assembly:single
cache:
directories:
- $HOME/.m2
|
language: java
jdk: openjdk7
script:
- mvn verify
- mvn clean compile assembly:single
- ls -l target/
cache:
directories:
- $HOME/.m2
|
Add ls to Travis output
|
Add ls to Travis output
|
YAML
|
mit
|
krishnakanthpps/lightning,automatictester/lightning,automatictester/lightning,krishnakanthpps/lightning
|
3786116efb157e1747f34afdabbcd58b2b3c0e24
|
.travis.yml
|
.travis.yml
|
---
sudo: false
cache: bundler
language: ruby
rvm:
- 2.1.5
services: mysql
before_script:
- cp spec/ci/database.mysql.yml config/database.yml;
- bundle exec rake app:db:create
- bundle exec rake app:db:migrate
script:
- bundle exec rake app:spec
- bundle exec codeclimate-test-reporter
branches:
only:
- master
notifications:
slack: trustarts:FrVc7H8dDadhctfZ7NvHTZES
addons:
code_climate:
repo_token: 10e89622ddc764206e253cd07c5784f83178fe45550920e0eac8ab2e020e3e93
|
---
sudo: false
cache: bundler
language: ruby
rvm:
- 2.3.1
services: mysql
before_script:
- cp spec/ci/database.mysql.yml config/database.yml;
- bundle exec rake app:db:create
- bundle exec rake app:db:migrate
script:
- bundle exec rake app:spec
- bundle exec codeclimate-test-reporter
branches:
only:
- master
notifications:
slack: trustarts:FrVc7H8dDadhctfZ7NvHTZES
addons:
code_climate:
repo_token: 10e89622ddc764206e253cd07c5784f83178fe45550920e0eac8ab2e020e3e93
|
Upgrade TravisCI to use Ruby version 2.3.1
|
Upgrade TravisCI to use Ruby version 2.3.1
|
YAML
|
mit
|
pgharts/trusty-cms,pgharts/trusty-cms,pgharts/trusty-cms
|
3bb7a404a3a20ef00d6a4f68e9767b7ccfc568a4
|
.travis.yml
|
.travis.yml
|
rvm:
- 1.9.2
- jruby
- rbx-2.0-1.9
branches:
only:
- master
env: JRUBY_OPTS='--1.9'
|
rvm:
- 1.9.2
- jruby
- rbx-2.0
branches:
only:
- master
env: JRUBY_OPTS='--1.9' RBXOPT=-X19
|
Enable 1.9 mode in rbx
|
Enable 1.9 mode in rbx
|
YAML
|
mit
|
mperham/girl_friday,mperham/girl_friday
|
f1a8023fb8a6fbfc6f02a2554420b236ec3843fc
|
.travis.yml
|
.travis.yml
|
sudo: false
language: objective-c
rvm:
- 2.3.1
xcode_project: PureLayout/PureLayout.xcodeproj
matrix:
include:
- xcode_sdk: iphonesimulator
xcode_scheme: PureLayout_iOS
- xcode_sdk: macosx
xcode_scheme: PureLayout_Mac
before_install:
- gem install slather --no-ri --no-rdoc
after_success: slather
|
sudo: false
language: objective-c
rvm:
- 2.3.1
xcode_project: PureLayout/PureLayout.xcodeproj
matrix:
include:
- xcode_sdk: iphonesimulator
xcode_scheme: PureLayout_iOS
- xcode_sdk: macosx
xcode_scheme: PureLayout_Mac
before_install:
- rvm install 2.3.1
- gem install slather --no-ri --no-rdoc
after_success: slather
|
Install rvm to use specific ruby version;
|
Install rvm to use specific ruby version;
|
YAML
|
mit
|
smileyborg/PureLayout,smileyborg/PureLayout
|
9ac9f3a12646b9cf0094ddfc8c8545927b70cfed
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
script:
- pip install -r requirements.txt
- nosetests --with-timer --with-coverage ./
|
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -r requirements.txt
script:
- nosetests --with-timer --with-coverage ./
|
Move setup into install section
|
Move setup into install section
|
YAML
|
unlicense
|
cheesesashimi/homework
|
395869f0dcac0d25c0d44094570ddd32d42215e2
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js: ["0.11", "0.10", "0.9", "0.8", "0.6"]
install: npm install
script: npm test
notifications:
email: false
|
language: node_js
node_js: ["0.11", "0.10", "0.8", "0.6"]
install: npm install
script: npm test
notifications:
email: false
|
Remove [email protected] from build config
|
Remove [email protected] from build config
|
YAML
|
mit
|
adlawson/nodejs-tease
|
ac45cf82877b613101e508b40e60bb754d81578b
|
.travis.yml
|
.travis.yml
|
language: cpp
compiler: gcc
script: make all && make test && ./coverage.sh
before_install:
# g++ 4.8.1
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
# g++4.8.1 and boost
- sudo apt-get install -qq g++-4.8 python-dev libbz2-dev zlib1g-dev libcppunit-dev doxygen lcov ruby rubygems
- export CC="gcc-4.8"
- export CXX="g++-4.8"
- pushd ~
- mkdir Downloads
- cd Downloads
- curl ftp://ftp.ripcordsoftware.com/pub/boost_1_57_0-travis-ci.tar.bz2 -O
- tar xfj boost_1_57_0-travis-ci.tar.bz2
- cd boost_1_57_0
- sudo ./b2 --prefix=/usr -d0 install
- popd
- sudo rm -f /usr/bin/g++
- sudo rm -f /usr/bin/gcc
- sudo ln -s /usr/bin/g++-4.8 /usr/bin/g++
- sudo ln -s /usr/bin/gcc-4.8 /usr/bin/gcc
|
language: cpp
compiler: gcc
script: make all && make test && ./coverage.sh
before_install:
# g++ 4.8.1
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
# g++4.8.1, boost and lcov
- sudo apt-get install -qq g++-4.8 python-dev libbz2-dev zlib1g-dev libcppunit-dev doxygen lcov ruby rubygems
- export CC="gcc-4.8"
- export CXX="g++-4.8"
- pushd ~
- mkdir Downloads
- cd Downloads
- curl ftp://ftp.ripcordsoftware.com/pub/boost_1_57_0-travis-ci.tar.bz2 -O
- tar xfj boost_1_57_0-travis-ci.tar.bz2
- cd boost_1_57_0
- sudo ./b2 --prefix=/usr -d0 install
- curl http://ftp.de.debian.org/debian/pool/main/l/lcov/lcov_1.11.orig.tar.gz -O
- tar xfz lcov_1.11.orig.tar.gz
- sudo make -C lcov-1.11/ install
- popd
- sudo rm -f /usr/bin/g++
- sudo rm -f /usr/bin/gcc
- sudo rm -f /usr/bin/gcov
- sudo ln -s /usr/bin/g++-4.8 /usr/bin/g++
- sudo ln -s /usr/bin/gcc-4.8 /usr/bin/gcc
- sudo ln -s /usr/bin/gcov-4.8 /usr/bin/gcov
|
Use lcov 1.11 on Travis since 1.9 doesn't work
|
Use lcov 1.11 on Travis since 1.9 doesn't work
|
YAML
|
mit
|
RipcordSoftware/libhttpserver,RipcordSoftware/libhttpserver,RipcordSoftware/libhttpserver,RipcordSoftware/libhttpserver
|
d90232b8e4e3bc05e1b0f3c7ce272328b28776ab
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "4"
- "5.0"
- "5.5"
- "5.9.0"
- "5"
script: npm run travis
|
language: node_js
node_js:
- "5.0"
- "5.4"
- "5.5"
- "5.9"
- "5"
script: npm run travis
|
Remove node v4 from CI
|
Remove node v4 from CI
|
YAML
|
mit
|
benoitvallon/react-native-redux-app-100-10-1,benoitvallon/react-native-redux-app-100-10-1,benoitvallon/react-native-redux-app-100-10-1
|
222edb4234c6d46ad1c406d3d2f590618e934f7d
|
.travis.yml
|
.travis.yml
|
dist: trusty
language: ruby
cache: bundler
sudo: false
rvm:
- 2.4.2
- 2.3.5
- 2.2.8
after_success:
- bundle exec codeclimate-test-reporter
|
dist: trusty
language: ruby
cache: bundler
sudo: false
rvm:
- 2.5.3
- 2.4.5
- 2.3.8
- 2.2.10
after_success:
- bundle exec codeclimate-test-reporter
|
Test with latest Ruby versions
|
Test with latest Ruby versions
|
YAML
|
mit
|
jbox-web/icinga2-api-client
|
7d902af90abc03208da3505c1aa5cf4e3bc65506
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 8
cache:
directories:
- node_modules
- public/components
install:
- yarn
- bower install
before_script:
- npm install -g yarn
script:
- yarn run test
- yarn run posttest
|
language: node_js
node_js:
- 8
cache:
directories:
- node_modules
- public/components
install:
- yarn
- bower install
before_script:
- npm install -g yarn
- npm install -g bower
script:
- yarn run test
- yarn run posttest
|
Fix config of Travis CI
|
Fix config of Travis CI
|
YAML
|
mit
|
osk2/gogo-cash-back,osk2/gogo-cash-rebate,osk2/gogo-cash-rebate
|
a80492a471953566c55f827d4b7dac8520e82bf2
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false # use containers for faster builds
rvm:
- 2.1.2
install:
- gem install minitest --no-ri --no-rdoc
- gem install rubocop -v 0.31.0 --no-ri --no-rdoc
script:
- rubocop -fs -D
- bin/executable-tests-check
- make test
- bin/fetch-configlet
- bin/configlet .
|
---
language: ruby
sudo: false
rvm:
- 2.1.2
install:
- gem install minitest --no-document
- gem install rubocop -v 0.31.0 --no-document
script:
- rubocop -fs -D
- bin/executable-tests-check
- make test
- bin/fetch-configlet
- bin/configlet .
|
Normalize YAML in Travis config
|
Normalize YAML in Travis config
|
YAML
|
mit
|
NeimadTL/ruby,exercism/xruby,tommyschaefer/xruby,Insti/exercism-ruby,Insti/exercism-ruby,kotp/xruby,remcopeereboom/xruby,kotp/xruby,rashmiagar/exercism,gchan/xruby,tommyschaefer/xruby,Insti/exercism-ruby,NeimadTL/ruby,exercism/xruby,gchan/xruby,NeimadTL/ruby,Insti/xruby,remcopeereboom/xruby,rashmiagar/exercism,Insti/xruby
|
ca4737df901e0a80e439b9aa3640ac8c53b0264c
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
|
language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
= "node"
|
Test with node 6 & latest
|
Test with node 6 & latest
Change-Id: Ie4b651f5ce082cd3d53c6ddcd342f4c5d456e6a6
|
YAML
|
apache-2.0
|
wikimedia/mediawiki-services-mobileapps,wikimedia/mediawiki-services-mobileapps,wikimedia/mediawiki-services-mobileapps,wikimedia/mediawiki-services-mobileapps,wikimedia/mediawiki-services-mobileapps,wikimedia/mediawiki-services-mobileapps
|
7bd1231da1a96d416adaed92e9a5205fad194e2c
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
gemfile:
- .travis/Gemfile
env:
- conn=ruby
- conn=hiredis
- conn=synchrony
matrix:
exclude:
- rvm: 1.8.7
gemfile: .travis/Gemfile
env: conn=synchrony
- rvm: jruby-18mode
gemfile: .travis/Gemfile
env: conn=synchrony
notifications:
irc:
- irc.freenode.net#redis-rb
email:
- [email protected]
- [email protected]
- [email protected]
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
gemfile:
- .travis/Gemfile
env:
- conn=ruby
- conn=hiredis
- conn=synchrony
matrix:
exclude:
- rvm: 1.8.7
gemfile: .travis/Gemfile
env: conn=synchrony
- rvm: jruby-18mode
gemfile: .travis/Gemfile
env: conn=synchrony
- rvm: jruby-18mode
gemfile: .travis/Gemfile
env: conn=hiredis
- rvm: jruby-19mode
gemfile: .travis/Gemfile
env: conn=hiredis
- rvm: jruby-19mode
gemfile: .travis/Gemfile
env: conn=synchrony
notifications:
irc:
- irc.freenode.net#redis-rb
email:
- [email protected]
- [email protected]
- [email protected]
|
Exclude some corner cases from Travis.
|
Exclude some corner cases from Travis.
|
YAML
|
mit
|
Talkdesk/redis-rb,Shopify/redis-rb,marshall-lee/redis-rb,redis/redis-rb,YaronWittenstein/redis-rb,mcull/redis-rb,Shopify/redis-rb,nicolasleger/redis-rb,byroot/redis-rb,marshall-lee/redis-rb,madmax9242/redis-rb,zBMNForks/redis-rb,Shopify/redis-rb,tanomsak/redis-rb,plribeiro3000/redis-rb,tsuwatch/redis-rb,gallodigital/redis-rb,YaronWittenstein/redis-rb,madmax9242/redis-rb,plribeiro3000/redis-rb,teslamotors/redis-rb,tsuwatch/redis-rb,ckhall/redis-rb,ckhall/redis-rb,gallodigital/redis-rb,xiewenwei/redis-rb,axos88/redis-rb,mcull/redis-rb,byroot/redis-rb,redis/redis-rb,zBMNForks/redis-rb,rranelli/redis-rb,nicolasleger/redis-rb,xiewenwei/redis-rb,gallodigital/redis-rb,ckhall/redis-rb,teslamotors/redis-rb,redis/redis-rb,byroot/redis-rb,RedisLabs/redis-rb,rranelli/redis-rb,antirez/redis-rb,Talkdesk/redis-rb
|
3a03d1771b183767e8670c2dc2a3d38793cd680f
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libgeos-dev
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install unittest2; fi
- pip install -r requirements-dev.txt
install:
- python setup.py build
script: "python setup.py test"
notifications:
email: false
|
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- sudo add-apt-repository -y ppa:ubuntugis/ppa
- sudo apt-get update -qq
- sudo apt-get install -qq libgeos-dev
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install unittest2; fi
- pip install -r requirements-dev.txt
install:
- python setup.py build
script: "python setup.py test"
notifications:
email: false
|
Use ubuntugis repo to install newer GEOS on Travis CI
|
TST: Use ubuntugis repo to install newer GEOS on Travis CI
|
YAML
|
bsd-3-clause
|
abali96/Shapely,mouadino/Shapely,mindw/shapely,jdmcbr/Shapely,mouadino/Shapely,mindw/shapely,abali96/Shapely,jdmcbr/Shapely
|
60b98b7cdc402fae4c0edb376a8dad22a7b89773
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7-dev"
- "pypy"
- "pypy3"
install:
- pip install tox-travis coveralls
script:
- tox
- mappyfile schema mapfile-schema.json
- mappyfile schema mapfile-schema-7-6.json --version=7.6
- mappyfile validate tests/sample_maps/256_overlay_res.map
- mappyfile format tests/sample_maps/256_overlay_res.map tests/sample_maps/256_overlay_res_formatted.map
after_success:
- coveralls
|
dist: bionic
sudo: false
language: python
python:
- "2.7"
- "3.6"
- "3.7"
- "3.8"
- "pypy"
- "pypy3"
install:
- pip install tox-travis coveralls
script:
- tox
- python setup.py install
- mappyfile schema mapfile-schema.json
- mappyfile schema mapfile-schema-7-6.json --version=7.6
- mappyfile validate tests/sample_maps/256_overlay_res.map
- mappyfile format tests/sample_maps/256_overlay_res.map tests/sample_maps/256_overlay_res_formatted.map
after_success:
- coveralls
|
Install mappyfile before running cli, switch to bionic, and test py38
|
Install mappyfile before running cli, switch to bionic, and test py38
|
YAML
|
mit
|
geographika/mappyfile,geographika/mappyfile
|
e0ee088f4c6a88d5555ee7515f0e90c4c82dd2e4
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
before_script:
- "bundle exec rake db:create db:migrate"
|
language: ruby
rvm:
- 2.0.0
- 2.1.0
before_script:
- "bundle exec rake db:create db:migrate"
|
Replace 1.9.3 with 2.1.0 in Travis CI configuration.
|
Replace 1.9.3 with 2.1.0 in Travis CI configuration.
|
YAML
|
mit
|
Stackato-Apps/expense,Stackato-Apps/expense,tristandunn/expense
|
01366c02dde8301f7bb6b1a4b64604889c37a3a2
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- jruby-19mode
jdk:
- openjdk7
env: DEBUG=true
install: travis_retry bundle install
before_script: bundle exec rake build
script:
- bundle exec rake rubocop
- bundle exec rake spec
- cd integration-tests && bundle exec rake spec:all
branches:
only:
- torqbox
|
language: ruby
rvm:
- jruby-19mode
- jruby-head
jdk:
- openjdk7
env: DEBUG=true
install: travis_retry bundle install
before_script: bundle exec rake build
script:
- bundle exec rake rubocop
- bundle exec rake spec
- cd integration-tests && bundle exec rake spec:all
branches:
only:
- torqbox
|
Test against JRuby head as well on Travis
|
Test against JRuby head as well on Travis
|
YAML
|
apache-2.0
|
mje113/torquebox,mje113/torquebox,torquebox/torquebox,torquebox/torquebox-release,torquebox/torquebox,vaskoz/torquebox,vaskoz/torquebox,samwgoldman/torquebox,ksw2599/torquebox,mje113/torquebox,ksw2599/torquebox,samwgoldman/torquebox,samwgoldman/torquebox,torquebox/torquebox,ksw2599/torquebox,torquebox/torquebox-release,vaskoz/torquebox,ksw2599/torquebox,mje113/torquebox,torquebox/torquebox-release,torquebox/torquebox,torquebox/torquebox-release,samwgoldman/torquebox,vaskoz/torquebox
|
d678a51b3190599db0605a3bdb3a10757de533fc
|
.travis.yml
|
.travis.yml
|
language: go
go:
- tip
- 1.6.2
os:
- linux
- osx
sudo: false
script:
- go test -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
|
language: go
go:
- tip
- 1.7.5
- 1.6.4
os:
- linux
- osx
sudo: false
script:
- go test -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Test against current Go releases
|
Test against current Go releases
* tip (after 1.8rc3 at commit time)
* 1.7.5
* 1.6.4
|
YAML
|
apache-2.0
|
wjkohnen/airac
|
e7b41e3ef38fbd9b620b4ba94f12b15bd4e40675
|
.travis.yml
|
.travis.yml
|
bundler_args: --without development --without doc
env:
global:
- JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- jruby-19mode
- jruby-head
- ruby-head
- rbx-2
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: rbx-2
fast_finish: true
sudo: false
|
bundler_args: --without development doc
env:
global:
- JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- jruby-19mode
- jruby-head
- ruby-head
- rbx-2
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: rbx-2
fast_finish: true
sudo: false
|
Fix Bundler --without args of Travis-CI
|
Fix Bundler --without args of Travis-CI
|
YAML
|
mit
|
httprb/http,davidbegin/http,pezra/http.rb,moneyadviceservice/http.rb,httprb/http.rb,Connorhd/http.rb
|
2fb8cfe279cc0783cc3bf9a6edce66a0a2ac36e7
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.8"
before_script:
- "sudo sed -i '$a 127.0.0.1 pulsr.local static.pulsr.local' /etc/hosts"
- "node app.js &"
- "sleep 3"
# configure notifications (IRC)
notifications:
irc: "irc.freenode.org#pulsr"
|
language: node_js
node_js:
- "0.8"
before_script:
- "sudo sed -i '$a 127.0.0.1 www.pulsr.local static.pulsr.local' /etc/hosts"
- "node app.js &"
- "sleep 3"
# configure notifications (IRC)
notifications:
irc: "irc.freenode.org#pulsr"
|
Add "www" subdomain instead of a root domain.
|
Add "www" subdomain instead of a root domain.
|
YAML
|
mit
|
kadishmal/pulsr,kadishmal/radisonhouse.com
|
cab54074969d30da2b8ecb6143fc9f1bb7d3069f
|
.travis.yml
|
.travis.yml
|
language: ruby
matrix:
include:
- os: linux
dist: trusty
sudo: false
rvm: 2.3.4
- os: linux
dist: trusty
sudo: false
rvm: 2.4.1
- os: linux
dist: trusty
sudo: false
rvm: ruby-head
- os: osx
osx_image: xcode8.2
rvm: 2.3.4
- os: osx
osx_image: xcode8.2
rvm: 2.4.1
- os: osx
osx_image: xcode8.2
rvm: ruby-head
allow_failures:
- os: osx
- rvm: ruby-head
fast_finish: true
cache: bundler
script:
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
xvfb-run bundle exec rake test;
else
bundle exec rake test;
fi
- bundle exec bundle-audit check --update
env:
global:
UPLOAD_TO_CODECOV: 1
notifications:
email:
on_success: never
on_failure: always
addons:
apt:
packages:
- xclip
|
language: ruby
matrix:
include:
- os: linux
dist: trusty
sudo: false
rvm: 2.3.4
- os: linux
dist: trusty
sudo: false
rvm: 2.4.1
- os: linux
dist: trusty
sudo: false
rvm: ruby-head
- os: osx
osx_image: xcode8.2
rvm: 2.3.3
- os: osx
osx_image: xcode8.2
rvm: 2.4.0
- os: osx
osx_image: xcode8.2
rvm: ruby-head
allow_failures:
- os: osx
- rvm: ruby-head
fast_finish: true
cache: bundler
script:
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
xvfb-run bundle exec rake test;
else
bundle exec rake test;
fi
- bundle exec bundle-audit check --update
env:
global:
UPLOAD_TO_CODECOV: 1
notifications:
email:
on_success: never
on_failure: always
addons:
apt:
packages:
- xclip
|
Downgrade rubies on Mac OS X.
|
Downgrade rubies on Mac OS X.
|
YAML
|
mit
|
shugo/text_bringer,shugo/textbringer,shugo/text_bringer
|
e6d3462b7f1ac930c51fe9834e812c1c0bed909e
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: xcode7.3
before_install:
- brew update
script:
- xctool -project YTVimeoExtractor.xcodeproj -scheme YTVimeoExtractor build test GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES
- xctool -project YTVimeoExtractor.xcodeproj -scheme YTVimeoExtractor iOS -sdk iphonesimulator build test GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES
after_success:
- bash <(curl -s https://codecov.io/bash)
before_deploy:
- carthage build --no-skip-current
- carthage archive YTVimeoExtractor
skip_cleanup: true
on:
repo: repo/repo
tags: true
|
language: objective-c
osx_image: xcode7.3
before_install:
- brew update
script:
- xcodebuild -project YTVimeoExtractor.xcodeproj -scheme YTVimeoExtractor test -destination 'platform=OS X,arch=x86_64' -destination 'platform=iOS Simulator,name=iPhone 6,OS=latest' -destination 'platform=tvOS Simulator,name=Apple TV 1080p,OS=latest'
after_success:
- bash <(curl -s https://codecov.io/bash)
before_deploy:
- carthage build --no-skip-current
- carthage archive YTVimeoExtractor
skip_cleanup: true
on:
repo: repo/repo
tags: true
|
Switch to xcodebuild and use tvOS and iOS Simulator
|
Switch to xcodebuild and use tvOS and iOS Simulator
|
YAML
|
mit
|
lilfaf/YTVimeoExtractor
|
60678694a5db47519cf2641602dced3c1faf5606
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.10
services:
- mongodb
env:
matrix:
- TEST_CMD="mocha"
- TEST_CMD="lint"
before_script:
- npm install -g grunt-cli
script: npm run config && grunt travis
|
language: node_js
node_js:
- "0.10"
- "0.8"
services:
- mongodb
env:
matrix:
- TEST_CMD="mocha"
- TEST_CMD="lint"
before_script:
- npm install -g grunt-cli
script: npm run config && grunt travis
|
Test Nodejs .10 & .8
|
Test Nodejs .10 & .8
|
YAML
|
mit
|
webcast-io/jobukyu,webcast-io/jobukyu
|
e2f178264246e2acc96010b8ea7cde4771241a63
|
.travis.yml
|
.travis.yml
|
sudo: false
language: rust
# necessary for `travis-cargo coveralls --no-sudo`
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
rust:
- nightly
- beta
- stable
- 1.0.0
# load travis-cargo
before_script:
- |
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH
# the main build
script:
- |
travis-cargo build &&
travis-cargo test &&
travis-cargo bench &&
travis-cargo --only stable doc
after_success:
# upload the documentation from the build with stable (automatically only actually
# runs on the master branch, not individual PRs)
# - travis-cargo --only stable doc-upload
# measure code coverage and upload to coveralls.io (the verify
# argument mitigates kcov crashes due to malformed debuginfo, at the
# cost of some speed <https://github.com/huonw/travis-cargo/issues/12>)
- travis-cargo coveralls --no-sudo --verify
env:
global:
# override the default `--features unstable` used for the nightly branch (optional)
- TRAVIS_CARGO_NIGHTLY_FEATURE=nightly
# encrypted github token for doc upload (see `GH_TOKEN` link above)
# - secure: "..."
|
sudo: false
language: rust
# necessary for `travis-cargo coveralls --no-sudo`
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
rust:
- beta
- stable
# load travis-cargo
before_script:
- |
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH
# the main build
script:
- |
travis-cargo build &&
travis-cargo test &&
travis-cargo bench &&
travis-cargo --only stable doc
after_success:
# upload the documentation from the build with stable (automatically only actually
# runs on the master branch, not individual PRs)
# - travis-cargo --only stable doc-upload
# measure code coverage and upload to coveralls.io (the verify
# argument mitigates kcov crashes due to malformed debuginfo, at the
# cost of some speed <https://github.com/huonw/travis-cargo/issues/12>)
- travis-cargo coveralls --no-sudo --verify
env:
global:
# override the default `--features unstable` used for the nightly branch (optional)
- TRAVIS_CARGO_NIGHTLY_FEATURE=nightly
# encrypted github token for doc upload (see `GH_TOKEN` link above)
# - secure: "..."
|
Test on stable and beta
|
Test on stable and beta
|
YAML
|
mit
|
patchfx/yahoo-finance
|
0c1073640f4692668abf74855048a424376e339b
|
.travis.yml
|
.travis.yml
|
os: osx
osx_image: xcode9.3
env:
- COLUMNS=240
install:
- brew update
- brew install advancecomp
- brew install vips --without-fftw --without-graphicsmagick --without-poppler
- brew info vips
script:
- ./package.sh
addons:
artifacts:
s3_region: eu-west-1
|
os: osx
osx_image: xcode9.2
env:
- COLUMNS=240
install:
- brew update
- brew upgrade
- brew install advancecomp
- brew install vips --without-fftw --without-graphicsmagick --without-poppler
- brew info vips
script:
- ./package.sh
addons:
artifacts:
s3_region: eu-west-1
|
Revert to OS X 10.12, ensure brew is synced
|
Revert to OS X 10.12, ensure brew is synced
|
YAML
|
apache-2.0
|
lovell/package-libvips-darwin,lovell/package-libvips-darwin
|
703f4ce866ea924def5afde6bd712aa271e0acf4
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7
sudo: false
before_install:
- mkdir build
- git clone https://github.com/nikic/php-ast.git build/ast
- cd ./build/ast/
- phpize
- ./configure
- make
- make install
- echo "extension=ast.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- cd ./../../
- travis_retry composer self-update
install:
- composer --prefer-source install
script:
- phpunit --colors -c phpunit.xml
- php package.php
before_deploy:
- php package.php
deploy:
provider: releases
api_key: $API_KEY
file: build/phan.phar
skip_cleanup: true
on:
tags: true
|
language: php
php:
- 7
- nightly
sudo: false
matrix:
fast_finish: true
allow_failures:
- php: "nightly"
before_install:
- mkdir build
- git clone https://github.com/nikic/php-ast.git build/ast
- cd ./build/ast/
- phpize
- ./configure
- make
- make install
- echo "extension=ast.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- cd ./../../
- travis_retry composer self-update
install:
- composer --prefer-source install
script:
- phpunit --colors -c phpunit.xml
- php package.php
before_deploy:
- php package.php
deploy:
provider: releases
api_key: $API_KEY
file: build/phan.phar
skip_cleanup: true
on:
tags: true
|
Add PHP nightly to build matrix
|
Add PHP nightly to build matrix
|
YAML
|
mit
|
etsy/phan,etsy/phan,ArtemGordinsky/phan,ArtemGordinsky/phan
|
522f4fa3fcbb7a070a921de8d70fe4a94067cdbb
|
.travis.yml
|
.travis.yml
|
sudo: required
services:
- docker
script:
- docker build -t dlecan/rust-crosscompiler-arm:stable rust-crosscompiler-armv6
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push dlecan/rust-crosscompiler-arm:stable
|
sudo: required
services:
- docker
script:
- docker build -t dlecan/rust-crosscompiler-arm:stable rust-crosscompiler-armv6
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push dlecan/rust-crosscompiler-arm:stable
|
Remove email when docker connect
|
Remove email when docker connect
|
YAML
|
mit
|
dlecan/docker-rust-x86_64-armv6,dlecan/rust-crosscompiler-arm
|
e40bca9e22d060a8e7a7bf6cf49a9e6b3d6b2df9
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
matrix:
allow_failures:
- node_js: "0.11"
# setup links to submodules
before_install:
- npm install -g [email protected]
- npm run-script setup
|
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
matrix:
allow_failures:
- node_js: "0.11"
# setup links to submodules
before_install:
- npm update -g npm
- npm run-script setup
|
Update to latest npm on startup
|
Update to latest npm on startup
Removed specific version - npm has released fix for the breakage on 0.8.26
and now 1.4.9 is giving SHA errors?? Let's try this.
|
YAML
|
mit
|
Matt-Westphal/azure-sdk-for-node,shrishrirang/azure-sdk-for-node,smithab/azure-sdk-for-node,koistya/azure-sdk-for-node,koistya/azure-sdk-for-node,amarzavery/azure-sdk-for-node,smithab/azure-sdk-for-node,kagamsft/azure-sdk-for-node,Matt-Westphal/azure-sdk-for-node,oaastest/azure-sdk-for-node,begoldsm/azure-sdk-for-node,namratab/azure-sdk-for-node,IoTboy/azure-sdk-for-node,koistya/azure-sdk-for-node,IoTboy/azure-sdk-for-node,Azure/azure-sdk-for-node,xingwu1/azure-sdk-for-node,AutorestCI/azure-sdk-for-node,huangpf/azure-sdk-for-node,begoldsm/azure-sdk-for-node,mauricionr/azure-sdk-for-node,mauricionr/azure-sdk-for-node,AuxMon/azure-sdk-for-node,namratab/azure-sdk-for-node,iwate/azure-sdk-for-node,lmazuel/azure-sdk-for-node,huangpf/azure-sdk-for-node,vivsriaus/azure-sdk-for-node,Azure/azure-sdk-for-node,mauricionr/azure-sdk-for-node,AutorestCI/azure-sdk-for-node,kagamsft/azure-sdk-for-node,Azure/azure-sdk-for-node,oaastest/azure-sdk-for-node,msfcolombo/azure-sdk-for-node,lmazuel/azure-sdk-for-node,amarzavery/azure-sdk-for-node,devigned/azure-sdk-for-node,devigned/azure-sdk-for-node,DeepakRajendranMsft/azure-sdk-for-node,Matt-Westphal/azure-sdk-for-node,oaastest/azure-sdk-for-node,devigned/azure-sdk-for-node,hveiras/azure-sdk-for-node,hveiras/azure-sdk-for-node,msfcolombo/azure-sdk-for-node,namratab/azure-sdk-for-node,shrishrirang/azure-sdk-for-node,vivsriaus/azure-sdk-for-node,xingwu1/azure-sdk-for-node,AuxMon/azure-sdk-for-node,shrishrirang/azure-sdk-for-node,xingwu1/azure-sdk-for-node,harshiam-hdinsight/azure-sdk-for-node,iwate/azure-sdk-for-node,harshiam-hdinsight/azure-sdk-for-node,huangpf/azure-sdk-for-node,iwate/azure-sdk-for-node,msfcolombo/azure-sdk-for-node,IoTboy/azure-sdk-for-node,DeepakRajendranMsft/azure-sdk-for-node
|
a7a8f2bf87c51a6ea1a7bc2076627a0513441b80
|
.travis.yml
|
.travis.yml
|
language: cpp
os:
- linux
- osx
addons:
apt:
sources:
- sourceline: "deb http://mirrors.kernel.org/ubuntu/ disco main"
packages:
- cmake
homebrew:
packages:
- cmake
script:
- mkdir build
- cd build
- cmake ..
- cmake --build .
|
language: cpp
matrix:
- os: linux
dist: xenial
- os: osx
osx_image: xcode10.1
addons:
apt:
sources:
- sourceline: "deb http://mirrors.kernel.org/ubuntu/ disco main"
packages:
- cmake
homebrew:
packages:
- cmake
script:
- mkdir build
- cd build
- cmake ..
- cmake --build .
|
Update to Xenial and Xcode 10.1
|
Travis: Update to Xenial and Xcode 10.1
|
YAML
|
mit
|
pmer/TsunagariC,pmer/TsunagariC,pmer/TsunagariC
|
ed16ddaadf933b71c0848e593184d39d10eabe44
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "5"
- "6"
script:
- npm run bootstrap
- npm run test:lint
- npm run test:coverage
after_success:
- bash <(curl -s https://codecov.io/bash)
|
language: node_js
node_js:
- "6"
- "7"
- "8"
script:
- npm run bootstrap
- npm run test:lint
- npm run test:coverage
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Update Travis to use modern Node
|
chore: Update Travis to use modern Node
|
YAML
|
mit
|
reactabular/reactabular,reactabular/reactabular
|
6b58b821d951811574e94090c2cf7f7c8c81ec85
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- node
- '8'
- '6'
- '4'
before_install:
# Build Csound.
- sudo apt-get build-dep csound
- wget https://github.com/csound/csound/archive/6.10.0.tar.gz
- tar -xf 6.10.0.tar.gz
- mkdir csound
- cd csound
- cmake ../csound-6.10.0
- make
- sudo make install
- sudo ldconfig
- cd ..
# Get csound-api dependencies.
- sudo apt-get install -y libboost-dev
before_script:
- npm --global install jasmine
|
language: node_js
node_js:
- node
- '8'
- '6'
- '4'
before_install:
# Build Csound.
- sudo apt-get install -y libsndfile1-dev
- wget https://github.com/csound/csound/archive/6.09.1.tar.gz
- tar -xf 6.09.1.tar.gz
- mkdir csound
- cd csound
- cmake ../csound-6.09.1
- make
- sudo make install
- sudo ldconfig
- cd ..
# Get csound-api dependencies.
- sudo apt-get install -y libboost-dev
before_script:
- npm --global install jasmine
|
Revert Travis CI to Csound 6.09.1
|
Revert Travis CI to Csound 6.09.1
|
YAML
|
mit
|
nwhetsell/csound-api,nwhetsell/csound-api,nwhetsell/csound-api
|
fac007745c0afd21f9d5b8569ab7b26b6914401d
|
.travis.yml
|
.travis.yml
|
os: linux
sudo: false
# Flutter depends on /usr/lib/x86_64-linux-gnu/libstdc++.so.6 version GLIBCXX_3.4.18
# https://github.com/flutter/flutter/issues/6207
addons:
apt:
packages:
- libstdc++6
- lib32stdc++6
sources:
- ubuntu-toolchain-r-test
cache:
directories:
- $HOME/shared/.pub-cache
git:
depth: 2
env:
global:
- FLUTTER_BIN=$PWD/flutter/bin
- FLUTTER=$FLUTTER_BIN/flutter
matrix:
- FLUTTER_BRANCH=stable
- FLUTTER_BRANCH=dev
matrix:
allow_failures:
- env: FLUTTER_BRANCH=dev
before_script:
- git clone https://github.com/flutter/flutter.git -b $FLUTTER_BRANCH
- ./flutter/bin/flutter doctor
- chmod +x travis.sh
script: ./travis.sh
# Only run Travis jobs for named branches (to avoid double builds for each PR)
branches:
only: [master, /^\d\.x$/, /^\d-dev$/, /travis-build/]
|
os: linux
sudo: false
# Flutter depends on /usr/lib/x86_64-linux-gnu/libstdc++.so.6 version GLIBCXX_3.4.18
# https://github.com/flutter/flutter/issues/6207
addons:
apt:
packages:
- libstdc++6
- lib32stdc++6
sources:
- ubuntu-toolchain-r-test
cache:
directories:
- $HOME/shared/.pub-cache
git:
depth: 2
env:
global:
- FLUTTER_BIN=$PWD/flutter/bin
- FLUTTER=$FLUTTER_BIN/flutter
matrix:
- FLUTTER_BRANCH=stable
- FLUTTER_BRANCH=beta
- FLUTTER_BRANCH=dev
matrix:
allow_failures:
- env: FLUTTER_BRANCH=dev
before_script:
- git clone https://github.com/flutter/flutter.git -b $FLUTTER_BRANCH
- ./flutter/bin/flutter doctor
- chmod +x travis.sh
script: ./travis.sh
# Only run Travis jobs for named branches (to avoid double builds for each PR)
branches:
only: [master, /^\d\.x$/, /^\d-dev$/, /travis-build/]
|
Add beta to the test matrix
|
Add beta to the test matrix
|
YAML
|
bsd-3-clause
|
flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.