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
|
---|---|---|---|---|---|---|---|---|---|
2dc112be199cabd586854e4f457e005c58d6ca62
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanbul coveralls node-gyp
|
sudo: false
language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanbul coveralls node-gyp
|
Build on Travis CI without `sudo`.
|
Build on Travis CI without `sudo`.
|
YAML
|
mit
|
bigeasy/hash,bigeasy/hash,bigeasy/hash,bigeasy/hash
|
03d9273572f1a7b77c2cda789ea0bf6e18aeec70
|
.travis.yml
|
.travis.yml
|
# vim ft=yaml
# https://travis-ci.org/leeclemens/imageroller
language: python
python:
- 3.4
- 3.5
install:
# Install Python packages / dependencies
# coverage
- travis_retry pip install coverage
# coveralls
- travis_retry pip install coveralls
# pylint
- travis_retry pip install pylint
script:
- $VENV_BIN/pip install .
- pylint imageroller
matrix:
fast_finish: true
|
# vim ft=yaml
# https://travis-ci.org/leeclemens/imageroller
language: python
python:
- 3.4
- 3.5
install:
# Install Python packages / dependencies
# coverage
- travis_retry pip install coverage
# coveralls
- travis_retry pip install coveralls
# pylint
- travis_retry pip install pylint
script:
- pip install .
- pylint imageroller
matrix:
fast_finish: true
|
Fix path (since we remove PYVENV
|
Fix path (since we remove PYVENV
|
YAML
|
mit
|
leeclemens/imageroller
|
03287e3f2402935ea04ba43e44502de03fe10e22
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.11'
- '0.10'
before_install:
- openssl aes-256-cbc
-K $encrypted_450e4adece3f_key
-iv $encrypted_450e4adece3f_iv
-in .travis/deploy_key.enc
-out .travis/deploy_key -d
script:
- ./node_modules/.bin/gulp build
after_success:
- chmod 600 .travis/deploy_key
- ssh-add .travis/deploy_key
- rm -rf out || exit 0
- mkdir out
- cd out
- git init
- git config user.name "Travis CI"
- git config user.email "[email protected]"
- cp -r ../dist/docs/ .
- git add .
- git commit -m "Deploy to GitHub Pages"
- git remote add deploy $DEPLOY_REPOSITORY
- git push --force --quiet deploy master:${DEPLOY_BRANCH} > /dev/null 2>&1
|
language: node_js
node_js:
- '0.11'
before_install:
- openssl aes-256-cbc
-K $encrypted_450e4adece3f_key
-iv $encrypted_450e4adece3f_iv
-in .travis/deploy_key.enc
-out .travis/deploy_key -d
script:
- ./node_modules/.bin/gulp build
after_success:
- chmod 600 .travis/deploy_key
- ssh-add .travis/deploy_key
- rm -rf out || exit 0
- mkdir out
- cd out
- git init
- git config user.name "Travis CI"
- git config user.email "[email protected]"
- cp -r ../dist/docs/ .
- git add .
- git commit -m "Deploy to GitHub Pages"
- git remote add deploy $DEPLOY_REPOSITORY
- git push --force --quiet deploy master:${DEPLOY_BRANCH} > /dev/null 2>&1
|
Remove Node 0.10 build target from Travis CI
|
Remove Node 0.10 build target from Travis CI
|
YAML
|
mit
|
davidknezic/style-guide
|
63102f00069cb49f28fe11bf6330b023fcbe8723
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "2.6"
install: pip install --use-mirrors
script:
- python setup.py test
|
language: python
python:
- "2.7"
install: pip install --use-mirrors
script:
- python setup.py test
|
Remove the Travis build for Python 2.6
|
Remove the Travis build for Python 2.6
This is no longer supported by the irc library cobe uses.
|
YAML
|
mit
|
DarkMio/cobe,meska/cobe,meska/cobe,LeMagnesium/cobe,DarkMio/cobe,pteichman/cobe,tiagochiavericosta/cobe,LeMagnesium/cobe,tiagochiavericosta/cobe,pteichman/cobe
|
94547cb7e6300e1c3c384dc0e4e2a1b2c6915d51
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.6
- 2.2.2
cache: bundle
before_script: bin/rake db
script: bin/rake test
addons:
codeclimate:
repo_token:
secure: CxFMGcOhwkzowVZyys4fxSlsahNTNR6eBnRJmXqOhzjZwOoB7z0j3wfvIv8lDkKl03ayFUmToH147M4euh6RTbyCiFa9ti/bcVglWHaTDn6Qh5Ow6FWSJ76tIPAXpDaipn+ns8PQpsvrBISu6pB0MTgBbMwGQLpEUbDKtOCxexY=
deploy:
provider: rubygems
api_key:
secure: Ss+mExNaQHwVyJ0u5cN/BrrVEPZPUdojUxbVj5xa4fjT8OCmaeXY6DM24L1dDpysNLlExKzNVzK6JZNl1KFE03U6Be+S8sr5yJ3hlhPIqShA21+riiC/yeEnNw9oWv+EDDw2CD5TImF3u4YmGJohVdpCGl2U3tlRP5Kchz1vYjw=
gem: controller_resources
on:
tags: true
repo: tubbo/controller_resources
|
language: ruby
rvm:
- 2.0.0
- 2.1.6
- 2.2.2
cache: bundle
before_script: bin/rake db
script: bin/rake test
addons:
codeclimate:
repo_token:
secure: CxFMGcOhwkzowVZyys4fxSlsahNTNR6eBnRJmXqOhzjZwOoB7z0j3wfvIv8lDkKl03ayFUmToH147M4euh6RTbyCiFa9ti/bcVglWHaTDn6Qh5Ow6FWSJ76tIPAXpDaipn+ns8PQpsvrBISu6pB0MTgBbMwGQLpEUbDKtOCxexY=
deploy:
provider: rubygems
api_key:
secure: Ss+mExNaQHwVyJ0u5cN/BrrVEPZPUdojUxbVj5xa4fjT8OCmaeXY6DM24L1dDpysNLlExKzNVzK6JZNl1KFE03U6Be+S8sr5yJ3hlhPIqShA21+riiC/yeEnNw9oWv+EDDw2CD5TImF3u4YmGJohVdpCGl2U3tlRP5Kchz1vYjw=
gem: controller_resources
on:
tags: true
repo: tubbo/controller_resources
|
Remove 1.9.3 from the build matrix
|
Remove 1.9.3 from the build matrix
|
YAML
|
mit
|
tubbo/controller_resources,tubbo/controller_resources,tubbo/controller_resources
|
7677d70915125d2aab32b2911d6c7a9a3411796a
|
.travis.yml
|
.travis.yml
|
language: objective-c
matrix:
include:
- osx_image: xcode7.3
- osx_image: xcode8
- osx_image: xcode8.1
script:
- "xcodebuild -workspace Guanaco.xcworkspace -scheme Guanaco-iOS -sdk iphonesimulator -destination \"platform=iOS Simulator,name=iPhone 6\" test"
- "xcodebuild -workspace Guanaco.xcworkspace -scheme Guanaco-OSX test"
|
language: objective-c
osx_image: xcode8.1
script:
- "xcodebuild -workspace Guanaco.xcworkspace -scheme Guanaco-iOS -sdk iphonesimulator -destination \"platform=iOS Simulator,name=iPhone 6\" test"
- "xcodebuild -workspace Guanaco.xcworkspace -scheme Guanaco-OSX test"
|
Configure Travis CI to build with Xcode 8.1 only
|
Configure Travis CI to build with Xcode 8.1 only
Xcode 7.3 builds on Travis were repeatedly failing because xcodebuild would build dependencies for the wrong platform. (rdar://20490378, rdar://22008701, rdar://22816454)
Xcode 8.0 builds on Travis were occasionally failing because xcodebuild would exit with status 65 and no explanation of the failure.
|
YAML
|
mit
|
modocache/Guanaco,modocache/Guanaco
|
61b71941752d368dc82b638bb34eb365501d9e5c
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.6
- tip
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install gcc-6 g++-6 libsnappy-dev zlib1g-dev libbz2-dev -qq
- export CXX="g++-6" CC="gcc-6"
- wget https://launchpad.net/ubuntu/+archive/primary/+files/libgflags2_2.0-1.1ubuntu1_amd64.deb
- sudo dpkg -i libgflags2_2.0-1.1ubuntu1_amd64.deb
- wget https://launchpad.net/ubuntu/+archive/primary/+files/libgflags-dev_2.0-1.1ubuntu1_amd64.deb
- sudo dpkg -i libgflags-dev_2.0-1.1ubuntu1_amd64.deb
install:
- git clone https://github.com/facebook/rocksdb.git /tmp/rocksdb
- pushd /tmp/rocksdb
- make clean
- make shared_lib
- sudo cp --preserve=links ./librocksdb.* /usr/lib/
- sudo cp -r ./include/rocksdb/ /usr/include/
- popd
- go get -t ./...
script:
- go test -v ./
notifications:
email:
on_success: change
on_failure: always
|
language: go
go:
- 1.7
- tip
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install gcc-6 g++-6 libsnappy-dev zlib1g-dev libbz2-dev -qq
- export CXX="g++-6" CC="gcc-6"
- wget https://launchpad.net/ubuntu/+archive/primary/+files/libgflags2_2.0-1.1ubuntu1_amd64.deb
- sudo dpkg -i libgflags2_2.0-1.1ubuntu1_amd64.deb
- wget https://launchpad.net/ubuntu/+archive/primary/+files/libgflags-dev_2.0-1.1ubuntu1_amd64.deb
- sudo dpkg -i libgflags-dev_2.0-1.1ubuntu1_amd64.deb
install:
- git clone https://github.com/facebook/rocksdb.git /tmp/rocksdb
- pushd /tmp/rocksdb
- make clean
- make shared_lib
- sudo cp --preserve=links ./librocksdb.* /usr/lib/
- sudo cp -r ./include/rocksdb/ /usr/include/
- popd
- go get -t ./...
script:
- go test -v ./
notifications:
email:
on_success: change
on_failure: always
|
Stop testing on Go 1.7
|
Travis: Stop testing on Go 1.7
|
YAML
|
mit
|
tecbot/gorocksdb,tecbot/gorocksdb
|
86b5772cacf2f6013edb33ad35378068ea3fc529
|
.travis.yml
|
.travis.yml
|
---
# https://docs.travis-ci.com/user/multi-os/
matrix:
include:
- os: osx
language: generic
script:
- ansible-playbook playbooks/buildenv.yml -i tests/inventory -l localhost -vvvv
- bundle exec rake spec SPEC_TARGET=localhost
- os: linux
dist: trusty
language: python
python: 2.7
services:
- docker
addons:
apt:
packages:
- python-pip
script:
- ansible-playbook playbooks/buildenv.yml -i tests/inventory -l localhost -vvvv
- bundle exec rake spec SPEC_TARGET=localhost
- packer build platforms/docker.json
- docker run -it -d --name container fgtatsuro/infra-bridgehead:debian-jessie /bin/bash
- bundle exec rake spec SPEC_TARGET=container
after_script:
- docker rm -f container
sudo: required
install:
- sudo pip install -r requirements.txt
- ansible-galaxy install -r role_requirements.yml
- bundle install
|
---
# https://docs.travis-ci.com/user/multi-os/
matrix:
include:
- os: osx
language: generic
script:
- ansible-playbook playbooks/buildenv.yml -i tests/inventory -l localhost -vvvv
- bundle exec rake spec SPEC_TARGET=localhost
- os: linux
dist: trusty
language: python
python: 2.7
services:
- docker
addons:
apt:
packages:
- python-pip
script:
- >+
ansible-playbook playbooks/buildenv.yml -i tests/inventory -l localhost
--extra-vars="virtualbox_apt_repository='deb http://download.virtualbox.org/virtualbox/debian precise contrib'"
-vvvv
- bundle exec rake spec SPEC_TARGET=localhost
- packer build platforms/docker.json
- docker run -it -d --name container fgtatsuro/infra-bridgehead:debian-jessie /bin/bash
- bundle exec rake spec SPEC_TARGET=container
after_script:
- docker rm -f container
sudo: required
install:
- sudo pip install -r requirements.txt
- ansible-galaxy install -r role_requirements.yml
- bundle install
|
Use role variable of ansible-virtualbox for Ubuntu trusty.
|
Use role variable of ansible-virtualbox for Ubuntu trusty.
|
YAML
|
mit
|
FGtatsuro/infra-bridgehead,FGtatsuro/infra-bridgehead
|
7a79e981d8238928b8b2440217f5835d04f61467
|
.travis.yml
|
.travis.yml
|
sudo: true
language: android
jdk: oraclejdk8
android:
components:
- tools
- tools
- platform-tools
- build-tools-26.0.0
- android-26
- android-22
- sys-img-armeabi-v7a-android-22
before_script:
- echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
- emulator -avd test -skin WXGA720 -no-audio -no-window &
- android-wait-for-emulator
- sleep 60
- adb shell input keyevent 82
script: ./gradlew --info clean lint test connectedAndroidTest
after_success: ./deploy_snapshot.sh
|
sudo: true
language: android
jdk: oraclejdk8
android:
components:
- tools
- tools
- platform-tools
- build-tools-28.0.2
- android-28
- android-22
- sys-img-armeabi-v7a-android-22
before_script:
- echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
- emulator -avd test -skin WXGA720 -no-audio -no-window &
- android-wait-for-emulator
- sleep 60
- adb shell input keyevent 82
script: ./gradlew --info clean lint test connectedAndroidTest
after_success: ./deploy_snapshot.sh
|
Update Travis config to SDK 28
|
Update Travis config to SDK 28
|
YAML
|
mit
|
lkorth/device-automator,lkorth/device-automator
|
8564ba4a191f4d2f2ca4493b1fb19f4559b554e3
|
.travis.yml
|
.travis.yml
|
# Copyright 2020 SkyWater PDK Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://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.
#
# SPDX-License-Identifier: Apache-2.0
language: minimal
git:
submodules: false
depth: false
install:
- git describe
- make env
- python3 -m pip install flake8
script:
- make lint-python
- source .github/travis/common.sh
- rm -f README.rst && make README.rst
- .github/travis/git-check.sh
|
# Copyright 2020 SkyWater PDK Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://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.
#
# SPDX-License-Identifier: Apache-2.0
os linux
dist: focal
language: shell
git:
submodules: false
depth: false
install:
- git describe
- make env
- python3 -m pip install flake8
script:
- make lint-python
- source .github/travis/common.sh
- rm -f README.rst && make README.rst
- .github/travis/git-check.sh
|
Fix Travis CI build config validation issues
|
Fix Travis CI build config validation issues
|
YAML
|
apache-2.0
|
google/skywater-pdk
|
f12d31d149a87e4cb1ec94967484532846df3e0e
|
.travis.yml
|
.travis.yml
|
language: java
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
env: TEST_SUITE=assemble test --tests '*SystemdJournalAppenderTest*'
- os: linux
jdk: oraclejdk8
env: TEST_SUITE=build
- os: linux
jdk: openjdk8
env: TEST_SUITE=build
- os: linux
jdk: oraclejdk9
env: TEST_SUITE=build
- os: linux
jdk: oraclejdk10
env: TEST_SUITE=build
- os: linux
jdk: openjdk10
env: TEST_SUITE=build
script:
- ./gradlew ${TEST_SUITE}
branches:
- master
- 1.x
|
language: java
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
env: TEST_SUITE=assemble test --tests '*SystemdJournalAppenderTest*'
- os: linux
jdk: oraclejdk8
env: TEST_SUITE=build
- os: linux
jdk: openjdk8
env: TEST_SUITE=build
- os: linux
jdk: oraclejdk9
env: TEST_SUITE=build
- os: linux
jdk: openjdk10
env: TEST_SUITE=build
script:
- ./gradlew ${TEST_SUITE}
branches:
- master
- 1.x
|
Stop building and testing on Oracle JDK 10
|
Stop building and testing on Oracle JDK 10
|
YAML
|
bsd-3-clause
|
bwaldvogel/log4j-systemd-journal-appender,bwaldvogel/log4j-systemd-journal-appender
|
ec8596e8b061cf54e673342fbf782e97c1d5ef8f
|
.travis.yml
|
.travis.yml
|
language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake spec"
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- jruby-head
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
notifications:
email:
- [email protected]
- [email protected]
|
language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake spec"
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
notifications:
email:
- [email protected]
- [email protected]
|
Remove jruby-head from build matrix
|
Remove jruby-head from build matrix
|
YAML
|
mit
|
XescuGC/virtus,JustMikey/virtus,solnic/virtus,dslh/virtus,artemeff/virtus,mallikarjunayaddala/virtus,baojjeu/virtus,faucct/virtus,hapiben/virtus,macressler/virtus,reevoo/virtus
|
aaa31ae414ff996bf384e0152c3651335d0dc3cc
|
.travis.yml
|
.travis.yml
|
dist: xenial
language: python
sudo: false
git:
depth: 1
python:
- 2.7
- 3.7
- pypy2.7-6.0
- pypy3.5-6.0
env:
- secure: "EhG2uSD2m1eGxuL2HeQewJJx7MVL4WpjrxyfiUBEgsApemD1yKJPjUnLwAyd\nbPi5HJx5ySm1TTRSvj6/yP85YLYTaJHA8OabKk7p0wFW294qcrYIDGovU7NL\n3YOqZmqN+S3XOBGFCOnByxE+pcxxWW/3/I09EgeW7D6tBPh67G0="
install:
- echo $TRAVIS_PYTHON_VERSION
- pip install -U pytest pytest-xdist coveralls
- >
if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then
pip install 'pytest-cov>=1.8.0';
fi
- >
if [[ "$TRAVIS_PYTHON_VERSION" == "3.7" ]]; then
pip install --upgrade setuptools;
fi
- pip install -e .[test] --upgrade
script:
- python -mwand.version --verbose
- >
if [[ $TRAVIS_PYTHON_VERSION == pypy* ]]; then
py.test --skip-pdf --boxed --durations=20;
else
py.test --skip-pdf --cov wand --boxed --durations=20;
fi
after_success:
- coveralls
|
dist: bionic
language: python
sudo: false
git:
depth: 1
python:
- 3.7
- 3.8
- pypy3.5-6.0
env:
- secure: "EhG2uSD2m1eGxuL2HeQewJJx7MVL4WpjrxyfiUBEgsApemD1yKJPjUnLwAyd\nbPi5HJx5ySm1TTRSvj6/yP85YLYTaJHA8OabKk7p0wFW294qcrYIDGovU7NL\n3YOqZmqN+S3XOBGFCOnByxE+pcxxWW/3/I09EgeW7D6tBPh67G0="
install:
- echo $TRAVIS_PYTHON_VERSION
- pip install -U pytest pytest-xdist coveralls
- >
if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then
pip install 'pytest-cov>=1.8.0';
fi
- >
if [[ "$TRAVIS_PYTHON_VERSION" == "3.7" ]]; then
pip install --upgrade setuptools;
fi
- pip install -e .[test] --upgrade
script:
- python -mwand.version --verbose
- >
if [[ $TRAVIS_PYTHON_VERSION == pypy* ]]; then
py.test --skip-pdf --boxed --durations=20;
else
py.test --skip-pdf --cov wand --boxed --durations=20;
fi
after_success:
- coveralls
|
Switch CI env to Bionic, and dropped Python-2
|
Switch CI env to Bionic, and dropped Python-2
|
YAML
|
mit
|
dahlia/wand
|
928b77992d0e37fc4029226c4e7f23e052d808d1
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
services: postgresql
before_script:
- psql -c 'create database pgwrapper_test' -U postgres -h 127.0.0.1
- cp tests/config.php.travis tests/config.php
install: composer install
script: vendor/bin/phpunit --configuration tests/phpunit.xml
|
language: php
php:
- 7.2
- 7.3
- 7.4snapshot
matrix:
fast_finish: true
allow_failures:
- php: 7.4snapshot
services: postgresql
before_script:
- psql -c 'create database pgwrapper_test' -U postgres -h 127.0.0.1
- cp tests/config.php.travis tests/config.php
install: composer install
script: vendor/bin/phpunit --configuration tests/phpunit.xml
|
Test only on PHP 7.2+
|
Test only on PHP 7.2+
|
YAML
|
bsd-2-clause
|
sad-spirit/pg-wrapper
|
893f5979b2cccb6ad55cf69df1b33ef532d0e3d4
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- "2.1.0"
- "2.0.0"
- "1.9.3"
- jruby-19mode
gemfile:
- ".gemfiles/Gemfile.rails-3.2.x"
- ".gemfiles/Gemfile.rails-4.0.x"
matrix:
include:
- rvm: "1.8.7"
gemfile: ".gemfiles/Gemfile.rails-3.2.x"
- rvm: jruby-18mode
gemfile: ".gemfiles/Gemfile.rails-3.2.x"
|
language: ruby
rvm:
- "2.1.0"
- "2.0.0"
gemfile:
- ".gemfiles/Gemfile.rails-3.2.x"
- ".gemfiles/Gemfile.rails-4.0.x"
|
Remove no longer maintained versions of ruby
|
Remove no longer maintained versions of ruby
|
YAML
|
mit
|
hashrocket/decent_exposure,hashrocket/decent_exposure
|
2d2ce834677c6152745faacad30bdc5b2b286c7d
|
.travis.yml
|
.travis.yml
|
language: smalltalk
sudo: false
# Select operating system(s)
os:
- linux
- osx
# Select compatible Smalltalk image(s)
smalltalk:
- Squeak-trunk
- Squeak-5.0
- Squeak-4.6
- Squeak-4.5
|
language: smalltalk
sudo: false
# Select operating system(s)
os:
- linux
- osx
# Select compatible Smalltalk image(s)
smalltalk:
- Squeak-trunk
- Squeak-5.1
|
Adjust .trayis.yml to test on trunk and 5.1 only
|
Adjust .trayis.yml to test on trunk and 5.1 only
|
YAML
|
mit
|
HPI-SWA-Teaching/SwaLint
|
070158a62d5dc24ec140210a81473ba41efd4cfb
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.4
- 1.5
- 1.6
install:
- go get golang.org/x/tools/cmd/vet
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get github.com/golang/lint/golint
- go get github.com/pierrre/gotestcover
- go get -t ./...
script:
- go vet -x ./xerror
- golint ./xerror
- gotestcover -coverprofile="cover.out" -race -covermode="count" ./xerror
- goveralls -coverprofile="cover.out"
|
language: go
go:
- 1.5
- 1.6
install:
- go get golang.org/x/tools/cmd/vet
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get github.com/golang/lint/golint
- go get github.com/pierrre/gotestcover
- go get -t ./...
script:
- go vet -x ./xerror
- golint ./xerror
- gotestcover -coverprofile="cover.out" -race -covermode="count" ./xerror
- goveralls -coverprofile="cover.out"
|
Remove Go 1.4 from TravisCI config.
|
Remove Go 1.4 from TravisCI config.
|
YAML
|
mit
|
ibrt/go-xerror
|
f1b86cf394122fb542edd56385c646fca40f914a
|
.travis.yml
|
.travis.yml
|
language: cpp
compiler:
- gcc
before_install:
- sudo add-apt-repository ppa:kalakris/cmake -y
- sudo apt-get update -qq
- sudo apt-get install -y cmake
- sudo apt-get install -y libqt4-dev libdcmtk2-dev libinsighttoolkit3-dev libgdcm2-dev
- sudo apt-get install -y xpra xserver-xorg-video-dummy
before_script:
- "ls"
- "xpra --xvfb=\"Xorg +extension GLX -config `pwd`/Applications/Testing/dummy.xorg.conf -logfile ${HOME}/.xpra/xorg.log\" start :9"
- mkdir build
- cd build
- cmake CTK_BUILD_ALL:BOOL=ON ..
script: "make && (cd CTK-build; env DISPLAY=:9 make Experimental)"
after_script:
- "xpra stop :9"
- "cat ~/.xpra/*"
|
language: cpp
compiler:
- gcc
before_install:
- sudo add-apt-repository ppa:kalakris/cmake -y
- sudo apt-get update -qq
- sudo apt-get install -y cmake
- sudo apt-get install -y libqt4-dev libdcmtk2-dev libinsighttoolkit3-dev libgdcm2-dev
- sudo apt-get install -y xpra xserver-xorg-video-dummy
before_script:
- "ls"
- "xpra --xvfb=\"Xorg +extension GLX -config `pwd`/Applications/Testing/dummy.xorg.conf -logfile ${HOME}/.xpra/xorg.log\" start :9"
- mkdir build
- cd build
- "cmake CTK_ENABLE_DICOM:BOOL=ON .."
script: "make && (cd CTK-build; env DISPLAY=:9 make Experimental)"
after_script:
- "xpra stop :9"
- "cat ~/.xpra/*"
|
Enable all did not work, try just dicom
|
Enable all did not work, try just dicom
|
YAML
|
apache-2.0
|
pieper/CTK,pieper/CTK,pieper/CTK,pieper/CTK
|
ff370dc289c983b194bd9cec36812f8a0ec6edbb
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.4"
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get install -y python-opencv
- pip install -r requirements.txt
script:
- python setup.py build
virtualenv:
system_site_packages: true
|
language: python
python:
- "2.7"
- "3.2"
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get install -y python-opencv
- pip install -r requirements.txt
script:
- python setup.py build
virtualenv:
system_site_packages: true
|
Build with Python 3.2 not 3.4.
|
Build with Python 3.2 not 3.4.
|
YAML
|
isc
|
eliteraspberries/fftresize
|
1d698468a0677ecbeb55dc470ddafaa0442fb46f
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- 2.1.1
- rbx-2
- ruby-head
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
|
language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- rbx-2
- ruby-head
matrix:
include:
- rvm: jruby
env: JRUBY_OPTS="--2.0 --debug"
- rvm: jruby-head
env: JRUBY_OPTS="--2.1 --debug"
- rvm: jruby-head
env: JRUBY_OPTS="--debug"
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
|
Fix JRuby versions tested on Travis.
|
Fix JRuby versions tested on Travis.
|
YAML
|
mit
|
trade-informatics/caracal
|
ccc21c590977d9c30854c0f45f1a31021c8a1c25
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "6"
services:
- postgresql
before_script:
- npm install -g sequelize-cli
- psql -c 'create database postitdbtests;' -U postgres
script:
- npm install
- npm run test
- npm run coverage
after_success:
- npm run coveralls
|
language: node_js
node_js:
- "6"
services:
- postgresql
before_script:
- npm install -g sequelize-cli
- psql -c 'create database postitdbtests;' -U postgres
script:
- npm install
- npm run test
- npm run coverage
after_success:
- npm run coveralls
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
env:
- TRAVIS=traviz CXX=g++-4.8
|
Add settings to fix build error
|
Add settings to fix build error
|
YAML
|
mit
|
3m3kalionel/PostIt,3m3kalionel/PostIt
|
5f66276177884a20c0177fee93bcbd5aeac842ad
|
.travis.yml
|
.travis.yml
|
---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
gemfile:
- gemfiles/Gemfile.rails-3.2
- gemfiles/Gemfile.rails-4.0
- gemfiles/Gemfile.rails-4.1
- gemfiles/Gemfile.rails-5.0
|
---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.3.0
gemfile:
- gemfiles/Gemfile.rails-3.2
- gemfiles/Gemfile.rails-4.0
- gemfiles/Gemfile.rails-4.1
- gemfiles/Gemfile.rails-5.0
|
Add ruby 2.3.0 to build matrix
|
Add ruby 2.3.0 to build matrix
|
YAML
|
mit
|
fixlr/codemirror-rails,fixlr/codemirror-rails,fixlr/codemirror-rails
|
7d53657e0dcf1b512a74d59d55034caacdabcfa8
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.10
- 0.12
script: npm test
notifications:
email:
recipients:
- [email protected]
on_success: change
on_failure: always
env:
global:
- secure: dtJpzQPi6/UYsySz8cUIxja7JiiEvDhtKkKpSZa3skB1Es1NNo/tYmVHZyw4MkLpdvXuJx0020dR5ao7UTag9CZspeSimqmr5Q4AV3eBv7Da6d36Gtm5SCGfWHXTldbPYL19ai1EWPSiifQbWxlN3gew9awCFgoBvOKcZoSJQ1M=
- secure: Rt/5r/rYFrlPApkVRm2eWvpIJ3ZlLi45LmJVwVp7ruEihxnO4zbjRcO++Co2zhKkjZKHbM/zDiLHGNyPt1GGAjJKdtVyPzMdEvd9Jx8G2J938UoWCAsI7q5twrP96dQcgIsya7LXNlYxnAw5P5jaFJB2ipktk3VHlm/qZXkEgSc=
|
language: node_js
node_js:
- 0.10
- 0.12
- 4.2
- 5
script: npm test
notifications:
email:
recipients:
- [email protected]
on_success: change
on_failure: always
env:
global:
- secure: dtJpzQPi6/UYsySz8cUIxja7JiiEvDhtKkKpSZa3skB1Es1NNo/tYmVHZyw4MkLpdvXuJx0020dR5ao7UTag9CZspeSimqmr5Q4AV3eBv7Da6d36Gtm5SCGfWHXTldbPYL19ai1EWPSiifQbWxlN3gew9awCFgoBvOKcZoSJQ1M=
- secure: Rt/5r/rYFrlPApkVRm2eWvpIJ3ZlLi45LmJVwVp7ruEihxnO4zbjRcO++Co2zhKkjZKHbM/zDiLHGNyPt1GGAjJKdtVyPzMdEvd9Jx8G2J938UoWCAsI7q5twrP96dQcgIsya7LXNlYxnAw5P5jaFJB2ipktk3VHlm/qZXkEgSc=
|
Add Node 4.2 and 5.x to Travis config
|
Add Node 4.2 and 5.x to Travis config
|
YAML
|
bsd-3-clause
|
baer/react-intl,ericf/react-intl
|
86f2ef71927a00620f55f0ef7c8c131572f9180b
|
.travis.yml
|
.travis.yml
|
dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- node
addons:
firefox: '49.0.2'
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi"
before_script:
- npm install web-component-tester [email protected] polylint
- $(npm bin)/bower install
- $(npm bin)/polylint --no-recursion
script:
- xvfb-run $(npm bin)/wct
|
dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi"
before_script:
- npm install web-component-tester [email protected] polylint
- $(npm bin)/bower install
- $(npm bin)/polylint --no-recursion
script:
- xvfb-run $(npm bin)/wct
|
Use the latest Firefox ESR for testing
|
Use the latest Firefox ESR for testing
|
YAML
|
apache-2.0
|
Collaborne/polymer-cordova-keyboard
|
5bd9c2d93eece728716913345c2a69688be1ee94
|
.travis.yml
|
.travis.yml
|
language: generic
env:
- TARGET=script_test
- TARGET=travis_test
script: "make $TARGET"
notifications:
email: false
services:
- docker
|
language: generic
env:
- TARGET=test
- TARGET=travis_test
script: "make $TARGET"
notifications:
email: false
services:
- docker
|
Fix a mistake in CI Script
|
Fix a mistake in CI Script
|
YAML
|
bsd-2-clause
|
UltimatePea/UniversalLanguageInterface,UltimatePea/UniversalLanguageInterface,UltimatePea/UniversalLanguageInterface
|
c09dade99252cc6ee8f35b569c5e1afd7666f37d
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- tip
gobuild_args: -tags no_pkg_config
dist: xenial
addons:
apt:
packages:
- bison
- flex
- automake
- autoconf
- libtool
- make
- gcc
before_install:
- wget --no-verbose -O- https://github.com/VirusTotal/yara/archive/v3.7.0.tar.gz | tar -C ${TRAVIS_BUILD_DIR} -xzf -
- ( cd ${TRAVIS_BUILD_DIR}/yara-3.7.0 && ./bootstrap.sh && ./configure && make )
- export CGO_CFLAGS=-I${TRAVIS_BUILD_DIR}/yara-3.7.0/libyara/include
- export CGO_LDFLAGS=-L${TRAVIS_BUILD_DIR}/yara-3.7.0/libyara/.libs
- export LD_LIBRARY_PATH=${TRAVIS_BUILD_DIR}/yara-3.7.0/libyara/.libs
|
language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- tip
gobuild_args: -tags no_pkg_config
dist: xenial
addons:
apt:
packages:
- bison
- flex
- automake
- autoconf
- libtool
- make
- gcc
before_install:
- wget --no-verbose -O- https://github.com/VirusTotal/yara/archive/v3.7.0.tar.gz | tar -C ${TRAVIS_BUILD_DIR} -xzf -
- ( cd ${TRAVIS_BUILD_DIR}/yara-3.7.0 && ./bootstrap.sh && ./configure && make )
- export CGO_CFLAGS=-I${TRAVIS_BUILD_DIR}/yara-3.7.0/libyara/include
- export CGO_LDFLAGS=-L${TRAVIS_BUILD_DIR}/yara-3.7.0/libyara/.libs
- export LD_LIBRARY_PATH=${TRAVIS_BUILD_DIR}/yara-3.7.0/libyara/.libs
|
Add Go 1.10 to Travis configuration
|
Add Go 1.10 to Travis configuration
|
YAML
|
bsd-2-clause
|
hillu/go-yara,VirusTotal/go-yara,hillu/go-yara
|
241b9f2ccfc28286c79d2b1691097c488627255f
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
Test with latest Node.js 5 on Travis CI.
|
Test with latest Node.js 5 on Travis CI.
|
YAML
|
mit
|
bigeasy/monotonic
|
9c2e142585f57ac96bd329c92a52f4c8151595c1
|
.travis.yml
|
.travis.yml
|
before_install:
- gem install bundler
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
|
before_install:
- gem install bundler
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
|
Add recent Rubies to Travis matrix
|
Add recent Rubies to Travis matrix
|
YAML
|
mit
|
singlebrook/utf8-cleaner
|
e9d3dbf38aa4e46ecf3628f5f5d30f78dc8559d0
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
before_install:
- npm install npm -g
node_js:
- "4"
- "5"
- "6"
- "7"
env:
- TEST_SUITE=test
script: npm run-script $TEST_SUITE
|
sudo: false
language: node_js
before_install:
- npm install npm -g
node_js:
- "lts/*"
- "9"
- "10"
env:
- TEST_SUITE=test
script: npm run-script $TEST_SUITE
|
Fix Travis by removing v4 and v5
|
Fix Travis by removing v4 and v5
|
YAML
|
isc
|
weilu/bip39,bitcoinjs/bip39,bitcoinjs/bip39
|
f46d27297abf71d70c50f18b16179590395cb5ea
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.2
- 5.3
- 5.4
- hhvm
script: phpunit tests
|
language: php
php:
- 5.2
- 5.3
- 5.4
- 5.5
- hhvm
script: phpunit tests
|
Add PHP 5.5 to Travis
|
Add PHP 5.5 to Travis
|
YAML
|
unlicense
|
4d47/php-learning-experience
|
dc48dd27851754ae1678dbec5474eeaf7f052f1f
|
.travis.yml
|
.travis.yml
|
sudo: true
dist: trusty
cache: false
env:
- URL=https://developer.salesforce.com/media/salesforce-cli/sfdx-linux-amd64.tar.xz
before_install:
- openssl aes-256-cbc -K $encrypted_bc21448d0b37_key -iv $encrypted_bc21448d0b37_iv
-in assets/server.key.enc -out assets/server.key -d
- export SFDX_AUTOUPDATE_DISABLE=true
- export SFDX_USE_GENERIC_UNIX_KEYCHAIN=true
- export SFDX_DOMAIN_RETRY=300
- wget -qO- $URL | tar xJf -
- ./sfdx/install
- export PATH=./sfdx/$(pwd):$PATH
- sfdx plugins:install salesforcedx@pre-release
- sfdx force:auth:jwt:grant --clientid $CONSUMERKEY --jwtkeyfile assets/server.key
--username $USERNAME --setdefaultdevhubusername -a HubOrg
script:
- sfdx force:org:create -v HubOrg -s -f config/project-scratch-def.json -a ciorg
- sfdx force:source:push -u ciorg
- sfdx force:lightning:test:run -u ciorg
- sfdx force:org:delete -u ciorg -p
|
sudo: true
dist: trusty
cache: false
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
env:
- URL=https://developer.salesforce.com/media/salesforce-cli/sfdx-linux-amd64.tar.xz
before_install:
- openssl aes-256-cbc -K $encrypted_bc21448d0b37_key -iv $encrypted_bc21448d0b37_iv
-in assets/server.key.enc -out assets/server.key -d
- export SFDX_AUTOUPDATE_DISABLE=true
- export SFDX_USE_GENERIC_UNIX_KEYCHAIN=true
- export SFDX_DOMAIN_RETRY=300
- wget -qO- $URL | tar xJf -
- ./sfdx/install
- export PATH=./sfdx/$(pwd):$PATH
- sfdx plugins:install salesforcedx@pre-release
- sfdx force:auth:jwt:grant --clientid $CONSUMERKEY --jwtkeyfile assets/server.key
--username $USERNAME --setdefaultdevhubusername -a HubOrg
script:
- sfdx force:org:create -v HubOrg -s -f config/project-scratch-def.json -a ciorg
- sfdx force:source:push -u ciorg
- sfdx force:lightning:test:run -u ciorg
- sfdx force:org:delete -u ciorg -p
|
Fix Travis CI/SFDX - Chrome dep
|
Fix Travis CI/SFDX - Chrome dep
|
YAML
|
mit
|
madmax983/lightning-redux
|
fbf72130142f8ac6af5864669a96449edc95a988
|
.travis.yml
|
.travis.yml
|
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode7.3
language: objective-c
# cache: cocoapods
# podfile: XCFitDemo/Podfile
# before_install:
# - gem install cocoapods
# - pod install --project-directory=XCFitDemo
script:
- cd XCFitDemo/
- pwd
# - set -o pipefail && xcodebuild test -workspace Example/XCFit.xcworkspace -scheme XCFit-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
- set -o pipefail && xcodebuild -project XCFitDemo.xcodeproj -scheme XCFitDemo -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.3' clean build test | xcpretty -r html -r junit --test --color
|
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode7.3
language: objective-c
# cache: cocoapods
# podfile: XCFitDemo/Podfile
# before_install:
# - gem install cocoapods
# - pod install --project-directory=XCFitDemo
script:
- cd XCFitDemo/
- pwd
- set -o pipefail && xcodebuild -list
# - set -o pipefail && xcodebuild test -workspace Example/XCFit.xcworkspace -scheme XCFit-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
- set -o pipefail && xcodebuild -project XCFitDemo.xcodeproj -scheme XCFitDemo -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.3' clean build test | xcpretty -r html -r junit --test --color
|
Build Scheme before Test on CI
|
Build Scheme before Test on CI
|
YAML
|
mit
|
Shashikant86/XCFit,Shashikant86/XCFit,Shashikant86/XCFit
|
752111423fbe8990c5defdd4588f47e21e5f5e75
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.4"
- "3.5"
before_script:
- pip install codecov
# command to install dependencies
install:
- pip install --upgrade pip
- pip install requests
- pip install nose-parameterized
- pip install -r requirements.txt
# command to run tests
script: nosetests --with-coverage --cover-package=recordlinkage
# Codecov
after_success:
- bash <(curl -s https://codecov.io/bash)
|
language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
- PANDAS_VERSION=0.17.1
- PANDAS_VERSION=0.18.1
- PANDAS_VERSION=0.19.1
before_script:
- pip install codecov
- pip install nose-parameterized
# command to install dependencies
install:
- pip install --upgrade pip
- pip install requests
- pip install -q pandas==$PANDAS_VERSION
- pip install -r requirements.txt
# command to run tests
script: nosetests --with-coverage --cover-package=recordlinkage
# Codecov
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Test against multiple versions of dependencies
|
CI: Test against multiple versions of dependencies
|
YAML
|
bsd-3-clause
|
J535D165/recordlinkage,J535D165/recordlinkage
|
cee16f41720c8367f0dca2fe296a642eea3887a6
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "6.1"
|
language: node_js
node_js:
- "6.1"
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Add codecov.io code coverage hook
|
Add codecov.io code coverage hook
|
YAML
|
isc
|
ketsugi/isIntegerish,ketsugi/isIntegerish
|
5e85e0997b3f164967490527bc426abd96234b82
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.5
- 5.4
- hhvm
install:
- composer install
script: phpunit
|
language: php
php:
- 5.5
- 5.4
- hhvm
install:
- echo "{'require': {'psr/log': '~1.0', 'monolog/monolog': '1.9.1'}}" > composer.json
- composer install
script: phpunit
|
Update Travis settings file. Add composer.json file for install.
|
Update Travis settings file. Add composer.json file for install.
|
YAML
|
mit
|
wadmiraal/wind,wadmiraal/wind
|
bff5c3f7c61150b95f18737f77d089d976c5a75e
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.6
- 7.0
install:
- composer update
|
language: php
php:
- 5.6
- 7.0
- 7.1
install:
- composer update
|
Add the PHP test version
|
Add the PHP test version
|
YAML
|
apache-2.0
|
daxiong123/validator
|
c31ab8a020571f3a5dd771b74ac192ec3a01d94f
|
.travis.yml
|
.travis.yml
|
rvm:
- 1.8.7
- 1.9.3
- jruby-19mode
- rbx-19mode
language: ruby
before_script:
- "rake servers:jasig:prep"
- "bundle exec rake servers:jasig:start &"
- "bundle exec rake servers:callback:start &"
|
rvm:
- 1.8.7
- 1.9.3
- jruby-19mode
- rbx-19mode
language: ruby
before_install:
- "gem update --system"
before_script:
- "rake servers:jasig:prep"
- "bundle exec rake servers:jasig:start &"
- "bundle exec rake servers:callback:start &"
|
Revert "Travis workers are using 1.8.25 now."
|
Revert "Travis workers are using 1.8.25 now."
This reverts commit 7ed26c31d6d644a05fbd6cc1a2c101d385393206.
OK, some aren't.
|
YAML
|
mit
|
NUBIC/castanet
|
12fb9523f0fa67b046601efb16bde99b2ebec192
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- openjdk8
- openjdk7
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/5ce63b0ed77e8bf5dc74
on_success: change
on_failure: always
on_start: false
email:
on_success: change
on_failure: always
|
language: java
jdk:
- openjdk8
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/5ce63b0ed77e8bf5dc74
on_success: change
on_failure: always
on_start: false
email:
on_success: change
on_failure: always
|
Remove Java 7 as CI target
|
Remove Java 7 as CI target
|
YAML
|
apache-2.0
|
mini2Dx/mini2Dx-project-generator
|
a2989b73785f1116d2edef0a7b4ae01874fae244
|
.travis.yml
|
.travis.yml
|
language: bash
sudo: required
os:
- linux
script:
- sudo ./install.sh
addons:
apt:
packages:
- puppet
|
language: ruby
rvm:
- 2.1.0
sudo: required
os:
- linux
script:
- sudo ./install.sh
addons:
apt:
packages:
- puppet
|
Use a more modern ruby.
|
Use a more modern ruby.
|
YAML
|
apache-2.0
|
corelabsio/environment
|
8fbcadd084de15c1b7026cd5cec324b081283336
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.0
- 1.1
- 1.2
- 1.3
- tip
script:
- go test ./... -bench .
|
language: go
go:
- tip
script:
- go test ./... -bench .
|
Test only with latest version of Go
|
Test only with latest version of Go
|
YAML
|
mit
|
gentlecat/go-giantbomb
|
9f63afcbae2cbd030f2d6feb09f56f6aae03881c
|
.travis.yml
|
.travis.yml
|
dist: trusty
language: go
go:
- "1.10.x"
- master
os:
- linux
- osx
install:
- go get -t ./...
script:
- make test
|
language: go
go:
- "1.9.x"
- "1.10.x"
- "1.13.x"
- master
os:
- linux
- osx
install:
- go get -t ./...
script:
- make test
|
Revert "maybe the problem is xenial?"
|
Revert "maybe the problem is xenial?"
This reverts commit b53cedef6c0b5f003b9bbee4ce33e930b78bc9c2.
|
YAML
|
bsd-3-clause
|
attilagyorffy/puma-dev,puma/puma-dev,attilagyorffy/puma-dev,puma/puma-dev,puma/puma-dev,attilagyorffy/puma-dev,attilagyorffy/puma-dev,puma/puma-dev
|
27cc54b5bab7ca75f38186827c5208ea363196f8
|
.travis.yml
|
.travis.yml
|
language: python
sudo: false
python:
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO_VERSION=1.7.10
- DJANGO_VERSION=1.8.4
install:
- pip install coverage>=4.0
- pip install flake8
- pip install -q Django==$DJANGO_VERSION
script:
- coverage run setup.py test
- coverage report -m
- flake8 soapbox
|
language: python
sudo: false
python:
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO_VERSION=1.7.10
- DJANGO_VERSION=1.8.5
install:
- pip install coverage>=4.0
- pip install flake8
- pip install -q Django==$DJANGO_VERSION
script:
- coverage run setup.py test
- coverage report -m
- flake8 soapbox
|
Update Django version in Travis config.
|
Update Django version in Travis config.
|
YAML
|
bsd-3-clause
|
ubernostrum/django-soapbox,ubernostrum/django-soapbox
|
45e8edf25e717cc880411324846fccc96684e45a
|
.travis.yml
|
.travis.yml
|
language: ruby
script: bundle exec rake
sudo: false
rvm:
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- ruby-head
- jruby-19mode
matrix:
allow_failures:
- rvm: ruby-head
|
language: ruby
script: bundle exec rake
rvm:
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- ruby-head
- jruby-19mode
matrix:
allow_failures:
- rvm: ruby-head
|
Drop unused Travis CI option
|
Drop unused Travis CI option
|
YAML
|
mit
|
wvanbergen/chunky_png
|
f79734300f55f791c0e08d4cdf92ba16663a7cb2
|
.travis.yml
|
.travis.yml
|
language: elixir
elixir:
- 1.1
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- 1.8
sudo: false
before_script:
- mix deps.get --only test
env:
- MIX_ENV=test
script:
- mix test
- mix coveralls.travis
after_script:
- mix deps.get --only docs
- MIX_ENV=docs mix inch.report
|
language: elixir
elixir:
- 1.1
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- 1.8
sudo: false
before_script:
- mix deps.get --only test
env:
- MIX_ENV=test
script:
- mix coveralls.travis
after_script:
- mix deps.get --only docs
- MIX_ENV=docs mix inch.report
|
Remove redundant call to mix test
|
Remove redundant call to mix test
|
YAML
|
mit
|
beatrichartz/parallel_stream
|
634386c04b50ba13bf5e64951154237398df2f1e
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 7
- 6
sudo: false
|
language: node_js
node_js:
- '7'
- '6'
- '4'
script:
- npm prune
- npm update
- npm run prepublish
cache:
directories:
- node_modules
|
Test against newest node including linting
|
Test against newest node including linting
|
YAML
|
mit
|
billyvg/codemod-proptypes-to-flow
|
292462bbaa2182769db4fdd7a185c45365eadc19
|
.travis.yml
|
.travis.yml
|
language: php
php:
7.4
services:
- mysql
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- mysql -e 'CREATE DATABASE lanager;'
before_script:
- composer self-update
- composer install --no-interaction
- cp .env.travis .env
- php artisan key:generate
- php artisan storage:link
- php artisan serve &
script: vendor/bin/behat
|
language: php
php:
7.4
services:
- mysql
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- mysql -e 'CREATE DATABASE lanager;'
before_script:
- composer self-update
- composer install --no-interaction
- cp .env.travis .env
- php artisan key:generate
- php artisan storage:link
- php artisan serve -q &
script: vendor/bin/behat
|
Disable output from artisan webserver during Travis testing
|
Disable output from artisan webserver during Travis testing
|
YAML
|
agpl-3.0
|
zeropingheroes/lanager,zeropingheroes/lanager
|
b028fa7757f038172e089f7d6b32b7d27116b0ab
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
before_script:
- composer self-update
- composer install
script:
- vendor/bin/phpcs --standard=psr2 --extensions=php --ignore=vendor .
- vendor/bin/phpunit --coverage-text
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- nightly
matrix:
allow_failures:
- php: nightly
before_install:
- composer self-update
install:
- composer install
script:
- vendor/bin/phpcs --standard=psr2 --extensions=php --ignore=vendor .
- vendor/bin/phpunit --coverage-text
|
Add php nightly to build matrix
|
Add php nightly to build matrix
|
YAML
|
bsd-3-clause
|
Flagbit/FlagbitCurrencyBundle
|
248568590c5991b7ffd04b8dc625cb6f6a33611a
|
.travis.yml
|
.travis.yml
|
language: php
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- hhvm
- nightly
before_script:
- composer self-update
- composer install --no-interaction
- curl -L https://gist.githubusercontent.com/JimMackin/c3db403bae59c2c9a27c/raw/f7dccb1fad965fb3d2b2fa0f7ba0e1d4ef52cddb/config_si.php > config_si.php
- php -r "\$_SERVER['HTTP_HOST'] = 'localhost'; \$_SERVER['REQUEST_URI'] = 'install.php';\$_REQUEST = array('goto' => 'SilentInstall', 'cli' => true);require_once 'install.php';";
script:
- cd tests
- phpunit
services:
- mysql
|
language: php
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- hhvm
- nightly
before_script:
- composer self-update
- composer install --no-interaction
- curl -L https://gist.githubusercontent.com/JimMackin/c3db403bae59c2c9a27c/raw/f7dccb1fad965fb3d2b2fa0f7ba0e1d4ef52cddb/config_si.php > config_si.php
- php -r "\$_SERVER['HTTP_HOST'] = 'localhost'; \$_SERVER['REQUEST_URI'] = 'install.php';\$_REQUEST = array('goto' => 'SilentInstall', 'cli' => true);require_once 'install.php';";
script:
- cd tests
- ../include/vendor/bin/phpunit
services:
- mysql
|
Use the bundled version of phpunit
|
Use the bundled version of phpunit
|
YAML
|
agpl-3.0
|
root-smith/SuiteCRM,daniel-samson/SuiteCRM,pgorod/SuiteCRM,Accendere/SuiteCRM,shogunpol/SuiteCRM,ryoon/SuiteCRM,nadilhassan/SuiteCRM,digitalmcgrath/SuiteCRM,shogunpol/SuiteCRM,haris-raheem/SuiteCRM,lionixevolve/LionixCRM,JanSiero/SuiteCRM,willrennie/SuiteCRM,willrennie/SuiteCRM,horus68/SuiteCRM-Horus68,gody01/SuiteCRM,salesagility-davidthomson/SuiteCRM,noelhunter/SuiteCRM,krzyc/SuiteCRM,ChangezKhan/SuiteCRM,KhyberPass/SuiteCRM,digitalmcgrath/SuiteCRM,pgorod/SuiteCRM,Accendere/SuiteCRM,haris-raheem/SuiteCRM,gymad/SuiteCRM,lionixevolve/LionixCRM,willrennie/SuiteCRM,krzyc/SuiteCRM,Dillon-Brown/SuiteCRM,pribeiro42/SuiteCRM,cumanacr/SuiteCRM,ryoon/SuiteCRM,leonardobarrientosc/SuiteCRM,Dillon-Brown/SuiteCRM,lionixevolve/SuiteCRM,adamjakab/SuiteCRM,recci/SuiteCRM,pribeiro42/SuiteCRM,ChangezKhan/SuiteCRM,root-smith/SuiteCRM,MikeyJC/SuiteCRM,recci/SuiteCRM,KhyberPass/SuiteCRM,shogunpol/SuiteCRM,gunnicom/SuiteCRM,KhyberPass/SuiteCRM,daniel-samson/SuiteCRM,gunnicom/SuiteCRM,krzyc/SuiteCRM,MikeyJC/SuiteCRM,salesagility-davidthomson/SuiteCRM,salesagility/SuiteCRM,KhyberPass/SuiteCRM,cumanacr/SuiteCRM,willrennie/SuiteCRM,scottiems/crm-limai,JimMackin/SuiteCRM,noelhunter/SuiteCRM,horus68/SuiteCRM-Horus68,daniel-samson/SuiteCRM,shogunpol/SuiteCRM,samus-aran/SuiteCRM,root-smith/SuiteCRM,Dillon-Brown/SuiteCRM,haris-raheem/SuiteCRM,cumanacr/SuiteCRM,digitalmcgrath/SuiteCRM,noelhunter/SuiteCRM,root-smith/SuiteCRM,samus-aran/SuiteCRM,horus68/SuiteCRM,pgorod/SuiteCRM,gymad/SuiteCRM,krzyc/SuiteCRM,lionixevolve/SuiteCRM,salesagility/SuiteCRM,adamjakab/SuiteCRM,JanSiero/SuiteCRM,samus-aran/SuiteCRM,salesagility-davidthomson/SuiteCRM,JimMackin/SuiteCRM,nadilhassan/SuiteCRM,Dillon-Brown/SuiteCRM,MikeyJC/SuiteCRM,horus68/SuiteCRM-Horus68,lionixevolve/LionixCRM,JanSiero/SuiteCRM,dfstrauss/SuiteCRM,adamjakab/SuiteCRM,ChangezKhan/SuiteCRM,salesagility/SuiteCRM,recci/SuiteCRM,leonardobarrientosc/SuiteCRM,JimMackin/SuiteCRM,ryoon/SuiteCRM,cumanacr/SuiteCRM,horus68/SuiteCRM,samus-aran/SuiteCRM,haris-raheem/SuiteCRM,pribeiro42/SuiteCRM,gcoop-libre/SuiteCRM,Accendere/SuiteCRM,gcoop-libre/SuiteCRM,leonardobarrientosc/SuiteCRM,nadilhassan/SuiteCRM,dfstrauss/SuiteCRM,horus68/SuiteCRM,scottiems/crm-limai,gunnicom/SuiteCRM,gcoop-libre/SuiteCRM,gcoop-libre/SuiteCRM,ChangezKhan/SuiteCRM,gunnicom/SuiteCRM,adamjakab/SuiteCRM,salesagility-davidthomson/SuiteCRM,gymad/SuiteCRM,gody01/SuiteCRM,dfstrauss/SuiteCRM,pgorod/SuiteCRM,leonardobarrientosc/SuiteCRM,lionixevolve/LionixCRM,salesagility/SuiteCRM,scottiems/crm-limai,lionixevolve/SuiteCRM,scottiems/crm-limai,gody01/SuiteCRM,recci/SuiteCRM,gody01/SuiteCRM,nadilhassan/SuiteCRM,Accendere/SuiteCRM,lionixevolve/LionixCRM,lionixevolve/SuiteCRM,daniel-samson/SuiteCRM,dfstrauss/SuiteCRM,horus68/SuiteCRM-Horus68,MikeyJC/SuiteCRM,noelhunter/SuiteCRM,JanSiero/SuiteCRM,lionixevolve/LionixCRM,gymad/SuiteCRM,JimMackin/SuiteCRM,pribeiro42/SuiteCRM
|
86c7027b68b24e03a5c1a77300b7ae97db34e082
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer install --dev
script: phpunit -c phpunit.xml.dist
notifications:
email:
- [email protected]
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
before_install:
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi;
- composer self-update && composer install --no-interaction
script:
- phpunit
notifications:
email:
- [email protected]
|
Disable xdebug in Travis CI
|
Disable xdebug in Travis CI
|
YAML
|
mit
|
endroid/OpenWeatherMap
|
926b02f0b5c6bcd2eda1a1de73ecc4eb8ec47954
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
install:
- travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit
|
language: php
php:
- 5.6
- 7.0
- 7.1
install:
- travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit
|
Test against three latest php versions
|
Test against three latest php versions
|
YAML
|
mit
|
frozzare/php-personnummer
|
d4409124558adf0b2b8675b056de2c014e9da942
|
.travis.yml
|
.travis.yml
|
language: java
script: ant -buildfile build/build.xml test
sudo: false
jdk:
- oraclejdk8
- oraclejdk9
|
language: java
script: ant -buildfile build/build.xml test
jdk:
- oraclejdk8
- oraclejdk9
|
Remove obsolete Travis CI configuration (alpha)
|
Remove obsolete Travis CI configuration (alpha)
Remove the `sudo: false` configuration, the builds run now always in the
same (new) infrastructure regardless of the configuration.
|
YAML
|
apache-2.0
|
zapbot/zap-extensions,secdec/zap-extensions,veggiespam/zap-extensions,kingthorin/zap-extensions,psiinon/zap-extensions,zaproxy/zap-extensions,thc202/zap-extensions,zaproxy/zap-extensions,thc202/zap-extensions,kingthorin/zap-extensions,denniskniep/zap-extensions,kingthorin/zap-extensions,secdec/zap-extensions,secdec/zap-extensions,veggiespam/zap-extensions,zaproxy/zap-extensions,denniskniep/zap-extensions,psiinon/zap-extensions,kingthorin/zap-extensions,veggiespam/zap-extensions,zapbot/zap-extensions,veggiespam/zap-extensions,secdec/zap-extensions,secdec/zap-extensions,secdec/zap-extensions,zapbot/zap-extensions,zaproxy/zap-extensions,kingthorin/zap-extensions,psiinon/zap-extensions,thc202/zap-extensions,veggiespam/zap-extensions,zaproxy/zap-extensions,psiinon/zap-extensions,psiinon/zap-extensions,denniskniep/zap-extensions,thc202/zap-extensions,secdec/zap-extensions,veggiespam/zap-extensions,zapbot/zap-extensions,kingthorin/zap-extensions,psiinon/zap-extensions,zapbot/zap-extensions,denniskniep/zap-extensions,thc202/zap-extensions,zaproxy/zap-extensions,denniskniep/zap-extensions,denniskniep/zap-extensions,thc202/zap-extensions,zapbot/zap-extensions
|
a4cd74a803e8e25f823d58e79faa87c6e2fcbcc5
|
.travis.yml
|
.travis.yml
|
---
language: node_js
node_js:
- 4
- 5
sudo: false
script:
- npm run test
- npm run coverage
- npm run lint
cache:
directories:
- node_modules
|
---
language: node_js
node_js:
- '4'
- node
sudo: false
script:
- npm run test
- npm run coverage
- npm run lint
cache:
directories:
- node_modules
|
Configure Travis CI to test on Node.js 4 and current
|
Configure Travis CI to test on Node.js 4 and current
|
YAML
|
mit
|
kemitchell/reviewers-edition-parse.js
|
fec76008e53fb2bba95bc5a2fc5596f743362e35
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.4"
install:
- pip install -r requirements.txt
- pip install coveralls
env:
- DB=sqlite
- DB=mysql
- DB=postgres
addons:
postgresql: "9.4"
script:
- coverage run --source=hc manage.py test
after_success: coveralls
|
language: python
python:
- "2.7"
- "3.4"
install:
- pip install -r requirements.txt
- pip install coveralls mysqlclient
env:
- DB=sqlite
- DB=mysql
- DB=postgres
addons:
postgresql: "9.4"
script:
- coverage run --source=hc manage.py test
after_success: coveralls
|
Install mysqlclient so Django can access MySQL database.
|
Install mysqlclient so Django can access MySQL database.
|
YAML
|
bsd-3-clause
|
healthchecks/healthchecks,iphoting/healthchecks,BetterWorks/healthchecks,healthchecks/healthchecks,iphoting/healthchecks,avoinsystems/healthchecks,avoinsystems/healthchecks,avoinsystems/healthchecks,healthchecks/healthchecks,avoinsystems/healthchecks,iphoting/healthchecks,BetterWorks/healthchecks,BetterWorks/healthchecks,healthchecks/healthchecks,iphoting/healthchecks,BetterWorks/healthchecks
|
4b1c5483b49033d87a4f98b1b411bf27b54b4764
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
before_install:
- echo 'yes' | sudo add-apt-repository ppa:ondrej/php5
- sudo apt-get update -qq
- sudo apt-get install -qq php5-cli
- php -v
- curl https://getcomposer.org/installer | php
- chmod +x composer.phar
- sudo ln -s "$PWD/composer.phar" /usr/local/bin/composer
- php composer.phar create-project -n imbo/imbolauncher imbolauncher dev-develop
services:
- mongodb
before_script:
- "imbolauncher/imbolauncher start-servers --config=$TRAVIS_BUILD_DIR/test/imbolauncher/config.json --install-path=/tmp/imbo-servers --no-interaction -vvv"
after_script:
- "imbolauncher/imbolauncher kill-servers --no-interaction -vvv"
env:
- IMBOCLIENT_RUN_INTEGRATION_TESTS=1
|
language: node_js
node_js:
- "0.10"
before_install:
- echo 'yes' | sudo add-apt-repository ppa:ondrej/php5
- sudo apt-get update -qq
- sudo apt-get install -qq php5-cli php5-curl php5-mongo php5-memcached php5-imagick
- php -v
- curl https://getcomposer.org/installer | php
- chmod +x composer.phar
- sudo ln -s "$PWD/composer.phar" /usr/local/bin/composer
- php composer.phar create-project -n imbo/imbolauncher imbolauncher dev-develop
services:
- mongodb
before_script:
- "imbolauncher/imbolauncher start-servers --config=$TRAVIS_BUILD_DIR/test/imbolauncher/config.json --install-path=/tmp/imbo-servers --no-interaction -vvv"
after_script:
- "imbolauncher/imbolauncher kill-servers --no-interaction -vvv"
env:
- IMBOCLIENT_RUN_INTEGRATION_TESTS=1
|
Install curl, mongo, imagick and memcached extensions for PHP
|
Install curl, mongo, imagick and memcached extensions for PHP
|
YAML
|
mit
|
rexxars/imboclient-js,imbo/imboclient-js,rexxars/imboclient-js,imbo/imboclient-js,rexxars/imboclient-js,imbo/imboclient-js
|
0528f9708155d8e2743a428c56c764d0a738d6c3
|
.travis.yml
|
.travis.yml
|
language: java
env:
- TEST_DIR=scheduler TOOL=lein
- TEST_DIR=jobclient TOOL=mvn
script: cd $TEST_DIR && $TOOL test
|
language: java
before_install:
- sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF
- echo "deb http://repos.mesosphere.io/ubuntu/ precise varnish-3.0" | sudo tee /etc/apt/sources.list.d/mesosphere.list
- sudo apt-get update -qq
- sudo apt-get install mesos
sudo: required
env:
global:
- MESOS_NATIVE_LIBRARY=/usr/lib/libmesos.so
matrix:
- TEST_DIR=scheduler TOOL=lein
- TEST_DIR=jobclient TOOL=mvn
script: cd $TEST_DIR && $TOOL test
|
Add mesos to test VM
|
Add mesos to test VM
|
YAML
|
apache-2.0
|
m4ce/Cook,ruo91/Cook,m4ce/Cook,twosigma/Cook,m4ce/Cook,ruo91/Cook,twosigma/Cook,twosigma/Cook
|
984c2d7ac88fc13a0657d653a2fde803bfb37cae
|
.travis.yml
|
.travis.yml
|
rvm:
- 1.8.7
- 1.9.2
gemfile:
- test/gemfiles/Gemfile.rails-2.0.x
- test/gemfiles/Gemfile.rails-2.1.x
- test/gemfiles/Gemfile.rails-2.2.x
- test/gemfiles/Gemfile.rails-2.3.x
- test/gemfiles/Gemfile.rails-xss-2.3.x
- test/gemfiles/Gemfile.rails-3.0.x
- test/gemfiles/Gemfile.rails-3.1.x
- test/gemfiles/Gemfile.rails-3.2.x
matrix:
exclude:
- { rvm: 1.9.2, gemfile: test/gemfiles/Gemfile.rails-2.0.x }
- { rvm: 1.9.2, gemfile: test/gemfiles/Gemfile.rails-2.1.x }
- { rvm: 1.9.2, gemfile: test/gemfiles/Gemfile.rails-2.2.x }
branches:
only:
- master
- stable
script: "bundle exec rake submodules test"
|
rvm:
- 1.8.7
- 1.9.3
gemfile:
- test/gemfiles/Gemfile.rails-2.0.x
- test/gemfiles/Gemfile.rails-2.1.x
- test/gemfiles/Gemfile.rails-2.2.x
- test/gemfiles/Gemfile.rails-2.3.x
- test/gemfiles/Gemfile.rails-xss-2.3.x
- test/gemfiles/Gemfile.rails-3.0.x
- test/gemfiles/Gemfile.rails-3.1.x
- test/gemfiles/Gemfile.rails-3.2.x
matrix:
exclude:
- { rvm: 1.9.3, gemfile: test/gemfiles/Gemfile.rails-2.0.x }
- { rvm: 1.9.3, gemfile: test/gemfiles/Gemfile.rails-2.1.x }
- { rvm: 1.9.3, gemfile: test/gemfiles/Gemfile.rails-2.2.x }
branches:
only:
- master
- stable
script: "bundle exec rake submodules test"
|
Test against 1.9.3 rather than 1.9.2
|
Test against 1.9.3 rather than 1.9.2
|
YAML
|
mit
|
haml/haml,amatsuda/haml,stanhu/haml,dg1dd1ngs/haml,sideci-sample/sideci-sample-haml,haml/haml,keithpitty/haml,stanhu/haml,haml/haml,dg1dd1ngs/haml,macressler/haml,tangposmarvin/haml,keithpitty/haml,macressler/haml,nazar-pc/haml,haml/haml,nazar-pc/haml,tangposmarvin/haml
|
fb34732c834341d7efcf4edcdcfa76bca8ec5777
|
.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:
- openjdk8
- openjdk9
- openjdk10
- openjdk11
- openjdk12
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:
- openjdk8
- openjdk9
- openjdk10
- openjdk11
- openjdk12
- openjdk13
- openjdk14
after_success:
- mvn clean cobertura:cobertura coveralls:report
|
Add openjdk13 and openjdk14 to Travis.
|
Add openjdk13 and openjdk14 to Travis.
|
YAML
|
apache-2.0
|
apache/commons-email,apache/commons-email,apache/commons-email
|
83766620c946a5862511a4bd9ae969346e788d4d
|
.travis.yml
|
.travis.yml
|
sudo: false
# We are using our own python
language: c
addons:
apt:
packages:
- wget
before_install:
- wget http://ftp.openquake.org/travis/openquake-env-setup-py3-precise64.run
- chmod +x openquake-env-setup-py3-precise64.run
env:
LD_LIBRARY_PATH=$HOME/openquake/lib
PATH=$HOME/openquake/bin:$PATH
install:
- ./openquake-env-setup-py3-precise64.run -- -d ~
- pip install https://github.com/gem/oq-hazardlib/archive/python3.zip
# We must set the PYTHONPATH to the root oq-engine (insted of oq-engine/openquake) because otherwise
# the full 'openquake' namespace is overwritten and then hazardlib and baselib are not found
script:
# FIXME --with-doctest does not work
- PYTHONPATH=. nosetests -vsx -a'!slow' --with-xunit --nologcapture
|
sudo: false
# We are using our own python
language: c
addons:
apt:
packages:
- wget
before_install:
- wget http://ftp.openquake.org/travis/openquake-env-setup-py3-precise64.run
- chmod +x openquake-env-setup-py3-precise64.run
env:
LD_LIBRARY_PATH=$HOME/openquake/lib
PATH=$HOME/openquake/bin:$PATH
install:
- ./openquake-env-setup-py3-precise64.run -- -d ~
- pip install https://github.com/gem/oq-hazardlib/archive/python3.zip
# We must set the PYTHONPATH to the root oq-engine (insted of oq-engine/openquake) because otherwise
# the full 'openquake' namespace is overwritten and then hazardlib and baselib are not found
script:
# FIXME --with-doctest does not work
# - PYTHONPATH=. nosetests -vsx -a'!slow' --with-xunit --nologcapture
- PYTHONPATH=. nosetests -v -a'!slow'
|
Make a test run with just nosetests -v -a '!slow'
|
Make a test run with just nosetests -v -a '!slow'
|
YAML
|
agpl-3.0
|
gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine
|
055467f48024a31ef0e41b891531ce58d011982e
|
.travis.yml
|
.travis.yml
|
language: c
install:
- wget https://raw.githubusercontent.com/csdms/wmt-exe/master/scripts/install
- python ./install $(pwd)
|
language: c
install:
- gcc -dumpversion
- g++ -dumpversion
- which gcc
- which g++
- which ruby
- which java
- wget https://raw.githubusercontent.com/csdms/wmt-exe/master/scripts/install
- python ./install $(pwd)
|
Print compiler versions and paths.
|
Print compiler versions and paths.
|
YAML
|
mit
|
mcflugen/bmi-tutorial
|
2cbbef085e86045b976e9325b82a777c75c75355
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.1
script: bundle exec rake test
before_script:
- psql -c 'create database active_median_test;' -U postgres
notifications:
email:
on_success: never
on_failure: change
gemfile:
- Gemfile
- gemfiles/activerecord41.gemfile
- gemfiles/activerecord40.gemfile
- gemfiles/activerecord32.gemfile
|
language: ruby
rvm:
- 2.1
script: bundle exec rake test
before_script:
- psql -c 'create database active_median_test;' -U postgres
notifications:
email:
on_success: never
on_failure: change
gemfile:
- Gemfile
- gemfiles/activerecord41.gemfile
- gemfiles/activerecord40.gemfile
- gemfiles/activerecord32.gemfile
matrix:
allow_failures:
- gemfile: gemfiles/activerecord32.gemfile
|
Allow failure for typecast bug with Rails 3.2
|
Allow failure for typecast bug with Rails 3.2
|
YAML
|
mit
|
ankane/active_median
|
94f0e0801d45626c42ba032706026d4032f1ed1e
|
.travis.yml
|
.travis.yml
|
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
matrix:
allow_failures:
- rvm: rbx-19mode
|
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- jruby-19mode
matrix:
allow_failures:
- rvm: rbx-19mode
|
Test against latest Rubies on Travis
|
Test against latest Rubies on Travis
|
YAML
|
mit
|
scalp42/cocaine,thoughtbot/cocaine,sapslaj/cocaine
|
ee8d0d5aa9e34c1b3cbf85426d9e2f1cbc842aba
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
rvm:
- 2.4.5
- 2.5.3
|
language: ruby
cache: bundler
dist: xenial
branches:
only:
- master
matrix:
include:
- rvm: 2.4.5
- rvm: 2.5.3
- rvm: 2.6.0
allow_failures:
- rvm: ruby-head
|
Update and expand testing in Travis
|
Update and expand testing in Travis
Test on ruby head and ruby 2.6. Also cache the world and run on xenial
Signed-off-by: Tim Smith <[email protected]>
|
YAML
|
apache-2.0
|
pendrica/kitchen-azurerm,pendrica/kitchen-azurerm
|
d5f25423ab07ccf5c46cd24fbe15ec1b412c6fff
|
.travis.yml
|
.travis.yml
|
rvm:
- ruby-head
- 1.9.3
- 1.9.2
- 1.8.7
- ree
- rbx
- rbx-2.0.0pre
before_script:
- mongo mongoid_test --eval 'db.addUser("mongoid", "test");'
|
rvm:
- ruby-head
- 1.9.3
- 1.9.2
- 1.8.7
- jruby
- ree
- rbx
- rbx-2.0.0pre
before_script:
- mongo mongoid_test --eval 'db.addUser("mongoid", "test");'
|
Add back jruby to builds
|
Add back jruby to builds
|
YAML
|
mit
|
hxx/mongoid,kcdragon/mongoid,jonasschneider/mongoid,Numerico/mongoid,shingara/mongoid,cjab/mongoid,spiegela/mongoid,bobbytables/mongoid,crowdtap/mongoid,kcdragon/mongoid,karmakaze/mongoid,irakli-janiashvili/mongoid,spiegela/mongoid,bigbenli/mongoid,cao7113/mongoid,aagrawal2001/mongoid,krasnoukhov/mongoid,gullitmiranda/mongoid,cmpolis/mongoid,jonhyman/mongoid,charliehq/mongoid,wyattisimo/mongoid,grossws/mongoid,tombruijn/mongoid,rafaelfranca/mongoid,franc/mongoid,dustinwatson/mongoid,gicappa/mongoid,slbug/mongoid,hadees/mongoid,aileron/mongoid,moretea/mongoid,env0der/mongoid,stnguyen/mongoid,parov/mongoid,wyattisimo/mongoid,neerfri/mongoid,fredjean/mongoid,camallen/mongoid,mongodb/mongoid,lowang/mongoid,alexrothenberg/mongoid,elia/mongoid,canavese/mongoid,johnny-miyake/mongoid,dblock/mongoid,kostyantyn/mongoid,rinmu/mongoid,cpuguy83/mongoid,ganlron/mongoid,fredjean/mongoid,sivagollapalli/mongoid,dannguyen/mongoid,haihappen/mongoid,jasl/mongoid,icambron/mongoid,gregmolnar/mongoid,chriseppstein/mongoid,bencrouse/mongoid,nullstyle/mongoid,jetheredge/mongoid,lucasas/mongoid,Sharevari-Inc/mongoid,nickhoffman/mongoid,mikerobe/mongoid,hbakhtiyor/mongoid,tagliala/mongoid,glebtv/mongoid,jeffreyiacono/mongoid,robwil/mongoid,moretea/mongoid,ahoward/mongoid,kayakyakr/mongoid,akirasosa/mongoid,leozhang37/mongoid,jordelver/mongoid,arnkorty/mongoid,sivagollapalli/mongoid,kevinmarvin/mongoid,malditogeek/mongoid,Winslett/mongoid,wuboy0307/mongoid,etomic/mongoid,mongoid/mongoid,gullitmiranda/mongoid,malditogeek/mongoid,bjori/mongoid,icambron/mongoid,fujimura/mongoid,77Agency/mongoid,zanker/mongoid,nusco/mongoid,shingara/mongoid,kentaroi/mongoid,praecipula/mongoid,Spaceghost/mongoid,Azzurrio/mongoid,estolfo/mongoid,piotrj/mongoid,genexp/mongoid,asantamar/mongoid,tombruijn/mongoid,hadees/mongoid,mulder/mongoid,codedogfish/mongoid,janroesner/mongoid,leemhenson/mongoid,cpuguy83/mongoid,Winslett/mongoid,ErisExchange/mongoid,ryanong/mongoid,zBMNForks/mongoid,ahoward/mongoid,eddanger/mongoid,matadon/mongoid,chriseppstein/mongoid,Welovroi/mongoid,dustinwatson/mongoid,Numerico/mongoid,cleishm/mongoid,mschulkind/mongoid,herimedia/mongoid,etomic/mongoid,lackac/mongoid,rmm5t/mongoid,mzsanford/mongoid,jordoh/mongoid,socialreferral/mongoid,robwil/mongoid,mattconnolly/mongoid,KoanHealth/mongoid,glebtv/mongoid,jstrocel/mongoid,evendis/mongoid,narutosanjiv/mongoid,iamnader/mongoid-2,kslazarev/mongoid,mongodb/mongoid,tengine/mongoid,mgolovnia/mongoid,mitijain123/mongoid,mikerobe/mongoid,jbrien/mongoid,parov/mongoid,drobune/mongoid,nfo/mongoid,estolfo/mongoid,asantamar/mongoid,gicappa/mongoid,eddanger/mongoid,snapfish-soma/mongoid,tricknotes/mongoid,genexp/mongoid,razum2um/mongoid,dsachitano/mongoid,Flameeyes/mongoid,Exoth/mongoid,jordoh/mongoid,koraktor/mongoid,colinyoung/mongoid,uranazo/mongoid,Azzurrio/mongoid,asaaki/mongoid,blackxored/mongoid,lawrencecurtis/mongoid,drfeelngood/mongoid,potatosalad/mongoid,joshleitzel/mongoid,joshleitzel/mongoid,rebelhold/mongoid,incorvia/mongoid,joshsoftware/mongoid,simi/mongoid,aleksclark/mongoid,jonhyman/mongoid,goshakkk/mongoid,kay-kim/mongoid,elia/mongoid,zBMNForks/mongoid,narutosanjiv/mongoid,zanker/mongoid,zenjoy/mongoid,zenjoy/mongoid,luxerama/mongoid,msaffitz/mongoid,albus522/mongoid,johnnyshields/mongoid,rmm5t/mongoid,imomoisoft/mongoid,apptentive-engineering/mongoid,anuprit/mongoid,rinmu/mongoid,77Agency/mongoid,aileron/mongoid,drobune/mongoid,hbakhtiyor/mongoid,jtescher/mongoid,sepastian/mongoid,PerfectMemory/mongoid,kuadrosx/mongoid,eljojo/mongoid,jbrien/mongoid,ErisExchange/mongoid,afeld/mongoid,jiren/mongoid,jakcharlton/mongoid,caiofilipini/mongoid,ono/mongoid,grimen/mongoid,maxd/mongoid,wuboy0307/mongoid,Codas/mongoid,mulder/mongoid,hfwang/mongoid,joelcogen/mongoid,mash-ltd/mongoid,Empact/mongoid,rafaelgaspar/mongoid,bjori/mongoid,infiverve/mongoid,jeyb/mongoid,rpocklin/mongoid,kevinmarvin/mongoid,dannguyen/mongoid,Zhomart/mongoid,flexoid/mongoid,irakli-janiashvili/mongoid,fortnightlabs/mongoid,flada-auxv/mongoid,amw/mongoid,niedhui/mongoid,LastStar/mongoid,sporkd/mongoid,lackac/mongoid,gregmolnar/mongoid,stellard/mongoid,Shop2market/mongoid,tricknotes/mongoid,hubertlepicki/mongoid,jasl/mongoid,charliehq/mongoid,demarque/mongoid,timgluz/mongoid,mitio/mongoid,aagrawal2001/mongoid,shotoso/mongoid,trmmy/mongoid,apptentive-engineering/mongoid,bearded/mongoid,cao7113/mongoid,matsimitsu/mongoid,abezzub/mongoid,HRNewMedia/mongoid,Subskii/mongoid,nickhoffman/mongoid,ryanong/mongoid,xentek/mongoid,mongodb/mongoid,mzsanford/mongoid,matbox/mongoid,mgartner/mongoid,nusco/mongoid,500px/mongoid,LastStar/mongoid,balauru/mongoid,shotoso/mongoid,rogerz42892/mongoid,cavneb/mongoid,joshsoftware/mongoid,skiz/mongoid,crealytics/mongoid,kuadrosx/mongoid,alexandru-calinoiu/mongoid,teaforthecat/mongoid,asaaki/mongoid,maxd/mongoid,bdmac/mongoid,rpocklin/mongoid,aleksclark/mongoid,lowang/mongoid,herimedia/mongoid,jeyb/mongoid,sepastian/mongoid,nextmat/mongoid,subhashb/mongoid,tagliala/mongoid,rosylilly/mongoid,javmorin/mongoid,rosylilly/mongoid,colinyoung/mongoid,bdmac/mongoid,jamesalmond/mongoid,joneslee85/mongoid,schnittchen/mongoid,zaithottakath/mongoid,CIRCUITLLC/mongoid,nagachika/mongoid,hfwang/mongoid,rogerz42892/mongoid,HeeL/mongoid-1,itbakery/mongoid,haihappen/mongoid,matsimitsu/mongoid,camallen/mongoid,jamesalmond/mongoid,Aupajo/mongoid-1,marcweil/mongoid,robotmay/mongoid,chetan/mongoid,tolsen/mongoid,PerfectMemory/mongoid,akm/mongoid,bigbenli/mongoid,brettgoulder/mongoid-1,jakcharlton/mongoid,blt04/mongoid,astjohn/mongoid,alexrothenberg/mongoid,nextmat/mongoid,slbug/mongoid,i0rek/mongoid,X0nic/mongoid,afeld/mongoid,loginx/mongoid,absperf/mongoid,aj0strow/mongoid,stnguyen/mongoid,niedhui/mongoid,uranazo/mongoid,krasnoukhov/mongoid,manuelmorales/mongoid,kostyantyn/mongoid,tolsen/mongoid,simi/mongoid,ElvinEfendi/mongoid,demarque/mongoid,nullstyle/mongoid,franc/mongoid,canavese/mongoid,Subskii/mongoid,romanbsd/mongoid,DanielVartanov/mongoid,crowdtap/mongoid,rubrikkfabrikken/mongoid,mysociety/mongoid,HeeL/mongoid-1,rafaelfranca/mongoid,canvas-drw/mongoid,stevebartholomew/mongoid,sideci-sample/sideci-sample-mongoid,Welovroi/mongoid,captain-lucas/mongoid,theirishpenguin/mongoid,anuprit/mongoid,goshakkk/mongoid,cmpolis/mongoid,sujal/mongoid,mschulkind/mongoid,lucasas/mongoid,sporkd/mongoid,trmmy/mongoid,itbakery/mongoid,Codas/mongoid,caiofilipini/mongoid,subhashb/mongoid,stellard/mongoid,drfeelngood/mongoid,Speakol/mongoid,semaperepelitsa/mongoid,lawrencecurtis/mongoid,FestivalBobcats/mongoid,xentek/mongoid,mathieuravaux/mongoid,imomoisoft/mongoid,jeffreyiacono/mongoid,incorvia/mongoid,jordelver/mongoid,teaforthecat/mongoid,brynary/mongoid,tzar/mongoid,fortnightlabs/mongoid,potatosalad/mongoid,rafaelgaspar/mongoid,blackxored/mongoid,evansagge/mongoid,500px/mongoid,MSNexploder/mongoid,arnkorty/mongoid,bearded/mongoid,iboard/mongoid-1,greggroth/mongoid,rymai/mongoid,dbkbali/mongoid,FestivalBobcats/mongoid,jstrocel/mongoid,canvas-drw/mongoid,marcweil/mongoid,dakatsuka/mongoid,balauru/mongoid,codedogfish/mongoid,dsachitano/mongoid,fbernier/mongoid,KoanHealth/mongoid,nviennot/mongoid,byroot/mongoid,zaithottakath/mongoid,grossws/mongoid,getaroom/mongoid,brynary/mongoid,skiz/mongoid,tzar/mongoid,jasonsydes/mongoid,bobbytables/mongoid,ElvinEfendi/mongoid,robinst/mongoid,voldy/mongoid,voldy/mongoid,johnnyshields/mongoid,nfo/mongoid,nagachika/mongoid,MSNexploder/mongoid,javmorin/mongoid,rubrikkfabrikken/mongoid,flada-auxv/mongoid,timgluz/mongoid,evansagge/mongoid,X0nic/mongoid,nicolasblanco/mongoid,msaffitz/mongoid,hxx/mongoid,Houdini/mongoid,Sharevari-Inc/mongoid,sideci-sample/sideci-sample-mongoid,greggroth/mongoid,mash-ltd/mongoid,socialreferral/mongoid,uniiverse/mongoid,crealytics/mongoid,kslazarev/mongoid,cleishm/mongoid,akirasosa/mongoid,kentaroi/mongoid,eljojo/mongoid,skyeagle/mongoid,chetan/mongoid,mongoid/mongoid,luxerama/mongoid,nviennot/mongoid,DouweM/mongoid,likealittle/mongoid,bencrouse/mongoid,uniiverse/mongoid,mgartner/mongoid,hashrocketeer/mongoid,dnd/mongoid,razum2um/mongoid,manikandan-kandasamy/mongoid,CIRCUITLLC/mongoid,akm/mongoid,kay-kim/mongoid,flexoid/mongoid,matbox/mongoid,stevebartholomew/mongoid,joelcogen/mongoid,karmakaze/mongoid,janroesner/mongoid,alexandru-calinoiu/mongoid,SumeruSoftware/mongoid,ganlron/mongoid,Zhomart/mongoid,manikandan-kandasamy/mongoid,jtescher/mongoid,mysociety/mongoid,SumeruSoftware/mongoid,brettgoulder/mongoid-1,hubertlepicki/mongoid,amw/mongoid,dnd/mongoid,Speakol/mongoid,cavneb/mongoid,kayakyakr/mongoid,fbernier/mongoid,joneslee85/mongoid,evendis/mongoid,manuelmorales/mongoid,dbkbali/mongoid,johnny-miyake/mongoid,infiverve/mongoid,neerfri/mongoid,DanielVartanov/mongoid,Tickaroo/mongoid2,priyaaank/mongoid,iGoDigital-LLC/mongoid,mitijain123/mongoid,Spaceghost/mongoid,hashrocketeer/mongoid,aj0strow/mongoid,mattconnolly/mongoid,abezzub/mongoid,Exoth/mongoid,captain-lucas/mongoid,MadRabbit/mongoid,mathieuravaux/mongoid,capnregex/mongoid,praecipula/mongoid,alex-klepa/mongoid,iGoDigital-LLC/mongoid
|
b29404bc7f03d87138bb859a813852e649101c87
|
.travis.yml
|
.travis.yml
|
language: ruby
script: "bundle exec rspec"
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode # JRuby in 1.9 mode
- rbx-19mode
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0.pre"
- "RAILS_VERSION=master"
matrix:
allow_failures:
- env: "RAILS_VERSION=master"
- rvm: ruby-head
exclude:
- rvm: 1.9.2
env: "RAILS_VERSION=4.0.0.pre"
- rvm: 1.9.2
env: "RAILS_VERSION=master"
|
language: ruby
script: "bundle exec rspec"
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode # JRuby in 1.9 mode
- rbx-19mode
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=master"
matrix:
allow_failures:
- env: "RAILS_VERSION=master"
- rvm: ruby-head
exclude:
- rvm: 1.9.2
env: "RAILS_VERSION=master"
|
Test against rails 4.0.0, not 4.0.0.pre
|
Test against rails 4.0.0, not 4.0.0.pre
|
YAML
|
mit
|
indirect/warden-github-rails,fphilipe/warden-github-rails,fphilipe/warden-github-rails,indirect/warden-github-rails
|
232a63d92867aab3630a885cfdcd2735928095d0
|
.travis.yml
|
.travis.yml
|
osx_image: xcode11.2
language: swift
before_install:
- gem install cocoapods
- carthage bootstrap --platform ios
install:
- gem install xcpretty
script:
- rake build:ios DESTINATION='OS=11.1,name=iPhone X'
- rake build:ios DESTINATION='platform=iOS Simulator,name=iPhone X Plus'
- pod lib lint --quick
|
osx_image: xcode11.2
language: swift
before_install:
- gem install cocoapods
- carthage bootstrap --platform ios
install:
- gem install xcpretty
script:
- rake build:ios DESTINATION='OS=11.1,name=iPhone X'
- rake build:ios DESTINATION='platform=iOS Simulator,name=iPhone 8'
- pod lib lint --quick
|
Change the number of iPhone
|
Change the number of iPhone
|
YAML
|
mit
|
nakajijapan/PhotoSlider,nakajijapan/PhotoSlider,nakajijapan/PhotoSlider
|
16e02c54b4ff4d6ba5f4de984eaf4670b241eff8
|
.travis.yml
|
.travis.yml
|
dist: trusty
language: java
jdk:
- oraclejdk8
- openjdk8
cache:
directories:
- $HOME/.m2
install: true
script:
- mvn verify -B
- bash system-test/start.sh
after_success:
- mvn coveralls:report -B
|
dist: trusty
language: java
jdk:
- oraclejdk8
- openjdk8
cache:
directories:
- $HOME/.m2
install: true
before_script:
- bash install-plugin-api.sh
script:
- mvn verify -B
- bash system-test/start.sh
after_success:
- mvn coveralls:report -B
|
Install Plugin API before starting the build process.
|
Install Plugin API before starting the build process.
|
YAML
|
mit
|
galop-proxy/galop,galop-proxy/galop
|
f8e4fac9987dacff19e2a8e69a82d96de5a98166
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.0.0
env:
- DB=postgresql
script:
- bundle exec rake spec
before_script:
- bundle exec rake db:create RAILS_ENV=test
- bundle exec rake db:migrate
- bundle exec rake db:test:prepare
|
language: ruby
rvm:
- 2.0.0
env:
- DB=postgresql
script:
- bundle exec rake spec
before_script:
- bundle exec rake db:create RAILS_ENV=test
- bundle exec rake db:migrate
- bundle exec rake db:test:prepare
notifications:
slack: overflow-your-boat:oMfXWVwpffE8k6i6vVMbFf7R
|
Add Slack notification to Travis CI
|
Add Slack notification to Travis CI
|
YAML
|
mit
|
chi-sea-lions-2015/overflow-your-boat,chi-sea-lions-2015/overflow-your-boat,chi-sea-lions-2015/overflow-your-boat
|
d46fc2168cb92673e890fe26a3496e01b621841a
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
install:
- composer install
script:
- bin/drupalvm init
- bin/phpunit tests
|
language: php
php:
- 5.6
- 7.0
- 7.1
install:
- composer install
script:
- bin/drupalvm init
- bin/phpunit tests
|
Revert "Add more PHP versions"
|
Revert "Add more PHP versions"
This reverts commit f90b351bd60e818aacf279d70d9789695d3edfe8.
|
YAML
|
mit
|
opdavies/drupal-vm-config-generator,opdavies/drupal-vm-config-generator,opdavies/drupal-vm-generator,opdavies/drupal-vm-generator
|
dd1c0445f26a3495be157dbf132516a68c9e5e37
|
.travis.yml
|
.travis.yml
|
services:
- docker
install: ./build.sh
script: true
after_success: ./push_to_docker_registry.sh
|
language: python
python:
- 2.7
services:
- docker
install:
- true
script:
- ./build.sh
after_success:
- ./push_to_docker_registry.sh
|
Change things around a little bit
|
Change things around a little bit
|
YAML
|
mit
|
danielpops/openvas
|
5d70d55938b8cc3d35ccabbbd07fe936ed877781
|
.travis.yml
|
.travis.yml
|
language: python
cache:
directories:
- "~/.platformio"
install:
- pip install -U platformio
env:
- BOARD=leonardo
- BOARD=micro
- BOARD=megaatmega2560
- BOARD=due
- BOARD=uno
- BOARD=yun
script:
- for e in $(find examples -name \*.ino); do
platformio ci --board=$BOARD --lib=. $e;
done
|
language: python
cache:
directories:
- "~/.platformio"
install:
- pip install -U platformio
env:
- BOARD=leonardo
- BOARD=micro
- BOARD=megaatmega2560
- BOARD=due
- BOARD=uno
- BOARD=yun
script:
- for e in examples/*; do
platformio ci --board=$BOARD --lib=. $e/*;
done
|
Make it work with example sketches that have multiple files
|
CI: Make it work with example sketches that have multiple files
|
YAML
|
mit
|
pololu/maestro-arduino
|
c908d92979a92a216dc014ac79b2b094445718b7
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.1.2
- 2.2.3
- 2.3.0
env:
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.1.4"
- "RAILS_VERSION=4.2.5"
- "RAILS_VERSION=master"
after_script:
- rubocop app lib
matrix:
allow_failures:
- env: "RAILS_VERSION=master"
|
language: ruby
rvm:
- 1.9.3
- 2.1.2
- 2.2.3
- 2.3.0
env:
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.1.4"
- "RAILS_VERSION=4.2.5"
- "RAILS_VERSION=master"
script:
- bundle exec rake test
- rubocop app lib --fail-level R
matrix:
allow_failures:
- env: "RAILS_VERSION=master"
|
Update Travis to force fail with Rubocop offenses
|
Update Travis to force fail with Rubocop offenses
|
YAML
|
mit
|
Angelmmiguel/pretty_routes,Angelmmiguel/pretty_routes,Angelmmiguel/pretty_routes
|
36dff41239dad92bff7c3156ecc4a0be16223fb6
|
.travis.yml
|
.travis.yml
|
language: python
matrix:
include:
- python: 2.7
- python: 3.5
install:
- "sudo pip install -r requirements.txt"
script:
- "python -m flake8 ."
- "sudo sh ./.travis/run_test.sh"
|
language: python
matrix:
include:
- python: 2.7
- python: 3.5
install:
- "pip install -r requirements.txt"
script:
- "python -m flake8 ."
- "sh ./.travis/run_test.sh"
|
Use user mode instead since we're in virtualenv
|
:wind_chime: Use user mode instead since we're in virtualenv
|
YAML
|
mit
|
BrakeValve/dataflow,BrakeValve/brake-valve-server,BrakeValve/brake-valve-server,BrakeValve/dataflow
|
a86c02a10a86ed9535882bf99b6f9d77e1e92ff0
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: required
node_js:
- 7.9
script: npm run-script ci
cache:
directories:
- node_modules
notifications:
flowdock: e3dc17bc8a2c1b3412abe3e5747f8291
env:
- MONGODB_VERSION=3.2.x MONGODB_TOPOLOGY=standalone
- MONGODB_VERSION=3.4.x MONGODB_TOPOLOGY=standalone
|
language: node_js
sudo: required
node_js:
- 8.9.3
script: npm run-script ci
cache:
directories:
- node_modules
notifications:
flowdock: e3dc17bc8a2c1b3412abe3e5747f8291
env:
- MONGODB_VERSION=3.2.x MONGODB_TOPOLOGY=standalone
- MONGODB_VERSION=3.4.x MONGODB_TOPOLOGY=standalone
|
Use Node 8.9.3 on Travis
|
Use Node 8.9.3 on Travis
|
YAML
|
apache-2.0
|
mongodb-js/data-service
|
602345680ce38dc10d4a9e728f1505162bff6293
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
sudo: false
|
language: java
script: ./gradlew build -s
jdk:
- oraclejdk8
# Caching for Gradle files, prevents hitting Maven too much.
before_cache:
- find /home/travis/.gradle/ . -name '*.lock' -print -exec rm -f {} \;
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
# Faster builds without sudo.
sudo: false
addons:
apt:
packages:
- oracle-java8-installer
after_script:
# Make sure to kill daemon
- ./gradlew --stop
|
Update Travis Java to fix errors
|
Update Travis Java to fix errors
|
YAML
|
mit
|
TechShroom/UnplannedDescent,TechShroom/UnplannedDescent,TechShroom/UnplannedDescent
|
3c3df7f82ca086047d35840c1a14fc4da056cc7f
|
.travis.yml
|
.travis.yml
|
---
# travis-ci config for pipdeptree
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
addons:
apt:
packages:
- graphviz
before_install:
- pip install -U pip>=8.0.2
- make test-env
install: pip install .
script: py.test -v
after_script: make clean clean-env
sudo: false
|
---
# travis-ci config for pipdeptree
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
addons:
apt:
packages:
- graphviz
before_install:
- pip install -U pip>=8.0.2
- pip install graphviz
- make test-env
install: pip install .
script: py.test -v
after_script: make clean clean-env
sudo: false
|
Install graphviz Python package on Travis
|
Install graphviz Python package on Travis
|
YAML
|
mit
|
naiquevin/pipdeptree,naiquevin/pipdeptree
|
c61b082d714caab5544aa5ae951312e043eedcef
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
script:
- tox -e coverage
after_success:
- coveralls
|
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
- "pypy"
install:
- pip install tox
script:
- tox -e coverage
after_success:
- coveralls
|
Fix Travis CI configuration file
|
Fix Travis CI configuration file
|
YAML
|
mit
|
amatellanes/fixerio
|
bfbdb7088501509e7646947716f5f18c27bd70fa
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.8"
- "0.10"
before_install:
- gem --version
- gem update --system
# jekyll stuff
- gem install jekyll
# compass & compass extensions
- gem install compass
# grunt-webfont requirements
- sudo apt-get install fontforge ttfautohint
# grunt
- npm install -g grunt-cli
- npm install
# bower
- export PATH=$PATH:`npm bin` # add local bower
- bower --version
- bower install
# for some test with dates
- sudo cp /usr/share/zoneinfo/Europe/Paris /etc/localtime
|
language: node_js
node_js:
- "0.8"
- "0.10"
before_install:
- gem --version
- gem update --system
# jekyll stuff
- gem install jekyll
# compass & compass extensions
- gem install compass
# grunt-webfont requirements
- sudo apt-get install fontforge
# grunt
- npm install -g grunt-cli
- npm install
# bower
- export PATH=$PATH:`npm bin` # add local bower
- bower --version
- bower install
# for some test with dates
- sudo cp /usr/share/zoneinfo/Europe/Paris /etc/localtime
|
Remove optional ttfautohint for Travis, again
|
Remove optional ttfautohint for Travis, again
|
YAML
|
mit
|
happyplan/happyplan,happyplan/happyplan
|
59e7567aefd61d81186479de3764598473507eec
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby
- rbx
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
before_install:
- sudo apt-get install libpcre3 libpcre3-dev
notifications:
irc: "irc.freenode.org#adhearsion"
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby
- rbx
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
before_install:
- sudo apt-get install libpcre3 libpcre3-dev
- gem install bundler
notifications:
irc: "irc.freenode.org#adhearsion"
|
Fix ruby-1.9.3 json dependency issue by using latest stable version of Bundler
|
[SPEC] Travis-CI: Fix ruby-1.9.3 json dependency issue by using latest stable version of Bundler
|
YAML
|
mit
|
sfgeorge/ruby_speech,adhearsion/ruby_speech,benlangfeld/ruby_speech,adhearsion/ruby_speech,benlangfeld/ruby_speech,adhearsion/ruby_speech,sfgeorge/ruby_speech,sfgeorge/ruby_speech,benlangfeld/ruby_speech
|
33a5308205a041a3d0ed831a73b41dfafa757e72
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- sudo add-apt-repository ppa:kivy-team/kivy-daily
- sudo apt-get update
- sudo apt-get install python-kivy
- sudo apt-get install python3-kivy
install:
- pip install cython==0.25
- python setup.py install
- pip install pytest
- pip install pep8
script:
pep8
pytest
|
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- sudo add-apt-repository -y ppa:kivy-team/kivy-daily
- sudo apt-get update
- sudo apt-get install python-kivy
- sudo apt-get install python3-kivy
install:
- pip install cython==0.25
- python setup.py install
- pip install pytest
- pip install pep8
script:
pep8
pytest
|
Use daily build repo for kivy
|
Use daily build repo for kivy
|
YAML
|
mit
|
MichaelStott/KivMob
|
37655680a0ad7f0944f77a06f95d787057b13211
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3"
cache:
directories:
- $HOME/.cache/pip
before_install:
- git clone https://github.com/stollgr/wiremock-scenario-templating.git
- wiremock-scenario-templating/travis_scripts/install_wiremock.sh
install:
- pip install --upgrade pip
- pip install certifi==2015.04.28
- pip install requests six python-dateutil coverage coveralls[yaml] pytest pytest-travis-fold pytest-instafail requests-toolbelt
script:
- wiremock-scenario-templating/travis_scripts/start_wiremock.sh
- coverage run --source=smartsheet setup.py test
after_success:
- coveralls --verbose
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3"
cache:
directories:
- $HOME/.cache/pip
before_install:
- git clone https://github.com/stollgr/wiremock-scenario-templating.git
- wiremock-scenario-templating/travis_scripts/install_wiremock.sh
install:
- pip install --upgrade pip
- pip install certifi==2015.04.28
- pip install requests six python-dateutil coverage coveralls[yaml] pytest pytest-travis-fold pytest-instafail requests-toolbelt
script:
- wiremock-scenario-templating/travis_scripts/start_wiremock.sh
- coverage run --source=smartsheet setup.py test -a tests/integration
# - coverage run --source=smartsheet setup.py test # use this line instead to enable mock api tests
after_success:
- coveralls --verbose
|
Disable mock api tests because the SDK fails the tests
|
Disable mock api tests because the SDK fails the tests
|
YAML
|
apache-2.0
|
smartsheet-platform/smartsheet-python-sdk,smartsheet-platform/smartsheet-python-sdk
|
c2fcb4e0f3d98462181d3b29fe2e199127562e6f
|
.travis.yml
|
.travis.yml
|
language: python
sudo: false
cache: pip
env:
global:
PYTHONUNBUFFERED=yes
matrix:
fast_finish: true
include:
- python: 2.7
env: TOXENV=2.7
- python: pypy
env: TOXENV=pypy
- python: 3.4
env: TOXENV=3.4
- python: 3.5
env: TOXENV=3.5
- python: 3.6
env: TOXENV=3.6
- python: 2.7
env: TOXENV=flake8
- python: 2.7
env: TOXENV=flakeplus
- python: 2.7
env: TOXENV=pydocstyle
- python: 2.7
env: TOXENV=apicheck
install:
- pip install -U pip setuptools wheel
- pip install -U tox
script: tox -v -- -v
after_success:
- .tox/$TRAVIS_PYTHON_VERSION/bin/coverage xml
- .tox/$TRAVIS_PYTHON_VERSION/bin/codecov -e TOXENV
notifications:
irc:
channels:
- "chat.freenode.net#celery"
on_success: change
on_failure: change
|
language: python
sudo: false
cache: pip
env:
global:
PYTHONUNBUFFERED=yes
matrix:
fast_finish: true
include:
- python: 2.7
env: TOXENV=2.7
- python: pypy
env: TOXENV=pypy
- python: 3.4
env: TOXENV=3.4
- python: 3.5
env: TOXENV=3.5
- python: 3.6
env: TOXENV=3.6
- python: 2.7
env: TOXENV=flake8
- python: 2.7
env: TOXENV=flakeplus
- python: 2.7
env: TOXENV=pydocstyle
- python: 2.7
env: TOXENV=apicheck
install:
- pip install -U pip setuptools wheel | cat
- pip install -U tox | cat
script: tox -v -- -v
after_success:
- .tox/$TRAVIS_PYTHON_VERSION/bin/coverage xml
- .tox/$TRAVIS_PYTHON_VERSION/bin/codecov -e TOXENV
notifications:
irc:
channels:
- "chat.freenode.net#celery"
on_success: change
on_failure: change
|
Disable the pip progress bar.
|
Disable the pip progress bar.
|
YAML
|
lgpl-2.1
|
smurfix/aio-py-amqp,smurfix/aio-py-amqp
|
0db432109b9be1a3c717fd7e80fa56ce0b1bd43c
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.1.0
before_install: gem install bundler -v 1.10.6
|
language: ruby
rvm:
- 2.3.0
before_install: gem install bundler
|
Update Ruby version to 2.3.0
|
Update Ruby version to 2.3.0
The AI Games runs Ruby 2.3.0 now, which means we must test our code
against this version.
|
YAML
|
mit
|
jdno/ai_games-parser,jdno/ai_games-parser
|
82d12588e4b2c70926a8a3665fcd84283a4a1f9f
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
- ruby-head
- jruby-18mode
- jruby-19mode
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
before_install:
- gem update bundler
- bundle --version
- gem update --system 2.1.11
- gem --version
script:
- bundle exec rake test_cov
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
- ruby-head
- jruby-18mode
- jruby-19mode
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
before_install:
- gem update bundler
- bundle --version
- gem update --system 2.1.11
- gem --version
script:
- bundle exec rake test_cov
|
Allow rbx failures on CI.
|
Allow rbx failures on CI.
|
YAML
|
mit
|
modulexcite/parser,bbatsov/parser
|
e03119564b9690264c6ac5d9fdd3344c23b5e427
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: false
node_js:
- 'node'
env:
global:
- secure: NyTJRyVlZACJzp4rU6O9abqm2Z+P3x6mhFne8B9iqflt+9pesdT9Jz/a5oi8+hjA1n+tRADkrXjGz8GPgFCI1YP6+RgOQjGYnf3F/7/efbHjGrtTQPKq6Fu07upN9B/yXEsFML05abloiJvPLeHvDS9xY9qsgkDzvikdjrUleIs=
- secure: di2dAKlPdcQ2yNo7YMIdqJbfk4KhYknh6g0pGF0i53tszFoBRVyAGb1uI7ZlrHIBOnOSi5XnLuoocEKscAToZjAANXYIcIxV29lXADkrDXXDqSaXWuvtGPadFRxeAuk07VEukj6xNEr/eSAuGyRb9K4HURSmEvWlUMMTMGOIB4Y=
before_install:
# Log HTTP requests
- npm config set loglevel http
# Set up xvfb for headless Firefox testing
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- time npm install
|
language: node_js
sudo: false
node_js:
- '4'
env:
global:
- secure: NyTJRyVlZACJzp4rU6O9abqm2Z+P3x6mhFne8B9iqflt+9pesdT9Jz/a5oi8+hjA1n+tRADkrXjGz8GPgFCI1YP6+RgOQjGYnf3F/7/efbHjGrtTQPKq6Fu07upN9B/yXEsFML05abloiJvPLeHvDS9xY9qsgkDzvikdjrUleIs=
- secure: di2dAKlPdcQ2yNo7YMIdqJbfk4KhYknh6g0pGF0i53tszFoBRVyAGb1uI7ZlrHIBOnOSi5XnLuoocEKscAToZjAANXYIcIxV29lXADkrDXXDqSaXWuvtGPadFRxeAuk07VEukj6xNEr/eSAuGyRb9K4HURSmEvWlUMMTMGOIB4Y=
before_install:
# Log HTTP requests
- npm config set loglevel http
# Set up xvfb for headless Firefox testing
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
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
|
EE/karma-ng-json2js-preprocessor,shirish87/karma-ng-json2js-preprocessor
|
8643dee74acd07ef558a0fa60dfc862500a6d4fd
|
.travis.yml
|
.travis.yml
|
language: c
sudo: required
dist: trusty
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq qemu-system-x86
script: make && sudo tests/setup-tests.sh && sudo tests/run-tests.sh
|
language: c
sudo: false
dist: trusty
addons:
apt:
packages:
- qemu-system-x86
script: make && tests/run-tests.sh
|
Switch to container-based Trusty infrastructure
|
Travis: Switch to container-based Trusty infrastructure
With the new VM-based CI in place, Travis is more or less just a
fallback. To speed up the Travis builds, switch to using the
Ubuntu Trusty container-based infrastructure.
This loses us sudo access so we can no longer run tests/test_ping_serve,
this is an acceptable compromise for (hopefully) faster builds.
|
YAML
|
isc
|
Weichen81/solo5,mato/solo5,Weichen81/solo5,Solo5/solo5,djwillia/solo5,djwillia/solo5,Solo5/solo5,djwillia/solo5,mato/solo5,Weichen81/solo5,mato/solo5
|
766b4d6c8c87acb98c4dcbdf6e67489e018192a1
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
before_script: "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && ./make_credentials.py"
script:
- find $HOME/.m2 -name "_remote.repositories" | xargs rm
- find $HOME/.m2 -name "resolver-status.properties" | xargs rm -f
# If building master, Publish to Sonatype
after_success: "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && mvn deploy"
sudo: false
# Cache settings
cache:
directories:
- $HOME/.m2/repository
# whitelist
branches:
only:
- master
|
language: java
jdk:
- oraclejdk8
before_script: |
if ([ $TRAVIS_PULL_REQUEST = "false" ] && [ $TRAVIS_BRANCH = "master" ]); then
./make_credentials.py
fi
script:
- find $HOME/.m2 -name "_remote.repositories" | xargs rm
- find $HOME/.m2 -name "resolver-status.properties" | xargs rm -f
# If building master, Publish to Sonatype
after_success: |
if ([ $TRAVIS_PULL_REQUEST = "false" ] && [ $TRAVIS_BRANCH = "master" ]); then
mvn deploy
fi
sudo: false
# Cache settings
cache:
directories:
- $HOME/.m2/repository
|
Make Travis available for all branches
|
Make Travis available for all branches
|
YAML
|
apache-2.0
|
Aulust/async-http-client,Aulust/async-http-client
|
8f4762a5eb10c5aef4256de0f1c7fbf1e9312698
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.6
- 1.7
- tip
install: go get github.com/onsi/ginkgo/ginkgo
script:
- ginkgo -v calendar/
- go build cmd/check/main.go
|
language: go
go:
- 1.6
- 1.7
- tip
install: go get github.com/onsi/ginkgo/ginkgo
script:
- ginkgo -v calendar/
- go build cmd/check/main.go
- go build cmd/in/main.go
- go build cmd/out/main.go
|
Add in and out scripts to Travis build
|
Add in and out scripts to Travis build
This tests they compile
|
YAML
|
mit
|
henrytk/calendar-resource
|
60821dff8cae0942291d3f2c8d13470048ba1197
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
os:
- linux
- osx
cache:
bundler: true
rvm:
- 2.3.1
- 2.4.1
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
after_success:
- bundle exec codeclimate-test-reporter
notifications:
email: false
|
sudo: false
language: ruby
os:
- linux
cache:
bundler: true
rvm:
- 2.3.1
- 2.4.1
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
after_success:
- bundle exec codeclimate-test-reporter
notifications:
email: false
|
Remove macOS from test matrix
|
Remove macOS from test matrix
|
YAML
|
mit
|
jungomi/mdn_query
|
b7e6f8e2eb93ce1c57c49208fc5c006c51807c8b
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
before_install:
- npm install -g gulp bower
- bower install -f
|
language: node_js
node_js:
- "6"
before_install:
- npm install -g yarn
install:
- yarn
script: yarn test
|
Update Travis for Yarn and Node 6
|
Update Travis for Yarn and Node 6
|
YAML
|
mit
|
Snugug/eq.js,Snugug/eq.js
|
0a4a184be31bc96928e830e661449bdeead24f2d
|
.travis.yml
|
.travis.yml
|
language: bash
services: docker
env:
- POSTGIS_MAJOR=2.4 POSTGIS_VERSION=2.4.4+dfsg-4.pgdg90+1 PG_MAJOR=9.6 VARIANT=slim
- POSTGIS_MAJOR=2.4 POSTGIS_VERSION=2.4.4+dfsg-4.pgdg90+1 PG_MAJOR=10.9 VARIANT=slim
- POSTGIS_MAJOR=2.5 POSTGIS_VERSION=2.5.4+dfsg-1.pgdg90+1 PG_MAJOR=11.4 VARIANT=slim
script:
- ./scripts/cibuild
deploy:
- provider: script
script: "scripts/cipublish"
on:
repo: azavea/docker-postgis
branch: master
|
language: bash
services: docker
env:
- POSTGIS_MAJOR=2.4 POSTGIS_VERSION=2.4.4+dfsg-4.pgdg90+1 PG_MAJOR=9.6 VARIANT=slim
- POSTGIS_MAJOR=2.4 POSTGIS_VERSION=2.4.4+dfsg-4.pgdg90+1 PG_MAJOR=10.9 VARIANT=slim
- POSTGIS_MAJOR=2.5 POSTGIS_VERSION=2.5.4+dfsg-1.pgdg90+1 PG_MAJOR=11.4 VARIANT=slim
- POSTGIS_MAJOR=3 POSTGIS_VERSION=3.0.1+dfsg-2.pgdg100+1 PG_MAJOR=12.2 VARIANT=slim
script:
- ./scripts/cibuild
deploy:
- provider: script
script: "scripts/cipublish"
on:
repo: azavea/docker-postgis
branch: master
|
Add PostgreSQL 12.x with PostGIS 3.x to build matrix
|
Add PostgreSQL 12.x with PostGIS 3.x to build matrix
|
YAML
|
apache-2.0
|
azavea/docker-postgis
|
72b6e0d4d265b6f63916d2757d38623e4f19c9c8
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
install:
- go get github.com/bwmarrin/discordgo
- go get -v .
- go get -v golang.org/x/lint/golint
script:
- diff <(gofmt -d .) <(echo -n)
- go vet -x ./...
- golint -set_exit_status ./...
- go test -v -race ./...
|
language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
env:
- GO111MODULE=on
install:
- go get github.com/bwmarrin/discordgo
- go get -v .
- go get -v golang.org/x/lint/golint
script:
- diff <(gofmt -d .) <(echo -n)
- go vet -x ./...
- golint -set_exit_status ./...
- go test -v -race ./...
|
Add Go 1.14, force module support in Travis
|
Add Go 1.14, force module support in Travis
|
YAML
|
bsd-3-clause
|
iopred/discordgo,bwmarrin/discordgo
|
99bf0994a2340dc3ed3d4a7c3be828008e47e975
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
cache: bundler
rvm:
- 2.2.5
- 2.3.1
|
language: ruby
sudo: false
cache: bundler
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
|
Update Ruby versions and add 2.4.0.
|
Update Ruby versions and add 2.4.0.
|
YAML
|
mit
|
KentaaNL/buckaruby,KentaaNL/buckaruby
|
11a88824ec5482008dab401463960a43de1f1c93
|
.travis.yml
|
.travis.yml
|
# Build status located at https://travis-ci.org/citra-emu/citra-web
language: node_js
node_js: node
cache: yarn
script:
- echo '========== Installing gulp & dependencies =========='
- sudo apt-get install graphicsmagick
- wget -O hugo.deb https://github.com/gohugoio/hugo/releases/download/v0.31.1/hugo_0.31.1_Linux-64bit.deb
- sudo dpkg -i hugo.deb
- yarn global add gulp
- yarn install
- echo '========== Starting gulp deploy task =========='
- hugo version
- gulp all --production
deploy:
provider: pages
edge:
branch: pages-ivar-set
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
local_dir: build
repo: CitraBotWeb/CitraBotWeb.github.io
target_branch: master
fqdn: citra-emu.org
on:
branch: master
notifications:
email:
- [email protected]
|
# Build status located at https://travis-ci.org/citra-emu/citra-web
language: node_js
node_js: node
cache: yarn
script:
- echo '========== Installing gulp & dependencies =========='
- sudo apt-get install graphicsmagick
- wget -O hugo.deb https://github.com/gohugoio/hugo/releases/download/v0.31.1/hugo_0.31.1_Linux-64bit.deb
- sudo dpkg -i hugo.deb
- yarn global add gulp
- yarn install
- echo '========== Starting gulp deploy task =========='
- hugo version
- gulp all --production
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
local_dir: build
repo: CitraBotWeb/CitraBotWeb.github.io
target_branch: master
fqdn: citra-emu.org
on:
branch: master
notifications:
email:
- [email protected]
|
Remove workaround for upstream GitHub pages deploy bug
|
Remove workaround for upstream GitHub pages deploy bug
|
YAML
|
agpl-3.0
|
Schplee/citra-web,citra-emu/citra-web,Schplee/citra-web,citra-emu/citra-web,citra-emu/citra-web
|
e2b10604cfac84d122c39c97bd191eedb1a27573
|
.travis.yml
|
.travis.yml
|
sudo: true # required until https://github.com/travis-ci/travis-ci/issues/9069 gets resolved
dist: xenial
language: python
python:
- "2.7"
- "3.7"
matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.7
- os: osx
osx_image: xcode7.3
language: objective-c
env: TRAVIS_PYTHON_VERSION=2.7
- os: osx
osx_image: xcode7.3
language: objective-c
env: TRAVIS_PYTHON_VERSION=3.7
before_install:
- df -h
- date
- pwd
- uname -a
- source tools/travis_section_def.sh
- source tools/travis_before_install.sh
- which python; python --version
- tools/build_versions.py
install:
- section build
- python setup.py clean
- python setup.py build_ext -i
- section_end build
script: tools/travis.sh
notifications:
email:
on_success: change
on_failure: change
|
sudo: true # required until https://github.com/travis-ci/travis-ci/issues/9069 gets resolved
dist: xenial
language: python
python:
- "2.7"
- "3.6"
- "3.7"
matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.6
- os: linux
python: 3.7
- os: osx
osx_image: xcode7.3
language: objective-c
env: TRAVIS_PYTHON_VERSION=2.7
- os: osx
osx_image: xcode7.3
language: objective-c
env: TRAVIS_PYTHON_VERSION=3.7
before_install:
- df -h
- date
- pwd
- uname -a
- source tools/travis_section_def.sh
- source tools/travis_before_install.sh
- which python; python --version
- tools/build_versions.py
install:
- section build
- python setup.py clean
- python setup.py build_ext -i
- section_end build
script: tools/travis.sh
notifications:
email:
on_success: change
on_failure: change
|
Test 3.6 in on linux.
|
Test 3.6 in on linux.
|
YAML
|
bsd-2-clause
|
gatagat/lapjv,gatagat/lapjv,gatagat/lapjv,gatagat/lapjv
|
0533b50c6b7235b57661f9e97730f06a1bd0f27e
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
branches:
except:
- v0.5
- v0.6
- php5.2_backport
- documentation
services: redis-server
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c phpunit.xml.travisci
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
branches:
except:
- v0.5
- v0.6
- php5.2_backport
- documentation
services: redis-server
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c phpunit.xml.travisci
-matrix:
- allow_failures:
- - php: hhvm-nightly
- fast_finish: true
|
Add hhvm-nightly as a testing environment on Travis CI.
|
Add hhvm-nightly as a testing environment on Travis CI.
|
YAML
|
mit
|
dzung2t/predis,CloudSide/predis,moria/predis,RudyJessop/predis,mrkeng/predis,zhangyancoder/predis,lvbaosong/predis,SecureCloud-biz/predis,vend/predis,gopalindians/predis,SwelenFrance/predis,protomouse/predis,nguyenthaihan/predis,WalterShe/predis,gencer/predis,nrk/predis,quangnguyen90/predis
|
f383c53c737735728d0e44089a35ca4fd01b3b35
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.7.x
- 1.x
install:
- go get github.com/golang/lint/golint
script:
- go test -v ./...
- go test -cover -race ./...
- go vet ./...
- test -z "$(find . -name \*.go | xargs gofmt -d -s)"
- golint ./...
sudo: false
|
language: go
go:
- 1.7.x
- 1.x
install:
- go get golang.org/x/lint/golint
script:
- go test -v ./...
- go test -cover -race ./...
- go vet ./...
- test -z "$(find . -name \*.go | xargs gofmt -d -s)"
- golint ./...
sudo: false
|
Update path to golint, thanks @azillion
|
Update path to golint, thanks @azillion
|
YAML
|
mit
|
twpayne/go-vali
|
d58b21d89b806effb71ecabfa64a966c4d7c876c
|
.travis.yml
|
.travis.yml
|
# ----------------------------------------------------------------
# Configuration file for http://travis-ci.org/#!/chdorner/epubinfo
# ----------------------------------------------------------------
language: ruby
script: "bundle exec rake spec"
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
before_install:
- gem install bundler
|
# ----------------------------------------------------------------
# Configuration file for http://travis-ci.org/#!/chdorner/epubinfo
# ----------------------------------------------------------------
language: ruby
script: "bundle exec rake spec"
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
matrix:
allow_failures:
- rvm: ruby-head
before_install:
- gem install bundler
|
Allow ruby-head to fail on Travis
|
Allow ruby-head to fail on Travis
|
YAML
|
mit
|
chdorner/params_validator
|
37a631263d246fcb9ba1660acf9f1fd9c120e707
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- 2.3.0
- jruby
before_install:
- gem install bundler
|
language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- 2.3.0
- jruby
before_install:
- gem install bundler
services:
- redis-server
|
Configure Redis for Travis CI
|
Configure Redis for Travis CI
|
YAML
|
mit
|
gabynaiman/rasti-web,gabynaiman/rasti-web
|
8afd2f4f809032c9cb84777a7297a676cb943bab
|
.travis.yml
|
.travis.yml
|
---
language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "4"
- "6"
- "stable"
sudo: false
dist: trusty
addons:
chrome: stable
cache:
directories:
- $HOME/.npm
env:
- EMBER_TRY_SCENARIO=ember-lts-2.8
- EMBER_TRY_SCENARIO=ember-lts-2.12
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
- EMBER_TRY_SCENARIO=ember-default
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- npm config set spin false
- npm install -g npm@4
- npm --version
script:
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup && npm run test:node
|
---
language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "4"
- "6"
- "stable"
sudo: false
dist: trusty
addons:
chrome: stable
cache:
directories:
- $HOME/.npm
env:
- EMBER_TRY_SCENARIO=ember-lts-2.8
- EMBER_TRY_SCENARIO=ember-lts-2.12
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
- EMBER_TRY_SCENARIO=ember-default
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- npm config set spin false
- npm install -g npm@4
- npm --version
script:
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO && npm run test:node
|
Clean dependencies state after ember try run
|
Clean dependencies state after ember try run
|
YAML
|
mit
|
fivetanley/ember-cli-dotenv,fivetanley/ember-cli-dotenv,SergeAstapov/ember-cli-dotenv,SergeAstapov/ember-cli-dotenv,fivetanley/ember-cli-dotenv
|
665f1f72dcecbc26dbe62be5a464ade4339242fb
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.1
- 2.2
sudo: false
cache: bundler
before_script:
- sh -e /etc/init.d/xvfb start
- export DISPLAY=:99.0
- bundle exec rake test_app
script:
- bundle exec rspec spec
|
language: ruby
rvm:
- 2.2.4
- 2.3.0
sudo: false
cache: bundler
before_script:
- sh -e /etc/init.d/xvfb start
- export DISPLAY=:99.0
- bundle exec rake test_app
script:
- bundle exec rspec spec
|
Test against ruby 2.2.4 and 2.3.0
|
Test against ruby 2.2.4 and 2.3.0
|
YAML
|
bsd-3-clause
|
spree-contrib/spree_wishlist,spree-contrib/spree_wishlist,anthonyto/spree_wishlist,anthonyto/spree_wishlist,anthonyto/spree_wishlist,spree-contrib/spree_wishlist
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.