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
|
---|---|---|---|---|---|---|---|---|---|
d87ea6db2a73f2c92cf8f7a500acc54a4ffb1d39
|
.travis.yml
|
.travis.yml
|
language: php
php:
- '7.0'
- '7.1'
install:
- composer install
script:
- mkdir -p build/logs
- phpunit --configuration tests/phpunit.xml --coverage-clover build/logs/clover.xml
- php vendor/bin/phpcs --ignore=vendor --standard=coding_standard.xml .
after_success:
- travis_retry php vendor/bin/coveralls
|
language: php
php:
- '7.0'
- '7.1'
install:
- composer install
script:
- mkdir -p build/logs
- vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-clover build/logs/clover.xml
- php vendor/bin/phpcs --ignore=vendor --standard=coding_standard.xml .
after_success:
- travis_retry php vendor/bin/coveralls
|
Change phpunit command to use vendor/bin/phpunit.
|
Change phpunit command to use vendor/bin/phpunit.
|
YAML
|
mit
|
markrogoyski/math-php,Beakerboy/math-php
|
04bfb0a6996b54249677d0009e60a43d0626a77e
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
before_install:
# Install RDKit from source (Release_2014_03_1)
# Follow the pattern in rdkit/.travis.yml on GitHub
- clone=`pwd`
- cd ~
- sudo apt-get update -qq
- sudo apt-get install -qq flex bison build-essential python-numpy cmake python-dev sqlite3 libsqlite3-dev libboost-dev libboost-python-dev libboost-regex-dev python-imaging openjdk-7-jdk swig junit
- wget https://github.com/rdkit/rdkit/archive/Release_2014_03_1.tar.gz
- tar -xzf Release_2014_03_1.tar.gz
- cd rdkit-Release_2014_03_1/
- export RDBASE=`pwd`
- export PYTHONPATH=${PYTHONPATH}:${RDBASE}
- export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${RDBASE}/lib
- mkdir build
- cd build
- mkdir $RDBASE/External/java_lib
- cp /usr/share/java/junit.jar $RDBASE/External/java_lib
- ls -l $RDBASE/External/java_lib
- cmake -D RDK_BUILD_CPP_TESTS=OFF ..
- make -j2
- make install
# Install code analysis tools
- pip install pep8
- pip install pyflakes
install:
- cd $clone
- python setup.py install
script:
- nosetests
- pep8 rdkit_utils
- pyflakes rdkit_utils
|
language: python
python:
- "2.7"
before_install:
# Install RDKit from source (Release_2014_03_1)
# Follow the pattern in rdkit/.travis.yml on GitHub
- clone=`pwd`
- sudo apt-get update -qq
- sudo apt-get install -qq flex bison build-essential python-numpy cmake python-dev sqlite3 libsqlite3-dev libboost-dev libboost-python-dev libboost-regex-dev python-imaging openjdk-7-jdk swig junit
- cd ~
- git clone https://github.com/rdkit/rdkit.git rdkit/rdkit
- cd rdkit/rdkit
- git checkout tags/Release_2014_03_1
- export RDBASE=`pwd`
- export PYTHONPATH=${PYTHONPATH}:${RDBASE}
- export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${RDBASE}/lib
- mkdir build
- cd build
- mkdir $RDBASE/External/java_lib
- cp /usr/share/java/junit.jar $RDBASE/External/java_lib
- ls -l $RDBASE/External/java_lib
- cmake -D RDK_BUILD_CPP_TESTS=OFF ..
- make -j2
- make install
# Install code analysis tools
- pip install pep8
- pip install pyflakes
install:
- cd $clone
- python setup.py install
script:
- nosetests
- pep8 rdkit_utils
- pyflakes rdkit_utils
|
Use git instead of wget to fetch rdkit source
|
Use git instead of wget to fetch rdkit source
|
YAML
|
bsd-3-clause
|
skearnes/rdkit-utils
|
fae0cba58da889b6750570415cda1208d518a5de
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
matrix:
allow_failures:
- php: 7.0
before_script:
- composer install
- wget https://scrutinizer-ci.com/ocular.phar
script:
- php vendor/atoum/atoum/scripts/coverage.php --format xml --output clover.xml
after_script:
- php ocular.phar code-coverage:upload --format=php-clover clover.xml
|
language: php
php:
- 5.5
- 5.6
- 7.0
matrix:
allow_failures:
- php: 7.0
before_script:
- composer install
- wget https://scrutinizer-ci.com/ocular.phar
script:
- php vendor/atoum/atoum/scripts/coverage.php --format xml --output clover.xml
after_script:
- php ocular.phar code-coverage:upload --format=php-clover clover.xml
|
Remove PHP 5.4 from the build matrix
|
Remove PHP 5.4 from the build matrix
|
YAML
|
bsd-2-clause
|
FriendsOfPHP/pickleweb,FriendsOfPHP/pickleweb,FriendsOfPHP/pickleweb
|
477812cf955938b219b69960762c06caddec3a1e
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.7.1
- master
|
language: go
go:
- 1.7.1
- master
# Sudo is required for docker
sudo: required
# Enable docker
services:
- docker
# In Travis, we need to bind to 127.0.0.1 in order to get a working connection. This environment variable
# tells dockertest to do that.
env:
- DOCKERTEST_BIND_LOCALHOST=true
|
Configure docker integration on Travis
|
Configure docker integration on Travis
|
YAML
|
apache-2.0
|
LewisWatson/carshare-back
|
ead07168fa074f04c08a2d4617607b7d56745945
|
.travis.yml
|
.travis.yml
|
sudo: true
language: python
matrix:
include:
- python: 2.7
- python: 3.5
- python: 3.6
- python: 3.7
dist: xenial
- python: pypy
before_install:
- sudo apt-get update -qq
- sudo apt-get install --yes fakeroot openssh-server
install:
- pip install --constraint=constraints.txt --requirement=requirements-travis.txt
- LC_ALL=C pip install .
script:
- make check
- make test
after_success:
- coveralls
branches:
except:
- /^[0-9]/
|
sudo: true
language: python
matrix:
include:
- python: 2.7
- python: 3.5
- python: 3.6
- python: 3.7
dist: xenial
- python: pypy
before_install:
- sudo apt-get update -qq
- sudo apt-get install --yes fakeroot openssh-server
install:
- pip install --requirement=requirements-travis.txt
- LC_ALL=C pip install .
script:
- make check
- make test
after_success:
- coveralls
branches:
except:
- /^[0-9]/
|
Remove leftover reference to pip constraints file
|
Remove leftover reference to pip constraints file
|
YAML
|
mit
|
xolox/python-executor
|
b4b001ea8925b98e77debc8b662398ef768fd4e9
|
.travis.yml
|
.travis.yml
|
---
language: node_js
sudo: false
cache:
directories:
- node_modules
before_install:
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- npm test
after_success:
- ember build --environment=production
- "./bin/s3-publish.js"
- "./bin/publish_to_shim_repo"
env:
global:
- S3_BUCKET_NAME=ember-cpm-builds
- secure: "XzWXDClclsPkxVhHAETuKPHSxocCpWDIpE12IzNcH6aHVHJTAQs7esUf+iA9cADwm7hSVitoG6AdVbz5cILH+ZvZrQBYe9YUnfIE7oMrmtux11YpIkwJUUWn9xAen8Yd4wG83bSJh5wy4ZexuMtvD92zo4BSG+MPDBeA0gvQC8Y="
|
---
language: node_js
node_js:
- "0.12"
- "iojs"
sudo: false
cache:
directories:
- node_modules
before_install:
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- npm test
after_success:
- ember build --environment=production
- "./bin/s3-publish.js"
- "./bin/publish_to_shim_repo"
env:
global:
- S3_BUCKET_NAME=ember-cpm-builds
- secure: "XzWXDClclsPkxVhHAETuKPHSxocCpWDIpE12IzNcH6aHVHJTAQs7esUf+iA9cADwm7hSVitoG6AdVbz5cILH+ZvZrQBYe9YUnfIE7oMrmtux11YpIkwJUUWn9xAen8Yd4wG83bSJh5wy4ZexuMtvD92zo4BSG+MPDBeA0gvQC8Y="
|
Test in node 0.12 and iojs
|
Test in node 0.12 and iojs
|
YAML
|
mit
|
stefanpenner/ember-cpm,mike-north/ember-cpm,lolmaus/ember-cpm,stefanpenner/ember-cpm,elwayman02/ember-cpm,lolmaus/ember-cpm,mike-north/ember-cpm,elwayman02/ember-cpm,ulisesrmzroche/ember-cpm,ulisesrmzroche/ember-cpm,stefanpenner/ember-cpm,elwayman02/ember-cpm,ulisesrmzroche/ember-cpm,lolmaus/ember-cpm,mike-north/ember-cpm
|
3f0bebac52ddf29b844b66bc8e272337f86c729d
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: false
node_js:
- 'node'
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
|
language: node_js
sudo: false
node_js:
- '4'
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
|
Test on Node 4, not latest Node
|
Travis: Test on Node 4, not latest Node
We'll add latest Node.js when Node.js 5 comes out. We'll still want to support
Node.js 4 as it will be an LTS.
|
YAML
|
mit
|
mgol/jquery.classList,mzgol/jquery.classList
|
90336eff71b19a24f04164e259ce16b6c3b13d1f
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "4.0.0"
- "stable"
install: npm install
script: npm run travis
sudo: false
|
language: node_js
node_js:
- "10.18.1"
- "stable"
install: npm install
script: npm run travis
sudo: false
|
Upgrade min node js version to 10
|
Upgrade min node js version to 10
|
YAML
|
mit
|
tillarnold/oni
|
1fc62b32315724a8ee347eb6e705b241439ec91f
|
.travis.yml
|
.travis.yml
|
language: go
go:
- "1.11.2"
- "1.10.5"
install:
- go get -u golang.org/x/lint/golint
script:
- golint -set_exit_status
- go vet
- go test
|
language: go
go:
- "1.11.4"
install:
- go get -u golang.org/x/lint/golint
script:
- golint -set_exit_status
- go vet
- go test
|
Build against Go 1.11.4; drop 1.10.5
|
Build against Go 1.11.4; drop 1.10.5
|
YAML
|
mit
|
TV4/search-go
|
003d80a5cdc64b783668bb346447ba8683b06229
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- "4.1"
env:
global:
# Please get your own free key if you want to test yourself
- SAUCE_USERNAME: dojo2-ts-ci
- SAUCE_ACCESS_KEY: e92610e3-834e-4bec-a3b5-6f7b9d874601
- BROWSERSTACK_USERNAME: dtktestaccount1
- BROWSERSTACK_ACCESS_KEY: mG2qbEFJCZY2qLsM7yfx
cache:
directories:
- node_modules
install:
- "travis_retry npm install grunt-cli"
- "travis_retry npm install"
script:
- "grunt"
- "grunt intern:node --combined"
- "grunt intern:saucelabs --combined"
- "grunt remapIstanbul:ci"
- "grunt uploadCoverage"
|
sudo: false
language: node_js
node_js:
- "5.1"
env:
global:
# Please get your own free key if you want to test yourself
- SAUCE_USERNAME: dojo2-ts-ci
- SAUCE_ACCESS_KEY: e92610e3-834e-4bec-a3b5-6f7b9d874601
- BROWSERSTACK_USERNAME: dtktestaccount1
- BROWSERSTACK_ACCESS_KEY: mG2qbEFJCZY2qLsM7yfx
cache:
directories:
- node_modules
install:
- "travis_retry npm install grunt-cli"
- "travis_retry npm install"
script:
- "grunt"
- "grunt intern:node --combined"
- "grunt intern:saucelabs --combined"
- "grunt remapIstanbul:ci"
- "grunt uploadCoverage"
|
Move CI to Node 5.1
|
Move CI to Node 5.1
|
YAML
|
bsd-3-clause
|
mwistrand/routing,mwistrand/routing,mwistrand/routing
|
45959cceb820b0018a12911b317dadfca3535eee
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- stable
before_script:
- npm install -g grunt-cli
env:
global:
- secure: GKwpR/WClxLyT0FXkq7UAglifJ6QJdikdFCW9/vUVWh1oRNkxt71LhvOGn7VDZgEwexA1C3l9lwLEXLgFX7JCuvdkj7UqvOTPwNG63UciagSsxfQnGvi8smd6QxfZg3JGhbzrpOofA6xm4mVhGdJdNaKnf49nNzUtXcRqh8/qUU=
- secure: cAHuKouQZgvdG7pNcSBLo/cMXKkgZUKLOoQcigdPpluo+nTEFAFidp33G+dTJiaot23Uh2GBz//tcGIKbwoQi6yIRar4WcofbN0LIR5R3+TRvA7yEWcAIYGZEkrjjXqyMmASG9zM8kXuvzT+/3xtNba5cnhSeT51kEefx00OTI8=
addons:
sauce_connect: true
|
sudo: false
language: node_js
node_js:
- stable
before_script:
- npm install -g grunt-cli
env:
global:
secure: "FkP/F/2n6ZEXpiMQDrOGDUxjUf+Ai+ErHSF3QjGfZjmjfxG9wRJNP6r2KyoM58jQ6HQduE94U//wYf6KTDyYduy7HurTFfF7KlaQRRJRxEebIjy/gWSXnu8pa/pffaBiD4QKX1g5PZIoocCfkbqNRI3f1PIrNgOngScv0IPWMJc="
secure: "YB2woBM+GFCNhNPHYygFLzDoerEPLkETjzV1JpQf9WZG7fE3WyAfQYtwKz/XrjwhDhe0relt+KuCTDI+pnYy808KNv6r2ElAiVf5Q2EYl0Gf4F4knHY8rGX8OpVyS3hbvTbe1JNPwGazWP6hFYJ9tCAsTbOdw1co5JMytVtB4+I="
addons:
sauce_connect: true
|
Switch to unique saucelabs account
|
Switch to unique saucelabs account
|
YAML
|
mit
|
Nycto/PicoModal,Nycto/PicoModal
|
04d6fffc9e3f57a73b232e808e2e5e01897ae80b
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
before_install:
- sudo apt-get update && sudo apt-get install oracle-java8-installer
- java -version
|
language: java
jdk:
- oraclejdk8
cache: apt
before_install:
- sudo apt-get update && sudo apt-get install oracle-java8-installer
- java -version
|
Add Travis caching for JDK 8
|
Add Travis caching for JDK 8
|
YAML
|
mit
|
joffrey-bion/fx-log
|
f98d773a0ff79313abf239c521eb3eada9695476
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "8"
- "10"
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
script:
- yarn test
cache: yarn
|
language: node_js
node_js:
- "8"
- "10"
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
script:
- npm test
|
Use npm instead of yarn
|
Use npm instead of yarn
|
YAML
|
mit
|
z-kit/z-hello,z-kit/component,z-kit/component,z-kit/z-hello
|
abc297e66c47a7e6f64452b5f074a7db9af5c053
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.3
- tip
env:
- "PATH=/home/travis/gopath/bin:$PATH"
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get code.google.com/p/go.tools/cmd/cover
install: go get -v ./recurly
script:
- go test -v -covermode=count -coverprofile=coverage.out ./recurly
- goveralls -coverprofile=coverage.out -service travis-ci
|
language: go
go:
- 1.3
- tip
env:
- "PATH=/home/travis/gopath/bin:$PATH"
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
install: go get -v ./recurly
script:
- go test -v -covermode=count -coverprofile=coverage.out ./recurly
- goveralls -coverprofile=coverage.out -service travis-ci
|
Update path to go cover
|
Update path to go cover
|
YAML
|
mit
|
blacklightcms/go-recurly,blacklightcms/recurly
|
2dc35017fb57eb820d98216e9853a45aed1a2f99
|
.travis.yml
|
.travis.yml
|
before_install:
- yes | sudo add-apt-repository ppa:hansjorg/rust
- sudo apt-get update
install:
- sudo apt-get install rust-nightly
- wget http://www.libsdl.org/release/SDL2-2.0.0.tar.gz
- tar -zxvf SDL2-2.0.0.tar.gz
- cd SDL2-2.0.0
- ./configure && make && sudo make install
- cd -
script:
- make compile_demo
|
before_install:
- wget http://static.rust-lang.org/dist/rust-nightly-x86_64-unknown-linux-gnu.tar.gz
- tar xf rust-nightly-x86_64-unknown-linux-gnu.tar.gz
install:
- sudo ./rust-nightly-x86_64-unknown-linux-gnu/install.sh
- wget http://www.libsdl.org/release/SDL2-2.0.0.tar.gz
- tar -zxvf SDL2-2.0.0.tar.gz
- cd SDL2-2.0.0
- ./configure && make && sudo make install
- cd -
script:
- make compile_demo
|
Use Rust nightly builds for Travis
|
Use Rust nightly builds for Travis
|
YAML
|
mit
|
inrustwetrust/rust-sdl2,Rust-SDL2/rust-sdl2,Cobrand/rust-sdl2,oldmanmike/rust-sdl2,Cobrand/rust-sdl2,crumblingstatue/rust-sdl2,Rust-SDL2/rust-sdl2,cristicbz/rust-sdl2,beni55/rust-sdl2,tempbottle/rust-sdl2,bfops/rust-sdl2,caldwell/rust-sdl2,Cobrand/rust-sdl2,wilsoniya/rust-sdl2,cristicbz/rust-sdl2,bvssvni/rust-sdl2,Rust-SDL2/rust-sdl2,vadixidav/rust-sdl2,PistonDevelopers/rust-sdl2,AngryLawyer/rust-sdl2,nukep/rust-sdl2
|
9c46ada7e40229cf8cff892fffcb9ebcad355c06
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.11"
services: mongodb
after_success: 'curl -v -X POST -H "api_key: fdb9e03f-f843-4bea-9d02-43ab619dd289" http://162.243.219.172/deploys/openhim-core/preprod'
|
language: node_js
node_js:
- "0.11"
- "0.12"
- iojs
services: mongodb
after_success: 'curl -v -X POST -H "api_key: fdb9e03f-f843-4bea-9d02-43ab619dd289" http://162.243.219.172/deploys/openhim-core/preprod'
|
Add node 0.12 and io.js
|
Add node 0.12 and io.js
|
YAML
|
mpl-2.0
|
jembi/openhim-core-js,jembi/openhim-core-js
|
e5ce6ebdc2ebf9c9ff7a18d641de0b55aa614298
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.1.2
env:
- DB=postgresql
addons:
postgresql: "9.3"
script:
- RAILS_ENV=test bundle exec rake db:setup --trace
- RAILS_ENV=test bundle exec rake db:migrate --trace
- bundle exec rake
before_script:
- cp config/secrets.yml.travis config/secrets.yml
- cp config/database.yml.travis config/database.yml
- psql -c 'create database filentoryTEST;' -U postgres
|
language: ruby
rvm:
- 2.1.2
- 2.2.0
env:
- DB=postgresql
addons:
postgresql: "9.3"
script:
- RAILS_ENV=test bundle exec rake db:setup --trace
- RAILS_ENV=test bundle exec rake db:migrate --trace
- bundle exec rake
before_script:
- cp config/secrets.yml.travis config/secrets.yml
- cp config/database.yml.travis config/database.yml
- psql -c 'create database filentoryTEST;' -U postgres
|
Add Ruby 2.2 for TravisCI
|
Add Ruby 2.2 for TravisCI
|
YAML
|
apache-2.0
|
jgraber/filentory-web,jgraber/filentory-web,jgraber/filentory-web
|
071ef2dc45512dcdcd195f5cf763977bc53a79b7
|
.travis.yml
|
.travis.yml
|
dist: xenial
language: python
python:
- "3.7"
- "pypy3"
matrix:
allow_failures:
- python: pypy3
before_script:
- pip install poetry
script:
- make lint
- make test
after_success:
- bash <(curl -s https://codecov.io/bash)
services:
- docker
- postgresql
env:
global:
- FLASK_APP="app.py"
- BOILERPLATEAPP_CONFIG="testing"
- SQLALCHEMY_DATABASE_URI="postgresql://postgres@localhost/boilerplateapp"
addons:
- postgresql="9.6"
|
dist: xenial
language: python
python:
- "3.8"
before_script:
- pip install poetry
script:
- make lint
- make test
after_success:
- bash <(curl -s https://codecov.io/bash)
services:
- docker
- postgresql
env:
global:
- FLASK_APP="app.py"
- BOILERPLATEAPP_CONFIG="testing"
- SQLALCHEMY_DATABASE_URI="postgresql://postgres@localhost/boilerplateapp"
addons:
- postgresql="9.6"
|
Test against Python 3.8 only
|
Test against Python 3.8 only
|
YAML
|
mit
|
svenstaro/python-web-boilerplate,svenstaro/python-web-boilerplate
|
a6e7ed68a4a1f03cc9b2b4754a8e231138251059
|
.travis.yml
|
.travis.yml
|
env:
global:
- DOCKER_VERSION=1.10.1-0~trusty
sudo: required
services:
- docker
before_install:
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
script:
- docker version
- docker login -e=$DOCKER_EMAIL -u=$DOCKER_USERNAME -p=$DOCKER_PASSWORD
- ./build.sh
|
env:
global:
- DOCKER_VERSION=1.10.1-0~trusty
sudo: required
services:
- docker
before_install:
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
script:
- docker version
- docker login --email="$DOCKER_EMAIL" --username="$DOCKER_USERNAME" --password="$DOCKER_PASSWORD"
- ./build.sh
|
Use latest Docker and login the Docker Hub in Travis build.
|
Use latest Docker and login the Docker Hub in Travis build.
|
YAML
|
mit
|
sappho/docker-build-tarsnap
|
013adfa7c42d4d07a88c92892071463edf676d23
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.4"
- "3.3"
- "3.2"
install:
- npm install jshint
- pip install -r dev_requirements.txt
- pip install coveralls
script:
- .githooks/pre-commit -f
- ./runtests.sh
after_success:
- coveralls
deploy:
provider: pypi
user: ixa
password:
secure: KotqwXcFnooWKlSp1jM98898loE9ugWpba7tXGcDFuHhXQGT/wXtNgzROa2EhPxs7IYfQtxq4HD3dadYSziuUzHRTTjg5YUiW9Gx4N0gFtfthraroKu4IB62B9k84YPmxIIZZNvkJOSd1Ip5x2/+TJntPcroi0UK4GFRhLmcOKM=
server: https://pypi.python.org/pypi
on:
branch: release
tags: true
python: 3.4
|
language: python
python:
- "3.4"
- "3.3"
- "3.2"
install:
- npm install jshint
- pip install -r dev_requirements.txt
- pip install coveralls
script:
- .githooks/pre-commit -f
- ./runtests.sh
after_success:
- coveralls
deploy:
provider: pypi
user: ixa
password:
secure: KotqwXcFnooWKlSp1jM98898loE9ugWpba7tXGcDFuHhXQGT/wXtNgzROa2EhPxs7IYfQtxq4HD3dadYSziuUzHRTTjg5YUiW9Gx4N0gFtfthraroKu4IB62B9k84YPmxIIZZNvkJOSd1Ip5x2/+TJntPcroi0UK4GFRhLmcOKM=
server: https://pypi.python.org/pypi
on:
tags: true
python: 3.4
condition: [ "$TRAVIS_TAG" == "v$(python setup.py --version)" ]
|
Update to use master and make sure the version tag is good
|
Update to use master and make sure the version tag is good
|
YAML
|
apache-2.0
|
infoxchange/docker-forklift,infoxchange/docker-forklift
|
f47eb370909bbd407071a6ddde9b0ef0972536f4
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
notifications:
email: false
# Skip the install step, which causes a double build. The commands below in
# `script` automatically download and install their dependencies as well.
install: true
# Install custom dynsem version, containing the required classes
# for the project.
# dependency only exists because DynSemEvaluationStrategy is kept,
# even though it is not functional or being used.
before_install:
- git clone https://github.com/spoofax-shell-2017/dynsem.git --branch develop/shell ~/dynsem --depth=1
- cd ~/dynsem/org.metaborg.meta.lang.dynsem.interpreter/
- mvn install
- cd $TRAVIS_BUILD_DIR
# The Eclipse plugin module cannot be build in the same reactor build, so it has
# to be build separately. This also means that its dependencies will not be
# automatically resolved, hence the `install` phase for the reactor build.
# To work around a bug in the Eclipse compiler, all modules have to be build
# separately.
script:
cd org.metaborg.spoofax.shell.core && mvn clean install &&
cd ../org.metaborg.spoofax.shell.eclipse.externaldeps && mvn clean install &&
cd ../org.metaborg.spoofax.shell.eclipse && mvn clean verify &&
cd ../org.metaborg.spoofax.shell.console && mvn clean verify
|
language: java
jdk:
- oraclejdk8
notifications:
email: false
# Skip the install step, which causes a double build. The commands below in
# `script` automatically download and install their dependencies as well.
install: true
# Cache the dependencies: these take unnecessarily long to download.
cache:
directories:
- $HOME/.m2
# Install custom dynsem version, containing the required classes
# for the project.
# dependency only exists because DynSemEvaluationStrategy is kept,
# even though it is not functional or being used.
before_install:
- git clone https://github.com/spoofax-shell-2017/dynsem.git --branch develop/shell ~/dynsem --depth=1
- cd ~/dynsem/org.metaborg.meta.lang.dynsem.interpreter/
- mvn install
- cd $TRAVIS_BUILD_DIR
# The Eclipse plugin module cannot be build in the same reactor build, so it has
# to be build separately. This also means that its dependencies will not be
# automatically resolved, hence the `install` phase for the reactor build.
# To work around a bug in the Eclipse compiler, all modules have to be build
# separately.
script:
cd org.metaborg.spoofax.shell.core && mvn clean install &&
cd ../org.metaborg.spoofax.shell.eclipse.externaldeps && mvn clean install &&
cd ../org.metaborg.spoofax.shell.eclipse && mvn clean verify &&
cd ../org.metaborg.spoofax.shell.console && mvn clean verify
|
Add cache of maven m2 directory to speed up build
|
Add cache of maven m2 directory to speed up build
Downloading every dependency each time takes needlessly much time.
|
YAML
|
apache-2.0
|
spoofax-shell-2017/spoofax-shell
|
0f4ca39fa358be6aee3a2f295eba6852b3d66bb1
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "8"
cache:
directories:
- node_modules
install: npm install
jobs:
include:
- stage: test
script: bash ./travis/test.sh
- stage: deploy
script: bash ./travis/deploy.sh
env:
global:
- ENCRYPTION_LABEL: "af862fa96d3e"
- COMMIT_AUTHOR_EMAIL: "[email protected]"
dist: trusty
sudo: false
|
language: node_js
node_js:
- "8"
- "9"
cache:
directories:
- node_modules
install: npm install
jobs:
include:
- stage: test
script: bash ./travis/test.sh
- stage: deploy
script: bash ./travis/deploy.sh
env:
global:
- ENCRYPTION_LABEL: "af862fa96d3e"
- COMMIT_AUTHOR_EMAIL: "[email protected]"
dist: trusty
sudo: false
|
Add Node 9 to Travis
|
Add Node 9 to Travis
|
YAML
|
apache-2.0
|
CodeMan99/discord.js,SpaceEEC/discord.js,Lewdcario/discord.js,robflop/discord.js,hydrabolt/discord.js,appellation/discord.js,SpaceEEC/discord.js,appellation/discord.js,CodeMan99/discord.js,robflop/discord.js,hydrabolt/discord.js,hydrabolt/discord.js,Lewdcario/discord.js,Drahcirius/discord.js,Drahcirius/discord.js,robflop/discord.js,Lewdcario/discord.js,CodeMan99/discord.js,Drahcirius/discord.js,appellation/discord.js,SpaceEEC/discord.js
|
76212b4ef5a10324316de06b33144056e3d29af0
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2
- 2.3.0
script: bundle exec rake ci
sudo: false
cache: bundler
|
language: ruby
rvm:
- 2.2.6
- 2.3.3
script: bundle exec rake ci
sudo: false
cache: bundler
|
Use latest patch released on Travis CI
|
Use latest patch released on Travis CI
|
YAML
|
mit
|
increments/increments-schedule,increments/increments-schedule
|
99df33d84be0becb9037d355e1ecc6e03e02cc02
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.8
|
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.11"
|
Add CI testing for newer Node versions
|
Add CI testing for newer Node versions
This will run the test suite against the 0.8+ stable and latest unstable
(0.11) branches
|
YAML
|
mit
|
thomas658/jshint,pansay/jshint,niedzielski/jshint,yadimon/jshint,jonnyreeves/jshint,stevemao/jshint,paul-wade/jshint,crivas/jshint,gtanner/jshint,davidjb/jshint,rwaldron/jshint,alivesay/jshint,mcanthony/jshint,freeyiyi1993/jshint,BridgeAR/jshint,ghtest712/bearded-octo-dangerzone,shreyasgaonkar/jshint,shreyasgaonkar/jshint,paragag/AntiRedis,fashionsun/jshint,max789/jshint,luisbrito/jshint,freeyiyi1993/jshint,lovemeblender/jshint,kidaa/jshint,behind2/jshint,scottsmeester/jshint,jugglinmike/jshint,elkingtonmcb/jshint,nitinlal/jshint,cnbin/jshint,ljharb/jshint,alivesay/jshint,n8io/jshint,Joy603/jshint,louwers/jshint,supriyantomaftuh/jshint,supriyantomaftuh/jshint,meh-uk/jshint,elkingtonmcb/jshint,louwers/jshint,kidaa/jshint,wzup/jshint,raix/jshint,yyx990803/jshint,beni55/jshint,Jeremy017/jshint,jshint/jshint,crivas/jshint,kangax/jshint,marian-r/jshint,AndriiGro/jshint,fashionsun/jshint,ljharb/jshint,aisk/jshint,laurensortiz/jshint,beni55/jshint,wzup/jshint,davidjb/jshint,nitinlal/jshint,pansay/jshint,SqrTT/dwhint,niedzielski/jshint,cnbin/jshint,silverwind/jshint,gloryknight/jshint,jagdeesh109/jshint,laurensortiz/jshint,paladox/jshint,mrjoelkemp/jshint,mohsen1/jshint,AndriiGro/jshint,ThiagoGarciaAlves/jshint,mcanthony/jshint,n8io/jshint,wisavalite/jshint,ecomfe/edp-jshint,darongE/jshint,lukeapage/jshint,marian-r/jshint,zynick/jshint,fairfieldt/jshint,lukeapage/jshint,scottsmeester/jshint,luisbrito/jshint,max789/jshint,jagdeesh109/jshint,nicolo-ribaudo/jshint,doggy8088/jshint,paul-wade/jshint,stevemao/jshint,Khan/jshint,Endika/jshint,doggy8088/jshint,llucbrell/jshint,nicolo-ribaudo/jshint,jugglinmike/jshint,wisavalite/jshint,Endika/jshint,Jeremy017/jshint,behind2/jshint,llucbrell/jshint,mrjoelkemp/jshint,BridgeAR/jshint,mohsen1/jshint,thomas658/jshint,jshint/jshint,aisk/jshint,gtanner/jshint,Joy603/jshint,yadimon/jshint,gameclosure/jsiohint
|
39f802f5c0a2a11762efa024a9300eea44a87009
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
cache: bundler
script: bundle exec rspec
rvm:
- 2.4.1
env:
matrix:
- ACTION_MAILER_VERSION=4
- ACTION_MAILER_VERSION=5
- ACTION_MAILER_VERSION=master
matrix:
fast_finish: true
allow_failures:
- env: ACTION_MAILER_VERSION=master
|
sudo: false
language: ruby
cache: bundler
script: bundle exec rspec
rvm:
- 2.6.1
env:
matrix:
- ACTION_MAILER_VERSION=4
- ACTION_MAILER_VERSION=5
- ACTION_MAILER_VERSION=master
matrix:
fast_finish: true
allow_failures:
- env: ACTION_MAILER_VERSION=master
|
Use latest ruby version on Travis CI
|
Use latest ruby version on Travis CI
|
YAML
|
mit
|
fphilipe/premailer-rails,controlshift/premailer-rails,controlshift/premailer-rails,fphilipe/premailer-rails,controlshift/premailer-rails,fphilipe/premailer-rails
|
3efca7f32465dfdaecc44fa37c95d8396d49d976
|
.travis.yml
|
.travis.yml
|
# Angular and Meteor - The perfect stack https://www.angular-meteor.com/
#
# Author: Georgy Berdyshev
#
sudo: required
services:
- docker
env:
- distribution: ubuntu
version: bionic
before_install:
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- sudo apt-get update
- sudo apt-get -y install docker-ce
- docker --version
- 'sudo docker pull ${distribution}:${version}'
- 'sudo docker build --no-cache --rm --file=Dockerfile --tag=angular-meteor:latest .'
install:
- "sudo docker run -v ${TRAVIS_BUILD_DIR}:/angular-meteor/ --detach --name=angular-meteor-container --user docker --workdir /angular-meteor angular-meteor:latest bash -c 'source $HOME/.nvm/nvm.sh; git clean -fXd; npm cache verify; npm install -g concurrently'"
script:
- "sudo docker exec --user docker --workdir /angular-meteor angular-meteor-container bash -c 'source $HOME/.nvm/nvm.sh; /angular-meteor/run_tests.sh'"
|
# Angular and Meteor - The perfect stack https://www.angular-meteor.com/
#
# Author: Georgy Berdyshev
#
sudo: required
services:
- docker
env:
- distribution: ubuntu
version: bionic
before_install:
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- sudo apt-get update
- sudo apt-get -y install docker-ce
- docker --version
- 'sudo docker pull ${distribution}:${version}'
- 'sudo docker build --no-cache --rm --file=Dockerfile --tag=angular-meteor:latest .'
install:
- "sudo docker run -v ${TRAVIS_BUILD_DIR}:/angular-meteor/ --detach --name=angular-meteor-container --user docker --workdir /angular-meteor angular-meteor:latest bash -c 'source $HOME/.nvm/nvm.sh; git clean -fXd; npm cache verify; npm install -g concurrently'"
before_script:
- "sudo docker exec --user root --workdir /angular-meteor angular-meteor-container bash -c 'chown -R docker /angular-meteor'"
script:
- "sudo docker exec --user docker --workdir /angular-meteor angular-meteor-container bash -c 'source $HOME/.nvm/nvm.sh; /angular-meteor/run_tests.sh'"
|
Update ownership of source code directory.
|
Update ownership of source code directory.
|
YAML
|
mit
|
Urigo/angular-meteor
|
ff8a6e388a1afa934faa7ef98fed1d74cdf1b6f0
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
env:
-
- RACK_VERSION=1.3.0
- RACK_VERSION=1.4.0
- RACK_VERSION=1.5.0
- RACK_VERSION=1.6.0
script: "bundle exec rake spec"
branches:
only:
- master
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
env:
-
- RACK_VERSION=1.3.0
- RACK_VERSION=1.4.0
- RACK_VERSION=1.5.0
- RACK_VERSION=1.6.0
script: "bundle exec rake spec"
branches:
only:
- master
|
Add test in CI for ruby 2.2
|
Add test in CI for ruby 2.2
|
YAML
|
mit
|
dtaniwaki/rack-secure-upload
|
ed8910178f338de451a502a698747d0720a4da4b
|
.travis.yml
|
.travis.yml
|
language: python
branches:
only:
- master
python:
- "3.4"
services:
- postgresql
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
- git submodule init
- git submodule update
- ./scripts/get_static_validation.sh
# command to install dependencies
install:
- pip install -r py-requirements/dev.txt
- nvm install 6
- npm install
- npm run prod
# command to run tests
script:
- py.test -c pytest_ci.ini tests/
- prospector --profile-path=. --profile=.prospector.yml --path=src --ignore-patterns=static
- bandit -r src
- npm run coverage
- npm run lintjs
- npm run lintscss
|
language: python
branches:
only:
- master
python:
- "3.4"
services:
- postgresql
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
- git submodule init
- git submodule update
- ./scripts/get_static_validation.sh
# command to install dependencies
install:
- pip install -r py-requirements/dev.txt
- nvm install 6
- npm install
- npm run prod
# command to run tests
script:
- py.test -c pytest_ci.ini tests/
# prospector currently not working
# - prospector --profile-path=. --profile=.prospector.yml --path=src --ignore-patterns=static
- bandit -r src
- npm run coverage
- npm run lintjs
- npm run lintscss
|
Update Travis Prospector not working
|
Update Travis Prospector not working
|
YAML
|
mit
|
SeaItRise/SeaItRise-webportal,SeaItRise/SeaItRise-webportal,SeaItRise/SeaItRise-webportal,SeaItRise/SeaItRise-webportal
|
32440abca60eb3fac35b0132dd512f496a06b226
|
.travis.yml
|
.travis.yml
|
rvm:
- 1.9.3
- 2.0.0
gemfile:
- gemfiles/activesupport_3_2.gemfile
- gemfiles/activesupport_4_0.gemfile
- gemfiles/activesupport_4_1.gemfile
- gemfiles/activesupport_4_2.gemfile
|
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
gemfile:
- gemfiles/activesupport_3_2.gemfile
- gemfiles/activesupport_4_0.gemfile
- gemfiles/activesupport_4_1.gemfile
- gemfiles/activesupport_4_2.gemfile
|
Drop support for old Rubies
|
Drop support for old Rubies
|
YAML
|
mit
|
fastladder/opml
|
7b56aa1aef9a9fa5ddfced7d057e917ff0ae730d
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.1
- 7.1snapshot
- 7.2
- 7.2snapshot
git:
depth: 5
cache:
directories:
- $HOME/.composer/cache/files
branches:
only:
- master
- development
- /^feature\/.+$/
- /^refactoring\/.+$/
- /^issue\/.+$/
before_script:
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git checkout "$TRAVIS_BRANCH"; else git checkout -b "$TRAVIS_PULL_REQUEST_BRANCH"; fi
- git reset --hard "$TRAVIS_COMMIT"
- composer self-update
- mkdir -p vendor/bin
- mkdir -p build/logs
- composer install -o --prefer-dist --no-interaction
script:
- php vendor/bin/phpunit.phar -c build/
after_success:
- travis_retry php vendor/bin/coveralls.phar -v --exclude-no-stmt
|
language: php
php:
- 7.2
- 7.2snapshot
git:
depth: 5
cache:
directories:
- $HOME/.composer/cache/files
branches:
only:
- master
- development
- /^feature\/.+$/
- /^refactoring\/.+$/
- /^issue\/.+$/
before_script:
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git checkout "$TRAVIS_BRANCH"; else git checkout -b "$TRAVIS_PULL_REQUEST_BRANCH"; fi
- git reset --hard "$TRAVIS_COMMIT"
- composer self-update
- mkdir -p vendor/bin
- mkdir -p build/logs
- composer install -o --prefer-dist --no-interaction
script:
- php vendor/bin/phpunit.phar -c build/ --coverage-clover build/logs/clover.xml
after_success:
- travis_retry php vendor/bin/coveralls.phar -v --exclude-no-stmt
|
Add clover coverage to phpunit command
|
Add clover coverage to phpunit command
|
YAML
|
mit
|
hollodotme/repo-template
|
31d3bf5244a1d5574814b5ba7c587eedf35da08c
|
.travis.yml
|
.travis.yml
|
language: java
sudo: false
jdk:
- oraclejdk8
env:
global:
- DISPLAY=:99.0
cache:
directories:
- $HOME/.m2
# Handle git submodules yourself
git:
submodules: false
# Enable UI
# Use sed to replace the SSH URL with the public URL, then initialize submodules
before_install:
- sh -e /etc/init.d/xvfb start - sleep 10
- sed -i 's/[email protected]:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
- git clone --depth 1 https://github.com/vitruv-tools/BuildUtilities.git /tmp/BuildUtilities
- . /tmp/BuildUtilities/travis-ci/installMaven.sh
install: true
script: mvn clean verify
after_success:
- . /tmp/BuildUtilities/travis-ci/deployNightly.sh framework releng/tools.vitruv.updatesite.aggregated final
|
language: java
sudo: false
jdk:
- oraclejdk8
env:
global:
- DISPLAY=:99.0
cache:
directories:
- $HOME/.m2
# Handle git submodules yourself
git:
submodules: false
# Enable UI
# Use sed to replace the SSH URL with the public URL, then initialize submodules
before_install:
- sh -e /etc/init.d/xvfb start - sleep 10
- sed -i 's/[email protected]:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
- git clone --depth 1 https://github.com/vitruv-tools/BuildUtilities.git /tmp/BuildUtilities
- . /tmp/BuildUtilities/travis-ci/installMaven.sh
install: true
script: mvn clean verify
after_success:
- . /tmp/BuildUtilities/travis-ci/deploy.sh framework releng/tools.vitruv.updatesite.aggregated final
|
Correct bug in Travis deploy script
|
Correct bug in Travis deploy script
|
YAML
|
epl-1.0
|
vitruv-tools/Vitruv
|
10fe388e54f097346ae88a1a8ac6925cc6054cf5
|
.travis.yml
|
.travis.yml
|
os:
- osx
- linux
sudo: required
language: go
go: 1.4
install:
- ./tasks/general/ci/install.sh github.com/limetext/lime-backend/lib
- ./tasks/local/ci/install.sh
script:
- ./tasks/general/ci/run_tests.sh lib
- ./tasks/local/ci/check_gen.sh
- ./tasks/general/ci/check_fmt.sh
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/3e692a5224c8490f19bd
on_success: change
on_failure: always
on_start: false
|
os:
- osx
- linux
sudo: required
language: go
go: 1.4
install:
- ./tasks/general/ci/install.sh github.com/limetext/lime-backend/lib
script:
- ./tasks/general/ci/run_tests.sh lib
- ./tasks/local/ci/check_gen.sh
- ./tasks/general/ci/check_fmt.sh
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/3e692a5224c8490f19bd
on_success: change
on_failure: always
on_start: false
|
Remove the local install script again.
|
Remove the local install script again.
|
YAML
|
bsd-2-clause
|
codex8/lime-backend,ch1bo/lime-backend,bj7/lime-backend,ch1bo/lime-backend,bj7/lime-backend,codex8/lime-backend,codex8/lime-backend,bj7/lime-backend,bj7/lime-backend,limetext/lime-backend,codex8/lime-backend,ch1bo/lime-backend,limetext/lime-backend,limetext/lime-backend,limetext/lime-backend,limetext/backend,ch1bo/lime-backend
|
fd062f3e07b6dcf3871e089b6e29bb8730baa533
|
.travis.yml
|
.travis.yml
|
language: php
before_script:
- sudo apt-get install bsdtar zip
# - sudo easy_install sphinx
- composer install --dev --prefer-source
env:
- ZIPPY_ADAPTER=ZipAdapter
- ZIPPY_ADAPTER=ZipExtensionAdapter
- ZIPPY_ADAPTER=GNUTar\\TarGNUTarAdapter
- ZIPPY_ADAPTER=GNUTar\\TarGzGNUTarAdapter
- ZIPPY_ADAPTER=GNUTar\\TarBz2GNUTarAdapter
- ZIPPY_ADAPTER=BSDTar\\TarBSDTarAdapter
- ZIPPY_ADAPTER=BSDTar\\TarGzBSDTarAdapter
- ZIPPY_ADAPTER=BSDTar\\TarBz2BSDTarAdapter
php:
- 5.3.3
# - 5.3
- 5.4
- 5.5
script:
- phpunit -v --coverage-text
- phpunit -v -c phpunit-functional.xml.dist
# - sh -c "cd docs && make clean && make html"
|
language: php
before_script:
- sudo apt-get install bsdtar zip
# - sudo easy_install sphinx
- composer install --dev --prefer-source
env:
- ZIPPY_ADAPTER=ZipAdapter
- ZIPPY_ADAPTER=ZipExtensionAdapter
- ZIPPY_ADAPTER=GNUTar\\TarGNUTarAdapter
- ZIPPY_ADAPTER=GNUTar\\TarGzGNUTarAdapter
- ZIPPY_ADAPTER=GNUTar\\TarBz2GNUTarAdapter
- ZIPPY_ADAPTER=BSDTar\\TarBSDTarAdapter
- ZIPPY_ADAPTER=BSDTar\\TarGzBSDTarAdapter
- ZIPPY_ADAPTER=BSDTar\\TarBz2BSDTarAdapter
php:
- 5.3.3
# - 5.3
- 5.4
- 5.5
matrix:
allow_failures:
- php: 5.5
script:
- phpunit -v --coverage-text
- phpunit -v -c phpunit-functional.xml.dist
# - sh -c "cd docs && make clean && make html"
|
Allow failure on PHP 5.5
|
Allow failure on PHP 5.5
|
YAML
|
mit
|
bburnichon/Zippy,bburnichon/Zippy,bburnichon/Zippy
|
d2ab10f330308c7024739bb9e7b42b05a5843a68
|
.travis.yml
|
.travis.yml
|
language: java
before_install:
- npm install gulp gulp-mocha gulp-util chai
- sudo apt-get update
- sudo apt-get install scala
script: "gradle build"
|
language: cpp
compiler:
- gcc
- clang
language: java
before_install:
- npm install gulp gulp-mocha gulp-util chai
- sudo apt-get update
- sudo apt-get install scala
script: "gradle build"
|
Add languages to Travis yml
|
Add languages to Travis yml
|
YAML
|
mit
|
joshpadilla/deter-bistro,joshpadilla/deter-bistro,joshpadilla/deter-bistro,joshpadilla/deter-bistro,joshpadilla/deter-bistro,joshpadilla/deter-bistro,joshpadilla/deter-bistro,joshpadilla/deter-bistro
|
72724e58e5feb6cad754c310f14467baec042f6e
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
rvm:
- 2.3.0
- 2.5.0
before_install: gem install bundler -v 1.6.1
|
sudo: false
language: ruby
cache: bundler
rvm:
- 2.3.0
- 2.5.0
before_install: gem install bundler
|
Remove hardcoded bundler version and cache bundle
|
TravisCI: Remove hardcoded bundler version and cache bundle
|
YAML
|
mit
|
buren/arbetsformedlingen,buren/arbetsformedlingen
|
648becd239e2c21fa5de6cb2e2ac47c6f28099c9
|
.travis.yml
|
.travis.yml
|
language: objective-c
branches:
only:
- master
git:
submodules: false
before_install:
- git submodule update --init --recursive
- brew update
- brew upgrade
- brew install swiftlint
- bundle install
podfile: CocoaHeadsApp/Podfile
xcode_workspace: CocoaHeadsApp/CocoaHeadsApp.xcworkspace
xcode_scheme: CocoaHeadsApp
script: xctool -workspace CocoaHeadsApp/CocoaHeadsApp.xcworkspace -sdk iphonesimulator -scheme CocoaHeadsApp build test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
osx_image: xcode7.2
notifications:
email: false
slack: iosdevbr:jdozLqf7LLjEeho9PB3uRL6S
|
language: objective-c
branches:
only:
- master
git:
submodules: false
before_install:
- git submodule update --init --recursive
- brew update
- brew upgrade
- brew install swiftlint
- bundle install
podfile: CocoaHeadsApp/Podfile
xcode_workspace: CocoaHeadsApp/CocoaHeadsApp.xcworkspace
xcode_scheme: CocoaHeadsApp
script: xctool -workspace CocoaHeadsApp/CocoaHeadsApp.xcworkspace -sdk iphonesimulator -scheme CocoaHeadsApp build test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
osx_image: xcode7.3
notifications:
email: false
slack: iosdevbr:jdozLqf7LLjEeho9PB3uRL6S
|
Change version XCode for 7.3 on Travis
|
Change version XCode for 7.3 on Travis
|
YAML
|
mit
|
BrunoMazzo/CocoaHeadsApp,igorcferreira/CocoaHeadsApp,CocoaHeadsBrasil/CocoaHeadsApp,BrunoMazzo/CocoaHeadsApp,BrunoMazzo/CocoaHeadsApp,CocoaHeadsBrasil/CocoaHeadsApp,CocoaHeadsBrasil/CocoaHeadsApp,igorcferreira/CocoaHeadsApp,igorcferreira/CocoaHeadsApp
|
d6b32658f2fbfd6f64a7eecdaf4b9b3015f76812
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 10
- 11
- 12
- 13
cache:
npm: false
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- graphicsmagick
- inkscape
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/da6c90cc3857ade1086c
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
language: node_js
node_js:
- 10
- 12
- 14
- node
cache:
npm: false
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- graphicsmagick
- inkscape
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/da6c90cc3857ade1086c
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
Drop odd node versions, add 14
|
Travis: Drop odd node versions, add 14
|
YAML
|
bsd-3-clause
|
assetgraph/assetgraph-builder
|
316877b437008d8e7572ffec2ba74c5d370fe38a
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "2.6"
services:
- redis-server
env:
- TEST_HIREDIS=0
- TEST_HIREDIS=1
install:
- pip install -e .
- "if [[ $TEST_PEP8 == '1' ]]; then pip install pep8; fi"
- "if [[ $TEST_HIREDIS == '1' ]]; then pip install hiredis; fi"
script: "if [[ $TEST_PEP8 == '1' ]]; then pep8 --repeat --show-source --exclude=.venv,.tox,dist,docs,build,*.egg .; else python setup.py test; fi"
matrix:
include:
- python: "2.7"
env: TEST_PEP8=1
- python: "3.6"
env: TEST_PEP8=1
|
language: python
cache: pip
python:
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "2.6"
services:
- redis-server
env:
- TEST_HIREDIS=0
- TEST_HIREDIS=1
install:
- pip install -e .
- "if [[ $TEST_PEP8 == '1' ]]; then pip install pep8; fi"
- "if [[ $TEST_HIREDIS == '1' ]]; then pip install hiredis; fi"
script: "if [[ $TEST_PEP8 == '1' ]]; then pep8 --repeat --show-source --exclude=.venv,.tox,dist,docs,build,*.egg .; else python setup.py test; fi"
matrix:
include:
- python: "2.7"
env: TEST_PEP8=1
- python: "3.6"
env: TEST_PEP8=1
|
Enable pip cache in Travis CI
|
Enable pip cache in Travis CI
Can speed up builds and reduce load on PyPI servers.
For more information, see:
https://docs.travis-ci.com/user/caching/#pip-cache
|
YAML
|
mit
|
andymccurdy/redis-py,andymccurdy/redis-py,redis/redis-py,mozillazg/redis-py-doc,alisaifee/redis-py,andymccurdy/redis-py,5977862/redis-py,5977862/redis-py,redis/redis-py,alisaifee/redis-py,mozillazg/redis-py-doc,5977862/redis-py
|
e3a2e75c7d77aed525fb21fe391501b44d987818
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: xcode9.1
env:
- LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
before_install:
- pod repo update
- gem install xcpretty -N
script: "./Tests/travis.sh"
notifications:
slack:
secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI=
|
language: objective-c
osx_image: xcode9.2
env:
- LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
before_install:
- pod repo update
- gem install xcpretty -N
script: "./Tests/travis.sh"
notifications:
slack:
secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI=
|
Use Xcode 9.2 on Travis
|
Use Xcode 9.2 on Travis
|
YAML
|
mit
|
adamnemecek/AudioKit,audiokit/AudioKit,adamnemecek/AudioKit,eljeff/AudioKit,eljeff/AudioKit,eljeff/AudioKit,adamnemecek/AudioKit,audiokit/AudioKit,audiokit/AudioKit,eljeff/AudioKit,adamnemecek/AudioKit,audiokit/AudioKit
|
440aed670c4a41794294b1e397585340b13c9d20
|
.travis.yml
|
.travis.yml
|
sudo: False
language: python
cache: pip
python:
- "2.7.13"
- "3.3.5"
- "3.4.6"
- "3.5.3"
- "3.6.1"
- "nightly"
install:
- pip install -r requirements.txt
- pip install coverage codacy-coverage
script:
- coverage run test.py
after_success:
- coverage report
- coverage xml
- python-codacy-coverage -r coverage.xml
|
sudo: False
language: python
cache: pip
python:
- "2.7.13"
- "3.3.5"
- "3.4.5"
- "3.5.2"
- "3.6.0"
- "nightly"
install:
- pip install -r requirements.txt
- pip install coverage codacy-coverage
script:
- coverage run test.py
after_success:
- coverage report
- coverage xml
- python-codacy-coverage -r coverage.xml
|
Fix versions to the ones available on TravisCI
|
Fix versions to the ones available on TravisCI
|
YAML
|
mit
|
wolfy1339/Python-IRC-Bot
|
0a4daaf424b2d38e8285aaa552ac2aef557c5536
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.8"
- "0.10"
before_install:
- npm install -g bower
- bower install
- npm install -g grunt-cli
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- grunt ci
|
language: node_js
node_js:
- "0.10"
- "0.11"
before_install:
- npm install -g bower
- bower install
- npm install -g grunt-cli
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- grunt ci
|
Stop running tests on Node 0.8
|
Stop running tests on Node 0.8
|
YAML
|
mit
|
yoda-yoda/js-data-angular,denisKaranja/js-data-angular,aboieriu/js-data-angular,aboieriu/js-data-angular,js-data/js-data-angular,js-data/js-data-angular,denisKaranja/js-data-angular,chieffancypants/angular-data,yoda-yoda/js-data-angular
|
3e18ff52f232f6f37823b5f4c48eacfc20a4ec0e
|
.travis.yml
|
.travis.yml
|
# Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec spec
|
# Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec spec
|
Use the pre-release builds of chefdk
|
Use the pre-release builds of chefdk
|
YAML
|
apache-2.0
|
chef-cookbooks/awscreds,opscode-cookbooks/awscreds,chef-cookbooks/awscreds,opscode-cookbooks/awscreds
|
7e541650ec0e4c337ce2f21fae972e4c630c367d
|
.travis.yml
|
.travis.yml
|
os: linux
arch:
- amd64
- arm64
sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
matrix:
include:
- language: generic
os: osx
install: pip2 install tox-travis
script: tox --skip-missing-interpreters
allow_failures:
- arch: arm64
install: pip install tox-travis
script: tox
|
os: linux
arch:
- amd64
- arm64
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
jobs:
include:
- language: generic
os: osx
install: pip2 install tox-travis
script: tox --skip-missing-interpreters
allow_failures:
- arch: arm64
install: pip install tox-travis
script: tox
|
Update Travis config to fix validation warnings
|
Update Travis config to fix validation warnings
|
YAML
|
bsd-3-clause
|
ccpem/mrcfile
|
499f75c29e0339c23a8a14d2ecd204fc11532fad
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.6
- 2.7
- 3.2
notifications:
email:
- [email protected]
install:
# Use latest Augeas
- sudo add-apt-repository -y ppa:raphink/augeas
- sudo apt-get update
- sudo apt-get install libaugeas-dev libxml2-dev
matrix:
allow_failures:
- python: 3.2
script: make && make check
|
language: python
python:
- 2.6
- 2.7
- 3.2
notifications:
email:
- [email protected]
install:
# Use latest Augeas
- sudo add-apt-repository -y ppa:raphink/augeas-dev
- sudo apt-get update
- sudo apt-get install libaugeas-dev libxml2-dev
matrix:
allow_failures:
- python: 3.2
script: make && make check
|
Use the packages from the augeas-dev PPA
|
Use the packages from the augeas-dev PPA
|
YAML
|
lgpl-2.1
|
gasmith-nutanix/python-augeas,krichter722/python-augeas,krichter722/python-augeas,hercules-team/python-augeas,gasmith-nutanix/python-augeas,hercules-team/python-augeas
|
692e944af7ab171b8cd38081e05c4c97a22ddc55
|
.travis.yml
|
.travis.yml
|
language: go
sudo: false
go:
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
- master
matrix:
fast_finish: true
include:
- go: 1.11.x
env: GO111MODULE=on
- go: 1.12.x
env: GO111MODULE=on
git:
depth: 1
install:
- if [[ "${GO111MODULE}" = "on" ]]; then go mod download; else go get -t -v ./...; fi
- go get -u github.com/campoy/embedmd
script:
- embedmd -d README.md
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/7f95bf605c4d356372f4
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
language: go
sudo: false
go:
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
- 1.15.x
- master
matrix:
fast_finish: true
include:
- go: 1.11.x
env: GO111MODULE=on
- go: 1.12.x
env: GO111MODULE=on
git:
depth: 1
install:
- if [[ "${GO111MODULE}" = "on" ]]; then go mod download; else go get -t -v ./...; fi
- go get -u github.com/campoy/embedmd
script:
- embedmd -d README.md
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/7f95bf605c4d356372f4
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
Add 1.15 version in go
|
Add 1.15 version in go
|
YAML
|
mit
|
gin-gonic/autotls
|
21fbe36922238d5b5fda5bd4f5a4a92c728ffdcc
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
script:
- "bundle exec rspec spec"
branches:
only:
- master
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
install: 'bundle install --deployment -j 4'
script:
- "bundle exec rspec spec"
branches:
only:
- master
matrix:
allow_failures:
- rvm: jruby-19mode
|
Allow failures in jruby; install gems faster
|
Allow failures in jruby; install gems faster
|
YAML
|
mit
|
Vermonster/wmsb,Vermonster/wmsb
|
ce9b22afc78938363257dc520caee39ac7e28a07
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk7
before_install:
- chmod +x .utility/initiate-publish.sh
- >
if [ "$TRAVIS_REPO_SLUG" == "Mangopay/mangopay2-java-sdk" ]; then
openssl aes-256-cbc -K $encrypted_1689c6b91eac_key -iv $encrypted_1689c6b91eac_iv -in .utility/signingkey.gpg.enc -out .utility/signingkey.gpg -d;
fi;
- cat /etc/hosts
- sudo hostname "$(hostname | cut -c1-63)"
- sed -e "s/^\\(127\\.0\\.0\\.1.*\\)/\\1 $(hostname | cut -c1-63)/" /etc/hosts > /tmp/hosts
- sudo mv /tmp/hosts /etc/hosts
- cat /etc/hosts
after_success:
- ".utility/initiate-publish.sh"
|
language: java
jdk:
- oraclejdk7
before_install:
- chmod +x .utility/initiate-publish.sh
- >
if [ "$TRAVIS_REPO_SLUG" == "Mangopay/mangopay2-java-sdk" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
openssl aes-256-cbc -K $encrypted_1689c6b91eac_key -iv $encrypted_1689c6b91eac_iv -in .utility/signingkey.gpg.enc -out .utility/signingkey.gpg -d;
fi;
- cat /etc/hosts
- sudo hostname "$(hostname | cut -c1-63)"
- sed -e "s/^\\(127\\.0\\.0\\.1.*\\)/\\1 $(hostname | cut -c1-63)/" /etc/hosts > /tmp/hosts
- sudo mv /tmp/hosts /etc/hosts
- cat /etc/hosts
after_success:
- ".utility/initiate-publish.sh"
|
Disable openssl key decrypt in pull request
|
Disable openssl key decrypt in pull request
|
YAML
|
mit
|
Mangopay/mangopay2-java-sdk,Mangopay/mangopay2-java-sdk
|
c6e13b5afc79dfa558bdcf6f14d5aaf496fa17c1
|
.travis.yml
|
.travis.yml
|
sudo: required
language: go
go:
- go1.7
- go1.8
- go1.9
- tip
install:
- go get -u github.com/golang/lint/golint
- go get -u golang.org/x/tools/cmd/goimports
- go get -u github.com/golang/protobuf/proto
- go get -u github.com/stretchr/testify/assert
- go get -u gopkg.in/cheggaaa/pb.v1
script:
- go install
- test -z "$(goimports -l -w $(go list -f {{.Dir}}/*.go ./...) | tee /dev/stderr)"
- test -z "$(golint ./... | tee /dev/stderr)"
- go tool vet .
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
|
sudo: required
language: go
go:
- go1.7
- go1.8
- go1.9
- tip
install:
- go get -u github.com/golang/lint/golint
- go get -u golang.org/x/tools/cmd/goimports
- go get -u github.com/golang/protobuf/proto
- go get -u github.com/stretchr/testify/assert
- go get -u gopkg.in/cheggaaa/pb.v1
script:
- go install
- test -z "$(goimports -l -d $(go list -f {{.Dir}}/*.go ./...) | tee /dev/stderr)"
- test -z "$(golint ./... | tee /dev/stderr)"
- go tool vet .
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Add debug output to goimports step
|
Add debug output to goimports step
|
YAML
|
apache-2.0
|
maguro/pbf
|
1cb47ef491c57ab06d71533fb4aafb9eea27e086
|
.travis.yml
|
.travis.yml
|
language: android
jdk: oraclejdk8
sudo: required
android:
components:
- tools
- platform-tools
- android-26
- build-tools-26.0.1
- exra-android-m2repository
- extra-google-m2repository
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- $HOME/.android/build-cache
script:
- ./gradlew build
branches:
only:
- master
- /^\d+\.\d+(\.\d+)?(-\S*)?$/
|
language: android
jdk: oraclejdk8
sudo: required
android:
components:
- tools
- platform-tools
- android-27
- build-tools-26.0.2
- exra-android-m2repository
- extra-google-m2repository
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- $HOME/.android/build-cache
script:
- ./gradlew build
branches:
only:
- master
- /^\d+\.\d+(\.\d+)?(-\S*)?$/
|
Update Travis CI configuration to latest versions
|
Update Travis CI configuration to latest versions
|
YAML
|
apache-2.0
|
cmaier/7tools,cmaier/7tools
|
e4362567e448b7bf187c46904be396791d8d2dd7
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
script: rspec
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq rpm
- gem update 1.8.25
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
script: rspec
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq rpm
|
Add testing under ruby-2.0.0, remove pinning rubygems version
|
Add testing under ruby-2.0.0, remove pinning rubygems version
|
YAML
|
mit
|
mzaccari/fpm,wyaeld/fpm,doghrim/fpm,tjyang/fpm,sideci-sample/sideci-sample-fpm,djhaskin987/merge-demo,schatt/fpm,hlawrenz/fpm,mildred/fpm,djhaskin987/merge-demo,jerizm/fpm,wyaeld/fpm,pskrz/fpm,gearmover/fpm,pskrz/fpm,pskrz/fpm,cturra/fpm,josephfrazier/fpm,rbramwell/fpm,cturra/fpm,snailwalker/fpm,tjyang/fpm,jerizm/fpm,fetep/fpm,doghrim/fpm,dischord01/fpm,godp1301/fpm,linearregression/fpm,djhaskin987/merge-demo,elvido/fpm,godp1301/fpm,mzaccari/fpm,fetep/fpm,joseph-onsip/fpm,elvido/fpm,dischord01/fpm,hlawrenz/fpm,virtkick/fpm,tjyang/fpm,mzaccari/fpm,rbramwell/fpm,virtkick/fpm,jerizm/fpm,vi4m/fpm,godp1301/fpm,Tapjoy/fpm,paul-krohn/fpm,wyaeld/fpm,gearmover/fpm,paul-krohn/fpm,joseph-onsip/fpm,elvido/fpm,josephfrazier/fpm,cturra/fpm,tjyang/fpm,linearregression/fpm,mildred/fpm,schatt/fpm,gearmover/fpm,virtkick/fpm,rbramwell/fpm,elvido/fpm,godp1301/fpm,dischord01/fpm,cturra/fpm,vi4m/fpm,joseph-onsip/fpm,hlawrenz/fpm,snailwalker/fpm,Tapjoy/fpm,gearmover/fpm,sideci-sample/sideci-sample-fpm,fetep/fpm,paul-krohn/fpm,vi4m/fpm,mildred/fpm,jerizm/fpm,mildred/fpm,josephfrazier/fpm,paul-krohn/fpm,wyaeld/fpm,schatt/fpm,doghrim/fpm,hlawrenz/fpm,fetep/fpm,joseph-onsip/fpm,rbramwell/fpm,Tapjoy/fpm,doghrim/fpm,schatt/fpm,dischord01/fpm,Tapjoy/fpm,snailwalker/fpm,mzaccari/fpm,linearregression/fpm,linearregression/fpm,snailwalker/fpm,pskrz/fpm,vi4m/fpm,virtkick/fpm,sideci-sample/sideci-sample-fpm,josephfrazier/fpm
|
67dbd7ec2dc18aa95d5ea7be0a46ae58b5502f6f
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
bundler_args: --without production
rvm:
- 2.6
|
language: ruby
cache: bundler
bundler_args: --without production
rvm:
- 2.6.5
|
Use a more specific Ruby version on Travis
|
Use a more specific Ruby version on Travis
|
YAML
|
mit
|
MasterRoot24/cloudiary,MasterRoot24/cloudiary,MasterRoot24/cloudiary
|
315f7e48c84d7cd15f916c92b7e9dd4bb18cb156
|
.travis.yml
|
.travis.yml
|
language:
node_js
node_js:
- "node"
services:
- mongodb
cache:
directories:
- "node_modules"
install:
- npm ci
- npm install -g npx
script:
- npx istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec
- npx codecov
|
language:
node_js
node_js:
- "node"
services:
- mongodb
cache:
directories:
- "node_modules"
install:
- npm ci
- npm install -g npx
script:
- npx gulp
- npx istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec
- npx codecov
|
Add asset build to CI
|
Add asset build to CI
|
YAML
|
mit
|
Foltik/Shimapan,Foltik/Shimapan
|
88f42c1a508e907e622fe3a71b9949d1f3e1e795
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
env:
- EIX_ENV=TEST
before_install:
- composer self-update
- composer update
|
sudo: false
language: php
php:
- 5.4
env:
- EIX_ENV=TEST
before_install:
- composer self-update
- composer update
|
Enable container builds in Travis.
|
Enable container builds in Travis.
|
YAML
|
mit
|
eix/core
|
a8702bdf7f81eddabff67b34078693cfa478a4cd
|
.travis.yml
|
.travis.yml
|
language: python
matrix:
include:
- python: 2.6
env:
- TOXENV=py26
- python: 2.7
env:
- TOXENV=py27
- python: 3.4
env:
- TOXENV=py34
- python: 3.5
env:
- TOXENV=py35
install:
- pip install tox
- pip install coveralls
- pip install codeclimate-test-reporter
- pip install sphinx
script:
- tox
- sphinx-build -nW -b html -d ./docs/_build/doctrees ./docs ./docs/_build/html
after_success:
- codeclimate-test-reporter
- coveralls
notifications:
email:
- [email protected]
- [email protected]
|
language: python
matrix:
include:
- python: 2.6
env:
- TOXENV=py26
- python: 2.7
env:
- TOXENV=py27
- python: 3.4
env:
- TOXENV=py34
- python: 3.5
env:
- TOXENV=py35
install:
- pip install tox
- pip install coveralls
- pip install codeclimate-test-reporter
- pip install sphinx
- pip install kazoo
script:
- tox
- sphinx-build -nW -b html -d ./docs/_build/doctrees ./docs ./docs/_build/html
after_success:
- codeclimate-test-reporter
- coveralls
notifications:
email:
- [email protected]
- [email protected]
|
Add kazoo to the venv so sphinx can use it.
|
Add kazoo to the venv so sphinx can use it.
|
YAML
|
apache-2.0
|
toddpalino/kafka-tools
|
dcd17b426187f61c4a94b14066b9c1af8446f990
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: trusty
# install the pre-release chef-dk. Use chef-stable-trusty to install the stable release
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=default-debian-8
- INSTANCE=default-opensuse-421
- INSTANCE=default-ubuntu-1204
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
script: KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
matrix:
include:
- before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
- script:
- /opt/chefdk/bin/chef exec rake
env: UNIT_AND_LINT=1
|
sudo: required
dist: trusty
# install the pre-release chef-dk. Use chef-stable-trusty to install the stable release
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=default-debian-8
- INSTANCE=default-opensuse-421
- INSTANCE=default-ubuntu-1204
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
script: KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
matrix:
include:
- before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
- script:
- /opt/chefdk/bin/chef exec rake
env: UNIT_AND_LINT=1
|
Switch back to stable ChefDK builds for testing
|
Switch back to stable ChefDK builds for testing
|
YAML
|
apache-2.0
|
opscode-cookbooks/fail2ban,opscode-cookbooks/fail2ban,chef-cookbooks/fail2ban,chef-cookbooks/fail2ban
|
f4299dc43d5a2f7e146334af42b8eb6dadb27430
|
.travis.yml
|
.travis.yml
|
language: rust
rust: 1.0.0-beta.3
branches:
only:
- master
notifications:
slack:
secure: QpFHoGnFmO56Dc7PZzYEqeVbT0II7QCAYc7V0Xm4cV4NKLcz2DjBw523G+cCa7cewWVdhOooUKA14H6wjCHdqReMR7xO7iOGQm/p7iSMgU9eMlIvem0jBDGqxo/8R5GtA/OVZ6SB93ja+BaZiYaapsaQcTfxNxxeopecKus0z44=
|
language: rust
rust: nightly-2015-05-01
branches:
only:
- master
notifications:
slack:
secure: QpFHoGnFmO56Dc7PZzYEqeVbT0II7QCAYc7V0Xm4cV4NKLcz2DjBw523G+cCa7cewWVdhOooUKA14H6wjCHdqReMR7xO7iOGQm/p7iSMgU9eMlIvem0jBDGqxo/8R5GtA/OVZ6SB93ja+BaZiYaapsaQcTfxNxxeopecKus0z44=
|
Update Travis CI Rust version to Nightly 2015-05-01
|
Update Travis CI Rust version to Nightly 2015-05-01
I *believe* this should work: Travis CI seems to use `rustup.sh` to
install the required Rust version by specifing `--spec=%s` where %s
corresponst to the provided rust version. Using `rustup.sh
--spec=nightly-2015-05-01` seems to work locally, so it just might also
work on Travis CI.
|
YAML
|
bsd-2-clause
|
Drakulix/zwreec,Drakulix/zwreec
|
b993f8e9fa4c65e79273ef91513bd46ec5c59598
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
before_install:
- 'sudo apt-get install redis'
install:
- 'pip install Flask'
- 'pip install pytz'
- 'pip install python-dateutil'
- 'pip install Beaker>=1.6.4,<1.7'
- 'pip install redis>=2.10'
script: py.test
|
language: python
python:
- "2.6"
- "2.7"
before_install:
- 'sudo apt-get install redis-server'
install:
- 'pip install Flask'
- 'pip install pytz'
- 'pip install python-dateutil'
- 'pip install Beaker>=1.6.4,<1.7'
- 'pip install redis>=2.10'
script: py.test
|
Correct redis package name for Travis
|
Correct redis package name for Travis
|
YAML
|
mit
|
aspyatkin/beakeredis
|
726409b02c6c604e98976469678f8fcf9eb08b73
|
.travis.yml
|
.travis.yml
|
dist: trusty
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1"
- "2.2"
- "ruby-2.3.0"
before_install:
- gem install bundler
script:
- bundle exec rspec
- script/cucumber
- ruby script/rubocop.rb
bundler_args: --without development
matrix:
include:
- rvm: "1.9.2"
dist: precise
- rvm: jruby-19mode # JRuby in 1.9 mode
dist: precise
|
dist: trusty
language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- "2.0.0"
- "2.1"
- "2.2"
- "ruby-2.3.0"
before_install:
- gem install bundler
script:
- bundle exec rspec
- script/cucumber
- ruby script/rubocop.rb
bundler_args: --without development
matrix:
include:
- rvm: jruby-19mode # JRuby in 1.9 mode
dist: precise
|
Upgrade ruby-1.9.2 dist to trusty
|
Upgrade ruby-1.9.2 dist to trusty
|
YAML
|
bsd-2-clause
|
egonSchiele/contracts.ruby,egonSchiele/contracts.ruby
|
91686a355763ed07eefb5ee7264c247de4c77d5b
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "8"
# send builds to the container-based infrastructure
sudo: false
|
language: node_js
node_js:
- "8"
# send builds to the container-based infrastructure
sudo: false
deploy:
provider: npm
email: [email protected]
api_key:
secure: uwtKe6c+QPSOi7QLCGmVw5cIxl4XDAhaxVWKmRT/GA5CUALjY7ZY1i9Kn6mjcIcvW9HxATU51BASSfq3otWoSJnJB+J3E0kMHJTDW5JMYbQoeu0jRz6ny/FnQoNGvtd3GEAxBkRLCmE0bUzA+1hY+ZxTF/k+zcn2jWcdZk6VGsE=
on:
tags: true
repo: batata-frita/redux-heat
|
Allow deploying with Travis 🤖
|
Allow deploying with Travis 🤖
|
YAML
|
mit
|
batata-frita/redux-heat
|
749fa3b4345da8bc04f6c193372d6044548c7023
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "6.0.0"
- "6"
- "7"
- "8"
- "9"
- "10"
after_success: npm run test:coverage && npm run coverage:upload
|
language: node_js
node_js:
- "8.0.0"
- "8"
- "9"
- "10"
after_success: npm run test:coverage && npm run coverage:upload
|
Remove node versions below 8 from the Travis testing matrix
|
Remove node versions below 8 from the Travis testing matrix
|
YAML
|
mit
|
fluture-js/Fluture,fluture-js/Fluture,fluture-js/Fluture
|
a5dfc5cfdd30c15d8b780b01043ab0d960810a92
|
.travis.yml
|
.travis.yml
|
language: android
android:
components:
- build-tools-21.1.2
- android-21
|
language: android
android:
components:
- build-tools-21.1.2
- android-21
before_script:
- chmod +x gradlew
|
Fix Travis CI pass 1
|
Fix Travis CI pass 1
|
YAML
|
mit
|
lasarobotics/FTCVision
|
7265e83c5cdac9d7e7bca4465d947d60503fc533
|
.travis.yml
|
.travis.yml
|
language: php
script:
- vendor/bin/phpunit test
php:
- 5.6
- 7.0
- 7.1
- 7.2
notifications:
email: false
|
language: php
before_script: composer install
script: vendor/bin/phpunit test
php:
- 5.6
- 7.0
- 7.1
- 7.2
notifications:
email: false
|
Add dependency installation to Travis build
|
Add dependency installation to Travis build
|
YAML
|
apache-2.0
|
Loilo/Fuse
|
7be8b842b495c5b037e52a7b17d609773cb4a05b
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.7
- 1.8
- 1.9
- "1.10"
- 1.11
- 1.12
- 1.13
- 1.14
sudo: false
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get .
script:
- make test
notifications:
slack:
secure: U+RtmtVJEzEoZf+/VVuon9qNC4GXKzXoTqdYThP57ZTzqoDAJDnuZ/qUrMGrMYpYg38ikxtK3qJhBMfffzHXc3KS9hcA7Ay/yPz4QiCBMy3M9EBPWt8iGP6n2T3KUw4WG/hSBUtnJqmwPdzRfVUIqOMgchiN9eWwEbEmSYTvOqA=
env:
global:
- secure: wGKrsYBSuI4NhxcveqjQGCuY1Jcrh6iF59FEZS8ipWVSIqp2sMQU3K7LqgeUVnyCqXT0LsuLFMPhKDHc8My+aFno85jrmkJo7+gvBnCQC/f5/7Ee3r4LdEgmv4dIRrsItYir/ez/KIQ2BtynWEdLk8/afgNCOF9IjvtX6XneDYg=
|
language: go
go:
- 1.7
- 1.8
- 1.9
- "1.10"
- 1.11
- 1.12
- 1.13
- 1.14
- 1.15
sudo: false
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get .
script:
- make test
notifications:
slack:
secure: U+RtmtVJEzEoZf+/VVuon9qNC4GXKzXoTqdYThP57ZTzqoDAJDnuZ/qUrMGrMYpYg38ikxtK3qJhBMfffzHXc3KS9hcA7Ay/yPz4QiCBMy3M9EBPWt8iGP6n2T3KUw4WG/hSBUtnJqmwPdzRfVUIqOMgchiN9eWwEbEmSYTvOqA=
env:
global:
- secure: wGKrsYBSuI4NhxcveqjQGCuY1Jcrh6iF59FEZS8ipWVSIqp2sMQU3K7LqgeUVnyCqXT0LsuLFMPhKDHc8My+aFno85jrmkJo7+gvBnCQC/f5/7Ee3r4LdEgmv4dIRrsItYir/ez/KIQ2BtynWEdLk8/afgNCOF9IjvtX6XneDYg=
|
Include Go 1.15 in CI tests
|
Include Go 1.15 in CI tests
|
YAML
|
mit
|
transloadit/go-sdk,transloadit/go-sdk
|
b8309295ad09a76f4ba1d3510cd87e9ca7910609
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
sudo: false
after_success:
- npm run coveralls
|
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
sudo: false
after_success:
- npm run coveralls
|
Test on more node versions
|
Test on more node versions
|
YAML
|
apache-2.0
|
spark/softap-setup-js
|
a47793a3e3e12ede8530048e8d48eec6c16c3859
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
rvm: jruby-1.7.16
jdk: openjdk7
env:
global:
- COVERAGE=1
matrix:
- RAKE_TASK=spec
- RAKE_TASK=rubocop
matrix:
allow_failures:
- env: RAKE_TASK=rubocop
services:
- redis
addons:
postgresql: 9.3
before_script:
- 'RAILS_ENV=test bundle exec rake db:create db:structure:load --trace'
script: ./build.sh $RAKE_TASK
notifications:
irc: "irc.freenode.org#travis"
|
sudo: false
language: ruby
rvm:
- jruby-1.7.16
- jruby-head
jdk: openjdk7
env:
global:
- COVERAGE=1
matrix:
- RAKE_TASK=spec
- RAKE_TASK=rubocop
matrix:
allow_failures:
- env: RAKE_TASK=rubocop
services:
- redis
addons:
postgresql: 9.3
before_script:
- 'RAILS_ENV=test bundle exec rake db:create db:structure:load --trace'
script: ./build.sh $RAKE_TASK
notifications:
irc: "irc.freenode.org#travis"
matrix:
allow_failures:
- rvm: jruby-head
|
Test jruby-head (and allow failures)
|
Test jruby-head (and allow failures)
|
YAML
|
mit
|
travis-ci/travis-hub,travis-ci/travis-hub,final-ci/travis-hub,final-ci/travis-hub
|
bd3923da037625ba9d63afa150cf82fa14b18633
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
|
language: node_js
before_install:
- npm install -g jspm
- jspm config registries.github.auth $JSPM_GITHUB_AUTH_TOKEN
node_js:
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
|
Add GitHub auth to jspm initialization
|
Add GitHub auth to jspm initialization
|
YAML
|
mit
|
peterjuras/slush-react-express,peterjuras/slush-azure-node,peterjuras/slush-react-express,peterjuras/slush-azure-node,peterjuras/slush-react-express,peterjuras/slush-azure-node
|
3763a34e2381760526696caf2bd6007719d641f3
|
.travis.yml
|
.travis.yml
|
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- openjdk6
- openjdk7
- oraclejdk8
- oraclejdk11
- openjdk8
- openjdk11
- openjdk-ea
after_success:
- mvn clean cobertura:cobertura coveralls:report
|
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- openjdk6
- openjdk7
- oraclejdk8
- oraclejdk11
- openjdk8
- openjdk11
- openjdk12
- openjdk-ea
after_success:
- mvn clean cobertura:cobertura coveralls:report
|
Add OpenJDK 12 to Travis builds.
|
Add OpenJDK 12 to Travis builds.
|
YAML
|
apache-2.0
|
apache/commons-daemon,apache/commons-daemon,apache/commons-daemon,apache/commons-daemon
|
06b19c3ca02251fa05450e43888355a743596599
|
.travis.yml
|
.travis.yml
|
language: "node_js"
node_js:
- 0.4
- 0.6
|
language: "node_js"
node_js:
- 0.4
- 0.6
- 0.8
|
Test on node 0.8 using Travis CI.
|
Test on node 0.8 using Travis CI.
|
YAML
|
mit
|
KristianMH/connect-flash,jg3526/connect-flash,avaly/connect-flash,jaredhanson/connect-flash,sagivo/connect-flash
|
600930abb097b282476d3306d1556a16ddbeeb66
|
.travis.yml
|
.travis.yml
|
language: scala
scala:
- 2.11.8
sudo: false
jdk:
- oraclejdk8
script:
- sbt ++$TRAVIS_SCALA_VERSION server/test client/test
# Tricks to avoid unnecessary cache updates, from
# http://www.scala-sbt.org/0.13/docs/Travis-CI-with-sbt.html
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
|
language: scala
scala:
- 2.11.8
sudo: false
jdk:
- oraclejdk8
script:
- sbt ++$TRAVIS_SCALA_VERSION server/test client/test
# Tricks to avoid unnecessary cache updates, from
# http://www.scala-sbt.org/0.13/docs/Travis-CI-with-sbt.html
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
install:
- . $HOME/.nvm/nvm.sh
- nvm install stable
- nvm use stable
- npm install
- npm install jsdom
|
Add jsdom support for Travis
|
Add jsdom support for Travis
|
YAML
|
apache-2.0
|
wrotki/spacommander,wrotki/spacommander,ochrons/scalajs-spa-tutorial,wrotki/spacommander,ochrons/scalajs-spa-tutorial
|
94f55f8abb17edd786b03200fd9d4b71a5692f8f
|
.travis.yml
|
.travis.yml
|
stages:
- name: test
if: NOT branch IN (master, staging)
- name: deploy
if: branch IN (master, staging)
jobs:
include:
- stage: test
language: node_js
node_js: [node]
cache: {directories: [node_modules]}
script:
- npm test
- stage: deploy
language: generic
sudo: required
services: [docker]
env:
- CF_FRONTEND_IMAGE=registry.gitlab.com/captainfact/captain-fact-frontend:$TRAVIS_BRANCH
script:
- docker build --build-arg BUILD_ENV=$TRAVIS_BRANCH -t $CF_FRONTEND_IMAGE . &&
docker run --rm -it $CF_FRONTEND_IMAGE test &&
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" registry.gitlab.com;
echo "Pushing $CF_FRONTEND_IMAGE";
docker push $CF_FRONTEND_IMAGE;
fi
|
stages:
- name: test
if: NOT (branch IN (master, staging) OR tag =~ ^v\d+)
- name: deploy
if: branch IN (master, staging) OR tag =~ ^v\d+
jobs:
include:
- stage: test
language: node_js
node_js: [node]
cache: {directories: [node_modules]}
script:
- npm test
- stage: deploy
language: generic
sudo: required
services: [docker]
env:
- CF_FRONTEND_IMAGE=registry.gitlab.com/captainfact/captain-fact-frontend:$TRAVIS_BRANCH
script:
- docker build --build-arg BUILD_ENV=$TRAVIS_BRANCH -t $CF_FRONTEND_IMAGE . &&
docker run --rm -it $CF_FRONTEND_IMAGE test &&
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" registry.gitlab.com;
echo "Pushing $CF_FRONTEND_IMAGE";
docker push $CF_FRONTEND_IMAGE;
fi
|
Add a condition to build from tags
|
Add a condition to build from tags
|
YAML
|
agpl-3.0
|
CaptainFact/captain-fact-frontend,CaptainFact/captain-fact-frontend,CaptainFact/captain-fact-frontend
|
496d43c8e9fbf9260867163ac1671601446a3320
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
|
language: ruby
rvm:
- 2.0.0
- 2.1.0
|
Remove 1.9.3 for ohai compatibility
|
Remove 1.9.3 for ohai compatibility
|
YAML
|
apache-2.0
|
Numergy/phpenv-cookbook,Numergy/phpenv-cookbook,Numergy/phpenv-cookbook
|
c2da670ba6419b6836caa9f21292e7064bc2ed12
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
# JDK6 isn't supported after Jersey upgrade 2.6 -> 2.21
# - openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
script:
- mvn clean verify
- java -jar NetLicensingClient-demo/target/netlicensing-client-demo.jar
after_success:
- env
|
language: java
jdk:
# JDK6 isn't supported after Jersey upgrade 2.6 -> 2.21
# - openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
script:
- mvn clean verify
- java -jar NetLicensingClient-demo/target/netlicensing-client-demo.jar
after_success:
- test "${TRAVIS_JDK_VERSION}" == "openjdk7" && test "${TRAVIS_TEST_RESULT}" == "0" && mvn deploy -Drepo.snapshots.url=https://oss.sonatype.org/content/repositories/snapshots
|
Deploy snapshot to Sonatype snapshots repo
|
Deploy snapshot to Sonatype snapshots repo
|
YAML
|
apache-2.0
|
Labs64/NetLicensingClient-java,Labs64/NetLicensingClient-java
|
3e467889d8a84b72c2404533726eb22ad257314a
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "2.6"
env:
- DJANGO=1.4.3
- DJANGO=1.3.5
- DJANGO=https://github.com/django/django/zipball/master
install:
- pip install -q Django==$DJANGO --use-mirrors
script: python setup.py test
notifications:
email:
recipients:
- [email protected]
|
language: python
python:
- "2.7"
- "2.6"
env:
- DJANGO_VERSION=DJANGO==1.4.3
- DJANGO_VERSION=DJANGO==1.3.5
- DJANGO_VERSION=git+git://github.com/django/django.git
install:
- pip install -q $DJANGO_VERSION --use-mirrors
script: python setup.py test
notifications:
email:
recipients:
- [email protected]
|
Support for django 1.5 since its coming soon
|
Support for django 1.5 since its coming soon
|
YAML
|
bsd-3-clause
|
Khabi/django-mcfeely,Khabi/django-mcfeely
|
51bebdde75109220af66e63cc3d6adb64ec87e80
|
.travis.yml
|
.travis.yml
|
sudo: false
language: go
go:
- 1.10.x
env:
- DEP_VERSION=0.5.0
matrix:
allow_failures:
- go: master
fast_finish: true
before_install:
- curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep
- chmod +x $GOPATH/bin/dep
install:
- # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
script:
# dep only likes being run in the root directory...
- cd ./moebot_bot && dep ensure && cd ..
- go install github.com/camd67/moebot/moebot_bot
- diff -u <(echo -n) <(gofmt -d -s ./moebot_bot)
- go tool vet ./moebot_bot
- go test -v -race ./moebot_bot/...
|
sudo: false
language: go
go:
- 1.10.x
git:
depth: 3
env:
- DEP_VERSION=0.5.0
matrix:
allow_failures:
- go: master
fast_finish: true
before_install:
- curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep
- chmod +x $GOPATH/bin/dep
install:
- # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
script:
# Diff fmt and vet before we dep ensure so that it doesn't touch any of the vendor files
- diff -u <(echo -n) <(gofmt -d -s ./moebot_bot)
- go tool vet ./moebot_bot
# dep only likes being run in the root directory...
- cd ./moebot_bot && dep ensure && cd ..
- go install github.com/camd67/moebot/moebot_bot
- go test -v -race ./moebot_bot/...
|
Move diff and vet to before dep ensure and add git depth
|
Move diff and vet to before dep ensure and add git depth
|
YAML
|
mit
|
camd67/moebot,camd67/moebot
|
7b28961bebf2d2e7e6df862ca11f9ad354ec3f70
|
.travis.yml
|
.travis.yml
|
---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- ember try $EMBER_TRY_SCENARIO test
|
---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-release
- env: EMBER_TRY_SCENARIO=ember-beta
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- ember try $EMBER_TRY_SCENARIO test
|
Allow failures from ember-release and ember-beta
|
Allow failures from ember-release and ember-beta
|
YAML
|
mit
|
collectrium/ember-data-socketio-adapter,collectrium/ember-data-socketio-adapter
|
90ffe80d89c60f009d5d9cf2acd806d7494cb25e
|
.travis.yml
|
.travis.yml
|
language: node_js
cache:
directories:
- node_modules
node_js:
- "4"
- "5"
|
language: node_js
cache:
directories:
- node_modules
node_js:
- "5"
|
Remove Node4 from testing (does not play nice with coveralls)
|
Remove Node4 from testing (does not play nice with coveralls)
|
YAML
|
mit
|
joshwcomeau/redux-favicon
|
85e288098e16431fd8ea3f4eec346f2d155f96e8
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
notifications:
irc: "irc.freenode.org#socket.io"
|
sudo: false
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
notifications:
irc: "irc.freenode.org#socket.io"
|
Use container-based infrastructure for faster build
|
Use container-based infrastructure for faster build
http://docs.travis-ci.com/user/workers/container-based-infrastructure/
|
YAML
|
mit
|
nkzawa/engine.io,socketio/engine.io,socketio/engine.io,kapouer/engine.io
|
680f6b72947ef03465eebab85109135922478ab8
|
.travis.yml
|
.travis.yml
|
sudo: required
services:
- docker
language: node_js
node_js:
- '0.10'
env:
global:
- GH_REF: github.com/chad-autry/stdin-eval-stdout
script:
- npm test
- npm prune --production
- docker build -t chadautry/stdin-eval-stdout:latest .
- if [[ ! -z "$TRAVIS_TAG" ]]; then docker tag chadautry/stdin-eval-stdout:latest chadautry/stdin-eval-stdout:$TRAVIS_TAG ; fi
after_script:
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push chadautry/stdin-eval-stdout
|
sudo: required
services:
- docker
language: node_js
node_js:
- '0.10'
env:
global:
- GH_REF: github.com/chad-autry/stdin-eval-stdout
script:
- npm test
- npm prune --production
- docker build -t chadautry/stdin-eval-stdout:latest .
after_script:
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push chadautry/stdin-eval-stdout
|
Remove the if statement to tag docker image on tagged builds (see if it is causing the push issue)
|
Remove the if statement to tag docker image on tagged builds (see if it is causing the push issue)
|
YAML
|
mit
|
chad-autry/stdin-eval-stdout
|
a3d8d67f1d61dc0de2a7a9df831316b32cff1d6d
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.3
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.0
|
Test on Ruby 2.2, bump 2.1 to 2.1.5
|
Test on Ruby 2.2, bump 2.1 to 2.1.5
|
YAML
|
mit
|
gma/nesta,nathandao/ginatra_dummy_2,nathandao/ginatra_dummy_2,nathandao/ginatra_dummy_2
|
5a8c3a9dae5f56c3f92b90572d4863dd7c97c07d
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2
branches:
only:
- master
- /^release-.+$/
env:
- MAVEN_OPTS="-Xmx1024m -XX:MaxPermSize=256m"
before_install:
- OLD_VERSION=`mvn help:evaluate -Dexpression=project.version 2>/dev/null | grep -Ev "(^\[|Download\w+:)"`
- NEW_VERSION=${OLD_VERSION%-SNAPSHOT}-build-`printf %05d $TRAVIS_BUILD_NUMBER`
- echo "Building version $NEW_VERSION"
- mvn versions:set -DnewVersion=$NEW_VERSION
script: >
mvn -e test \
-Dteavm.junit.target=target/js-tests \
-Dteavm.junit.js.runner=htmlunit \
-Dteavm.junit.js.threads=1 \
-Dteavm.junit.optimized=true \
-Dteavm.junit.minified=true
after_success: >
if [ "${TRAVIS_PULL_REQUEST:-false}" != "false" ]; then
mvn deploy --settings travis-settings.xml -P deploy-to-bintray
fi
after_script:
- rm -rf $HOME/.m2/repository/org/teavm
|
language: java
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2
branches:
only:
- master
- /^release-.+$/
env:
- MAVEN_OPTS="-Xmx1024m -XX:MaxPermSize=256m"
before_install:
- OLD_VERSION=`mvn help:evaluate -Dexpression=project.version 2>/dev/null | grep -Ev "(^\[|Download\w+:)"`
- NEW_VERSION=${OLD_VERSION%-SNAPSHOT}-dev-`printf %d $TRAVIS_BUILD_NUMBER`
- echo "Building version $NEW_VERSION"
- mvn versions:set -DnewVersion=$NEW_VERSION
script: >
mvn -e test \
-Dteavm.junit.target=target/js-tests \
-Dteavm.junit.js.runner=htmlunit \
-Dteavm.junit.js.threads=1 \
-Dteavm.junit.optimized=true \
-Dteavm.junit.minified=true
after_success: >
if [ "${TRAVIS_PULL_REQUEST:-false}" != "false" ]; then
mvn deploy --settings travis-settings.xml -P deploy-to-bintray
fi
after_script:
- rm -rf $HOME/.m2/repository/org/teavm
|
Replace `build` version suffix with 'dev'
|
Replace `build` version suffix with 'dev'
|
YAML
|
apache-2.0
|
jtulach/teavm,jtulach/teavm,konsoletyper/teavm,shannah/cn1-teavm-builds,jtulach/teavm,shannah/cn1-teavm-builds,shannah/cn1-teavm-builds,jtulach/teavm,konsoletyper/teavm,konsoletyper/teavm,konsoletyper/teavm,shannah/cn1-teavm-builds,shannah/cn1-teavm-builds,konsoletyper/teavm
|
01756662ca29127160b4f9461de8f08d10e82b38
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "8"
env:
global:
- DB_HOST=ec2-23-21-158-253.compute-1.amazonaws.com
- DB_NAME=d3o0vjc16si1ah
- DB_USER=hxkztrgqaamine
- DB_PORT=5432
- DB_PASS=1cfb071d0368a6f42237c09dad637df79750d9476f5346f922cd58683586779d
- SESS_SECRET=dui8w9837@##&
- PORT=5000
script:
- npm run test
|
language: node_js
node_js:
- "8"
env:
global:
- DB_HOST=ec2-23-21-158-253.compute-1.amazonaws.com
- DB_NAME=d3o0vjc16si1ah
- DB_USER=hxkztrgqaamine
- DB_PORT=5432
- DB_PASS=1cfb071d0368a6f42237c09dad637df79750d9476f5346f922cd58683586779d
- SESS_SECRET=dfidfjdjakjfkdjkfjkdk
- PORT=5000
script:
- npm run test
|
Set session key for test
|
Set session key for test
|
YAML
|
mit
|
tundewritescode/PostIt,tundewritescode/PostIt
|
1eb11b9138d067fad03acebef771d74fcaf5235c
|
.travis.yml
|
.travis.yml
|
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode9
before_install:
- gem install cocoapods xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail && xcodebuild test -workspace SimpleAnimation.xcworkspace -scheme SimpleAnimation -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=11.0' ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint --quick
|
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode10.1
before_install:
- gem install cocoapods xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail && xcodebuild test -workspace SimpleAnimation.xcworkspace -scheme SimpleAnimation -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=12.1' ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint --quick
|
Update Travis config to xcode 10.1
|
Update Travis config to xcode 10.1
|
YAML
|
mit
|
keithito/SimpleAnimation,keithito/SimpleAnimation
|
68bdff745a77477531404fdd7592940259f48299
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: xcode7.3
sudo: false
before_install:
- brew install carthage
- gem install xcpretty-travis-formatter
script: ./Scripts/build.sh
branches:
only:
- master
env:
- TARGET=WebDriverAgentLib SDK=iphonesimulator DESTINATION='iPad Air' ACTION=test
- TARGET=WebDriverAgentLib SDK=iphonesimulator DESTINATION='iPhone 6' ACTION=test
- TARGET=WebDriverAgentRunner SDK=iphonesimulator ACTION=build
- TARGET=WebDriverAgentRunner SDK=iphoneos ACTION=build
- TARGET=WebDriverAgentUSBClient SDK=macosx ACTION=build
|
language: objective-c
osx_image: xcode7.3
sudo: false
before_install:
- brew install carthage
- gem install xcpretty-travis-formatter
script: ./Scripts/build.sh
branches:
only:
- master
env:
- TARGET=WebDriverAgentLib SDK=iphonesimulator DESTINATION='iPad 2' ACTION=test
- TARGET=WebDriverAgentLib SDK=iphonesimulator DESTINATION='iPhone 6' ACTION=test
- TARGET=WebDriverAgentRunner SDK=iphonesimulator ACTION=build
- TARGET=WebDriverAgentRunner SDK=iphoneos ACTION=build
- TARGET=WebDriverAgentUSBClient SDK=macosx ACTION=build
|
Change iPad used for integration tests to iPad 2
|
Change iPad used for integration tests to iPad 2
Summary:
`-[FBKeyboardTests testTextTyping]` is failing on slower hosts, because text field is cleared in the middle of typing which finally causes string mismatch, when checking entered text.
This is known reported XCTest issue. Only workaround is to use simulator with smaller screen, which performs faster. In that case iPad 2
Closes https://github.com/facebook/WebDriverAgent/pull/233
Reviewed By: lawrencelomax
Differential Revision: D3669325
Pulled By: marekcirkos
fbshipit-source-id: 2bc0b940d452a0cee3191de3a32249706c4d7593
|
YAML
|
bsd-3-clause
|
PiranhaTeam/WebDriverAgent,qa-dev/WebDriverAgent,ymin/WebDriverAgent,Gogle/WebDriverAgent,calabash/WebDriverAgent,b1ueshad0w/WebDriverAgent,Gogle/WebDriverAgent,riccoyu/WebDriverAgent,zenzhu/WebDriverAgent,b1ueshad0w/WebDriverAgent,riccoyu/WebDriverAgent,b1ueshad0w/WebDriverAgent,calabash/WebDriverAgent,Gogle/WebDriverAgent,Gogle/WebDriverAgent,riccoyu/WebDriverAgent,qa-dev/WebDriverAgent,qa-dev/WebDriverAgent,qa-dev/WebDriverAgent,PiranhaTeam/WebDriverAgent,riccoyu/WebDriverAgent,ymin/WebDriverAgent,zenzhu/WebDriverAgent,calabash/WebDriverAgent,zenzhu/WebDriverAgent,PiranhaTeam/WebDriverAgent,ymin/WebDriverAgent,drptbl/WebDriverAgent,b1ueshad0w/WebDriverAgent,PiranhaTeam/WebDriverAgent,drptbl/WebDriverAgent,drptbl/WebDriverAgent,PiranhaTeam/WebDriverAgent,ymin/WebDriverAgent
|
b8fedf0ceb391e66ff802adba1260f2ffdf53502
|
.travis.yml
|
.travis.yml
|
sudo: required
language: python
env:
# Target Branch and Directory for Deployment of Pages
- PAGES_TARGET_BRANCH="gh-pages"
- PAGES_VERSION_BASE="version3"
install:
- sudo pip install -r .travis/python_req.txt
script:
- bash .travis/build_docs.sh
- bash .travis/push_docs_to_gh_pages.sh
notifications:
email: false
|
sudo: required
language: python
env:
global:
# Target Branch and Directory for Deployment of Pages
- PAGES_TARGET_BRANCH="gh-pages"
- PAGES_VERSION_BASE="version3"
install:
- sudo pip install -r .travis/python_req.txt
script:
- bash .travis/build_docs.sh
- bash .travis/push_docs_to_gh_pages.sh
notifications:
email: false
|
Add global to env variables
|
Add global to env variables
|
YAML
|
apache-2.0
|
rlove/ut3-docs-playground
|
cab0e9e378931d7bb475861f0dbaa4d96f66a4ed
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
script: 'bundle exec rake test:coverage --trace && bundle exec rubocop --display-cop-names'
rvm:
- 2.2.5
- 2.3.1
- jruby-9.1.2.0
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
|
language: ruby
sudo: false
script: 'bundle exec rake test:coverage --trace && bundle exec rubocop'
rvm:
- 2.3.1
- jruby-9.1.5.0
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
|
Remove MRI 2.2 from CI
|
Remove MRI 2.2 from CI
|
YAML
|
mit
|
lotus/assets,hanami/assets,hanami/assets,hanami/assets,hanami/assets
|
30910cf0ac66dc61ed014470cb7b5c9aa70c520e
|
.travis.yml
|
.travis.yml
|
sudo: false
dist: trusty
language: node_js
node_js: stable
cache:
directories:
- node_modules
addons:
firefox: latest
google-chrome: latest
install:
- npm install
- polymer install --variants
before_script:
- gulp lint
- polymer lint --rules polymer-2-hybrid --input *.html
- xvfb-run -s '-screen 0 1024x768x24' polymer test
script:
- if [[ "$TRAVIS_EVENT_TYPE" != "pull_request" && "$TRAVIS_BRANCH" != quick/* ]]; then
xvfb-run -s '-screen 0 1024x768x24' polymer test --env saucelabs;
fi
- if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then
xvfb-run -s '-screen 0 1024x768x24' polymer test --env saucelabs-cron;
fi
|
sudo: true
dist: trusty
language: node_js
node_js: stable
cache:
directories:
- node_modules
addons:
firefox: latest
google-chrome: latest
# Temporary fix, currently there are some weird timeout issues in Travis with Chrome 59
# TODO @limonte revisit after Chrome 60 release
before_install:
- wget http://mirror.glendaleacademy.org/chrome/pool/main/g/google-chrome-stable/google-chrome-stable_58.0.3029.110-1_amd64.deb
- sudo dpkg -i google-chrome*.deb
install:
- npm install
- polymer install --variants
before_script:
- gulp lint
- polymer lint --rules polymer-2-hybrid --input *.html
- xvfb-run -s '-screen 0 1024x768x24' polymer test
script:
- if [[ "$TRAVIS_EVENT_TYPE" != "pull_request" && "$TRAVIS_BRANCH" != quick/* ]]; then
xvfb-run -s '-screen 0 1024x768x24' polymer test --env saucelabs;
fi
- if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then
xvfb-run -s '-screen 0 1024x768x24' polymer test --env saucelabs-cron;
fi
|
Set Chrome version to 58 for Selenium tests
|
Set Chrome version to 58 for Selenium tests
|
YAML
|
apache-2.0
|
vaadin/vaadin-upload,vaadin/vaadin-upload
|
be834c6d1f3703d5904d3e0f8fbf50ad3bf04286
|
.travis.yml
|
.travis.yml
|
# Config file for automatic testing at travis-ci.org
language: python
python:
- "3.5"
env:
- TOX_ENV=py35-django-18
- TOX_ENV=py34-django-18
- TOX_ENV=py33-django-18
- TOX_ENV=py27-django-18
- TOX_ENV=py35-django-19
- TOX_ENV=py34-django-19
- TOX_ENV=py27-django-19
- TOX_ENV=py35-django-110
- TOX_ENV=py34-django-110
- TOX_ENV=py27-django-110
matrix:
fast_finish: true
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements_test.txt
# command to run tests using coverage, e.g. python setup.py test
script: tox -e $TOX_ENV
after_success:
- codecov -e TOX_ENV
|
# Config file for automatic testing at travis-ci.org
language: python
python:
- "3.5"
env:
- TOX_ENV=py35-django-18
- TOX_ENV=py34-django-18
- TOX_ENV=py27-django-18
- TOX_ENV=py35-django-19
- TOX_ENV=py34-django-19
- TOX_ENV=py27-django-19
- TOX_ENV=py35-django-110
- TOX_ENV=py34-django-110
- TOX_ENV=py27-django-110
matrix:
fast_finish: true
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements_test.txt
# command to run tests using coverage, e.g. python setup.py test
script: tox -e $TOX_ENV
after_success:
- codecov -e TOX_ENV
|
Update env list for integration tests
|
Update env list for integration tests
|
YAML
|
bsd-3-clause
|
valerymelou/django-active-link
|
6b1f3340c506d724a72e142ce187ba2d40914726
|
.travis.yml
|
.travis.yml
|
language: go
sudo: false
notifications:
email: false
go:
- 1.4
- tip
script:
- go test ./...
- go fmt ./...
|
language: go
sudo: false
notifications:
email: false
go:
- 1.5
- tip
script:
- go test ./...
- go fmt ./...
|
Update Travis CI config to use Go v1.5
|
Update Travis CI config to use Go v1.5
This updates it to test against the latest Go version, which is what I
am using for development.
|
YAML
|
mit
|
brettchalupa/far,brettchalupa/far
|
013861209c7e80f6447e182153a1b367d9b8e7c3
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
rvm:
- 2.4
- 2.3
- 2.2
- 2.0.0
- 2.1
- 1.9.3
- rbx-2
- jruby
matrix:
allow_failures:
- rvm: rbx-2 # See rubinius/rubinius#3485 - rubocop segfaults
script: "bundle exec rake"
addons:
apt:
packages:
- idn
- build-essential # this and below attempt allow rubinius to be setup ok
- bison
- ruby-dev
- rake zlib1g-dev
- libyaml-dev
- libssl-dev
- libreadline-dev
- libncurses5-dev
- llvm
- llvm-dev
- libeditline-dev
- libedit-dev
before_install:
- gem update bundler
notifications:
email:
recipients:
- [email protected]
on_success: change
on_failure: change
|
sudo: false
language: ruby
rvm:
- 2.4
- 2.3
- 2.2
- 2.0.0
- 2.1
- 1.9.3
- rbx-2
- jruby-9.1.9.0
matrix:
allow_failures:
- rvm: rbx-2 # See rubinius/rubinius#3485 - rubocop segfaults
script: "bundle exec rake"
addons:
apt:
packages:
- idn
- build-essential # this and below attempt allow rubinius to be setup ok
- bison
- ruby-dev
- rake zlib1g-dev
- libyaml-dev
- libssl-dev
- libreadline-dev
- libncurses5-dev
- llvm
- llvm-dev
- libeditline-dev
- libedit-dev
before_install:
- gem update bundler
notifications:
email:
recipients:
- [email protected]
on_success: change
on_failure: change
|
Use specific version of JRuby to fix CI for now
|
Use specific version of JRuby to fix CI for now
|
YAML
|
apache-2.0
|
googleapis/google-auth-library-ruby,googleapis/google-auth-library-ruby
|
a13676c6c3177e2fe19f6dc8d885796eef8ef7c8
|
.travis.yml
|
.travis.yml
|
language: php
sudo: false
php:
- 7.0
- 7.1
- 7.2
matrix:
allow_failures:
- php: 7.2
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer selfupdate
install:
- composer install
script:
- ./vendor/bin/phpunit
|
language: php
sudo: false
php:
- 7.0
- 7.1
- 7.2
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer selfupdate
install:
- composer install
script:
- ./vendor/bin/phpunit
|
Remove "allow_failures" for PHP 7.2
|
Remove "allow_failures" for PHP 7.2
|
YAML
|
mit
|
Hexanet/swiftmailer-image-embed
|
7ffcc5e2ebcc145baef98d3126e48d594f18cc05
|
.travis.yml
|
.travis.yml
|
language: php
before_script:
# Setup Coveralls and httpbin-php
- phpenv local 5.5
- composer install --dev --no-interaction
- sudo tests/utils/server/start.sh
- export REQUESTS_TEST_HOST_HTTPS=localhost
- phpenv local --unset
# Work out of the tests directory
- cd tests
script:
- phpunit --coverage-clover clover.xml
after_script:
- cd ..
- phpenv local 5.5
- tests/utils/server/stop.sh
- php vendor/bin/coveralls -v
- phpenv local --unset
php:
- 5.2
- 5.3
- 5.4
- 5.5
- hhvm
|
language: php
before_script:
# Setup Coveralls and httpbin-php
- phpenv local 5.5
- composer install --dev --no-interaction
- sudo tests/utils/server/start.sh
- export REQUESTS_TEST_HOST_HTTP=localhost
- phpenv local --unset
# Work out of the tests directory
- cd tests
script:
- phpunit --coverage-clover clover.xml
after_script:
- cd ..
- phpenv local 5.5
- tests/utils/server/stop.sh
- php vendor/bin/coveralls -v
- phpenv local --unset
php:
- 5.2
- 5.3
- 5.4
- 5.5
- hhvm
|
Use localhost for HTTP tests, not HTTPS tests
|
Use localhost for HTTP tests, not HTTPS tests
|
YAML
|
bsd-3-clause
|
dskanth/Requests,andreipetcu/Requests,mubassirhayat/Requests,meox/Requests,meox/Requests,meox/Requests
|
91946be3c78558678483616ecb68a1b71bcec04d
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: trusty
language: python
python:
- "3.6"
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- nvm install node
install:
- pip install -r requirements.txt
- cd web
- nvm use node
- npm install -g angular-cli
- npm install
- cd ..
script:
- mypy --ignore-missing-imports api.py
- python3 api.py &
- cd web
- ng build
- ng lint
- ng serve &
- sleep 5 # In the odd case starting server takes longer than Chrome.
- ng e2e
|
sudo: required
dist: trusty
language: python
python:
- "3.6"
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- nvm install node
install:
- pip install -r requirements.txt
- cd web
- nvm use node
- npm install -g @angular/cli
- npm install
- cd ..
script:
- mypy --ignore-missing-imports api.py
- python3 api.py &
- cd web
- ng build
- ng lint
- ng serve &
- sleep 5 # In the odd case starting server takes longer than Chrome.
- ng e2e
|
Use the current Angular CLI in Travis.
|
Use the current Angular CLI in Travis.
|
YAML
|
mit
|
lrem/ladders,lrem/ladders,lrem/ladders,lrem/ladders,lrem/ladders
|
48c5f348b9f5ec61d1cc7b85624500270e6a49c0
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.3
- 1.4
- tip
script:
- go test -cpu=2 ./...
- go test -cpu=2 -tags=noasm ./...
- go test -cpu=2 -short -race ./...
- go test -cpu=2 -short -race -tags=noasm ./...
|
language: go
go:
- 1.3
- 1.4
- 1.5
- tip
script:
- go test -cpu=2 ./...
- go test -cpu=2 -tags=noasm ./...
- go test -cpu=2 -short -race ./...
- go test -cpu=2 -short -race -tags=noasm ./...
|
Add Go 1.5 to tests.
|
Add Go 1.5 to tests.
|
YAML
|
bsd-3-clause
|
aybabtme/compress,glycerine/compress,yxd-hde/compress,yxd-hde/compress
|
bf573aef522cf71e93a694afdf90046c391c3773
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- jruby
- jruby-19mode
- rbx
- rbx-19mode
matrix:
allow_failures:
- rvm: jruby
- rvm: jruby-19mode
- rvm: rbx
- rvm: rbx-19mode
services: mongodb
|
language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- ruby-head
- jruby
- jruby-19mode
- rbx
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby
- rvm: jruby-19mode
- rvm: rbx
- rvm: rbx-19mode
services: mongodb
|
Add ruby-head to build matrix
|
Add ruby-head to build matrix
|
YAML
|
mit
|
CrisSoFresh/mongoid_userstamp,Aethelflaed/mongoid-userstamps,tbpro/mongoid_userstamp,glebtv/mongoid_userstamp,johnnyshields/mongoid_userstamp
|
e7e890344721e208033068ffdb02dcbb9b32fe50
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.1
- nightly
cache:
yarn: true
directories:
- ~/.composer/cache/files
before_install:
- echo "memory_limit=4096M" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
install:
- composer update --prefer-dist
before_script:
- (cd tests/Application && bin/console doctrine:schema:create --env=test --no-interaction)
- (cd tests/Application && bin/console doctrine:schema:create --env=test_relative --no-interaction)
script:
- composer validate --strict --no-check-all
- vendor/bin/phpspec run
- vendor/bin/phpunit --coverage-clover coverage.clover --stderr --verbose
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
language: php
php:
- 7.1
- 7.2
- nightly
cache:
yarn: true
directories:
- ~/.composer/cache/files
before_install:
- echo "memory_limit=4096M" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
install:
- composer update --prefer-dist
before_script:
- (cd tests/Application && bin/console doctrine:schema:create --env=test --no-interaction)
- (cd tests/Application && bin/console doctrine:schema:create --env=test_relative --no-interaction)
script:
- composer validate --strict --no-check-all
- vendor/bin/phpspec run
- vendor/bin/phpunit --coverage-clover coverage.clover --stderr --verbose
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
Test package also against PHP 7.2
|
Test package also against PHP 7.2
|
YAML
|
mit
|
stefandoorn/sitemap-plugin,stefandoorn/sitemap-plugin,stefandoorn/sitemap-plugin
|
b7fc6ba1fc82b86b0effe4388782eaa29fde847f
|
.travis.yml
|
.travis.yml
|
rvm:
- 2.0.0
- 1.9.3
- 2.1.0
- jruby-19mode
- rbx-2
|
before_install:
- gem install bundler -v '= 1.5.1'
rvm:
- 2.0.0
- 1.9.3
- 2.1.0
- jruby-19mode
- rbx-2
|
Fix Travis build for jruby
|
Fix Travis build for jruby
https://github.com/travis-ci/travis-ci/issues/1798
|
YAML
|
mit
|
KingLemuel/vacuum,hakanensari/vacuum,marcomontes/vacuum
|
110d6bc02cbbdd9c680848c1e21c37d22987eab0
|
.travis.yml
|
.travis.yml
|
language: cpp
os:
- linux
- osx
env:
- CFLAGS="-O0 -g" QMAKEFLAGS="-config debug" PATH=/opt/qt56/bin:/usr/local/opt/qt5/bin:$PATH
addons:
apt:
sources:
- sourceline: 'ppa:beineri/opt-qt563-trusty'
packages:
- qt56base valgrind
install:
- if [ "${TRAVIS_OS_NAME}" != "linux" ]; then
brew install qt5;
fi
script:
- make -s -f Makefile.configure configure | tee .config
- make
CFLAGS="$CFLAGS"
all tests/Makefile
- cd tests && make check -k
TESTRUNNER=`which valgrind 2>/dev/null`
|
language: cpp
os:
- linux
- osx
env:
- CFLAGS="-O0 -g" QMAKEFLAGS="-config debug" PATH=/opt/qt56/bin:/usr/local/opt/qt5/bin:$PATH
addons:
apt:
sources:
- sourceline: 'ppa:beineri/opt-qt563-trusty'
packages:
- qt56base valgrind
install:
- if [ "${TRAVIS_OS_NAME}" != "linux" ]; then
brew update;
brew install qt5;
fi
script:
- make -s -f Makefile.configure configure | tee .config
- make
CFLAGS="$CFLAGS"
all tests/Makefile
- cd tests && make check -k
TESTRUNNER=`which valgrind 2>/dev/null`
|
Fix Travis builds on macOS
|
Fix Travis builds on macOS
Travis and Homebrew have been at odds: the Ruby in PATH is not what
Homebrew wants, so it prints:
/usr/local/Homebrew/Library/Homebrew/brew.rb:12:in `<main>': Homebrew must be run under Ruby 2.3! You're running 2.0.0. (RuntimeError)
Info in the Travis's own GitHub bug report indicates "brew update" fixes
this issue, even though it increases the build time.
Signed-off-by: Thiago Macieira <[email protected]>
|
YAML
|
mit
|
intel/tinycbor,thiagomacieira/tinycbor,intel/tinycbor,thiagomacieira/tinycbor,thiagomacieira/tinycbor,thiagomacieira/tinycbor,01org/tinycbor,intel/tinycbor,01org/tinycbor,intel/tinycbor,01org/tinycbor
|
6d78aa23b6eeeaaa95490dd66db0dfdb9211651d
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
script: bundle exec rake
|
language: ruby
sudo: false
cache: bundler
rvm:
- 2.1
- 2.2
script: bundle exec rake
|
Test modern Rubies and use Travis's new container infrastructure
|
Test modern Rubies and use Travis's new container infrastructure
|
YAML
|
mit
|
psu-stewardship/noid,microservices/noid
|
c089c5c85ff7f37585350bfe1fd6aaff829f27ec
|
.travis.yml
|
.travis.yml
|
sudo: true
dist: trusty
language: node_js
node_js:
- '6'
before_script:
- npm install -g bower
- yarn
- bower install
script: gulp test
cache:
directories:
- node_modules
addons:
firefox: latest
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
|
sudo: true
dist: trusty
language: node_js
node_js:
- '6'
before_script:
- npm install -g bower web-component-tester
- yarn
- bower install
- gulp build:tests
script: xvfb-run wct
cache:
directories:
- node_modules
addons:
firefox: latest
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
|
Use xvfb / global wct
|
Use xvfb / global wct
|
YAML
|
mit
|
simplaio/simpla-text,simplaio/simpla-text,SimplaElements/simpla-text,SimplaElements/simpla-text
|
8909cafb6876278f6a24a8a0cad9e753e2345eae
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.1.0
- 2.0.0
|
language: ruby
cache: bundler
rvm:
- 2.1.0
- 2.0.0
|
Allow Travis to cache bundler
|
Allow Travis to cache bundler
|
YAML
|
mit
|
shopkeep/mulder
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.