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
|
|---|---|---|---|---|---|---|---|---|---|
1604f647a5405eb9b4106f1a3516dce301d72389
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
rvm:
- 2.6.2
env:
matrix:
- SOLIDUS_BRANCH=v2.5 DB=postgres
- SOLIDUS_BRANCH=v2.6 DB=postgres
- SOLIDUS_BRANCH=v2.7 DB=postgres
- SOLIDUS_BRANCH=v2.8 DB=postgres
- SOLIDUS_BRANCH=master DB=postgres
- SOLIDUS_BRANCH=v2.5 DB=mysql
- SOLIDUS_BRANCH=v2.6 DB=mysql
- SOLIDUS_BRANCH=v2.7 DB=mysql
- SOLIDUS_BRANCH=v2.8 DB=mysql
- SOLIDUS_BRANCH=master DB=mysql
|
sudo: false
language: ruby
rvm:
- 2.6.2
services:
- postgresql
- mysql
env:
matrix:
- SOLIDUS_BRANCH=v2.5 DB=postgres
- SOLIDUS_BRANCH=v2.6 DB=postgres
- SOLIDUS_BRANCH=v2.7 DB=postgres
- SOLIDUS_BRANCH=v2.8 DB=postgres
- SOLIDUS_BRANCH=master DB=postgres
- SOLIDUS_BRANCH=v2.5 DB=mysql
- SOLIDUS_BRANCH=v2.6 DB=mysql
- SOLIDUS_BRANCH=v2.7 DB=mysql
- SOLIDUS_BRANCH=v2.8 DB=mysql
- SOLIDUS_BRANCH=master DB=mysql
|
Fix PostgreSQLs and MySQL not being available in Travis
|
Fix PostgreSQLs and MySQL not being available in Travis
|
YAML
|
bsd-3-clause
|
boomerdigital/solidus_avatax_certified,boomerdigital/solidus_avatax_certified,boomerdigital/solidus_avatax_certified
|
b9a6218e367414ca3dd003fc9abc408496b42020
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
env:
- DATABASE_ENGINE=sqlite
- DATABASE_ENGINE=postgres
- DATABASE_ENGINE=mysql
matrix:
exclude:
- python: 3.2
env: DATABASE_ENGINE=mysql
- python: 3.3
env: DATABASE_ENGINE=mysql
fast_finish: true
install:
- pip install -U setuptools
- python bootstrap.py
- ./bin/buildout -c travis.cfg testenv:DJANGO_SETTINGS_MODULE=zinnia.tests.implementations.$DATABASE_ENGINE
- sh -c "if [ '$DATABASE_ENGINE' = 'postgres' ];
then
pip install psycopg2;
fi"
- sh -c "if [ '$DATABASE_ENGINE' = 'mysql' ];
then
pip install mysql-python;
fi"
before_script:
- ./bin/flake8 --exclude=migrations zinnia
- sh -c "if [ '$DATABASE_ENGINE' = 'postgres' ];
then
psql -c 'create database zinnia;' -U postgres;
fi"
- sh -c "if [ '$DATABASE_ENGINE' = 'mysql' ];
then
mysql -e 'create database zinnia CHARACTER SET utf8 COLLATE utf8_general_ci;';
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql;
fi"
script:
- ./bin/test
after_success:
- ./bin/coveralls
notifications:
irc:
- "irc.freenode.org#django-blog-zinnia"
|
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
env:
- DATABASE_ENGINE=sqlite
- DATABASE_ENGINE=postgres
- DATABASE_ENGINE=mysql
matrix:
exclude:
- python: 3.2
env: DATABASE_ENGINE=mysql
- python: 3.3
env: DATABASE_ENGINE=mysql
fast_finish: true
install:
- pip install -U setuptools psycopg2 mysql-python
- python bootstrap.py
- ./bin/buildout -c travis.cfg testenv:DJANGO_SETTINGS_MODULE=zinnia.tests.implementations.$DATABASE_ENGINE
- psql -c 'create database zinnia;' -U postgres;
- mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql;
- mysql -e 'create database zinnia CHARACTER SET utf8 COLLATE utf8_general_ci;';
before_script:
- ./bin/flake8 --exclude=migrations zinnia
script:
- ./bin/test
after_success:
- ./bin/coveralls
notifications:
irc:
- "irc.freenode.org#django-blog-zinnia"
|
Simplify the config but remove optimizations
|
Simplify the config but remove optimizations
|
YAML
|
bsd-3-clause
|
aorzh/django-blog-zinnia,dapeng0802/django-blog-zinnia,Fantomas42/django-blog-zinnia,extertioner/django-blog-zinnia,marctc/django-blog-zinnia,Maplecroft/django-blog-zinnia,dapeng0802/django-blog-zinnia,extertioner/django-blog-zinnia,petecummings/django-blog-zinnia,ghachey/django-blog-zinnia,Fantomas42/django-blog-zinnia,ghachey/django-blog-zinnia,ZuluPro/django-blog-zinnia,bywbilly/django-blog-zinnia,dapeng0802/django-blog-zinnia,petecummings/django-blog-zinnia,Zopieux/django-blog-zinnia,aorzh/django-blog-zinnia,1844144/django-blog-zinnia,ZuluPro/django-blog-zinnia,ZuluPro/django-blog-zinnia,petecummings/django-blog-zinnia,Maplecroft/django-blog-zinnia,ghachey/django-blog-zinnia,bywbilly/django-blog-zinnia,extertioner/django-blog-zinnia,bywbilly/django-blog-zinnia,Fantomas42/django-blog-zinnia,Maplecroft/django-blog-zinnia,1844144/django-blog-zinnia,marctc/django-blog-zinnia,aorzh/django-blog-zinnia,Zopieux/django-blog-zinnia,marctc/django-blog-zinnia,Zopieux/django-blog-zinnia,1844144/django-blog-zinnia
|
876512811c0898ab41254ab56dac2020ab1011e9
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.1
- 1.2
- 1.3
- 1.4
- release
- tip
install:
- go get github.com/go-sql-driver/mysql
- go get github.com/cenkalti/backoff
- go get github.com/joho/godotenv
- go get github.com/codegangsta/cli
env:
- ENV=test
script:
- go test -v ./...
|
language: go
go:
- 1.4
- release
- tip
install:
- go get github.com/go-sql-driver/mysql
- go get github.com/cenkalti/backoff
- go get github.com/joho/godotenv
- go get github.com/codegangsta/cli
env:
- ENV=test
script:
- go test -v ./...
|
Update Go versions in Travis
|
Update Go versions in Travis
|
YAML
|
mit
|
nicday/turtle
|
2a62411102c269015ab4282ef942bf7bac9d513f
|
.travis.yml
|
.travis.yml
|
language: python
cache: pip
sudo: false
python:
- "3.6"
- "3.5"
- "2.7"
addons:
postgresql: "9.4"
env:
- REQ="Django>=1.11,<2.0"
- REQ="Django>=2.0,<2.1"
- REQ="Django>=2.1,<2.2
- REQ="https://github.com/django/django/archive/master.zip#egg=Django"
matrix:
allow_failures:
- env: REQ="https://github.com/django/django/archive/master.zip#egg=Django"
exclude:
- python: "2.7"
env: REQ="Django>=2.0,<2.1"
- python: "2.7"
env: REQ="Django>=2.1,<2.2"
- python: "2.7"
env: REQ="https://github.com/django/django/archive/master.zip#egg=Django"
install:
- pip install -U pip setuptools wheel
- pip install $REQ
- pip install django-ckeditor django-content-editor django-imagefield
- pip install django-tree-queries html-sanitizer psycopg2-binary requests
- python setup.py install
script: cd tests && ./manage.py test -v 2 testapp && cd ..
jobs:
include:
- stage: style
env: REQ=none
install: skip
script:
- pip install black flake8
- flake8 .
- black --check feincms3 tests
|
language: python
cache: pip
sudo: false
python:
- "3.6"
- "3.5"
- "2.7"
addons:
postgresql: "9.4"
env:
- REQ="Django>=1.11,<2.0"
- REQ="Django>=2.0,<2.1"
- REQ="Django>=2.1,<2.2"
- REQ="https://github.com/django/django/archive/master.zip#egg=Django"
matrix:
allow_failures:
- env: REQ="https://github.com/django/django/archive/master.zip#egg=Django"
exclude:
- python: "2.7"
env: REQ="Django>=2.0,<2.1"
- python: "2.7"
env: REQ="Django>=2.1,<2.2"
- python: "2.7"
env: REQ="https://github.com/django/django/archive/master.zip#egg=Django"
install:
- pip install -U pip setuptools wheel
- pip install $REQ
- pip install django-ckeditor django-content-editor django-imagefield
- pip install django-tree-queries html-sanitizer psycopg2-binary requests
- python setup.py install
script: cd tests && ./manage.py test -v 2 testapp && cd ..
jobs:
include:
- stage: style
env: REQ=none
install: skip
script:
- pip install black flake8
- flake8 .
- black --check feincms3 tests
|
Fix a typo in the Django 2.1 line
|
Fix a typo in the Django 2.1 line
|
YAML
|
bsd-3-clause
|
matthiask/feincms3,matthiask/feincms3,matthiask/feincms3
|
b2d5ca7c560429ad3acf80bed63f76c365ad22ca
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2.3
before_install: gem install bundler -v 1.10.6
|
language: ruby
rvm:
- 2.2.4
before_install: gem install bundler -v 1.10.6
|
Update tested ruby to 2.2.4
|
Update tested ruby to 2.2.4
|
YAML
|
mit
|
librariesio/semantic_interval,librariesio/semantic_interval
|
f48242ce50c4f77d93fbfc8419af54d32e12ba8f
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
Build with latest Node.js 4 on Travis CI.
|
Build with latest Node.js 4 on Travis CI.
|
YAML
|
mit
|
bigeasy/conduit
|
7d0e3fdd41c54c06293c257e981d17321ba7e599
|
.travis.yml
|
.travis.yml
|
dist: xenial
language: ruby
rvm:
- 2.7.6
env: SECRET_KEY_BASE=859384 RUN_SLOW_TESTS=true
before_install:
- gem install bundler:2.0.2
before_script:
- cp config/database.travis.yml config/database.yml
- RAILS_ENV=test bundle exec rake db:setup
- docker pull openaustralia/buildstep
after_success:
- bundle exec codeclimate-test-reporter
services:
- docker
- redis
- mysql
|
dist: xenial
language: ruby
rvm:
- 2.7.6
env: SECRET_KEY_BASE=859384 RUN_SLOW_TESTS=true
before_install:
- gem install bundler:2.0.2
before_script:
- cp config/database.travis.yml config/database.yml
- bundle exec rake db:setup
- docker pull openaustralia/buildstep
after_success:
- bundle exec codeclimate-test-reporter
services:
- docker
- redis
- mysql
|
Revert "Try explicitly setting the test environment"
|
Revert "Try explicitly setting the test environment"
This reverts commit 8a74be7e201ba84255280928d637f4be291c76ea.
|
YAML
|
agpl-3.0
|
openaustralia/morph,openaustralia/morph,openaustralia/morph,openaustralia/morph,openaustralia/morph,openaustralia/morph,openaustralia/morph
|
36d52a2c199f50e3b636f4334b1daa8d2cdc3a5f
|
.travis.yml
|
.travis.yml
|
# Note: all environments run nodejs, so set language to PHP so we can lint all of the PHP functions
language: php
php:
- "5.3"
before_script:
- npm install
- make
script:
- make check_changes
- make test
branches:
only:
- master
|
# Note: all environments run nodejs, so set language to PHP so we can lint all of the PHP functions
language: php
php:
- 7.2
before_script:
- npm install
- make
script:
- make check_changes
- make test
branches:
only:
- master
- travis
env:
global:
- secure: "ZjGYCdnJbnuXx+CTiIIr50cZxEaGXF8JIY3QMgfOJ2ll4X6wVZ5FsYaOyuaaDI86lb767/fKPZ4hgFqMVAYS50XHjjr23Smavd9HHsVRPQmOifrYIYVFSDkEiKVo6JIiJPBI0NM+5vrowuORMm3YFGZMv6RGOEAa5cvjSte1wVSwvgeIK6QKlXL65L/29/p7ynT6PPhZ3kuc+lY3v2N4WGxMj7eynjGajsymAEKCqKDjRu7RRGbhcw7KdPbeMo2l+qkQBS/aEikiUgTW2CBb7cirXHODnEru15OQOTWw29ntrI7uteA6vK5w9ygTtguTEVhVDDAySGU6VYK/5VO2nnye0VLkTRKPpzeEuQNjbw85MveFoxXDPgfpUUe0tiG1ho37p73aFbZM6im1M5oQCL8gcqi+rUCshRn5MpjscZ8vMN7GFF1Sva1RQ9f/ho93gmIP0+5TStVTYgd3QTri3F14lT79P0Ujbxk4ltWX15Zj52Kcan0ipWmcz9ENGH3kqMOH9q2KvWI+vPL3laL9sBQ5L5VUWeF8XrmrSYX9MOILaJWaCPQT31oBbGUlgJZGslGqpctLBHsF5K7t7LObADU5XheMWvC0iDO/0WqVDyG37D4UTfXoaFrXIlhNSX6ouZjq+WwJaOyxLm/498N0Wk/XUpMSJ4XFKiw/mSe/6XA="
matrix:
include:
- language: nix
before_script:
script: nix-build --argstr handlebarsSpecVersion $TRAVIS_BRANCH | tee result.txt
after_success: cat result.txt | cachix push jbboehr-ci
|
Use newer PHP version in Travis config, add Nix to build matrix
|
Use newer PHP version in Travis config, add Nix to build matrix
|
YAML
|
agpl-3.0
|
jbboehr/handlebars-spec,jbboehr/handlebars-spec,jbboehr/handlebars-spec
|
ee3823829a4aaf26a388596d99230e2c06c1498c
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
- 3.7
install:
- python setup.py develop
- pip install -r requirements-dev.txt
script:
- mamba
|
language: python
matrix:
include:
-python: 3.7
dist: xenial
sudo: true
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
install:
- python setup.py develop
- pip install -r requirements-dev.txt
script:
- mamba
|
Use python 3.7 from Xenial distribution
|
[INTERNAL][FIX] Use python 3.7 from Xenial distribution
|
YAML
|
mit
|
aleasoluciones/simpledatamigrate,aleasoluciones/simpledatamigrate
|
3f5314989a3534849bd73cfdf8856bb7f32eacad
|
.travis.yml
|
.travis.yml
|
bundler_args: --without development
language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.2
script: bundle exec rspec spec
|
bundler_args: --without development
language: ruby
sudo: false
rvm:
- 2.1.9
- 2.2.5
- 2.3.1
script: bundle exec rspec spec
|
Drop ruby versions < 2
|
Drop ruby versions < 2
|
YAML
|
mit
|
arashm/PoParser,experteer/PoParser
|
dd6bf79de461866db1e4342a1f52dbc01b89ef04
|
.travis.yml
|
.travis.yml
|
language: csharp
mono: none
dotnet: 2.1.401
sudo: required
dist: trusty
script: "./build.sh"
before_install:
- sudo service postgresql stop
- while sudo lsof -Pi :5432 -sTCP:LISTEN -t; do sleep 1; done
env:
global:
secure: e2TyjuwV8DgvfkM/NsZw7Q2Trt7IDO6roqQJHa/xbQh4ZInp2JPLgg/f6YVF51dpBxfxsmYSLBbsnj8SLoTuSa904lyoI7p/xY1CDvvQUPiBQD2ORkSkne7RWepZXg5uwm9DQTJJXohR/aPnpNnFGr8RWMhCfIOPgc6wEX7EVCA=
|
language: minimal
sudo: required
dist: trusty
script: "./build.sh"
env:
global:
secure: e2TyjuwV8DgvfkM/NsZw7Q2Trt7IDO6roqQJHa/xbQh4ZInp2JPLgg/f6YVF51dpBxfxsmYSLBbsnj8SLoTuSa904lyoI7p/xY1CDvvQUPiBQD2ORkSkne7RWepZXg5uwm9DQTJJXohR/aPnpNnFGr8RWMhCfIOPgc6wEX7EVCA=
|
Use minimal as the 'language'
|
Use minimal as the 'language'
The 'minimal' language contains everything we need to build
|
YAML
|
mit
|
SQLStreamStore/SQLStreamStore,damianh/Cedar.EventStore,SQLStreamStore/SQLStreamStore
|
8f20dfa8db4144735f15af8f6e2ed5c63bcb3b49
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
|
language: node_js
node_js:
- "9"
- "8"
- "7"
- "6"
|
Test on Node.js 6 and newer only
|
Test on Node.js 6 and newer only
|
YAML
|
mit
|
chbrown/xmlconv
|
edce418a2e90919bb04ca8bcc42825a48534db1f
|
.travis.yml
|
.travis.yml
|
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libsdl2-dev libsdl2-image-dev
language: cpp
compiler:
- clang
- gcc
script: cmake
|
before_install:
- wget http://www.libsdl.org/release/SDL2-2.0.4.tar.gz -O - | tar xz
- (cd SDL2-2.0.4 && ./configure && make && sudo make install)
- wget http://www.libsdl.org/projects/SDL_image/release/SDL2_image-2.0.1.tar.gz -O - | tar xz
- (cd SDL2_image-2.0.1 && ./configure && make && sudo make install)
language: cpp
compiler:
- clang
- gcc
script: cmake
|
Fix before_install step in Travis CI configuration
|
Fix before_install step in Travis CI configuration
|
YAML
|
mit
|
SHyx0rmZ/image-viewer-xx
|
f7d836e7ec6a4d61752f7444d9ccc1e0553e2bf4
|
.travis.yml
|
.travis.yml
|
sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
include:
- php: 5.5
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
- php: 5.6
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
- php: 7.0
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
- php: hhvm
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
fast_finish: true
before_script:
- composer self-update
- composer update $COMPOSER_FLAGS --prefer-source
script: ./vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml
after_script: php vendor/bin/coveralls
|
sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
include:
- php: 5.5
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
- php: 5.6
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
- php: 7.0
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
- php: hhvm
env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable'
fast_finish: true
before_script:
- composer self-update
- composer update $COMPOSER_FLAGS --prefer-source
script:
- ./vendor/bin/parallel-lint src tests
- ./vendor/bin/phpunit --verbose
- ./vendor/bin/phpcs src --standard=psr2 -sp
after_script: php vendor/bin/coveralls
|
Add linting and code-sniffing to the Travis CI build
|
Add linting and code-sniffing to the Travis CI build
|
YAML
|
mit
|
aztech-forks/uuid,ramsey/uuid,michabbb-backup/uuid,michabbb-backup/uuid
|
a01521b8eb6a3df033a211f6e205d3d7d1c3fcd4
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.12"
- iojs
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
Add node 0.12 and iojs to CI run.
|
Add node 0.12 and iojs to CI run.
|
YAML
|
mit
|
basti1302/repoman,cliffano/repoman
|
95725022c0e9705e09c853563a93fb12aed91ad6
|
.travis.yml
|
.travis.yml
|
# "It took the night to believe"
language: c
before_script:
- cmake --help
- cmake $CMAKE_GENERATOR .
sudo: required
env:
- CTEST_OUTPUT_ON_FAILURE=1
addons:
apt:
packages:
- cmake
- libpopt-dev
- doxygen
- ninja-build
script:
- make
- make test
- make doc
matrix:
include:
- compiler: clang
os: osx
before_install:
- brew update
- brew install popt
- dist: precise
sudo: false
- compiler: clang
dist: trusty
- compiler: clang
env: CMAKE_GENERATOR="-G Ninja"
dist: trusty
# TODO: Build Ninja
|
# "It took the night to believe"
language: c
before_script:
- cmake --help
- cmake $CMAKE_GENERATOR .
sudo: required
env:
- CTEST_OUTPUT_ON_FAILURE=1
addons:
apt:
packages:
- cmake
- libpopt-dev
- doxygen
- ninja-build
script:
- make check
matrix:
include:
- compiler: clang
os: osx
before_install:
- brew update
- brew install popt
script:
- make check doc
- dist: precise
sudo: false
- compiler: clang
dist: trusty
- compiler: clang
env: CMAKE_GENERATOR="-G Ninja"
dist: trusty
script:
- ninja check doc
# Docs are tested on Trusty with Ninja, and on OSX (which might have a more
# recent Doxygen.)
# vim: shiftwidth=2 expandtab
|
Use new 'make check', and only build docs selectively
|
Use new 'make check', and only build docs selectively
|
YAML
|
lgpl-2.1
|
sourcefrog/librsync,yrgoldteeth/librsync,dbaarda/librsync,Salamek/librsync,dbaarda/librsync,librsync/librsync,dbaarda/librsync,yrgoldteeth/librsync,Salamek/librsync,yrgoldteeth/librsync,sourcefrog/librsync,librsync/librsync,dbaarda/librsync,sourcefrog/librsync,librsync/librsync,librsync/librsync,Salamek/librsync,sourcefrog/librsync,yrgoldteeth/librsync
|
3eacf05d6ad677d7970caebe27099579ec355a11
|
.travis.yml
|
.travis.yml
|
language: android
android:
components:
- tools
- platform-tools
- tools
# Build tools version.
- build-tools-26.0.1
# Android complile sdk version.
- android-26
# Additional components.
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
- addon-google_apis-google-19
# System image for emulator.
- sys-img-armeabi-v7a-addon-google_apis-google-26
licenses:
- 'android-sdk-license-.+'
# Emulator Management: Create, Start and Wait
before_script:
- echo no | android create avd --force -n test -t "android-26" --abi google_apis/armeabi-v7a -- tag google_apis
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
script:
- android list target
- ./gradlew connectedAndroidTest
|
language: android
android:
components:
- tools
- platform-tools
- tools
# Build tools version.
- build-tools-26.0.1
# Android compile sdk version.
- android-26
# Additional components.
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
- addon-google_apis-google-19
# System image for emulator.
- sys-img-armeabi-v7a-addon-google_apis-google-26
licenses:
- 'android-sdk-license-.+'
# Emulator Management: Create, Start and Wait
before_script:
- echo no | android create avd --force -n test -t "android-26" --abi google_apis/armeabi-v7a --tag google_apis
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
script:
- android list target
- ./gradlew connectedAndroidTest
|
Fix syntax issue in CI script
|
Fix syntax issue in CI script
|
YAML
|
mit
|
crazyhitty/TravisCIAndroidDemo
|
0f8e375b7bf80b140877e59cd8f4d3f28d23c5ba
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.2.2
- 1.3
install:
- go get code.google.com/p/go.tools/cmd/vet
- go get -t -v ./...
- export GOBIN=~/bin
- export PATH=$GOBIN:$PATH
- go install github.com/rjeczalik/which/cmd/gowhich
script:
- go tool vet -all .
- go build ./...
- go test -race -v ./...
- [ "$(gowhich gowhich)" == "github.com/rjeczalik/which/cmd/gowhich" ]
|
language: go
go:
- 1.3
install:
- go get code.google.com/p/go.tools/cmd/vet
- go get -t -v ./...
- go install -a -race std
script:
- go tool vet -all .
- go build ./...
- go test -race -v ./...
|
Update Travis CI configuration file
|
Update Travis CI configuration file
|
YAML
|
mit
|
rjeczalik/which
|
81d9af30feeb90afcca686850ab9f729717cf940
|
.travis.yml
|
.travis.yml
|
language: rust
rust: nightly
os:
- linux
- osx
sudo: false
install:
- .travis/docs/install
script:
- cargo rustc --verbose -- -C llvm-args=-verify-machineinstrs
- cargo test --verbose
- cargo bench --verbose
- cargo doc
after_success:
- .travis/docs/after_success
notifications:
irc: "irc.mozilla.org#libfringe"
|
language: rust
rust: nightly
os:
- linux
- osx
sudo: false
install:
- .travis/docs/install
script:
- cargo rustc --verbose -- -C llvm-args=-verify-machineinstrs
- cargo test --verbose
- cargo bench --verbose
- cargo doc
after_success:
- .travis/docs/after_success
notifications:
irc:
channels:
- "irc.mozilla.org#libfringe"
skip_join: true
|
Set skip_join for Travis CI notifications
|
Set skip_join for Travis CI notifications [skip-ci]
|
YAML
|
apache-2.0
|
nathan7/libfringe,nathan7/libfringe
|
084a1ee66ca9f109a62f72d739ca119a7385b428
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
before_script:
- npm install -g gulp
- gulp lint
after_success: npm run coveralls
# whitelist
branches:
only:
- master
notifications:
email:
- [email protected]
|
sudo: false
language: node_js
node_js:
- '8'
- '6'
- '4'
before_script:
- npm install -g gulp
- gulp lint
after_success: npm run coveralls
# whitelist
branches:
only:
- master
notifications:
email:
- [email protected]
|
Update node versions for Travis CI.
|
Update node versions for Travis CI.
|
YAML
|
mit
|
jonkemp/style-selector
|
4e077b17f668fc756d1e7f766f07be943f35e78b
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.4
- 1.5
- tip
before_script:
- go vet ./...
|
language: go
go:
- 1.4
- 1.5
- 1.6
- tip
before_script:
- go vet ./...
|
Enable building against go 1.6
|
Enable building against go 1.6
|
YAML
|
mit
|
caio/go-tdigest
|
624af59d911d57bae8146f09ffbf8ee84dcdc90f
|
.travis.yml
|
.travis.yml
|
language: java
sudo: false # faster builds
# first try
before_install:
- pip install --user codecov
after_success:
- codecov
jdk:
- oraclejdk7
- openjdk7
os:
- linux
- osx
|
language: java
sudo: false # faster builds
# first try
before_install:
- pip install --user codecov
after_success:
- codecov
jdk:
- oraclejdk7
- openjdk7
|
Revert "Add Mac OSX builds to Travis CI"
|
Revert "Add Mac OSX builds to Travis CI"
This reverts commit ea6713f3c737f62b312e13e8bedf1fb81a768cf5.
|
YAML
|
mit
|
serayuzgur/heartbeat
|
bb8ed2ff47e96d166e4896e6a38a2207c0b22ec1
|
.travis.yml
|
.travis.yml
|
# http://docs.travis-ci.com
language: php
php:
- "5.5"
before_install:
- composer --version
- git --version
- node --version
- npm --version
before_script:
- composer install
- npm install
script:
- ./vendor/bin/phpcs --standard=PSR1,PSR2 src
- grunt build --verbose
- grunt setup --verbose
|
# http://docs.travis-ci.com
language: php
php:
- "5.6"
before_install:
- composer --version
- git --version
- node --version
- npm --version
before_script:
- composer install
- npm install
script:
- ./vendor/bin/phpcs --standard=PSR1,PSR2 src
- grunt build --verbose
- grunt setup --verbose
|
Update PHP version in Travis
|
Update PHP version in Travis
|
YAML
|
mit
|
textpattern/textpattern-forum,textpattern/textpattern-forum,textpattern/textpattern-forum
|
b778d193a22392e3f22a6965f98f51b9222005c2
|
.travis.yml
|
.travis.yml
|
dist: xenial
language: cpp
script:
- mkdir build && cd build
- cmake ..
- cmake --build .
- ./mc_01
|
dist: trusty
language: cpp
script:
- mkdir build && cd build
- cmake ..
- cmake --build .
- ./mc_01
|
Return ubuntu version to trusty
|
Return ubuntu version to trusty
|
YAML
|
apache-2.0
|
willir/cppconf2017-mc1,willir/cppconf2017-mc1,willir/cppconf2017-mc1
|
a88364730dfc233cd16c1059ff423423de8b578e
|
integration/signer/policy_template.yaml
|
integration/signer/policy_template.yaml
|
apiVersion: kritis.grafeas.io/v1beta1
kind: VulnzSigningPolicy
metadata:
name: my-vsp
spec:
imageVulnerabilityRequirements:
maximumFixableSeverity: MEDIUM
maximumUnfixableSeverity: MEDIUM
allowlistCVEs:
- projects/goog-vulnz/notes/CVE-2020-10543
- projects/goog-vulnz/notes/CVE-2020-10878
- projects/goog-vulnz/notes/CVE-2020-14155
|
apiVersion: kritis.grafeas.io/v1beta1
kind: VulnzSigningPolicy
metadata:
name: my-vsp
spec:
imageVulnerabilityRequirements:
maximumFixableSeverity: MEDIUM
maximumUnfixableSeverity: MEDIUM
allowlistCVEs:
- projects/goog-vulnz/notes/CVE-2020-10543
- projects/goog-vulnz/notes/CVE-2020-10878
- projects/goog-vulnz/notes/CVE-2020-14155
- projects/goog-vulnz/notes/CVE-2019-25013
|
Update policy template in signer test.
|
Update policy template in signer test.
|
YAML
|
apache-2.0
|
grafeas/kritis,grafeas/kritis,grafeas/kritis
|
15c702be14bbcc436587a44e7f0d716584309381
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
rvm:
- 2.0
- 2.1
- 2.2
matrix:
include:
- rvm: 1.9.3
env: BUNTO_VERSION=1.0
env:
matrix:
- BUNTO_VERSION=1.0
- BUNTO_VERSION=2.0
branches:
only:
- master
install:
- travis_retry script/bootstrap
script: script/cibuild
notifications:
irc:
on_success: change
on_failure: change
channels:
- irc.freenode.org#bunto
template:
- '%{repository}#%{build_number} %{message} %{build_url}'
email:
on_success: never
on_failure: change
|
sudo: false
language: ruby
rvm:
- 2.0
- 2.1
- 2.2
matrix:
include:
- rvm: 1.9.3
env: BUNTO_VERSION=1.0
env:
matrix:
- BUNTO_VERSION=1.0
- BUNTO_VERSION=2.0
branches:
only:
- master
before_script:
- chmod +x script/bootstrap
- chmod +x script/cibuild
- chmod +x script/rebund
- chmod +x script/release
install:
- travis_retry script/bootstrap
script: script/cibuild
notifications:
irc:
on_success: change
on_failure: change
channels:
- irc.freenode.org#bunto
template:
- '%{repository}#%{build_number} %{message} %{build_url}'
email:
on_success: never
on_failure: change
|
Add before_script to repair Travis CI "Permission denied" error
|
Add before_script to repair Travis CI "Permission denied" error
|
YAML
|
mit
|
bunto/bunto-coffeescript,bunto/bunto-coffeescript
|
2c889720e5e4ac0571d7d2cfbe7f07516750adc7
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- "0.11"
- "0.12"
- "4.0"
- "4.1"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
sudo: false
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4.0"
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation.
|
Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation.
|
YAML
|
mit
|
cliffano/breaker
|
70086f205810ec3084878cffc609d52495f2a9a4
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.1.3
script: 'bundle exec rake'
|
language: ruby
rvm:
- 2.1.2
- 2.1.3
script: 'bundle exec rake'
|
Remove ruby versions for Travis
|
Remove ruby versions for Travis
|
YAML
|
mit
|
hugolantaume/iso-swift,hugolantaume/iso-swift
|
0513fb150efa8adbc903642702ce169f2cb92c15
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
- "0.12"
|
language: node_js
node_js:
- "0.12"
- "4.0"
- "4.1"
|
Update Node versions at Travis
|
Update Node versions at Travis
Dropped support for Node 0.10. There's no `execSync`...
|
YAML
|
mit
|
hexsprite/focuster-react-typeahead,hexsprite/focuster-react-typeahead,austinsc/react-gooey,austinsc/react-gooey,survivejs/react-component-boilerplate,yeyus/react-vertical-timeline,ClarityMovement/clarity-components,Stupidism/stupid-rc-starter,efegurkan/interval-picker,efegurkan/interval-picker,mateim24/react-input-calendar
|
40e19bcb3c4ebec30a15bec3be5791e94967f6fa
|
.travis.yml
|
.travis.yml
|
language: python
matrix:
fast_finish: true
include:
- sudo: false
script:
- ./mach test-tidy --no-progress --all
- ./mach test-tidy --no-progress --self-test
cache: false
- sudo: 9000
dist: trusty
script:
- ./mach build -d --verbose
- ./mach test-compiletest
- ./mach test-unit
- ./mach build-geckolib
# disabled due to #14723
#- ./mach test-stylo
- bash etc/ci/check_no_panic.sh
- bash etc/ci/lockfile_changed.sh
- bash etc/ci/manifest_changed.sh
cache:
directories:
- .cargo
- .servo
- $HOME/.ccache
env: CCACHE=/usr/bin/ccache
addons:
apt:
packages:
- cmake
- freeglut3-dev
- gperf
- libosmesa6-dev
- libgles2-mesa-dev
- python-virtualenv
- xorg-dev
- ccache
- libdbus-glib-1-dev
- libavformat-dev
- libavcodec-dev
- libavutil-dev
- libedit-dev
branches:
only:
- master
notifications:
webhooks:
- https://buildtimetrend.herokuapp.com/travis
|
language: python
matrix:
fast_finish: true
include:
- sudo: false
script:
- ./mach test-tidy --no-progress --all
- ./mach test-tidy --no-progress --self-test
cache: false
- sudo: 9000
dist: trusty
script:
- ./mach build -d --verbose
- ./mach test-compiletest
- ./mach test-unit
# disabled due to #14723
#- ./mach build-geckolib
#- ./mach test-stylo
- bash etc/ci/check_no_panic.sh
- bash etc/ci/lockfile_changed.sh
- bash etc/ci/manifest_changed.sh
cache:
directories:
- .cargo
- .servo
- $HOME/.ccache
env: CCACHE=/usr/bin/ccache
addons:
apt:
packages:
- cmake
- freeglut3-dev
- gperf
- libosmesa6-dev
- libgles2-mesa-dev
- python-virtualenv
- xorg-dev
- ccache
- libdbus-glib-1-dev
- libavformat-dev
- libavcodec-dev
- libavutil-dev
- libedit-dev
branches:
only:
- master
notifications:
webhooks:
- https://buildtimetrend.herokuapp.com/travis
|
Disable geckolib build as well.
|
Disable geckolib build as well.
|
YAML
|
mpl-2.0
|
dsandeephegde/servo,nnethercote/servo,nnethercote/servo,emilio/servo,dati91/servo,notriddle/servo,larsbergstrom/servo,KiChjang/servo,saneyuki/servo,dsandeephegde/servo,fiji-flo/servo,thiagopnts/servo,paulrouget/servo,paulrouget/servo,szeged/servo,peterjoel/servo,larsbergstrom/servo,saneyuki/servo,canaltinova/servo,cbrewster/servo,fiji-flo/servo,jimberlage/servo,anthgur/servo,KiChjang/servo,eddyb/servo,DominoTree/servo,dati91/servo,anthgur/servo,ConnorGBrewster/servo,dati91/servo,dati91/servo,avadacatavra/servo,KiChjang/servo,eddyb/servo,ConnorGBrewster/servo,canaltinova/servo,SimonSapin/servo,anthgur/servo,emilio/servo,rnestler/servo,SimonSapin/servo,eddyb/servo,thiagopnts/servo,dsandeephegde/servo,notriddle/servo,splav/servo,splav/servo,jimberlage/servo,nnethercote/servo,nnethercote/servo,splav/servo,upsuper/servo,pyfisch/servo,CJ8664/servo,notriddle/servo,canaltinova/servo,notriddle/servo,mattnenterprise/servo,emilio/servo,rnestler/servo,avadacatavra/servo,larsbergstrom/servo,cbrewster/servo,sadmansk/servo,larsbergstrom/servo,szeged/servo,emilio/servo,ConnorGBrewster/servo,jimberlage/servo,anthgur/servo,paulrouget/servo,rnestler/servo,upsuper/servo,sadmansk/servo,notriddle/servo,thiagopnts/servo,dati91/servo,DominoTree/servo,nnethercote/servo,rnestler/servo,CJ8664/servo,peterjoel/servo,szeged/servo,larsbergstrom/servo,avadacatavra/servo,dati91/servo,peterjoel/servo,splav/servo,cbrewster/servo,DominoTree/servo,DominoTree/servo,szeged/servo,eddyb/servo,szeged/servo,emilio/servo,avadacatavra/servo,saneyuki/servo,CJ8664/servo,paulrouget/servo,emilio/servo,jimberlage/servo,emilio/servo,anthgur/servo,splav/servo,CJ8664/servo,canaltinova/servo,dsandeephegde/servo,sadmansk/servo,mattnenterprise/servo,peterjoel/servo,thiagopnts/servo,CJ8664/servo,sadmansk/servo,avadacatavra/servo,szeged/servo,upsuper/servo,saneyuki/servo,pyfisch/servo,thiagopnts/servo,cbrewster/servo,peterjoel/servo,dsandeephegde/servo,sadmansk/servo,larsbergstrom/servo,cbrewster/servo,pyfisch/servo,mattnenterprise/servo,saneyuki/servo,paulrouget/servo,dsandeephegde/servo,KiChjang/servo,sadmansk/servo,splav/servo,fiji-flo/servo,sadmansk/servo,pyfisch/servo,notriddle/servo,jimberlage/servo,notriddle/servo,KiChjang/servo,upsuper/servo,mattnenterprise/servo,canaltinova/servo,szeged/servo,peterjoel/servo,SimonSapin/servo,pyfisch/servo,dati91/servo,mattnenterprise/servo,rnestler/servo,rnestler/servo,emilio/servo,dati91/servo,eddyb/servo,mattnenterprise/servo,pyfisch/servo,upsuper/servo,mbrubeck/servo,ConnorGBrewster/servo,nnethercote/servo,peterjoel/servo,nnethercote/servo,larsbergstrom/servo,szeged/servo,notriddle/servo,jimberlage/servo,fiji-flo/servo,rnestler/servo,eddyb/servo,mbrubeck/servo,fiji-flo/servo,pyfisch/servo,nnethercote/servo,KiChjang/servo,fiji-flo/servo,upsuper/servo,ConnorGBrewster/servo,splav/servo,mbrubeck/servo,nnethercote/servo,paulrouget/servo,avadacatavra/servo,CJ8664/servo,anthgur/servo,saneyuki/servo,mattnenterprise/servo,avadacatavra/servo,CJ8664/servo,SimonSapin/servo,jimberlage/servo,KiChjang/servo,peterjoel/servo,emilio/servo,mbrubeck/servo,CJ8664/servo,SimonSapin/servo,ConnorGBrewster/servo,DominoTree/servo,DominoTree/servo,DominoTree/servo,paulrouget/servo,cbrewster/servo,thiagopnts/servo,pyfisch/servo,eddyb/servo,fiji-flo/servo,dsandeephegde/servo,paulrouget/servo,SimonSapin/servo,canaltinova/servo,splav/servo,nnethercote/servo,emilio/servo,mbrubeck/servo,rnestler/servo,mbrubeck/servo,ConnorGBrewster/servo,szeged/servo,splav/servo,dsandeephegde/servo,saneyuki/servo,peterjoel/servo,larsbergstrom/servo,upsuper/servo,paulrouget/servo,anthgur/servo,thiagopnts/servo,thiagopnts/servo,upsuper/servo,jimberlage/servo,KiChjang/servo,szeged/servo,DominoTree/servo,pyfisch/servo,notriddle/servo,mbrubeck/servo,mattnenterprise/servo,canaltinova/servo,pyfisch/servo,canaltinova/servo,eddyb/servo,SimonSapin/servo,saneyuki/servo,paulrouget/servo,SimonSapin/servo,KiChjang/servo,DominoTree/servo,sadmansk/servo,jimberlage/servo,cbrewster/servo,avadacatavra/servo,ConnorGBrewster/servo,saneyuki/servo,peterjoel/servo,splav/servo,saneyuki/servo,cbrewster/servo,fiji-flo/servo,KiChjang/servo,anthgur/servo,notriddle/servo,larsbergstrom/servo,larsbergstrom/servo,mbrubeck/servo,DominoTree/servo
|
ad21316db98dfaf8b10eb842d0df0cdf695ca014
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.8"
- "0.10"
git:
depth: 10
branches:
only:
- master
before_install:
- npm install -g npm
- npm --version
|
language: node_js
node_js:
- "4"
- "5"
git:
depth: 10
branches:
only:
- master
before_install:
- npm install -g npm
- npm --version
|
Test Node.js 4 and 5 on Travis
|
Test Node.js 4 and 5 on Travis
Closes https://github.com/KenanY/alea-random/issues/8
|
YAML
|
mit
|
KenanY/alea-random
|
53ba44365d15622ca0aee5f6c8edec1f47c163b9
|
.travis.yml
|
.travis.yml
|
# Passes arguments to bundle install (http://gembundler.com/man/bundle-install.1.html)
# bundler_args:
# Specify which ruby versions you wish to run your tests on, each version will be used
rvm:
- 1.8.7
- ree
- 1.9.3
- jruby
# - ruby-head # RedCloth does not compile on head
# - 1.8.6 # Does not work on travis-ci
# - 1.9.1 # Does not work on travis-ci
# - 1.9.2 # Does not work on travis-ci ..really?
# Define how to run your tests (defaults to `bundle exec rake` or `rake` depending on whether you have a `Gemfile`)
script: "bundle exec rake travis_ci"
# Define tasks to be completed before and after tests run . Will allow folding of content on frontend
#before_script:
# - command_1
# - command_2
#
#after_script:
# - command_1
# - command_2
# Specify an ENV variable to run before: 'bundle install' and 'rake' (or your defined 'script')
env: "CI=1 SUITE=1 "
# Specify the recipients for email notification
#notifications:
# recipients:
# - email-address-1
# - email-address-2
# Disable email notifications
#notifications:
# disabled: true
|
# Passes arguments to bundle install (http://gembundler.com/man/bundle-install.1.html)
# bundler_args:
# Specify which ruby versions you wish to run your tests on, each version will be used
rvm:
- 1.8.7
- ree
- 1.9.3
# - jruby # see http://jira.codehaus.org/browse/JRUBY-7007
# - ruby-head # RedCloth does not compile on head
# - 1.8.6 # Does not work on travis-ci
# - 1.9.1 # Does not work on travis-ci
# - 1.9.2 # Does not work on travis-ci ..really?
# Define how to run your tests (defaults to `bundle exec rake` or `rake` depending on whether you have a `Gemfile`)
script: "bundle exec rake travis_ci"
# Define tasks to be completed before and after tests run . Will allow folding of content on frontend
#before_script:
# - command_1
# - command_2
#
#after_script:
# - command_1
# - command_2
# Specify an ENV variable to run before: 'bundle install' and 'rake' (or your defined 'script')
env: "CI=1 SUITE=1 "
# Specify the recipients for email notification
#notifications:
# recipients:
# - email-address-1
# - email-address-2
# Disable email notifications
#notifications:
# disabled: true
|
Disable JRuby testing due to bugs in JRuby
|
Disable JRuby testing due to bugs in JRuby
|
YAML
|
mit
|
ohai/yard,thomthom/yard,lsegal/yard,jreinert/yard,iankronquist/yard,ohai/yard,alexdowad/yard,jreinert/yard,amclain/yard,alexdowad/yard,alexdowad/yard,iankronquist/yard,herosky/yard,herosky/yard,thomthom/yard,herosky/yard,amclain/yard,thomthom/yard,iankronquist/yard,amclain/yard,lsegal/yard,lsegal/yard,ohai/yard,jreinert/yard
|
d24c21811a31979d758478321c7dac987fb722e8
|
.travis.yml
|
.travis.yml
|
language: python
python:
- '2.7'
script: python tests/test_simplenote.py
deploy:
provider: pypi
user: mrtazz
password:
secure: pprhp5pZhC6e1drECVnDYnnsHOzCB2otsgKR9s+87TdLum6jiAzSu0Ai9lv3Z77s3Vb3VvjUkENUNC+LA82gvCkUSTBQD7BNLGEAnbT9SqDa+d1BdK5njWiumR92t6q5UyjbO0H6qO7JDEUGakz44aUs1gGBmi/9AS93VL2qwd0=
on:
tags: true
repo: mrtazz/simplenote.py
|
language: python
python:
- '2.7'
- '3.4'
script: python tests/test_simplenote.py
deploy:
provider: pypi
user: mrtazz
password:
secure: pprhp5pZhC6e1drECVnDYnnsHOzCB2otsgKR9s+87TdLum6jiAzSu0Ai9lv3Z77s3Vb3VvjUkENUNC+LA82gvCkUSTBQD7BNLGEAnbT9SqDa+d1BdK5njWiumR92t6q5UyjbO0H6qO7JDEUGakz44aUs1gGBmi/9AS93VL2qwd0=
on:
tags: true
repo: mrtazz/simplenote.py
|
Add Python 3.4 to Travis testing
|
Add Python 3.4 to Travis testing
I'm hoping it won't run these in parallel. If it does I'll have to back
out this change and just test against one version.
References #13
|
YAML
|
mit
|
mrtazz/simplenote.py
|
a38f973b1150686c934fdc202208b7756a78af94
|
.travis.yml
|
.travis.yml
|
language: scala
jdk:
- oraclejdk8
- openjdk7
- openjdk6
|
language: scala
scala:
- 2.10.5
- 2.11.7
jdk:
- oraclejdk8
- openjdk7
- openjdk6
|
Add support for Scala 2.10
|
Add support for Scala 2.10
|
YAML
|
mit
|
jehrhardt/play-ws-loadbalancer
|
99c5643c4bc3cc1b7511c144e112e4695bfc5c90
|
.travis.yml
|
.travis.yml
|
sudo: false
language: java
jdk: oraclejdk7
notifications:
irc: "chat.freenode.net#seedstack-dev"
after_success:
- echo "<settings><servers><server><id>sonatype-nexus-snapshots</id><username>\${env.SONATYPE_USER}</username><password>\${env.SONATYPE_PASS}</password></server></servers></settings>" > ~/settings.xml
- "[[ $TRAVIS_PULL_REQUEST == \"false\" && $TRAVIS_BRANCH == \"master\" ]] && mvn deploy --settings ~/settings.xml -DskipTests=true -Dmaven.javadoc.skip=true"
|
sudo: false
language: java
jdk: oraclejdk8
notifications:
irc: "chat.freenode.net#seedstack-dev"
cache:
directories:
- "$HOME/.m2/repository"
install: /bin/true
script:
- mvn -B -U -T 4 -Pjavadoc install
after_success:
- echo "<settings><servers><server><id>sonatype-nexus-snapshots</id><username>\${env.SONATYPE_USER}</username><password>\${env.SONATYPE_PASS}</password></server></servers></settings>" > ~/settings.xml
- "[[ $TRAVIS_PULL_REQUEST == \"false\" && $TRAVIS_BRANCH == \"master\" ]] && mvn deploy --settings ~/settings.xml -DskipTests=true -Dmaven.javadoc.skip=true"
|
Build with jdk8 and multithreaded
|
Build with jdk8 and multithreaded
|
YAML
|
mpl-2.0
|
seedstack/spring-bridge-addon,Red1L/seed-spring-extensions,seedstack/seed-spring-extensions
|
93fbec9186d82675033c9bbf679767177515d9e9
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "7"
cache:
yarn: true
directories:
- node_modules # NPM packages
- elm-stuff # Elm packages
- tests/elm-stuff # Elm testing packages
install:
- npm install -g elm
- npm install -y
- elm-package install -y
script: ./run-tests.sh
after_success:
- npm run-script build
- surge --project ./dist --domain the-deploy-button-acceptance.surge.sh
|
language: node_js
node_js:
- "7"
addons:
apt:
packages:
- oracle-java8-installer
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
yarn: true
directories:
- node_modules # NPM packages
- elm-stuff # Elm packages
- tests/elm-stuff # Elm testing packages
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
install:
- npm install -g elm
- npm install -y
- elm-package install -y
script: ./run-tests.sh
after_success:
- npm run-script build
- surge --project ./dist --domain the-deploy-button-acceptance.surge.sh
|
Upgrade Java and cache Gradle cache on TravisCI.
|
Upgrade Java and cache Gradle cache on TravisCI.
|
YAML
|
mit
|
WillowDeploy/willow-deploy,WillowDeploy/willow-deploy,WillowDeploy/willow-deploy,WillowDeploy/willow-deploy
|
a23688b1c13de39496748373e7e1a46cdb8976f8
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
sudo: required
services:
- docker
before_install:
- docker pull bit3/jsass-test-centos5
- docker pull bit3/jsass-test-centos6
- docker pull bit3/jsass-test-centos7
- docker pull bit3/jsass-test-ubuntu12.04
- docker pull bit3/jsass-test-ubuntu14.04
- mkdir -p $HOME/.gradle
- openssl aes-256-cbc -K $encrypted_7aff20607abf_key -iv $encrypted_7aff20607abf_iv -in gradle-travis.properties.enc -out $HOME/.gradle/gradle.properties -d
install: true
script:
- ./gradlew check runDockerTests
- "[[ $TRAVIS_PULL_REQUEST == false ]] && [[ $TRAVIS_REPO_SLUG == bit3/jsass ]] && [[ $TRAVIS_BRANCH == develop ]] && ./gradlew sonarqube -x test"
|
language: java
jdk:
- oraclejdk8
sudo: required
services:
- docker
before_install:
- docker pull bit3/jsass-test-centos5
- docker pull bit3/jsass-test-centos6
- docker pull bit3/jsass-test-centos7
- docker pull bit3/jsass-test-ubuntu12.04
- docker pull bit3/jsass-test-ubuntu14.04
- mkdir -p $HOME/.gradle
- openssl aes-256-cbc -K $encrypted_7aff20607abf_key -iv $encrypted_7aff20607abf_iv -in gradle-travis.properties.enc -out $HOME/.gradle/gradle.properties -d
install: true
script:
- ./gradlew check runDockerTests
after_script:
- "[[ $TRAVIS_PULL_REQUEST == false ]] && [[ $TRAVIS_REPO_SLUG == bit3/jsass ]] && [[ $TRAVIS_BRANCH == develop ]] && ./gradlew sonarqube -x test"
|
Move sonarqube scan into after_script section.
|
Move sonarqube scan into after_script section.
|
YAML
|
mit
|
bit3/jsass,bit3/jsass,bit3/jsass,Altometrics/jsass,Altometrics/jsass,Altometrics/jsass
|
90f76bec19131968f49c89ac79cfddb766d6f04a
|
.travis.yml
|
.travis.yml
|
language: python
dist: trusty
sudo: required
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
cache:
directories:
- $HOME/.cache/pip
before_install:
- sudo apt-get update
- pip install --disable-pip-version-check --upgrade pip
install:
- sudo apt-get install devscripts python-setuptools debhelper
- pip install pre-commit
script:
- pre-commit run --all-files
- pip install -e .
after_success:
- debuild -us -uc
- mkdir deploy
- mv ../*.deb deploy/yubikey-manager-$TRAVIS_BRANCH-HEAD.deb
deploy:
provider: s3
access_key_id: "$AWS_KEY_ID"
secret_access_key: "$AWS_SECRET_KEY"
bucket: "$AWS_BUCKET"
skip_cleanup: true
acl: public-read
region: eu-west-1
local-dir: "deploy/"
on:
all_branches: true
|
language: python
dist: trusty
sudo: required
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
cache:
directories:
- $HOME/.cache/pip
before_install:
- sudo apt-get update
- pip install --disable-pip-version-check --upgrade pip
install:
- sudo apt-get install devscripts python-setuptools debhelper
- pip install pre-commit
script:
- pre-commit run --all-files
- pip install -e .
after_success:
- debuild -us -uc
- mkdir deploy
- mv ../*.deb deploy/yubikey-manager-$TRAVIS_BRANCH-HEAD.deb
deploy:
provider: s3
access_key_id: "$AWS_KEY_ID"
secret_access_key: "$AWS_SECRET_KEY"
bucket: "$AWS_BUCKET"
skip_cleanup: true
acl: public-read
region: eu-west-1
local-dir: "deploy/"
upload-dir: "yubikey-manager"
on:
all_branches: true
|
Add upload dir to s3 deploy
|
Add upload dir to s3 deploy
|
YAML
|
bsd-2-clause
|
Yubico/yubikey-manager,Yubico/yubikey-manager
|
2d98c60ffb81fdb609ebf995afc66d1a9a0f92eb
|
.travis.yml
|
.travis.yml
|
language: python
dist: xenial
python:
- "3.6"
matrix:
fast_finish: true
include:
- env: TOXENV=django11-oscar16
- env: TOXENV=django20-oscar16
- env: TOXENV=django21-oscar16
before_install:
- export DJANGO_SETTINGS_MODULE=test.settings
install:
- pip install -e .[test]
- pip install tox
script:
- tox
|
language: python
dist: xenial
python:
- "3.6"
matrix:
fast_finish: true
include:
- env: TOXENV=django111-oscar16
- env: TOXENV=django20-oscar16
- env: TOXENV=django21-oscar16
before_install:
- export DJANGO_SETTINGS_MODULE=test.settings
install:
- pip install -e .[test]
- pip install tox
script:
- tox
|
Fix typo in environment matrix list.
|
Fix typo in environment matrix list.
|
YAML
|
bsd-3-clause
|
django-oscar/django-oscar-adyen,oscaro/django-oscar-adyen
|
1376a14d514dd9b78c376fda9102a9bd06bf7681
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1.3
- 2.2.0-preview1
env:
- TARGET=redmine REDMINE_VERSION=2.5.3
- TARGET=plugin REDMINE_VERSION=2.5.3
- TARGET=redmine REDMINE_VERSION=2.6.2
- TARGET=plugin REDMINE_VERSION=2.6.2
before_install: sh travis/before_install.sh
script: sh travis/exec_test.sh
matrix:
allow_failures:
- rvm: 2.2.0-preview1
|
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
env:
- TARGET=redmine REDMINE_VERSION=4.0.3
- TARGET=plugin REDMINE_VERSION=4.0.3
before_install: sh travis/before_install.sh
script: sh travis/exec_test.sh
|
Update test env for redmine4
|
Update test env for redmine4
|
YAML
|
mit
|
pinzolo/redmine_persist_wfmt,pinzolo/redmine_persist_wfmt,pinzolo/redmine_persist_wfmt
|
564cad380a8920b045492083d1fec35c969a9e37
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.0.0
- 2.2.0
- 2.2.1
- 2.2.2
- 2.3.0
- 2.3.1
notifications:
irc: "irc.freenode.org#juwelier"
|
language: ruby
rvm:
- 2.0.0
- 2.2.0
- 2.2.1
- 2.2.2
- 2.3.0
- 2.3.1
- 2.4.0
notifications:
irc: "irc.freenode.org#juwelier"
|
Add Ruby 2.4.0 to Travis
|
Add Ruby 2.4.0 to Travis
|
YAML
|
mit
|
flajann2/juwelier,flajann2/juwelier,flajann2/juwelier
|
bb122208752f7cec52159ef1968e2976b3531413
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
install:
- wget https://www.tracelytics.com/install_tracelytics.sh
- sudo sh ./install_tracelytics.sh f51e2a43-0ee5-4851-8a54-825773b3218e
services:
- mongodb
- memcached
- cassandra
|
language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
install:
- wget https://www.tracelytics.com/install_tracelytics.sh
- sudo sh ./install_tracelytics.sh f51e2a43-0ee5-4851-8a54-825773b3218e
before_script:
- bundle exec rake compile
services:
- mongodb
- memcached
- cassandra
|
Build the c extension before running tests
|
Build the c extension before running tests
|
YAML
|
apache-2.0
|
tlunter/oboe-ruby,appneta/ruby-traceview,tlunter/oboe-ruby,boyang-li/oboe-ruby,tlunter/oboe-ruby,boyang-li/oboe-ruby,boyang-li/oboe-ruby,boyang-li/oboe-ruby,appneta/ruby-traceview,appneta/ruby-traceview,tlunter/oboe-ruby,appneta/ruby-traceview
|
08920d06a1137c0eab3595e28b8a6f77d2eb8cbb
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
- hhvm
sudo: false
install:
- COMPOSER_ROOT_VERSION=`git describe --abbrev=0` 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_ROOT_VERSION=`git describe --abbrev=0` 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-labs/socket,reactphp/socket
|
2f92abed9d62cde2da39891c8ef560b2df2c5952
|
.travis.yml
|
.travis.yml
|
language: java
os: linux
dist: xenial
install: true
services:
- xvfb
addons:
chrome: stable
firefox: latest
sonarcloud:
organization: $SONARCLOUD_ORGANIZATION
token: $SONAR_TOKEN
before_script:
- export DISPLAY=:99.0
script:
- mvn test
- bash <(curl -s https://codecov.io/bash)
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then mvn sonar:sonar; fi
|
language: java
os: linux
dist: xenial
install: true
services:
- xvfb
git:
depth: false
addons:
chrome: stable
firefox: latest
sonarcloud:
organization: $SONARCLOUD_ORGANIZATION
token: $SONAR_TOKEN
before_script:
- export DISPLAY=:99.0
script:
- mvn test
- bash <(curl -s https://codecov.io/bash)
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then mvn sonar:sonar; fi
|
Disable git fetch depth limit in Travis
|
Disable git fetch depth limit in Travis
|
YAML
|
apache-2.0
|
bonigarcia/webdrivermanager,bonigarcia/webdrivermanager,bonigarcia/webdrivermanager
|
20036b79e7730f76e77e5ad989bc4e0084bf49c1
|
.travis.yml
|
.travis.yml
|
sudo: false
dist: xenial
language: python
cache: pip
python:
- "2.7"
- "3.5"
- "3.5"
- "3.6"
- "3.7"
- "nightly"
install:
- pip install -r dev-requirements.txt
- pip install -e .
- pip freeze
script:
- coverage erase
- coverage run --source pykwalify -p -m py.test -v
- py.test
- python setup.py sdist bdist
after_success:
- coverage combine
- coveralls
- "if [[ $TEST_PYCODESTYLE == '1' ]]; then pycodestyle --repeat --show-source --exclude=.venv,.tox,dist,docs,build,*.egg,pykwalify_install .; fi"
matrix:
allow_failures:
- python: "nightly"
|
sudo: false
dist: xenial
language: python
cache: pip
python:
- "2.7"
- "3.5"
- "3.5"
- "3.6"
- "3.7"
- "nightly"
install:
- pip install -r dev-requirements.txt
- pip install -e .
- pip freeze
script:
- coverage erase
- coverage run --source pykwalify -p -m py.test -v
- py.test
- python setup.py sdist bdist
after_success:
- coverage combine
- coveralls
- "if [[ $TEST_PYCODESTYLE == '1' ]]; then pycodestyle --repeat --show-source --exclude=.venv,.tox,dist,docs,build,*.egg,pykwalify_install .; fi"
matrix:
allow_failures:
- python: "nightly"
- python: 2.7
env: TEST_PYCODESTYLE=1
- python: 3.6
env: TEST_PYCODESTYLE=1
|
Add envrionment variables for testing pycodestyle
|
Add envrionment variables for testing pycodestyle
|
YAML
|
mit
|
grokzen/pykwalify
|
dae11486c8e4da1adf43a2cf6526c517dfd17b0b
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "8"
install:
- yarn global add lerna
- yarn bootstrap
script:
- yarn run check
after_script:
- codeclimate-test-reporter < coverage/lcov.info
addons:
code_climate:
repo_token: 18e1eef105275451c25392c4f6b07ae0cc4ca3f6c280f9ccfcad7a16c9068d47
notifications:
email: false
|
language: node_js
node_js:
- "8"
- "10"
- "12"
- "node"
install:
- yarn global add lerna
- yarn bootstrap
script:
- yarn run check
after_script:
- codeclimate-test-reporter < coverage/lcov.info
addons:
code_climate:
repo_token: 18e1eef105275451c25392c4f6b07ae0cc4ca3f6c280f9ccfcad7a16c9068d47
notifications:
email: false
|
Add NodeJS 10, 12 and latest (13) to CI matrix
|
Add NodeJS 10, 12 and latest (13) to CI matrix
|
YAML
|
mit
|
rofrischmann/fela,risetechnologies/fela,rofrischmann/fela,rofrischmann/fela,risetechnologies/fela,risetechnologies/fela
|
3abeb6d63b7126d8712e58a039093803bb2680f3
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
# TODO: make this work with the regular rake command
script: "bundle exec rake spec"
gemfile:
- Gemfile
before_script:
- mysql -e 'create database database_cleaner_test;'
- psql -c 'create database database_cleaner_test;' -U postgres
- cp db/sample.config.yml db/config.yml
services:
- mongodb
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
# TODO: make this work with the regular rake command
script: "bundle exec rake spec"
gemfile:
- Gemfile
before_script:
- mysql -e 'create database database_cleaner_test;'
- psql -c 'create database database_cleaner_test;' -U postgres
- cp db/sample.config.yml db/config.yml
services:
- mongodb
matrix:
allow_failures:
- rvm: 2.0.0
|
Add Ruby2.0.0 build in Travis-ci, and allowed to fail
|
Add Ruby2.0.0 build in Travis-ci, and allowed to fail
http://about.travis-ci.org/docs/user/build-configuration/#Rows-That-are-Allowed-To-Fail
|
YAML
|
mit
|
yangc5/playlister-sinatra-v-000,glebtv/database_cleaner,fajrif/database_cleaner,awilkening/database_cleaner,HaiTo/database_cleaner,yangc5/playlister-sinatra-v-000,yangc5/playlister-sinatra-v-000,reinaris/database_cleaner,yangc5/playlister-sinatra-v-000,claptimes5/database_cleaner,yangc5/playlister-sinatra-v-000,avalonmediasystem/database_cleaner,DatabaseCleaner/database_cleaner,amorphid/database_cleaner,DatabaseCleaner/database_cleaner,custora/database_cleaner,ericraio/database_cleaner,simonmorley/database_cleaner,0xCCD/database_cleaner,eliotsykes/database_cleaner,yangc5/playlister-sinatra-v-000,yangc5/playlister-sinatra-v-000
|
cb1909f858d945e0a5c1582ecf80714bb81ebdde
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.7-dev"
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "pypy"
install:
- "pip install wheel"
- "pip install -r requirements-dev.txt"
script:
- "pytest"
- "python setup.py bdist_wheel -d dist"
after_success:
- codecov
- "pip install dist/*.whl"
- "python -c 'import statsdmetrics'"
- "python -c 'from statsdmetrics.client import Client'"
- "python -c 'from statsdmetrics.client.tcp import TCPClient'"
notifications:
email: false
|
language: python
python:
- "3.7-dev"
- "3.6"
- "3.5"
- "3.4"
- "2.7"
- "pypy"
install:
- "pip install wheel"
- "pip install -r requirements-dev.txt"
script:
- "pytest"
- "python setup.py bdist_wheel -d dist"
after_success:
- codecov
- "pip install dist/*.whl"
- "python -c 'import statsdmetrics'"
- "python -c 'from statsdmetrics.client import Client'"
- "python -c 'from statsdmetrics.client.tcp import TCPClient'"
notifications:
email: false
|
Remove Python 3.3 from Travis config file
|
Remove Python 3.3 from Travis config file
|
YAML
|
mit
|
farzadghanei/statsd-metrics
|
7c0bc36fc5e6ffdce67d434d5ecefd21867da05d
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- "iojs"
before_install:
- npm install -g npm
before_script:
- npm install -g grunt-cli
matrix:
fast_finish: true
|
sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4.0"
- "4.1"
- "4.2"
- "5"
- "iojs"
before_install:
- npm install -g npm
before_script:
- npm install -g grunt-cli
matrix:
fast_finish: true
|
Test specific 4.x LTS NodeJS branches and latest 5.x.x branch
|
Test specific 4.x LTS NodeJS branches and latest 5.x.x branch
|
YAML
|
mit
|
gruntjs/grunt-legacy-util
|
d61a664133eea3954dfa76a4b7d83462ab91bd02
|
.travis.yml
|
.travis.yml
|
language: java
sudo: required
env:
- jdk_target=oraclejdk8
- jdk_target=openjdk8
before_install:
- if [["$jdk_target" == "openjdk8"]]; then sudo add-apt-repository ppa:openjdk-r/ppa -y; fi
- if [["$jdk_target" == "oraclejdk8"]]; then sudo add-apt-repository ppa:webupd8team/java -y; fi
- sudo apt-get update -qq
install:
- if [["$jdk_target" == "openjdk8"]]; then sudo apt-get install openjdk-8 -y; fi
- if [["$jdk_target" == "openjdk8"]]; then sudo apt-get install openjfx -y; fi
- if [["$jdk_target" == "oraclejdk8"]]; then sudo apt-get install --no-install-recommends oracle-java8-installer -y; fi
before_script:
- jdkswitcher use $jdk_target
- git submodule update --init --recursive
- chmod +x mvn
script:
- mvn clean install -DskipTests=true -Dgpg.skip=true
- mvn clean test -Dgpg.skip=true
cache:
directories:
- ${HOME}/.m2
|
language: java
os: linux
sudo: required
matrix:
include:
- jdk: oraclejdk7
env: jdk=oraclejdk7 custom_jdk=false
- jdk: openjdk7
env: jdk=openjdk7 custom_jdk=false
- env: jdk=oraclejdk8 custom_jdk=true
- env: jdk=openjdk8 custom_jdk=true
before_install:
- if [["$jdk" == "openjdk8"]]; then sudo add-apt-repository ppa:openjdk-r/ppa -y; fi
- if [["$jdk" == "oraclejdk8"]]; then sudo add-apt-repository ppa:webupd8team/java -y; fi
- sudo apt-get update -qq -y
install:
- if [["$jdk" == "openjdk8"]]; then sudo apt-get install openjdk-8 -y; fi
- if [["$jdk" == "openjdk8"]]; then sudo apt-get install openjfx -y; fi
- if [["$jdk" == "oraclejdk8"]]; then sudo apt-get install --no-install-recommends oracle-java8-installer -y; fi
before_script:
- if [["$custom_jdk" == "true"]]; then jdkswitcher use $jdk_target && jdkswitcher home; fi
- git submodule update --init --recursive
- chmod +x mvn
script:
- mvn clean install -DskipTests=true -Dgpg.skip=true
- mvn clean test -Dgpg.skip=true
cache:
directories:
- ${HOME}/.m2
|
Improve and refine Travis-CI configuration
|
Improve and refine Travis-CI configuration
Instead of using the env key as an improper stand-in for the built in
matrix feature, replace the env key values with an equivalent matrix
declaration. Modify the execution of the jdkswitcher program to only
occur if the custom_jdk variable is true. Controlling the execution of
jdk_switcher with a conditional should hopefully allow use to use the
built in jdk key for non-custom builds with officially supported JDK
versions and vendors. Before this change the jdkswitcher would smudge
the build machines JAVA_HOME in a way that might break official
Travis-CI Java builds.
A fix to the apt-get update command was made by adding a -y option;
previously the command would have waited for the interactive input of
a yes/no question, which would have broken the build (since the
Travis-CI builder is not interactive). All builds now explicitly state
that they should be built via the Linux OS with root access available
via sudo. An attempt was made to remove the need for sudo use and switch
to the much container builders (which have much faster spinup), but the
apt addon (the only alternative to using sudo) does not support the
needed Bash shell conditionals we use to allow both officially supported
and unsupported JDK versions.
Signed-off-by: Emily Mabrey <[email protected]>
|
YAML
|
mit
|
emabrey/emabrey-parent,emabrey/emabrey-parent
|
cd16f6074da64e8e08e09df4f34a5d79b56bbda6
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- openjdk8
- openjdk11
- oraclejdk8
install: /bin/true
script: mvn install
after_success:
- bash <(curl -s https://codecov.io/bash)
|
language: java
jdk:
- openjdk8
- openjdk11
- oraclejdk8
install: /bin/true
script: mvn install --quiet
after_success:
# https://docs.codecov.io/docs/about-the-codecov-bash-uploader
- bash <(curl -s https://codecov.io/bash)
|
Add back --quiet and a comment about codecov uploader
|
Add back --quiet and a comment about codecov uploader
--quiet makes maven less noisy about dependency retrieval, so that people can
actually look at the test results. The comment is for more information about why
we execute bash scripts from a url.
|
YAML
|
apache-2.0
|
awslabs/aws-dynamodb-encryption-java
|
c4b60383ee6689f9db4cde98e32a4984a2339be4
|
packages/no/non-empty-containers.yaml
|
packages/no/non-empty-containers.yaml
|
homepage: https://github.com/andrewthad/non-empty-containers#readme
changelog-type: ''
hash: 9c2e0c5af093f9d88994ec426c5c0554579ffaea6640d5c562441dd4c1128de2
test-bench-deps: {}
maintainer: [email protected]
synopsis: ''
changelog: ''
basic-deps:
base: ! '>=4.11 && <5'
containers: ! '>=0.5.10 && <0.7'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
author: Andrew Martin
latest: '0.1.1.0'
description-type: markdown
description: ! '# non-empty-containers
'
license-name: BSD3
|
homepage: https://github.com/andrewthad/non-empty-containers#readme
changelog-type: ''
hash: 8e12edba9288f8c5e53c8ad4003dace546fcc5a7e9828a88b614c3049924a13a
test-bench-deps: {}
maintainer: [email protected]
synopsis: ''
changelog: ''
basic-deps:
semigroupoids: ! '>=5.2.0 && <6.0'
base: ! '>=4.11 && <5'
containers: ! '>=0.5.10 && <0.7'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.1.2.0'
author: Andrew Martin
latest: '0.1.2.0'
description-type: markdown
description: ! '# non-empty-containers
'
license-name: BSD3
|
Update from Hackage at 2018-08-27T12:11:46Z
|
Update from Hackage at 2018-08-27T12:11:46Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
4381ec0f8a7daa15ef669309840ea2b7999eb41e
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.10
- 4
services:
- redis
|
sudo: false
language: node_js
node_js:
- 4.0
- 4
- 5
services:
- redis
|
Drop support of [email protected] and cover node@5
|
Drop support of [email protected] and cover node@5
From https://github.com/hapijs/catbox/commit/f0eeaac7adce4135669f2446c6e41ce725069c7a
|
YAML
|
bsd-3-clause
|
lloydbenson/catbox-redis
|
58a01286439f620bfabb2eb8fa952ca53856dc9b
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.2
- 1.8.7
bundler_args: --without development
before_script:
- "mysql -e 'create database one_click_test;' > /dev/null"
- "bundle exec rake oco:generate_config db:migrate"
- "bundle exec rake oco:install_wkhtmltopdf"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: bundle exec cucumber --require features features/association_founding/accepting_a_founding_member_invitation.feature
branches:
only:
- master
- v1.x
notifications:
recipients:
- [email protected]
irc: "irc.freenode.net#oneclickorgs"
|
language: ruby
rvm:
- 1.9.2
- 1.8.7
bundler_args: --without development
before_script:
- "mysql -e 'create database one_click_test;' > /dev/null"
- "bundle exec rake oco:generate_config db:migrate"
- "bundle exec rake oco:install_wkhtmltopdf"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: bundle exec rake spec cucumber
branches:
only:
- master
- v1.x
notifications:
recipients:
- [email protected]
irc: "irc.freenode.net#oneclickorgs"
|
Revert "Travis: Restrict tests for debugging."
|
Revert "Travis: Restrict tests for debugging."
This reverts commit afeba9c93421edaa51e020b3b70d2a443ef1b0ae.
|
YAML
|
agpl-3.0
|
oneclickorgs/one-click-orgs,oneclickorgs/one-click-orgs,oneclickorgs/one-click-orgs,oneclickorgs/one-click-orgs
|
5f31bfd08bd71ca7f656a94d3ca5e9237911dc3e
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- composer self-update
install:
- composer install
|
language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- composer self-update
install:
- composer install
script:
- ./vendor/bin/phpunit
|
Swap over to project phpunit rather than relying on Travis' global version
|
Swap over to project phpunit rather than relying on Travis' global version
|
YAML
|
mit
|
jall/AopMonologBundle
|
5b2760efa42d85336a93b76e5bc93ed92fbcccd6
|
.travis.yml
|
.travis.yml
|
os: linux
dist: xenial
language: python
jobs:
include:
- name: 3.6 Metrics
python: 3.6
env: TOXENV=py36-metrics
- name: 3.6 Metrics API
python: 3.6
env: TOXENV=py36-metrics_api
- name: 3.7 Metrics
python: 3.7
env: TOXENV=py37-metrics
- name: 3.7 Metrics API
python: 3.7
env: TOXENV=py37-metrics_api
- name: 3.8 Metrics
python: 3.8
env: TOXENV=py38-metrics
- name: 3.8 Metrics API
python: 3.8
env: TOXENV=py38-metrics_api
install:
- pip install -r requirements.txt
- pip install tox
- augur configure generate
script:
- tox
|
os: linux
dist: xenial
language: python
jobs:
include:
- name: 3.6 Metrics
python: 3.6
env: TOXENV=py36-metrics
- name: 3.6 Metrics API
python: 3.6
env: TOXENV=py36-metrics_api
- name: 3.7 Metrics
python: 3.7
env: TOXENV=py37-metrics
- name: 3.7 Metrics API
python: 3.7
env: TOXENV=py37-metrics_api
- name: 3.8 Metrics
python: 3.8
env: TOXENV=py38-metrics
- name: 3.8 Metrics API
python: 3.8
env: TOXENV=py38-metrics_api
install:
- pip install .[dev]
- augur configure generate
script:
- tox
|
Update Travis CI build command
|
Update Travis CI build command
Signed-off-by: Carter Landis <[email protected]>
|
YAML
|
mit
|
OSSHealth/ghdata,OSSHealth/ghdata,OSSHealth/ghdata
|
2b821c4ae97f1b84a678cb7bd7d6a158d4c76712
|
.travis.yml
|
.travis.yml
|
language: c
compiler: gcc
script:
- scons mode=debug
- scons -c; scons mode=release
- ./tesstest
- scons -c; scons mode=release32
- ./tesstest
- cd cookbook; make all
|
language: c
compiler: gcc
install:
- sudo apt-get install matplotlib numpy
# For cross-compiling 32bit binaries (mode=release32)
- sudo apt-get install libc6-dev-i386
script:
- scons mode=debug
- scons -c; scons mode=release
- ./tesstest
- scons -c; scons mode=release32
- ./tesstest
- cd cookbook; make all
|
Install missing libs in Travis config
|
Install missing libs in Travis config
Forgot to install numpy and matplotlib and the required 32bit libraries
for cross-compiling.
|
YAML
|
bsd-3-clause
|
leouieda/tesseroids,leouieda/tesseroids,leouieda/tesseroids
|
ffdc2d519ab7f30e7d16490b37fe2fa08be00c3d
|
.travis.yml
|
.travis.yml
|
language: c
compiler:
- gcc
before_install: sudo apt-get install check doxygen splint
script: ./autogen.sh && ./configure && make check
notifications:
email:
recipients:
- [email protected]
|
language: c
compiler:
- gcc
before_install: sudo apt-get install check doxygen splint
install:
# Deal with issue on Travis builders
# https://github.com/travis-ci/travis-cookbooks/issues/155
- "sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm"
script: ./autogen.sh && ./configure && make check
notifications:
email:
recipients:
- [email protected]
|
Deal with /dev/shm issue on Travis builders
|
Deal with /dev/shm issue on Travis builders
https://github.com/travis-ci/travis-cookbooks/issues/155
Signed-off-by: Angus Salkeld <[email protected]>
|
YAML
|
lgpl-2.1
|
gao-yan/libqb,gao-yan/libqb,davidvossel/libqb,rubenk/libqb,kgaillot/libqb,kgaillot/libqb,kgaillot/libqb,davidvossel/libqb,ClusterLabs/libqb,ClusterLabs/libqb,rubenk/libqb,ClusterLabs/libqb
|
3391af8a8ddd4b3e5eaf8f7a817bbb30cc47e9fc
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.4.0
- 2.2
- 2.0
env:
global:
- ETCD_VERSION=v3.1.6
install:
- bundle install
- wget https://github.com/coreos/etcd/releases/download/$ETCD_VERSION/etcd-$ETCD_VERSION-linux-amd64.tar.gz -O etcd.tar.gz --no-check-certificate
- tar zxvf etcd.tar.gz
- export PATH=$PATH:etcd-$ETCD_VERSION-linux-amd64
script: bundle exec rspec
|
language: ruby
rvm:
- 2.4.0
- 2.2
- 2.0
env:
global:
- ETCD_VERSION=v3.2.0
install:
- bundle install
- wget https://github.com/coreos/etcd/releases/download/$ETCD_VERSION/etcd-$ETCD_VERSION-linux-amd64.tar.gz -O etcd.tar.gz --no-check-certificate
- tar zxvf etcd.tar.gz
- export PATH=$PATH:etcd-$ETCD_VERSION-linux-amd64
script: bundle exec rspec
|
Build etcdv3 with version 3.2
|
Build etcdv3 with version 3.2
|
YAML
|
mit
|
davissp14/etcdv3-ruby
|
ef2646d440ff115fbda20d8e9504b65af9e2db29
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo apt-get -qq update
- sudo apt-get install -qq libhdf5-serial-dev python-h5py
- sudo apt-get install -qq libatlas-dev libatlas-base-dev gfortran
- sudo apt-get install -qq python-numpy python-scipy
- sudo apt-get install -qq python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly
# command to install dependencies
#install:
# - "pip install -r requirements.txt --use-mirrors"
- python setup.py install
# command to run tests
script:
- py.test tests --ignore tests/sandbox
# - "python setup.py test"
|
language: python
python:
- "2.6"
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo apt-get -qq update
- sudo apt-get install -qq libhdf5-serial-dev python-h5py
- sudo apt-get install -qq libatlas-dev libatlas-base-dev gfortran
- sudo apt-get install -qq python-numpy python-scipy python-matplotlib
- sudo apt-get install -qq python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly
# command to install dependencies
#install:
# - "pip install -r requirements.txt --use-mirrors"
- python setup.py install
# command to run tests
script:
- py.test tests --ignore tests/sandbox
# - "python setup.py test"
|
Add matplotlib dependency in Travis
|
Add matplotlib dependency in Travis
|
YAML
|
agpl-3.0
|
Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide
|
71d195f17f2cbfd81f4883f61ae0c522783384fa
|
.travis.yml
|
.travis.yml
|
# http://about.travis-ci.org/docs/user/build-configuration/
before_script: "git submodule update --init"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- rbx-19mode
matrix:
allow_failures:
- rvm: 1.8.7
notifications:
recipients:
- [email protected]
|
# http://about.travis-ci.org/docs/user/build-configuration/
before_script: "git submodule update --init"
rvm:
- 2.0.0
- 2.1.6
- 2.2.2
notifications:
recipients:
- [email protected]
|
Update Travis CI Ruby versions
|
Update Travis CI Ruby versions
Only test against actively maintained Ruby versions.
|
YAML
|
mit
|
nesquena/sheet_mapper
|
01cc5cf0f04516ecede8df680c3c2f66ff78ba1a
|
.travis.yml
|
.travis.yml
|
language: cpp
sudo: false
compiler:
- clang
- gcc
addons:
apt:
sources:
- boost-latest
- ubuntu-toolchain-r-test
packages:
- cmake
- libboost-all-dev
- g++-4.8
env:
- CXX=g++-4.8
before_install:
- mkdir ~/cmake_tmp
- cd ~/cmake_tmp
- wget --no-check-certificate http://www.cmake.org/files/v3.3/cmake-3.3.2-Linux-x86_64.tar.gz -O cmake3.tar.gz
- tar xf cmake3.tar.gz -C . --strip-components=1
- export PATH=~/cmake_tmp/bin:$PATH
- cd -
before_script:
- export CXX=g++4.8
- CC='gcc-4.8' CXX='g++-4.8' cmake -G"Unix Makefiles"
- touch configure
- chmod +x configure
notifications:
email: false
|
language: cpp
sudo: false
matrix:
include:
- compiler: clang
- compiler: gcc
env:
- CC='gcc-4.8' CXX='g++4.8'
addons:
apt:
sources:
- boost-latest
- ubuntu-toolchain-r-test
packages:
- cmake
- libboost-all-dev
- g++-4.8
before_install:
- mkdir ~/cmake_tmp
- cd ~/cmake_tmp
- wget --no-check-certificate http://www.cmake.org/files/v3.3/cmake-3.3.2-Linux-x86_64.tar.gz -O cmake3.tar.gz
- tar xf cmake3.tar.gz -C . --strip-components=1
- export PATH=~/cmake_tmp/bin:$PATH
- cd -
before_script:
- cmake -G"Unix Makefiles"
- touch configure
- chmod +x configure
notifications:
email: false
|
Define env vars only for compiler = gcc
|
Define env vars only for compiler = gcc
|
YAML
|
bsd-3-clause
|
Superlokkus/pagefault_measure,Superlokkus/pagefault_measure
|
8f44001418e5a7d7f373f03ce78bf174664ed75d
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: false
node_js:
- node
- iojs
- 6
- 5
- 4
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
matrix:
fast_finish: true
|
language: node_js
sudo: false
node_js:
- node
- 6
- 5
- 4
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
matrix:
fast_finish: true
|
Remove io.js support as it has merged back into node.js
|
Remove io.js support as it has merged back into node.js
|
YAML
|
mit
|
Moovie/Moovie
|
57469dafc0b1524119cbcdb4ae706a762686dafc
|
.travis.yml
|
.travis.yml
|
language: scala
scala:
- 2.12.8
jdk:
- oraclejdk11
- openjdk8
- openjdk11
script:
- sbt ++$TRAVIS_SCALA_VERSION clean compile test
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
branches:
only:
- master
|
language: scala
scala:
- 2.12.8
jdk:
- oraclejdk11
- openjdk8
- openjdk11
script:
- sbt ++$TRAVIS_SCALA_VERSION clean compile test
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm -f
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm -f
branches:
only:
- master
|
Update command to avoid failure when no files are found
|
Travis: Update command to avoid failure when no files are found
|
YAML
|
mit
|
flowcommerce/lib-apidoc-json-validation
|
812c039f285e1376ce6e7a4a9ab55a0f673c31aa
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
script: "npm test"
before_script:
- "./test/hosts.sh"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq graphicsmagick
notifications:
irc: "chat.freenode.net#pump.io"
|
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script: "npm test"
before_script:
- "./test/hosts.sh"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq graphicsmagick
notifications:
irc: "chat.freenode.net#pump.io"
|
Install a C++-11-compatible compiler in CI
|
Install a C++-11-compatible compiler in CI
|
YAML
|
apache-2.0
|
pump-io/pump.io,pump-io/pump.io,pump-io/pump.io,stephensekula/pump.io,stephensekula/pump.io,e14n/pump.io,e14n/pump.io,stephensekula/pump.io,e14n/pump.io
|
8523adb654df96c685ede07654024184fbc2cc25
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: xcode8.2
env:
- TOOLCHAINS=swift
script:
- swift package fetch
- swift test
#xcode_project: TypedOperation.xcodeproj
# xcode_scheme: "SwiftParse"
# xcode_sdk: iphonesimulator10.0
# script: xcodebuild test -scheme "SwiftParse" -sdk iphonesimulator -destination "name=iPhone SE"
|
language: objective-c
osx_image: xcode11.2
env:
- TOOLCHAINS=swift
script:
- swift package fetch
- swift test
#xcode_project: TypedOperation.xcodeproj
# xcode_scheme: "SwiftParse"
# xcode_sdk: iphonesimulator10.0
# script: xcodebuild test -scheme "SwiftParse" -sdk iphonesimulator -destination "name=iPhone SE"
|
Use Xcode 11.2 image on Travis CI
|
Use Xcode 11.2 image on Travis CI
|
YAML
|
mit
|
mgadda/swift-parse
|
631739d533d34e74a52ca14977ea03a158161d03
|
.travis.yml
|
.travis.yml
|
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
services: mongodb
script:
- bundle exec rubocop
- bundle exec rake
|
rvm:
- 2.1
- 2.0.0
- 1.9.3
services: mongodb
script:
- bundle exec rubocop
- bundle exec rake
|
Test against latest Ruby 2.1 version
|
Test against latest Ruby 2.1 version
|
YAML
|
mit
|
gocardless/statesman,div/statesman,pacso/statesman,eljojo/statesman,gocardless/statesman,timothyp/statesman,timothyp/statesman,pacso/statesman,mkcode/statesmin,div/statesman,mmontalvo/statesman,mmontalvo/statesman,eljojo/statesman,image-tester/statesman,image-tester/statesman
|
1dec383f548f10acfc78ba5ea79768599b50a18c
|
.travis.yml
|
.travis.yml
|
language: cpp
matrix:
include:
- compiler: gcc4
sudo: required
env:
- COMPILER=g++
- STD=c++11
- compiler: clang34
sudo: required
env:
- COMPILER=clang++
- STD=c++11
- compiler: gcc5
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
env:
- COMPILER=g++-5
- STD=c++1z
- compiler: clang38
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.8
packages:
- clang-3.8
env:
- COMPILER=clang++-3.8
- STD=c++1z
script:
- $COMPILER --version
- make CXX=$COMPILER STD=$STD
- ./all_tests.out
|
language: cpp
matrix:
include:
- compiler: gcc4
dist: trusty
sudo: false
env:
- COMPILER=g++
- STD=c++11
- compiler: clang34
dist: trusty
sudo: false
env:
- COMPILER=clang++
- STD=c++11
- compiler: gcc5
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
env:
- COMPILER=g++-5
- STD=c++1z
- compiler: clang38
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.8
packages:
- clang-3.8
env:
- COMPILER=clang++-3.8
- STD=c++1z
script:
- $COMPILER --version
- make CXX=$COMPILER STD=$STD
- ./all_tests.out
|
Build on dist: trusty for GCC 4.8 and Clang 3.4
|
Build on dist: trusty for GCC 4.8 and Clang 3.4
|
YAML
|
mit
|
clechasseur/optional,clechasseur/optional
|
5f5e572ed38e76ab75b6097ce00e1d2fd50065f7
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
after_success:
- npm run coverage
- npm i codecov
- codecov -f coverage/coverage.json
notifications:
email:
on_success: never
|
language: node_js
sudo: false
node_js:
- "4"
- "6"
after_success:
- npm run coverage
- npm i codecov
- codecov -f coverage/coverage.json
notifications:
email:
on_success: never
|
Remove Node 0.10 and 0.12 support
|
Remove Node 0.10 and 0.12 support
|
YAML
|
mit
|
jstransformers/jstransformer-pug,jstransformers/jstransformer-pug
|
cfdde5cb176d84d2f2c72cbd3a223f62d290577c
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
before_install:
- sudo add-apt-repository ppa:kristinn-l/plaso-dev -y
- sudo apt-get update -q
- sudo apt-get install binplist, libbde-python, libesedb-python, libevt-python, libevtx-python, libewf-python, libfwsi-python, liblnk-python, libmsiecf-python, libolecf-python, libqcow-python, libregf-python, libsmdev-python, libsmraw-python, libvhdi-python, libvmdk-python, libvshadow-python, ipython, python-bencode, python-construct, python-dateutil, python-dfvfs, python-dpkt, python-hachoir-core, python-hachoir-metadata, python-hachoir-parser, python-protobuf, python-psutil, python-pyparsing, python-six, python-yaml, python-tz, pytsk3
script:
- ./run_tests.py
|
language: python
python:
- "2.7"
before_install:
- sudo add-apt-repository ppa:kristinn-l/plaso-dev -y
- sudo apt-get update -q
- sudo apt-get install binplist libbde-python libesedb-python libevt-python libevtx-python libewf-python libfwsi-python liblnk-python libmsiecf-python libolecf-python libqcow-python libregf-python libsmdev-python libsmraw-python libvhdi-python libvmdk-python libvshadow-python ipython python-bencode python-construct python-dateutil python-dfvfs python-dpkt python-hachoir-core python-hachoir-metadata python-hachoir-parser python-protobuf python-psutil python-pyparsing python-six python-yaml python-tz pytsk3
script:
- ./run_tests.py
|
Fix for Travis CI test configuration.
|
Fix for Travis CI test configuration.
|
YAML
|
apache-2.0
|
dc3-plaso/plaso,dc3-plaso/plaso
|
71b1f0b629f068a285ff1a2276a0ecb2c49b9d26
|
.travis.yml
|
.travis.yml
|
dist: xenial
language: java
install: true
script:
- sudo apt-get update
- sudo apt-get install graphviz
- java -version
- ./gradlew buildCI --scan
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
jdk:
- openjdk8
- oraclejdk8
- oraclejdk9
|
dist: xenial
language: java
install: true
script:
- sudo apt-get update
- sudo apt-get install graphviz
- java -version
- ./gradlew buildCI --scan
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
jdk:
- openjdk8
- oraclejdk9
|
Remove oraclejdk8 from Travis CI build
|
Remove oraclejdk8 from Travis CI build
(It is no longer supported on Ubuntu Xenial)
|
YAML
|
apache-2.0
|
msgilligan/bitcoinj-addons,msgilligan/bitcoinj-addons,msgilligan/bitcoinj-addons,msgilligan/bitcoinj-addons
|
7931c4d1bde257f1a19ff4355dbe4a16bb6e3289
|
.travis.yml
|
.travis.yml
|
language: erlang
notifications:
email: [email protected]
sudo: required
services:
- docker
otp_release:
- 21.1
- 20.3
- 19.3
script:
- ./rebar3 ct
|
language: erlang
notifications:
email: [email protected]
sudo: required
services:
- docker
otp_release:
- 22.1
- 21.1
- 20.3
script:
- ./rebar3 ct
|
Test on 22.1, drop 19.3
|
Test on 22.1, drop 19.3
|
YAML
|
bsd-3-clause
|
lavrin/docsh
|
b2b6c6528ed890d1cd2b1452e8371dfa744323ae
|
.travis.yml
|
.travis.yml
|
---
language: ruby
cache: bundler
bundler_args: --without development
script:
- "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
rvm:
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 3.5.1"
- PUPPET_GEM_VERSION="~> 3.8.4"
- PUPPET_GEM_VERSION="~> 4.3.1"
notifications:
email: false
|
---
language: ruby
cache: bundler
bundler_args: --without development
script:
- "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
rvm:
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 3.5.1"
- PUPPET_GEM_VERSION="~> 3.8.6"
- PUPPET_GEM_VERSION="~> 4.4.0"
notifications:
email: false
|
Test against the latest versions of puppet
|
Test against the latest versions of puppet
|
YAML
|
apache-2.0
|
pcfens/puppet-filebeat,pcfens/puppet-filebeat,digitalmediacenter/puppet-filebeat,MiamiOH/puppet-filebeat,MiamiOH/puppet-filebeat,digitalmediacenter/puppet-filebeat
|
efa73577306e46402c976e000097a3f4985dda4c
|
.github/workflows/ci-windows.yml
|
.github/workflows/ci-windows.yml
|
name: Idris 2 CI
on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
branches:
- master
env:
MSYS2_PATH_TYPE: inherit
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install MSYS2
uses: eine/setup-msys2@v0
with:
update: true
install: make mingw-w64-x86_64-clang tar
- name: Get Chez Scheme
run: |
git clone --depth 1 https://github.com/cisco/ChezScheme
- name: Configure and Build Chez Scheme
run: msys2do cd ChezScheme; ./configure --threads; make; cd ..
shell: cmd
- name: Set Path
run: |
$chez="$(pwd)\ChezScheme\ta6nt\bin\ta6nt"
echo "::add-path::$chez"
echo "::set-env name=SCHEME::scheme"
- name: Test Scheme
run: scheme.exe --version
- name: Bootstrap
run: msys2do make bootstrap
shell: cmd
|
name: Windows CI
on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
branches:
- master
env:
MSYS2_PATH_TYPE: inherit
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install MSYS2
uses: eine/setup-msys2@v0
with:
update: true
install: make mingw-w64-x86_64-clang tar
- name: Get Chez Scheme
run: |
git clone --depth 1 https://github.com/cisco/ChezScheme
- name: Configure and Build Chez Scheme
run: msys2do cd ChezScheme; ./configure --threads; make; cd ..
shell: cmd
- name: Set Path
run: |
$chez="$(pwd)\ChezScheme\ta6nt\bin\ta6nt"
echo "::add-path::$chez"
echo "::set-env name=SCHEME::scheme"
- name: Test Scheme
run: scheme.exe --version
- name: Bootstrap
run: msys2do make bootstrap
shell: cmd
|
Improve the name of the job
|
Improve the name of the job
|
YAML
|
bsd-3-clause
|
mmhelloworld/idris-jvm,mmhelloworld/idris-jvm,mmhelloworld/idris-jvm,mmhelloworld/idris-jvm,mmhelloworld/idris-jvm,mmhelloworld/idris-jvm
|
53261805b9c4bda0169a138651c44cd253543080
|
.github/workflows/end-to-end.yml
|
.github/workflows/end-to-end.yml
|
name: End-to-end tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
end-to-end:
runs-on: ubuntu-16.04
name: Cypress run
env:
CI: 1
steps:
- uses: actions/checkout@v1
- uses: cypress-io/github-action@v1
with:
start: npm start
- uses: actions/upload-artifact@v1
if: failure()
with:
name: cypress-screenshots
path: test/cypress/screenshots
- uses: actions/upload-artifact@v1
if: always()
with:
name: cypress-videos
path: test/cypress/videos
|
name: End-to-end tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
end-to-end:
runs-on: ubuntu-16.04
name: Cypress run
env:
CI: 1
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run end-to-end tests
uses: cypress-io/github-action@v2
with:
start: npm start
- name: Upload screenshots
uses: actions/upload-artifact@v1
if: failure()
with:
name: cypress-screenshots
path: test/cypress/screenshots
- name: Upload videos
uses: actions/upload-artifact@v1
if: always()
with:
name: cypress-videos
path: test/cypress/videos
|
Update Cypress CI action to v2
|
Update Cypress CI action to v2
|
YAML
|
mpl-2.0
|
mattiasw/ExifReader
|
754881b30ef15934564b78e592defd6b674b92a3
|
packages/ti/time-locale-compat.yaml
|
packages/ti/time-locale-compat.yaml
|
homepage: http://twitter.com/khibino/
changelog-type: ''
hash: 57da137994dc235beb6f33d99595855842be998c629217ec379bbb12a313ba3c
test-bench-deps: {}
maintainer: [email protected]
synopsis: Compatibility of TimeLocale between old-locale and time-1.5
changelog: ''
basic-deps:
base: <5
time: <1.5
old-locale: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: Kei Hibino
latest: '0.1.0.1'
description-type: haddock
description: This package contains wrapped name module for TimeLocale.
license-name: BSD3
|
homepage: http://twitter.com/khibino/
changelog-type: ''
hash: cc93a8abb3062c24f3b4b0da545593bed01bb4b2eb651516542ab16467f21db5
test-bench-deps: {}
maintainer: [email protected]
synopsis: Compatibility of TimeLocale between old-locale and time-1.5
changelog: ''
basic-deps:
base: <5
time: <1.5
old-locale: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.1.0'
author: Kei Hibino
latest: '0.1.1.0'
description-type: haddock
description: This package contains wrapped name module for TimeLocale.
license-name: BSD3
|
Update from Hackage at 2015-06-23T00:39:56+0000
|
Update from Hackage at 2015-06-23T00:39:56+0000
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
bb6565e28eba006887b68bd2135e926bb6c14e17
|
tom-work.yml
|
tom-work.yml
|
---
- name: Setup Polka
hosts:
- tom-work
connection: local
gather_facts: false
roles:
- package
- bash
- tmux
- git
- go
- ack
- vim
- ruby
- python
- ansible
- nvim
|
---
- name: Setup Polka
hosts:
- tom-work
connection: local
gather_facts: false
roles:
- bash
- git
- go
- ack
- vim
- ruby
- python
- ansible
- nvim
# - tmux
# - package
|
Use fae instead of polka for tmux and package
|
Use fae instead of polka for tmux and package
|
YAML
|
mit
|
tmiller/polka
|
57c1dc9e312a96b71589f43497ab8b18368d1a33
|
.github/workflows/go_test.yml
|
.github/workflows/go_test.yml
|
name: go_test
on: [push, pull_request]
jobs:
go_test:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.17
uses: actions/setup-go@v2
with:
go-version: 1.17
id: go
- name: Check out code
uses: actions/checkout@v3
- name: Get dependencies
run: |
go mod download
- name: Build
run: |
go build ./...
- name: Test
run: |
go test ./...
|
name: go_test
on: [push, pull_request]
jobs:
go_test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- name: Set up Go 1.17
uses: actions/setup-go@v2
with:
go-version: 1.17
id: go
- name: Check out code
uses: actions/checkout@v3
- name: Get dependencies
run: |
go mod download
- name: Build
run: |
go build ./...
- name: Test
run: |
go test ./...
|
Support for testing on multiple operating systems
|
Support for testing on multiple operating systems
|
YAML
|
apache-2.0
|
google/medical_claims_tools
|
3a6a4be1d28ab06a128d8f3f2fbf78b7f9dfceda
|
.cirrus.yml
|
.cirrus.yml
|
bundle_cache: &bundle_cache
bundle_cache:
folder: /usr/local/bundle
fingerprint_script:
- echo $CIRRUS_OS
- ruby -v
- cat Gemfile
- cat *.gemspec
install_script: bundle update
test_task:
container:
matrix:
image: ruby:2.4
image: ruby:2.5
<<: *bundle_cache
environment:
CODECOV_TOKEN: ENCRYPTED[cdad391413f3dda9fa77999200291c100829553d0ecf1b27ee4eb66affdb01f8eb8f0a3780c1ae3d3ac955c0d6bbe172]
test_script: bundle exec rake
|
bundle_cache: &bundle_cache
bundle_cache:
folder: /usr/local/bundle
fingerprint_script:
- echo $CIRRUS_OS
- ruby -v
- cat Gemfile
- cat *.gemspec
install_script: bundle update
test_task:
container:
matrix:
image: ruby:2.4
image: ruby:2.5
image: ruby:2.6
image: ruby:2.7
<<: *bundle_cache
environment:
CODECOV_TOKEN: ENCRYPTED[cdad391413f3dda9fa77999200291c100829553d0ecf1b27ee4eb66affdb01f8eb8f0a3780c1ae3d3ac955c0d6bbe172]
test_script: bundle exec rake
|
Add Ruby 2.6 and 2.7 for CI
|
Add Ruby 2.6 and 2.7 for CI
|
YAML
|
mit
|
AlexWayfer/flame-r18n
|
acfc651349d1f537b8066cb95285e0a45a4173b4
|
.github/workflows/oq-role.yml
|
.github/workflows/oq-role.yml
|
---
name: oq-role
'on':
schedule:
- cron: "0 4 * * *"
jobs:
molecule:
name: Molecule
runs-on: ubuntu-18.04
strategy:
matrix:
distro:
- centos8
- centos7
- ubuntu1804
- ubuntu2004
env:
working-directory: ./ansible/oqengine
steps:
- name: Check out the codebase.
uses: actions/checkout@v2
- name: Set up Python 3.
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install test dependencies.
run: pip3 install molecule[docker,ansible,lint]
- name: Run Molecule tests.
run: molecule test
working-directory: ${{env.working-directory}}
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTRO: ${{ matrix.distro }}
|
---
name: oq-role
'on':
schedule:
- cron: "0 4 * * *"
jobs:
molecule:
name: Molecule
runs-on: ubuntu-18.04
strategy:
matrix:
distro:
- centos8
- centos7
- ubuntu1804
- ubuntu2004
- debian10
env:
working-directory: ./ansible/oqengine
steps:
- name: Check out the codebase.
uses: actions/checkout@v2
- name: Set up Python 3.
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install test dependencies.
run: pip3 install molecule[docker,ansible,lint]
- name: Run Molecule tests.
run: molecule test
working-directory: ${{env.working-directory}}
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTRO: ${{ matrix.distro }}
|
Add debian10 for oq ansible role
|
Add debian10 for oq ansible role
|
YAML
|
agpl-3.0
|
gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine
|
92290affeb38271565cbaa01b847cd4929dc2970
|
.cirrus.yml
|
.cirrus.yml
|
freebsd_instance:
image: freebsd-11-2-release-amd64
# Test FreeBSD in a full VM on cirrus-ci.com. Test the i686 target too, in the
# same VM. The binary will be built in 32-bit mode, but will execute on a
# 64-bit kernel and in a 64-bit environment. Our tests don't execute any of
# the system's binaries, so the environment shouldn't matter.
task:
name: FreeBSD 11.2
cargo_cache:
folder: $CARGO_HOME/registry
fingerprint_script: cat Cargo.lock || echo ""
# Install Rust
setup_script:
- pkg install -y curl
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y --profile=minimal --default-toolchain 1.36.0
- $HOME/.cargo/bin/rustup target add i686-unknown-freebsd
amd64_test_script:
- . $HOME/.cargo/env
- cargo test
i386_test_script:
- . $HOME/.cargo/env
- cargo test --target i686-unknown-freebsd
before_cache_script: rm -rf $CARGO_HOME/registry/index
|
freebsd_instance:
image: freebsd-11-2-release-amd64
# Test FreeBSD in a full VM on cirrus-ci.com. Test the i686 target too, in the
# same VM. The binary will be built in 32-bit mode, but will execute on a
# 64-bit kernel and in a 64-bit environment. Our tests don't execute any of
# the system's binaries, so the environment shouldn't matter.
task:
name: FreeBSD 11.2
cargo_cache:
folder: $CARGO_HOME/registry
fingerprint_script: cat Cargo.lock || echo ""
# Install Rust
setup_script:
- fetch https://sh.rustup.rs -o rustup.sh
- sh rustup.sh -y --profile=minimal --default-toolchain 1.36.0
- $HOME/.cargo/bin/rustup target add i686-unknown-freebsd
amd64_test_script:
- . $HOME/.cargo/env
- cargo test
i386_test_script:
- . $HOME/.cargo/env
- cargo test --target i686-unknown-freebsd
before_cache_script: rm -rf $CARGO_HOME/registry/index
|
Use fetch instead of curl during CI on FreeBSD
|
Use fetch instead of curl during CI on FreeBSD
|
YAML
|
mit
|
geofft/nix-rust,carllerche/nix-rust,asomers/nix,carllerche/nix-rust,nix-rust/nix,asomers/nix,geofft/nix-rust,carllerche/nix-rust,geofft/nix-rust,nix-rust/nix
|
89c99230504335af24f7da36c556ab9e4ebe2a80
|
.travis.yml
|
.travis.yml
|
---
language: ruby
sudo: false
dist: trusty
bundler_args: --without development
cache: bundler
before_install:
- PATH=$(npm bin):$PATH # needed to install phantomjs via npm
- if [ $(phantomjs --version) != '2.1.1' ]; then npm install [email protected]; fi
- gem update --system # use the very latest Rubygems
- gem install bundler # use the very latest Bundler
script:
- bundle exec rake
- bundle exec rake docs:build
rvm:
- jruby-9.1.12.0
- 2.2.7
- 2.3.4
- 2.4.1
gemfile:
- gemfiles/rails_42.gemfile
- gemfiles/rails_50.gemfile
- gemfiles/rails_51.gemfile
env:
global:
- JRUBY_OPTS="-J-Xmx1024m --dev --debug"
- JAVA_OPTS="-Djava.security.egd=file:/dev/./urandom"
- COVERAGE=true
matrix:
fast_finish: true
allow_failures:
- rvm: jruby-9.1.12.0
gemfile: gemfiles/rails_50.gemfile
- rvm: jruby-9.1.12.0
gemfile: gemfiles/rails_51.gemfile
|
---
language: ruby
sudo: false
dist: trusty
bundler_args: --without development
cache: bundler
before_install:
- PATH=$(npm bin):$PATH # needed to install phantomjs via npm
- if [ $(phantomjs --version) != '2.1.1' ]; then npm install [email protected]; fi
- gem update --system # use the very latest Rubygems
- gem install bundler # use the very latest Bundler
script:
- bundle exec rake
- bundle exec rake docs:build
rvm:
- jruby-9.1.12.0
- 2.2.7
- 2.3.4
- 2.4.1
gemfile:
- gemfiles/rails_42.gemfile
- gemfiles/rails_50.gemfile
- gemfiles/rails_51.gemfile
env:
global:
- JRUBY_OPTS="-J-Xmx1024m --dev --debug"
- JAVA_OPTS="-Djava.security.egd=file:/dev/./urandom"
- COVERAGE=true
matrix:
fast_finish: true
allow_failures:
- rvm: jruby-9.1.12.0
gemfile: gemfiles/rails_42.gemfile
- rvm: jruby-9.1.12.0
gemfile: gemfiles/rails_50.gemfile
- rvm: jruby-9.1.12.0
gemfile: gemfiles/rails_51.gemfile
|
Move all jruby builds to allow_failures
|
Move all jruby builds to allow_failures
|
YAML
|
mit
|
varyonic/activeadmin,varyonic/activeadmin,varyonic/activeadmin
|
6e2298c7272385a07386b7e10e572b6b149ea4be
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
cache: bundler
bundler_args: --without kitchen_common kitchen_vagrant
rvm:
- 1.9.3
- 2.0.0
script:
- bundle exec rake travis
|
language: ruby
sudo: false
cache: bundler
bundler_args: --without kitchen_common kitchen_vagrant
rvm:
- 2.0
- 2.1
- 2.2
script:
- bundle exec rake travis
|
Test on modern ruby releases
|
Test on modern ruby releases
|
YAML
|
apache-2.0
|
osuosl-cookbooks/ceph-cookbook,tas50/ceph-cookbook,sandoracs/ceph-cookbook,nareiber/ceph-cookbook,nareiber/ceph-cookbook,osuosl-cookbooks/ceph-cookbook,ncerny/ceph-cookbook,tas50/ceph-cookbook,ncerny/ceph-cookbook,ceph/ceph-cookbook,klamontagne/ceph-cookbook,sandoracs/ceph-cookbook,nareiber/ceph-cookbook,klamontagne/ceph-cookbook,ceph/ceph-cookbook,osuosl-cookbooks/ceph-cookbook,tas50/ceph-cookbook,ncerny/ceph-cookbook,sandoracs/ceph-cookbook,klamontagne/ceph-cookbook,ceph/ceph-cookbook
|
0aed723b5e1518463410cf2f40b17fcaf7bd1936
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.5"
# command to install dependencies
before_install: ./configure
install: make
# command to run tests
script:
make test
addons:
apt:
packages:
- nginx
|
language: python
python:
- "3.5"
# - "2.7"
# command to install dependencies
before_install: ./configure
install: make
# command to run tests
script:
make test
addons:
apt:
packages:
- nginx
|
Comment out python 2.7 in this repo.
|
Travis: Comment out python 2.7 in this repo.
|
YAML
|
mit
|
tchalvak/fractalish,tchalvak/fractalish,tchalvak/fractalish
|
a60e7847ac7558f93e6fd0cdea10f529a7ebe487
|
.travis.yml
|
.travis.yml
|
language: go
go: 1.4
env:
- PATH=$HOME/gopath/bin:$PATH
install:
# Install SDL2.
# Travis CI uses Ubuntu 12.04 which doesn't have libsdl2.
# We use SDL2-2.0.1, the minimum version with SDL_WINDOW_ALLOW_HIGHDPI.
- wget https://www.libsdl.org/release/SDL2-2.0.1.tar.gz
- tar -xzf SDL2-2.0.1.tar.gz
- (cd SDL2-2.0.1 && ./configure -q && make -s -j3 && sudo make install)
# Install go tools used by gok.sh
- go get golang.org/x/tools/cmd/vet
- go get github.com/golang/lint/golint
- go get -d -v ./... && go build -v ./...
script: ./gok.sh
|
language: go
go: 1.4
notifications:
email: false
env:
- PATH=$HOME/gopath/bin:$PATH
install:
# Install SDL2.
# Travis CI uses Ubuntu 12.04 which doesn't have libsdl2.
# We use SDL2-2.0.1, the minimum version with SDL_WINDOW_ALLOW_HIGHDPI.
- wget https://www.libsdl.org/release/SDL2-2.0.1.tar.gz
- tar -xzf SDL2-2.0.1.tar.gz
- (cd SDL2-2.0.1 && ./configure -q && make -s -j3 && sudo make install)
# Install go tools used by gok.sh
- go get golang.org/x/tools/cmd/vet
- go get github.com/golang/lint/golint
- go get -d -v ./... && go build -v ./...
script: ./gok.sh
|
Disable Travis CI email notifications.
|
Disable Travis CI email notifications.
I often push --force to update my branches.
Travis often errors out when I do this
and emails me a bogus error.
So, I basically ignore Travis emails.
Let's just turn them off.
|
YAML
|
isc
|
skiesel/T,leGoof/T,skiesel/T,leGoof/T
|
870ea477c66c45717a359f72cb08ca598b9e4efb
|
_config.yml
|
_config.yml
|
# Dependencies
markdown: redcarpet
pygments: true
# Permalinks
permalink: pretty
# Setup
title: Donald McKendrick
tagline: 'Developer and Entrepreneur'
description: 'Developer at <a href="http://floatapp.com" target="_blank">Float</a> and aspiring entrepreneur.'
url: http://donaldmckendrick.com
author:
name: 'Donald McKendrick'
url: https://twitter.com/deardonald
paginate: 5
# Custom vars
# version: 2.0.0
# github:
# repo: https://github.com/poole/hyde
|
# Dependencies
markdown: redcarpet
pygments: true
# Permalinks
permalink: pretty
# Setup
title: Donald McKendrick
tagline: 'CTO and Entrepreneur'
description: 'CTO at <a href="http://www.storeluv.com" target="_blank">StoreLuv</a> and aspiring entrepreneur.'
url: http://donaldmckendrick.com
author:
name: 'Donald McKendrick'
url: https://twitter.com/deardonald
paginate: 5
# Custom vars
# version: 2.0.0
# github:
# repo: https://github.com/poole/hyde
|
Update employment history in config
|
Update employment history in config
|
YAML
|
mit
|
ddmck/ddmck.github.io,ddmck/ddmck.github.io
|
9f31fa8ec96f7a1cad3d2dfcf3f9ef524a98bcb1
|
.travis.yml
|
.travis.yml
|
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then composer require satooshi/php-coveralls:1.* squizlabs/php_codesniffer:2.* -n ; fi
- if [[ "$TRAVIS_PHP_VERSION" != '5.6' ]]; then composer install -n ; fi
script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then phpunit --coverage-clover clover.xml ; fi
- if [[ "$TRAVIS_PHP_VERSION" != '5.6' ]]; then phpunit ; fi
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then vendor/bin/phpcs ; fi
after_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then php vendor/bin/coveralls --coverage_clover=clover.xml -v ; fi
notifications:
slack: slimphp:0RNzx2JuhkAqIf0MXcUZ0asT
|
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: 7.1
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then composer require satooshi/php-coveralls:1.* squizlabs/php_codesniffer:2.* -n ; fi
- if [[ "$TRAVIS_PHP_VERSION" != '5.6' ]]; then composer install -n ; fi
script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then phpunit --coverage-clover clover.xml ; fi
- if [[ "$TRAVIS_PHP_VERSION" != '5.6' ]]; then phpunit ; fi
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then vendor/bin/phpcs ; fi
after_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then php vendor/bin/coveralls --coverage_clover=clover.xml -v ; fi
notifications:
slack: slimphp:0RNzx2JuhkAqIf0MXcUZ0asT
|
Test with PHP 7.1 but allow failures
|
Test with PHP 7.1 but allow failures
|
YAML
|
mit
|
iinux/Slim,akrabat/Slim,Sam-Burns/Slim,iinux/Slim,slimphp/Slim,RealSelf/Slim,iinux/Slim,foxyantho/Slim,dopesong/Slim,juliangut/Slim
|
1370f313b3408b49f8a9aad548c460d2b9d52da9
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: beta-xcode6.3
before_install:
- brew install gawk
- bash linter.sh
- sudo gem install cocoaseeds
install:
- seed install
script:
- xctool -project Allkdic.xcodeproj -scheme Allkdic CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO build test -parallelize
|
language: objective-c
osx_image: xcode7
before_install:
- brew install gawk
- bash linter.sh
- sudo gem install cocoaseeds
install:
- seed install
script:
- xctool -project Allkdic.xcodeproj -scheme Allkdic CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO build test -parallelize
|
Use Xcode 7 in Travis
|
Use Xcode 7 in Travis
|
YAML
|
mit
|
devxoul/allkdic,devxoul/allkdic,devxoul/allkdic
|
6fd355cca7ef7874b92a18c3e998e16473f941a1
|
.travis.yml
|
.travis.yml
|
language: python
python: "2.7"
services:
- redis-server
- mysql
- postgresql
env:
- TOXENV=py27
install:
- pip install tox coveralls
before_script:
- mysql -e 'create database test;'
script: tox
after_success:
if [ "$TOXENV" == "py27" ]; then coveralls; fi
|
language: python
python: "2.7"
services:
- redis-server
- mysql
- postgresql
env:
- TOXENV=py27
install:
- pip install tox coveralls
before_script:
- mysql -e 'create database test;'
- sudo rm -f /etc/boto.cfg
script: tox
after_success:
if [ "$TOXENV" == "py27" ]; then coveralls; fi
|
Add a hack to fix Travis
|
Add a hack to fix Travis
|
YAML
|
mit
|
stevearc/pypicloud,rubikloud/pypicloud,mathcamp/pypicloud,mathcamp/pypicloud,mathcamp/pypicloud,rubikloud/pypicloud,mathcamp/pypicloud,rubikloud/pypicloud,stevearc/pypicloud,stevearc/pypicloud,rubikloud/pypicloud,stevearc/pypicloud
|
f06abc7601e382bdefc514abde8527b788795ce4
|
.travis.yml
|
.travis.yml
|
rvm:
- 2.2.2
cache: bundler
addons:
code_climate:
repo_token: 1f9743a554140a590819de5967c4411398a22e31f2d5d439127cdbf33c72a6ab
|
rvm:
- 2.2.2
cache: bundler
before_script:
- if [ "${$TRAVIS_OS_NAME}" = "linux" ]; then
wget https://github.com/mozilla/geckodriver/releases/geckodriver-v0.11.1-linux64.tar.gz -O /tmp/geckodriver.tar.gz;
fi
- if [ "${$TRAVIS_OS_NAME}" = "osx" ]; then
wget https://github.com/mozilla/geckodriver/releases/geckodriver-v0.11.1-macos.tar.gz -O /tmp/geckodriver.tar.gz;
fi
- tar -xzvf /tmp/geckodriver.tar.gz
- export PATH=$PATH:$PWD
addons:
code_climate:
repo_token: 1f9743a554140a590819de5967c4411398a22e31f2d5d439127cdbf33c72a6ab
|
Add geckodriver to Travis yml. Nathan Pannell
|
Add geckodriver to Travis yml. Nathan Pannell
|
YAML
|
mit
|
CommunityGrows/communitygrows,CommunityGrows/communitygrows,hsp1324/communitygrows,CommunityGrows/communitygrows,hsp1324/communitygrows,hsp1324/communitygrows
|
619cde01fe2fa4c3eb36bb255205d43d2aa2a729
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
addons:
firefox: latest
cache:
directories:
- $HOME/.m2
- node
- node_modules
before_install:
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x24 +extension RANDR"
- export DISPLAY=:99
- "wget https://github.com/mozilla/geckodriver/releases/download/v0.15.0/geckodriver-v0.15.0-linux64.tar.gz"
- mkdir geckodriver
- tar -xzf geckodriver-v0.15.0-linux64.tar.gz -C geckodriver
- "wget -q http://selenium-release.storage.googleapis.com/3.3/selenium-server-standalone-3.3.1.jar"
- "java -Dwebdriver.gecko.driver=$PWD/geckodriver/geckodriver -jar selenium-server-standalone-3.3.1.jar &"
- sleep 5
install: /bin/true
script: mvn verify -B -Djava.util.logging.config.file="src/test/resources/logging.properties"
after_success:
- bash <(curl -s https://codecov.io/bash)
|
language: java
jdk:
- oraclejdk8
addons:
firefox: latest
cache:
directories:
- $HOME/.m2
- node
- node_modules
before_install:
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x24 +extension RANDR"
- export DISPLAY=:99
- "wget https://github.com/mozilla/geckodriver/releases/download/v0.19.0/geckodriver-v0.19.0-linux64.tar.gz"
- mkdir geckodriver
- tar -xzf geckodriver-v0.19.0-linux64.tar.gz -C geckodriver
- "wget -q https://selenium-release.storage.googleapis.com/3.6/selenium-server-standalone-3.6.0.jar"
- "java -Dwebdriver.gecko.driver=$PWD/geckodriver/geckodriver -jar selenium-server-standalone-3.6.0.jar &"
- sleep 5
install: /bin/true
script: mvn verify -B -Djava.util.logging.config.file="src/test/resources/logging.properties"
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Update Selenium and Firefox to fix IT
|
Update Selenium and Firefox to fix IT
|
YAML
|
apache-2.0
|
pvorb/platon,pvorb/platon,pvorb/platon
|
af665094441bb84efc6136312951e14d22beeccf
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.6
- 2.7
- 3.1
- 3.2
env:
- TIMEZONE=UTC
install:
- pip install nose
- pip install .
script: make test
|
language: python
python:
- 2.6
- 2.7
- 3.1
- 3.2
install:
- pip install nose
- pip install .
script: make test
|
Remove TIMEZONE environment setting from Travis CI test
|
Remove TIMEZONE environment setting from Travis CI test
This change was made possible by #1.
|
YAML
|
bsd-3-clause
|
dirn/When.py
|
7dc431a74a7aa36d48327fc7882a2aa8672272a2
|
.travis.yml
|
.travis.yml
|
language: ruby
os:
- linux
- osx
rvm:
- 2.0.0-p598
- 2.1.5
- 2.2.2
- ruby-head
install:
- git clone https://github.com/ruby/mspec.git ../mspec
script:
- ../mspec/bin/mspec
matrix:
exclude:
- os: osx
rvm: ruby-head
branches:
only:
- master
|
language: ruby
rvm:
- 2.0.0-p598
- 2.1.5
- 2.2.2
- ruby-head
install:
- git clone https://github.com/ruby/mspec.git ../mspec
script:
- ../mspec/bin/mspec
branches:
only:
- master
|
Disable OS X on Travis as it slows the build considerably
|
Disable OS X on Travis as it slows the build considerably
* ~10min for OS X build VS ~2min for Linux build
* RubyCI provides a good platform coverage
|
YAML
|
mit
|
kidaa/rubyspec,iliabylich/rubyspec,BanzaiMan/rubyspec,sgarciac/spec,nobu/rubyspec,kidaa/rubyspec,nobu/rubyspec,eregon/rubyspec,eregon/rubyspec,ruby/rubyspec,BanzaiMan/rubyspec,ruby/spec,nobu/rubyspec,ruby/spec,iliabylich/rubyspec,wied03/rubyspec,wied03/rubyspec,wied03/rubyspec,kachick/rubyspec,kachick/rubyspec,ruby/rubyspec,lucaspinto/rubyspec,ruby/spec,lucaspinto/rubyspec,kachick/rubyspec,sgarciac/spec,sgarciac/spec,eregon/rubyspec
|
9a48657e78da4b4661b714aac5a690c90b193cd3
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.6
- 7.0
before_script:
- composer validate
- composer update
|
language: php
php:
- 5.6
- 7.0
before_script:
- composer validate
- composer update
script:
- vendor/bin/phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --repository="g/ntd/silverstripe-autotoc" --format=php-clover coverage.clover
|
Add coverage support to TravisCI
|
Add coverage support to TravisCI
|
YAML
|
bsd-2-clause
|
ntd/silverstripe-autotoc
|
f017505cb4187ec87d4f95f259c5f8846864df8f
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 10
- 11
- 12
after_success:
- bash <(curl -s https://codecov.io/bash)
|
matrix:
include:
- language: python
python:
- "2.7"
- language: node_js
node_js:
- 10
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Test using multiple languages in Travis CI
|
Test using multiple languages in Travis CI
|
YAML
|
mit
|
thinkulum/generator-python-cmd,thinkulum/generator-python-cmd
|
c8d317f2a1b63758c2150d8086f97ea2dfd92c24
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
sudo: false
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
- if [ -f vendor/bin/coveralls ]; then ln -s vendor/bin/coveralls vendor/bin/php-coveralls; fi
before_script:
- mkdir -p build/logs
script:
- ./vendor/bin/parallel-lint src tests
- ./vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
- ./vendor/bin/phpcs src tests --standard=psr12 -sp
after_success:
- travis_retry php vendor/bin/php-coveralls
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
sudo: false
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
- if [ -f vendor/bin/coveralls ]; then ln -s coveralls vendor/bin/php-coveralls; fi
before_script:
- mkdir -p build/logs
script:
- ./vendor/bin/parallel-lint src tests
- ./vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
- ./vendor/bin/phpcs src tests --standard=psr12 -sp
after_success:
- travis_retry php vendor/bin/php-coveralls
|
Fix the statement to correctly link coveralls to php-coveralls
|
Fix the statement to correctly link coveralls to php-coveralls
|
YAML
|
mit
|
ramsey/uuid-doctrine
|
afb603a1068291d37318f2db4bb98ef250f756ea
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
before_install:
- "sudo apt-get update -qq"
- "sudo apt-get install -qq python-numpy python-scipy python-nose python-matplotlib ipython libasound2 libasound2-plugins libasound-dev alsa-base"
- "sudo ldconfig"
- "pip install spectrum"
- "pip install pyaudio"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- "python setup.py build_ext --inplace"
script:
- "python setup.py test"
|
language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
before_install:
- "sudo apt-get update -qq"
- "sudo apt-get install -qq python-numpy python-scipy python-nose python-matplotlib ipython libasound2 libasound2-plugins libasound-dev alsa-base portaudio"
- "sudo ldconfig"
- "pip install spectrum"
- "pip install pyaudio"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- "python setup.py build_ext --inplace"
script:
- "python setup.py test"
|
Install portaudio but install pyaudio from pip
|
Install portaudio but install pyaudio from pip
|
YAML
|
mit
|
nils-werner/dspy,antiface/dspy
|
a12bf263f14cbfdc235170e34f6194bfb146ea6a
|
.travis.yml
|
.travis.yml
|
language: rust
sudo: false
os:
- linux
- osx
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
global:
- RUSTFLAGS="-C link-dead-code"
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
- libiberty-dev
# This is the default and is redundant. Added for reference.
script:
- cargo build --verbose
- cargo test --verbose
after_success: |
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz &&
cd kcov-master &&
mkdir build &&
cd build &&
cmake .. &&
make &&
make install DESTDIR=../../kcov-build &&
cd ../.. &&
rm -rf kcov-master &&
for file in target/debug/examplerust-*[^\.d]; do mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
bash <(curl -s https://codecov.io/bash) &&
echo "Uploaded code coverage"
|
language: rust
sudo: false
os:
- linux
- osx
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
global:
- RUSTFLAGS="-C link-dead-code"
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
- libiberty-dev
# This is the default and is redundant. Added for reference.
script:
- cargo build --verbose
- cargo test --verbose
after_success: |
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz &&
cd kcov-master &&
mkdir build &&
cd build &&
cmake .. &&
make &&
make install DESTDIR=../../kcov-build &&
cd ../.. &&
rm -rf kcov-master &&
for file in target/debug/gruff-*[^\.d]; do mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
bash <(curl -s https://codecov.io/bash) &&
echo "Uploaded code coverage"
|
Replace exmaple package name for codecov.
|
Replace exmaple package name for codecov.
|
YAML
|
mit
|
ShaunKarran/gruff
|
c78c7c7971681e6bcdd2da701a814f21a4ff86fd
|
.travis.yml
|
.travis.yml
|
language: go
sudo: false
go:
- tip
- 1.8.x
- 1.7.x
- 1.6.x
install:
- go get -t ./...
before_script:
- $(exit $(go fmt ./... | wc -l))
- go vet ./...
script:
- go test -v -i -race ./...
|
language: go
sudo: false
go:
- tip
- 1.9.x
- 1.8.x
- 1.7.x
install:
- go get -t ./...
before_script:
- $(exit $(go fmt ./... | wc -l))
script:
- go test -v -race ./...
|
Remove go vet from Travis for now
|
Remove go vet from Travis for now
Signed-off-by: Byron Ruth <[email protected]>
|
YAML
|
mit
|
chop-dbhi/eda
|
506b28f65c5a40c9c931394bbb4b90f8afa0a36a
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '9'
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
cache:
directories:
- node_modules
before_install:
- npm prune
- npm install -g npm
# # encrypted environment variables are not available for pull requests from forks
# before_deploy:
# - git config user.name "Travis CI"
# - git config user.email "[email protected]"
# - git checkout master
# - git status
# - openssl aes-256-cbc -K $encrypted_449662e2943f_key -iv $encrypted_449662e2943f_iv
# -in ./.travis/deploy_key.enc -out ./.travis/deploy_key -d
# - eval "$(ssh-agent -s)" # start the ssh agent
# - chmod 600 .travis/deploy_key
# - ssh-add .travis/deploy_key
# - git remote add deploy [email protected]:${TRAVIS_REPO_SLUG}.git
# deploy:
# provider: script
# script: .travis/deploy.sh
# # Warning: there is an unencrypted private key in the working directory.
# # Do not deploy it anywhere.
# skip_cleanup: true
# on:
# branch: master
|
language: node_js
node_js:
- '9'
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
cache:
directories:
- node_modules
before_install:
- npm prune
- npm install -g npm
- npm install
# # encrypted environment variables are not available for pull requests from forks
# before_deploy:
# - git config user.name "Travis CI"
# - git config user.email "[email protected]"
# - git checkout master
# - git status
# - openssl aes-256-cbc -K $encrypted_449662e2943f_key -iv $encrypted_449662e2943f_iv
# -in ./.travis/deploy_key.enc -out ./.travis/deploy_key -d
# - eval "$(ssh-agent -s)" # start the ssh agent
# - chmod 600 .travis/deploy_key
# - ssh-add .travis/deploy_key
# - git remote add deploy [email protected]:${TRAVIS_REPO_SLUG}.git
# deploy:
# provider: script
# script: .travis/deploy.sh
# # Warning: there is an unencrypted private key in the working directory.
# # Do not deploy it anywhere.
# skip_cleanup: true
# on:
# branch: master
|
Install latest npm and modules in Travis
|
Install latest npm and modules in Travis
|
YAML
|
apache-2.0
|
yxeri/roleOOC,yxeri/roleTerminal,yxeri/roleTerminal,yxeri/roleOOC,yxeri/roleTerminal,yxeri/roleOOC
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.