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
|
---|---|---|---|---|---|---|---|---|---|
f89953a5ed2e167d82d07ea9cb819cbc3868cb86
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
- "4"
- "6"
- "10"
|
language: node_js
node_js:
- "4"
- "6"
- "8"
|
Revert "Travis should test on Node 0.10 because we still technically support it"
|
Revert "Travis should test on Node 0.10 because we still technically support it"
This reverts commit 3ce21985c7be885043f04af3bb2a82e547db7900.
|
YAML
|
mit
|
helmetjs/helmet,helmetjs/helmet
|
391ed1d864e4c22533848619579494574a78cae0
|
.travis.yml
|
.travis.yml
|
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode7.3
xcode_sdk: iphonesimulator9.3
before_install:
- gem install cocoapods
- pod install --project-directory=Example
script:
- xctool test -workspace Example/RxRealm.xcworkspace -scheme RxRealm-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
|
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode7.3
xcode_sdk: iphonesimulator9.3
before_install:
- gem install cocoapods
- pod repo update
- pod install --project-directory=Example
script:
- xctool test -workspace Example/RxRealm.xcworkspace -scheme RxRealm-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
|
Update pod repo to make CocoaPods happy
|
Update pod repo to make CocoaPods happy
|
YAML
|
mit
|
RxSwiftCommunity/RxRealm,RxSwiftCommunity/RxRealm,RxSwiftCommunity/RxRealm
|
c7c355b4c65a4f7c29f9056097352beea33f9a3c
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- "0.12"
- "1"
- "2"
- "3"
- "4"
script: "npm run test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
|
sudo: false
language: node_js
node_js:
- "0.12"
- "1"
- "2"
- "3"
- "4"
- "5"
script: "npm run test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
|
Add node 5 to Travis
|
Add node 5 to Travis
|
YAML
|
mit
|
chentsulin/create-action-types
|
3e0aeda367ae4352c970236ec2bf4c5e78ffda3d
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "6"
- "7"
sudo: false
install:
# Install the deps in the root project
- npm i
# Install the nested deps, but the linked repositories won't work at this
# stage, because the deps aren't build
- npm run bootstrap
# Build the deps
- npm run build
notifications:
email: false
after_success:
- npm install -g codeclimate-test-reporter
- codeclimate-test-reporter < coverage/lcov.info
|
language: node_js
node_js:
- "6"
- "8"
sudo: false
install:
# Install the deps in the root project
- npm i
# Install the nested deps, but the linked repositories won't work at this
# stage, because the deps aren't build
- npm run bootstrap
# Build the deps
- npm run build
notifications:
email: false
after_success:
- npm install -g codeclimate-test-reporter
- codeclimate-test-reporter < coverage/lcov.info
|
Test Node 8 in Travis, rather than 7
|
Test Node 8 in Travis, rather than 7
|
YAML
|
mit
|
jmeas/resourceful-redux,jmeas/resourceful-redux
|
47a49c450fc6b97856c4a80964f7ba52936e97c4
|
.travis.yml
|
.travis.yml
|
notifications:
email: false
rvm:
- 2.3.1
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
sudo: false
language: ruby
cache: bundler
before_script:
- bundle exec rake config
script: bundle exec rake spec
after_success:
coveralls
|
notifications:
email: false
rvm:
- 2.3.4
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
sudo: false
language: ruby
cache: bundler
before_script:
- bundle exec rake config
script: bundle exec rake spec
after_success:
coveralls
|
Update from Ruby 2.3.1 to 2.3.4.
|
Update from Ruby 2.3.1 to 2.3.4.
|
YAML
|
apache-2.0
|
sul-dlss/revs-indexer-service,sul-dlss/revs-indexer-service,sul-dlss/revs-indexer-service
|
b5ab925378ab875d59dfbdf0aa81dd9cfb7d8aee
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "node"
- "10"
- "12"
- "13"
script: "npm test"
after_success: npm run coverage
|
language: node_js
node_js:
- "node"
- "10"
- "12"
- "14"
script: "npm test"
after_success: npm run coverage
|
Update node versions used for testing, replacing 13 with 14 to match LST
|
Update node versions used for testing, replacing 13 with 14 to match LST
|
YAML
|
isc
|
vsiakka/gherkin-lint
|
e45dcc9ffa415a2afd845d161b1c051c9380919b
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "10"
- "9"
- "8"
- "6"
- "4"
script: "npm run jshint && npm run test-cover"
# Send coverage data to Coveralls
after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
|
language: node_js
node_js:
- "10"
- "8"
- "6"
script: "ln -s .. node_modules/sharedb; npm run jshint && npm run test-cover"
# Send coverage data to Coveralls
after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
|
Fix sharedb does not exist
|
Fix sharedb does not exist
|
YAML
|
mit
|
share/livedb
|
11a28d82108fc860bd4c1594efe382a7db768b1f
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.10'
before_install:
- npm install -g npm
install:
- npm install
- cd ./example && npm install && cd -
script:
- node ./node_modules/mocha/bin/mocha
- cd example && node ./build.js && cd -
deploy:
provider: npm
email: [email protected]
api_key:
secure: PAVLA1+st7EoijWC6s1w53BUsaG+34ExU2CqTFScIpvqC2JaP25MGsm2ASsq0bdP8MeehPP4SJoMTg/xzbU8PDitAb2TkE4pOllHEtEsCcXcNwWcihPXcjbuKOOPd0Xhy4JFRKve4nCQoaIjbsew77I6FFwIhc/bn2CbWvYDRwc=
on:
repo: aymericbeaumet/metalsmith-redirect
branch: master
tags: true
|
language: node_js
node_js:
- '0.10'
before_install:
- npm install -g npm
install:
- npm install
- cd ./example && npm install && cd -
script:
- node ./node_modules/mocha/bin/mocha
- cd example && node ./build.js && cd -
deploy:
provider: npm
email: [email protected]
api_key:
secure: PAVLA1+st7EoijWC6s1w53BUsaG+34ExU2CqTFScIpvqC2JaP25MGsm2ASsq0bdP8MeehPP4SJoMTg/xzbU8PDitAb2TkE4pOllHEtEsCcXcNwWcihPXcjbuKOOPd0Xhy4JFRKve4nCQoaIjbsew77I6FFwIhc/bn2CbWvYDRwc=
on:
repo: aymericbeaumet/metalsmith-redirect
all_branches: true
tags: true
|
Fix NPM publish via Travis
|
Fix NPM publish via Travis
|
YAML
|
mit
|
aymericbeaumet/metalsmith-redirect,aymericbeaumet/metalsmith-redirect
|
20b01683ccc8d7aa367cedae8f9b1285f4f034d9
|
.travis.yml
|
.travis.yml
|
---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-release
- env: EMBER_TRY_SCENARIO=ember-beta
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- ember try $EMBER_TRY_SCENARIO test
|
---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- ember try $EMBER_TRY_SCENARIO test
|
Remove Travis builds for Ember channels.
|
Remove Travis builds for Ember channels.
We don't support them ATM and they timeout (causing Travis queue to
get backed up). Will add back once this is updated for 1.13.
|
YAML
|
mit
|
mixonic/ember-cli-aptible-shared,aptible/ember-cli-aptible-shared,blakepettersson/dashboard.aptible.com,blakepettersson/ember-cli-aptible-shared,blakepettersson/dashboard.aptible.com,gib/ember-cli-aptible-shared,mixonic/ember-cli-aptible-shared,blakepettersson/ember-cli-aptible-shared,gib/ember-cli-aptible-shared,chasballew/dashboard.aptible.com,aptible/ember-cli-aptible-shared,aptible/dashboard.aptible.com,chasballew/dashboard.aptible.com,aptible/dashboard.aptible.com,blakepettersson/dashboard.aptible.com,chasballew/dashboard.aptible.com,aptible/dashboard.aptible.com
|
2fa6b1f5013b753b71612d3d1e13edbf3914bd90
|
.travis.yml
|
.travis.yml
|
---
language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.6
env:
- PUPPET_GEM_VERSION="~> 3.0"
- PUPPET_GEM_VERSION="~> 3.5.0"
- PUPPET_GEM_VERSION="~> 4.0"
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.5.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.5.0"
- rvm: 2.1.6
env: PUPPET_GEM_VERSION="~> 3.5.0"
- rvm: 2.1.6
env: PUPPET_GEM_VERSION="~> 4.0"
gemfile: .gemfile
bundler_args: --without system_tests
script:
- "bundle exec rake validate"
- "bundle exec rake lint"
- "bundle exec rake spec SPEC_OPTS='--format documentation'"
notifications:
on_success: change
on_failure: change
|
---
language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.6
env:
- PUPPET_GEM_VERSION="~> 3.0"
- PUPPET_GEM_VERSION="~> 3.5.0"
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.5.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.5.0"
- rvm: 2.1.6
env: PUPPET_GEM_VERSION="~> 3.5.0"
gemfile: .gemfile
bundler_args: --without system_tests
script:
- "bundle exec rake validate"
- "bundle exec rake lint"
- "bundle exec rake spec SPEC_OPTS='--format documentation'"
notifications:
on_success: change
on_failure: change
|
Revert testing Puppet 4.0 again
|
Revert testing Puppet 4.0 again
|
YAML
|
bsd-2-clause
|
smoeding/puppet-sendmail
|
b4527ae54def2158f8738ee9831d5231c89e1405
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- openjdk7
# whitelist
branches:
only:
- master
env:
global:
- secure: "Si+FksmD04Qev09hkYqWYN4rYQderrvMt6/kZBTgEek/v4Bd8QVCcbkZemYQCLnfhm94fNJDVrvpbrZhkeSWhCXKnnsYMH9oaxQWSd4aUI55V9QAseVAWMod5d2TSD7kTIo1owV5xh9LHTLmwnv4v6WmV3dSHSQc0zQh09dFC/M="
- secure: "IVcJyf13GCwLkpYKqygwTH9f3EG1YiqdmXWPCt5d9DXKKLjbSq/MFQ/nwdgfgfJAsgrSXN0I+6fIf8/INtI4YcKTpzAblXdeAkWdVrD4xpRSC7TpEHdEGMWEBtSWzJy8b92F2cxCXuk/QPDK4d8/QuelkFD9C9IztmgSqq7fQQg="
before_install:
- sudo apt-get update -qq
- git clone --depth=50 --branch=master git://github.com/GraphWalker/graphwalker-project.git ../graphwalker-project
- git clone --depth=50 --branch=master git://github.com/GraphWalker/graphwalker-core.git ../graphwalker-core
install:
- pushd ../graphwalker-project;mvn -q clean install;popd
- pushd ../graphwalker-core;mvn -q clean install;popd
- mvn -q clean install
|
language: java
jdk:
- openjdk7
# whitelist
branches:
only:
- master
env:
global:
- secure: "Si+FksmD04Qev09hkYqWYN4rYQderrvMt6/kZBTgEek/v4Bd8QVCcbkZemYQCLnfhm94fNJDVrvpbrZhkeSWhCXKnnsYMH9oaxQWSd4aUI55V9QAseVAWMod5d2TSD7kTIo1owV5xh9LHTLmwnv4v6WmV3dSHSQc0zQh09dFC/M="
- secure: "IVcJyf13GCwLkpYKqygwTH9f3EG1YiqdmXWPCt5d9DXKKLjbSq/MFQ/nwdgfgfJAsgrSXN0I+6fIf8/INtI4YcKTpzAblXdeAkWdVrD4xpRSC7TpEHdEGMWEBtSWzJy8b92F2cxCXuk/QPDK4d8/QuelkFD9C9IztmgSqq7fQQg="
before_install:
- sudo apt-get update -qq
- git clone --depth=50 --branch=master git://github.com/GraphWalker/graphwalker-project.git ../graphwalker-project
install:
- mvn -q deploy --settings ../graphwalker-project/deploy.xml
|
Prepare for deploying all modules snapshots
|
Prepare for deploying all modules snapshots
|
YAML
|
mit
|
KristianKarl/graphwalker-project,KristianKarl/graphwalker-project,GraphWalker/graphwalker-project,GraphWalker/graphwalker-project,KristianKarl/graphwalker-project,GraphWalker/graphwalker-project
|
e6e61ff28608b4e7fbff2124dbc8a59dcae9b2c8
|
.travis.yml
|
.travis.yml
|
language: python
python:
- '3.4'
install: python setup.py develop
script: python setup.py nosetests
deploy:
provider: pypi
user: alynn
password:
secure: WORxc7Mk4+Hif5OALufhhXyB8vT1GhlFfs+iAQ2efe3bpbmPymw4m2NmbVerpMBXoJD1STqUmffq69eLt6QsmsJt+Ohsqoc8jCxoK1iz2p8qd33/QgX/EXZA1Q2tXtlGg24qGavcjX4wF4HwmeiBZGsRqpoaSL6/jttoWNRyPSk=
on:
tags: true
repo: prophile/bong
all_branches: true
distributions: "sdist bdist_wheel"
|
language: python
python:
- '3.4'
sudo: false
install: python setup.py develop
script: python setup.py nosetests
deploy:
provider: pypi
edge: true
user: alynn
password:
secure: WORxc7Mk4+Hif5OALufhhXyB8vT1GhlFfs+iAQ2efe3bpbmPymw4m2NmbVerpMBXoJD1STqUmffq69eLt6QsmsJt+Ohsqoc8jCxoK1iz2p8qd33/QgX/EXZA1Q2tXtlGg24qGavcjX4wF4HwmeiBZGsRqpoaSL6/jttoWNRyPSk=
on:
tags: true
repo: prophile/bong
all_branches: true
distributions: "sdist bdist_wheel"
|
Enable bdist_wheel in containers again
|
Enable bdist_wheel in containers again
|
YAML
|
mit
|
prophile/bong
|
afdbf5642296dca2d9d0500b35d004edae185af7
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4.0"
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
sudo: false
language: node_js
node_js:
- "4.4"
- "6.3"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
Update Travis config to latest. Update node versions to 4.x and 6.x .
|
Update Travis config to latest. Update node versions to 4.x and 6.x .
|
YAML
|
mit
|
cliffano/nestor-lifx
|
9f781652c73e7784bf26544644085e43394442aa
|
.travis.yml
|
.travis.yml
|
sudo: false
language: elixir
git:
depth: 3
elixir:
- 1.3
- 1.4
otp_release:
- 18.3
- 19.3
env:
- MIX_ENV=test VERBOSE_TESTS=true
script:
- mix test --exclude=expensive
- mix test --only=expensive
notifications:
email:
- [email protected]
|
sudo: false
language: elixir
git:
depth: 3
elixir:
- 1.3
- 1.4
otp_release:
- 18.3
- 19.3
- 20.0
env:
- MIX_ENV=test VERBOSE_TESTS=true
matrix:
exclude:
- elixir: 1.3
otp_release: 20.0
script:
- mix test --exclude=expensive
- mix test --only=expensive
notifications:
email:
- [email protected]
|
Add OTP 20 to test matrix
|
Add OTP 20 to test matrix
|
YAML
|
mit
|
bitwalker/distillery,bitwalker/distillery
|
dce76a1c90dc0a8b09783e2ce89a5f13b7a7fa54
|
.travis.yml
|
.travis.yml
|
language: android
dist: precise
jdk:
- oraclejdk8
sudo: required
#services:
# - docker
env:
matrix:
- ANDROID_TARGET=android-24 ANDROID_ABI=armeabi-v7a
#- ANDROID_TARGET=android-24 ANDROID_ABI=x86
global:
# wait up to 10 minutes for adb to connect to emulator
- ADB_INSTALL_TIMEOUT=20
android:
components:
- tools
- build-tools-24.0.3
- android-24
- extra-android-support
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
#- sys-img-armeabi-v7a-android-24
licenses:
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
bundler: true
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- node_modules
- $HOME/ve
before_install:
- sudo chmod +x gradlew
script:
./gradlew assembleRelease
|
language: android
dist: precise
jdk:
- oraclejdk8
sudo: required
#services:
# - docker
env:
matrix:
- ANDROID_TARGET=android-24 ANDROID_ABI=armeabi-v7a
#- ANDROID_TARGET=android-24 ANDROID_ABI=x86
global:
# wait up to 10 minutes for adb to connect to emulator
- ADB_INSTALL_TIMEOUT=20
android:
components:
- tools
- build-tools-25.0.0
- android-24
- extra-android-support
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
#- sys-img-armeabi-v7a-android-24
licenses:
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
bundler: true
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- node_modules
- $HOME/ve
before_install:
- sudo chmod +x gradlew
script:
./gradlew assembleRelease
|
Update Travis android build tools reference
|
Update Travis android build tools reference
|
YAML
|
apache-2.0
|
RetroRabbit/retrorabbit-spicerack
|
f3d6701400621156e864483b255284f26513ccde
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.6
- 1.7
- 1.8
|
language: go
go:
- 1.6
- 1.7
- 1.8
script: go test -v -race ./...
|
Add race detection in CI
|
Add race detection in CI
|
YAML
|
mit
|
eraclitux/middle,eraclitux/httph
|
0482ae026f26301eeaf4856da9d29219567c3799
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
|
Add Ruby 2.1 to Travis
|
Add Ruby 2.1 to Travis
|
YAML
|
bsd-3-clause
|
aarontc/tdms,mnaberez/tdms
|
a77a7b92c7e943245e83893e71b49dfb77897137
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
# command to install dependencies
install: "python setup.py install"
# command to run tests
script: "python setup.py test"
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
# command to install dependencies
install: "python setup.py install"
# command to run tests
script: "python setup.py test"
# Automated Deployment to PyPI
deploy:
user: glow-mdsol
password:
secure: aQgdQqAFPXcV/N11Id151C27754T2YZ8SFzfv3cng7mDDvaEceGfPhyrADT6F+KGhezZEsrcb4iRfHUNk1QXlh8t/LKmmDg0q33tQsJXJKDuNiZ76KWwdfmYhX6eb51COCUHom8O7W01IaoBVyb/nBC8W4dfwCRF7BEVZ9Xyt5k5/l4vLL8Shp8AyREruEo+hMhjtt7m/c1jvSwjcLri0TpfR+bjK4LIYH2W+Dv8Gtuy4IlsZ6tUpPRq5L29HcuRzOopX/WD5emR9LP0pYpt5tWVyWxaC03CW3SZ5RQmwhwFFTqZFj8NprcAGNrlp2b+Ak1bRZs8qGfmDgcHe6pdtZYOTc+szZx6bVGUQrWy1jAtBS8JvSzHnS9VYRP9ryk1CkZffqQnPlHhKlwQOqtmkMS5Yed2cTQJCPkcoEbSy5a1nKKfxHnCJlI7a3GA4SLzgcH6lsV1WVMxyk6hVBl3DNkEycOTmSmzR63hVZBib9W3LBhivkMPHbHMRVJEFNugLLFmkS3xX/mph7sXqpGGs4LugEphxq413nT6aTp/2Q3a0IX9TQteqnyQO6JYa06/RKGkRnPm+F4A2Cx6JshpzattjgrBTKvZER+cGPB3D9ndBw54wE9reera7HvSKhP6lZTG3ZwJUdcnZhcHjKfNcEXnz6WipqVVBe9X5JHGVSQ=
on:
branch: master
distributions: sdist bdist_wheel
|
Add automated deployment from master
|
Add automated deployment from master
|
YAML
|
mit
|
mdsol/requests-mauth
|
97acd875f69af073e482c12492842cc75aaa6304
|
.travis.yml
|
.travis.yml
|
language: bash
os:
- linux
before_install:
- git clone git://github.com/fsquillace/junest ~/junest
- PATH=~/junest/bin:$PATH
- junest -f -- pacman --noconfirm -Sy fish zsh
install:
- chmod a+x make/*
- make/makeZSH.sh
script:
- source cfg.sh
- zsh
|
language: bash
os:
- linux
before_install:
- git clone git://github.com/fsquillace/junest ~/junest
- PATH=~/junest/bin:$PATH
- junest -f -- pacman --noconfirm -Sy fish zsh
script:
- source cfg.sh
- zsh
|
Remove installing zsh from source step
|
Remove installing zsh from source step
Trying junest instead
|
YAML
|
mit
|
iladin/dotfiles,iladin/dotty,iladin/dotfiles
|
76fe5baf5ae4a3152247ea91c84d0199d4a000b5
|
.travis.yml
|
.travis.yml
|
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libzmq3-dev php-pear php5-dev
- echo "" | sudo pecl install zmq-beta
- echo "extension=zmq.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- sudo pecl install memcached
- echo "extension=memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- php -m
before_script:
- composer selfupdate
- composer install
language: php
php:
- 5.5
- 5.4
- 5.3
tifications:
email:
on_success: change
on_failure: change
|
before_install:
- echo "extension=zmq.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- echo "extension=memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- php -m
before_script:
- composer self-update
- composer install
language: php
php:
- 5.6
- 5.5
- 5.4
- 5.3
matrix:
allow_failures:
- php: 5.6
notifications:
irc:
- "chat.freenode.net#alpharpc"
email:
on_success: change
on_failure: change
|
Fix the Travis CI Configuration.
|
Fix the Travis CI Configuration.
Signed-off-by: Jacob Kiers <[email protected]>
|
YAML
|
bsd-3-clause
|
alphacomm/alpharpc,alphacomm/alpharpc
|
24bc7f426dcc944da544e2c9d93fb9c8bfdb5309
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
install: "pip install -r requirements.txt"
script: "python runtests.py"
|
language: python
python:
- "2.7"
- "3.3"
install: "pip install -r requirements.txt"
script: "LANGUAGE=en_GB:en python runtests.py"
|
Make tests not be locale dependent
|
Make tests not be locale dependent
|
YAML
|
bsd-3-clause
|
plumdog/flask_table,plumdog/flask_table,plumdog/flask_table
|
a5f10ae15cccd48558abf420b6c179b0e31f6bf2
|
.travis.yml
|
.travis.yml
|
language: generic
dist: trusty
sudo: required
services:
- docker
before_install:
- sudo apt-get -y update
- DEBIAN_FRONTEND=noninteractive sudo apt-get -y -o Dpkg::Options::="--force-confnew" --force-yes install docker-engine
script:
- make test
after_success:
- make push
|
language: generic
dist: trusty
sudo: required
services:
- docker
before_install:
- sudo apt-get -y update
- DEBIAN_FRONTEND=noninteractive sudo apt-get -y -o Dpkg::Options::="--force-confnew" --force-yes install docker-engine
script:
- make test
|
Revert "Push after successful build"
|
Revert "Push after successful build"
This reverts commit 886049cc008476cfae3b1171c8fdbd43048a208a.
|
YAML
|
apache-2.0
|
msurdi/cutepaste,msurdi/cutepaste,msurdi/cutepaste
|
85dbf2a750aab34103800b32756fc3c6a45c417a
|
.travis.yml
|
.travis.yml
|
language: csharp
dist: trusty
services:
- docker
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
sudo: required
mono: 5.8.0
dotnet: 2.1.301
os: linux
before_script:
- sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list'
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys B02C46DF417A0893
- sudo apt-get update
- sudo apt-get install dotnet-dev-1.0.4
- chmod a+x ./build.sh
script:
- ./build.sh
|
language: csharp
dist: trusty
services:
- docker
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
sudo: required
mono: 5.8.0
dotnet:
- 2.1.301
- 2.1.4
os: linux
before_script:
- sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list'
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys B02C46DF417A0893
- sudo apt-get update
- sudo apt-get install dotnet-dev-1.0.4
- chmod a+x ./build.sh
script:
- ./build.sh
|
Add multiple Travis built-in dotnet sdk
|
Add multiple Travis built-in dotnet sdk
|
YAML
|
mit
|
lecaillon/Evolve
|
896be9707af6dbecae9dbb1c61924c986108b376
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "6.11.0"
script: npm run coverage
after_success: 'npm run coveralls'
|
language: node_js
node_js:
- "6.11.0"
services:
- postgresql
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
- psql -c "CREATE USER joe1 WITH PASSWORD '1234';" -U postgres
script: npm run coverage
after_success: 'npm run coveralls'
|
Set up Postgres for Travis CI testing
|
Set up Postgres for Travis CI testing
|
YAML
|
mit
|
mazma1/post-it,mazma1/post-it
|
50a77cbd4e10f33f323bac4b98c17ce21b359dd8
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- ree
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- "1.8.7"
- "1.9.2"
- "1.9.3"
- "2.0.0"
|
language: ruby
rvm:
- ree
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- "1.8.7"
- "1.9.2"
- "1.9.3"
- "2.0.0"
- "2.1.8"
- "2.2.4"
|
Add newer versions of ruby to tests
|
Add newer versions of ruby to tests
|
YAML
|
mit
|
tmiller/urban,tmiller/urban
|
52aee2d1ec16bf2f0afa4a93385bb02d426d1ed1
|
.travis.yml
|
.travis.yml
|
sudo: false
language: php
php:
- 7.2.6
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- cp app/config/parameters.yml.travis app/config/parameters.yml
- composer install
- php bin/console doctrine:database:create --env=test
- php bin/console doctrine:schema:create --env=test
- php bin/console doctrine:fixtures:load -n --env=test
- phpunit
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
notifications:
email:
- [email protected]
|
sudo: false
services:
- mysql
language: php
php:
- 7.2.6
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- cp app/config/parameters.yml.travis app/config/parameters.yml
- composer install
- php bin/console doctrine:database:create --env=test
- php bin/console doctrine:schema:create --env=test
- php bin/console doctrine:fixtures:load -n --env=test
- phpunit
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
notifications:
email:
- [email protected]
|
Enable mysql in Travis due to dist change from Trusty to Xenial
|
Enable mysql in Travis due to dist change from Trusty to Xenial
|
YAML
|
mit
|
InsaLan/insalan.fr,InsaLan/insalan.fr,InsaLan/insalan.fr
|
ad7c0c6e2c6d19219637a3f09a5ce8dddcfa3246
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.4"
- "3.5"
addons:
- rethinkdb: 2.3
install:
- pip install .
script: py.test tests/
deploy:
provider: pypi
user: $PYPI_USER
password: $PYPI_PASSWORD
on:
tags: true
|
dist: xenial
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
addons:
- rethinkdb: 2.3
install:
- pip install .
script: py.test tests/
deploy:
provider: pypi
user: $PYPI_USER
password: $PYPI_PASSWORD
on:
tags: true
|
Add support for Python 3.6 and 3.7
|
Add support for Python 3.6 and 3.7
|
YAML
|
mit
|
linkyndy/remodel
|
b6e774217e46cb3d35aa2dc55d345061893f9f3c
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.12
env:
- PATH=$HOME/purescript:$PATH
install:
- TAG=$(wget -q -O - https://github.com/purescript/purescript/releases/latest --server-response --max-redirect 0 2>&1 | sed -n -e 's/.*Location:.*tag\///p')
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
- chmod a+x $HOME/purescript
- npm install bower pulp -g
- npm install
- bower install
script:
- psc --version
- pulp test
|
language: node_js
sudo: false
node_js:
- 0.12
env:
- PATH=$HOME/purescript:$PATH
install:
- TAG=$(wget -q -O - https://github.com/purescript/purescript/releases/latest --server-response --max-redirect 0 2>&1 | sed -n -e 's/.*Location:.*tag\///p')
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
- chmod a+x $HOME/purescript
- npm install bower pulp -g
- npm install
- bower install
script:
- psc --version
- pulp test
|
Migrate Travis to new infrastructure
|
Migrate Travis to new infrastructure
|
YAML
|
bsd-3-clause
|
dancingrobot84/purescript-express,nkly/purescript-express
|
f8099a63f899c97e58d98b94146ceaa7a71bcc13
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
before_script: composer install --dev
|
language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: hhvm
- env: SYMFONY_VERSION=3.0.*
include:
- php: 5.3
env: COMPOSER_FLAGS="--prefer-lowest"
before_install:
- travis_retry composer self-update
install:
- composer update ${COMPOSER_FLAGS} --no-interaction
|
Add more platforms to Travis build matrix
|
Add more platforms to Travis build matrix
This ensures we test against old and current Symfony versions
|
YAML
|
mit
|
jmikola/WildcardEventDispatcher
|
066703ed753cc3c0f8d8bf4e4cde2350d0e939b9
|
.travis.yml
|
.travis.yml
|
language: python
sudo: required
services:
- docker
env:
- VERSION=12.04
- VERSION=14.04
- VERSION=16.04
script:
- ./build.sh
- docker build --tag=phanect/kubuntu ./dist/$VERSION/
|
dist: trusty
language: node_js
node_js:
- "4"
sudo: required
services:
- docker
env:
- VERSION=12.04
- VERSION=14.04
- VERSION=16.04
before_install:
- sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release --short --codename)-backports main restricted universe multiverse" # for jq 1.4+
- sudo apt-get update -qq && sudo apt-get install --yes jq
- npm install --global mustache
script:
- ./build.sh
- docker build --tag=phanect/kubuntu ./dist/$VERSION/
|
Add missing dependeicies for build.sh
|
Add missing dependeicies for build.sh
|
YAML
|
cc0-1.0
|
phanect/docker-kubuntu,phanect/docker-kubuntu
|
17b547bb40fc3c9d95a1a97cb211cd8394252465
|
.travis.yml
|
.travis.yml
|
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
|
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
branches:
only:
- master
|
Test against master branch (as well as PR's)
|
Test against master branch (as well as PR's)
|
YAML
|
mit
|
matt-clement/cram
|
e2d72c1868a9fce5798e7e68ff984312ba148eb6
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
cache:
directories:
- '$HOME/.m2/repository'
services:
- postgresql
addons:
postgresql: '9.3'
before_script:
- psql -U postgres -c 'create database databilitydb;'
|
language: java
sudo: true
jdk:
- oraclejdk8
cache:
directories:
- '$HOME/.m2/repository'
services:
- postgresql
addons:
postgresql: '9.3'
before_script:
- psql -U postgres -c 'create database databilitydb;'
|
Add sudo to remove the warning when calling 'sudo service postgresql start'
|
[Travis] Add sudo to remove the warning when calling 'sudo service postgresql start'
|
YAML
|
apache-2.0
|
tomsquest/datability
|
a0f6df8943ae2b0e640c6049b5a7aa4ef9589275
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
script: mvn package -Dmaven.javadoc.skip=true -f cascade/pom.xml
|
language: java
jdk:
- oraclejdk8
script: mvn package -Dmaven.javadoc.skip=true
|
Fix the path to pom.xml for TravisCI.
|
Fix the path to pom.xml for TravisCI.
|
YAML
|
apache-2.0
|
i49/cascade,i49/cascade
|
d98a951968477d4e7e2bd09a1198f9a5a3b39d8d
|
.travis.yml
|
.travis.yml
|
language: java
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
branches:
only:
- master
|
language: java
cache:
directories:
- $HOME/.m2
branches:
only:
- master
|
Remove gradle caching stuff, cache m2 instead.
|
Remove gradle caching stuff, cache m2 instead.
|
YAML
|
apache-2.0
|
brndnmtthws/facebook-hive-udfs
|
62672f3f0c72d93d344b203a78d51595bf9a6d53
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
install: true
script:
- ./gradlew build --exclude-task test
notifications:
slack: ftsrg:YMFDeJB1YkOli9BXOKvtoB1Y
email: false
on_success: change
on_failure: always
branches:
except:
- ingraph
|
language: java
jdk:
- oraclejdk8
install: true
script:
- ./gradlew inits build --exclude-task test
notifications:
slack: ftsrg:YMFDeJB1YkOli9BXOKvtoB1Y
email: false
on_success: change
on_failure: always
branches:
except:
- ingraph
|
Initialize scripts before testing on CI
|
Initialize scripts before testing on CI
|
YAML
|
epl-1.0
|
FTSRG/trainbenchmark,FTSRG/trainbenchmark,FTSRG/trainbenchmark,FTSRG/trainbenchmark
|
4d46bd3e8c38dfb5b34fa0b74712b7f1fa8dafc4
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "6.5"
dist: trusty
sudo: false
# vim: ts=2:sw=2:et
|
language: node_js
node_js:
- "6.9.4"
dist: trusty
sudo: false
# vim: ts=2:sw=2:et
|
Upgrade to latest node LTS.
|
Upgrade to latest node LTS.
|
YAML
|
mit
|
gchallen/code.metalsmith-linkcheck
|
e74796fb924991496536fee02b6bed496382fb5d
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.3.0
addons:
postgresql: "9.5"
services:
- postgresql
|
language: ruby
rvm:
- 2.3.0
addons:
postgresql: "9.5"
services:
- postgresql
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
|
Create test db on test rune
|
Create test db on test rune
|
YAML
|
apache-2.0
|
Redorb/Totesremotes,Redorb/Totesremotes,Redorb/Totesremotes
|
4c64c11e58bbbd96ea3ae139a568295734aaa087
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.4"
- "3.5"
install:
- pip install -U numpy
- pip install -r requirements.txt
- pip install -e .
script:
- python -m pytest sense2vec
|
language: python
python:
- "2.7"
- "3.5"
- "3.6"
install:
- pip install -U numpy
- pip install -r requirements.txt
- pip install -e .
script:
- python -m pytest sense2vec
|
Drop Python 3.4 and add Python 3.6
|
Drop Python 3.4 and add Python 3.6
|
YAML
|
mit
|
spacy-io/sense2vec,spacy-io/sense2vec,spacy-io/sense2vec
|
6fabf602e963ab536f13f967a4f8105474f19222
|
.travis.yml
|
.travis.yml
|
language: r
r:
- release
- devel
sudo: required
before_install:
- sudo apt-get install libv8-dev
- sudo apt-get install aptitude -y
- sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable
- sudo apt-get update -qq
- sudo aptitude install -y gdal-bin
- sudo aptitude install -y libgdal1-dev
- sudo aptitude install -y libproj-dev
|
language: c
sudo: required
before_install:
- curl -OL https://raw.githubusercontent.com/metacran/r-builder/master/pkg-build.sh
- chmod 755 pkg-build.sh
- ./pkg-build.sh bootstrap
- sudo apt-get install libv8-dev
- sudo apt-get install aptitude -y
- sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable
- sudo apt-get update -qq
- sudo aptitude install -y gdal-bin
- sudo aptitude install -y libgdal1-dev
- sudo aptitude install -y libproj-dev
install:
- ./pkg-build.sh install_deps
script:
- ./pkg-build.sh run_tests
after_failure:
- ./pkg-build.sh dump_logs
notifications:
email:
on_success: change
on_failure: change
env:
matrix:
- RVERSION=release
# - RVERSION=devel
|
Remove dev version build temporarily
|
Remove dev version build temporarily
|
YAML
|
apache-2.0
|
bcgov/rcaaqs
|
59e99b4f013af39e274fa7f52384601c2c1228de
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
matrix:
allow_failures:
- php: 5.3
env:
matrix:
- ES_COMPOSER_NODEV=no
- ES_COMPOSER_NODEV=yes
install:
- /bin/bash ansible/provision.sh
before_script:
- mkdir -p build/logs
- echo "extension=memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- if [ $ES_COMPOSER_NODEV == "no" ] && ! $(php -v | head -1 | grep -q 'PHP 5.3'); then sudo composer require "guzzlehttp/guzzle" "4.2.*" --dev --no-ansi --no-progress --no-interaction; fi
script:
- phpunit -c test/phpunit-travis.xml
after_script:
- cat /var/log/elasticsearch/*.log
- cat /var/log/nginx/*.log
- cat build/logs/phpunit-tap.log
- sudo composer require satooshi/php-coveralls --no-ansi --no-progress --no-interaction
- php vendor/bin/coveralls -v
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
matrix:
allow_failures:
- php: 5.3
env:
matrix:
- ES_COMPOSER_NODEV=no
- ES_COMPOSER_NODEV=yes
install:
- /bin/bash ansible/provision.sh
before_script:
- mkdir -p build/logs
- echo "extension=memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- if [ $ES_COMPOSER_NODEV == "no" ] && ! $(phpenv version-name | grep -q '5.3'); then sudo composer require "guzzlehttp/guzzle" "4.2.*" --dev --no-ansi --no-progress --no-interaction; fi
script:
- phpunit -c test/phpunit-travis.xml
after_script:
- cat /var/log/elasticsearch/*.log
- cat /var/log/nginx/*.log
- cat build/logs/phpunit-tap.log
- sudo composer require satooshi/php-coveralls --no-ansi --no-progress --no-interaction
- php vendor/bin/coveralls -v
|
Use same way as in command above to get current php version
|
Use same way as in command above to get current php version
|
YAML
|
mit
|
im-denisenko/Elastica,im-denisenko/Elastica,giorrrgio/Elastica,stof/Elastica,vlajos/Elastica,miniplay/Elastica,giorrrgio/Elastica,jeancsil/Elastica,revinate/Elastica,Mosoc/Elastica,ARAMISAUTO/Elastica,ewgRa/Elastica,giovannialbero1992/Elastica,vlajos/Elastica,eilgin/Elastica,stof/Elastica,kartikm/Elastica,miniplay/Elastica,Jmoati/Elastica,fubuki/Elastica,p365labs/Elastica,0x46616c6b/Elastica,piotrantosik/Elastica,falconavs/Elastica,splitice/Elastica,giovannialbero1992/Elastica,pborreli/Elastica,markeilander/Elastica,Gasol/Elastica,sugarcrm/Elastica,kartikm/Elastica,JustinHook/Elastica,Southparkfan/Elastica,webdevsHub/Elastica,ARAMISAUTO/Elastica,piotrantosik/Elastica,pborreli/Elastica,markeilander/Elastica,eilgin/Elastica,ruflin/Elastica,Mosoc/Elastica,webdevsHub/Elastica,sugarcrm/Elastica,jeancsil/Elastica,ebernhardson/Elastica,JustinHook/Elastica,revinate/Elastica,0x46616c6b/Elastica,Southparkfan/Elastica,p365labs/Elastica,Gasol/Elastica,fubuki/Elastica,ewgRa/Elastica,Jmoati/Elastica,falconavs/Elastica,ebernhardson/Elastica
|
81a686db1c4e4d7764d494046d8029e64fff0d7e
|
.travis.yml
|
.travis.yml
|
language: go
sudo: false
services:
- docker
go:
- 1.8.x
- tip
before_install:
- mkdir -p $HOME/bin
- curl -sL http://get.binhq.io/gitbin | DEST=$HOME/bin bash
- gitbin get Masterminds/glide 0.12.3 -o $HOME/bin
- make envcheck
install: make setup
before_script:
- export VERSION=${TRAVIS_TAG:-$TRAVIS_BRANCH}
- export $(make varexport-DOCKER_IMAGE)
script:
- make ARGS="-tags='acceptance integration' -v" check
- if [[ $TRAVIS_TAG = "$VERSION" ]]; then export DOCKER_LATEST=true; fi
- make docker
deploy:
provider: script
skip_cleanup: true
script: docker login -u $DOCKER_USER -p $DOCKER_PASS && docker push $DOCKER_IMAGE
on:
all_branches: true
condition: $TRAVIS_GO_VERSION =~ ^1\.8(\.[0-9]+)?$
|
language: go
sudo: false
services:
- docker
go:
- 1.8.x
- tip
matrix:
allow_failures:
- go: tip
before_install:
- mkdir -p $HOME/bin
- curl -sL http://get.binhq.io/gitbin | DEST=$HOME/bin bash
- gitbin get Masterminds/glide 0.12.3 -o $HOME/bin
- make envcheck
install: make setup
before_script:
- export VERSION=${TRAVIS_TAG:-$TRAVIS_BRANCH}
- export $(make varexport-DOCKER_IMAGE)
script:
- make ARGS="-tags='acceptance integration' -v" check
- if [[ $TRAVIS_TAG = "$VERSION" ]]; then export DOCKER_LATEST=true; fi
- make docker
deploy:
provider: script
skip_cleanup: true
script: docker login -u $DOCKER_USER -p $DOCKER_PASS && docker push $DOCKER_IMAGE
on:
all_branches: true
condition: $TRAVIS_GO_VERSION =~ ^1\.8(\.[0-9]+)?$
|
Allow failure for tip go version
|
Allow failure for tip go version
|
YAML
|
mit
|
deshboard/boilerplate-service,deshboard/boilerplate-crondaemon,deshboard/boilerplate-model-service,deshboard/boilerplate-grpc-service
|
9c2f96382f9ab78b83c6065b0a047ea64b02bd9a
|
.travis.yml
|
.travis.yml
|
language: cpp
dist: trusty
cache: ccache
sudo: required
services:
- docker
env:
matrix:
- OS=ubuntu DIST=xenial
- OS=ubuntu DIST=yakkety
- OS=debian DIST=jessie
- OS=debian DIST=wheezy
- OS=debian DIST=stretch
script:
- git describe --always --long
- git clone https://github.com/packpack/packpack.git packpack
- packpack/packpack
branches:
only:
- master
notifications:
email: false
|
language: cpp
dist: trusty
cache: ccache
sudo: required
services:
- docker
env:
matrix:
- OS=ubuntu DIST=xenial
- OS=ubuntu DIST=yakkety
- OS=debian DIST=jessie
- OS=debian DIST=wheezy
- OS=debian DIST=stretch
- OS=fedora DIST=23
- OS=fedora DIST=24
- OS=fedora DIST=rawhide
- OS=el DIST=7
script:
- git describe --always --long
- git clone https://github.com/packpack/packpack.git packpack
- packpack/packpack
branches:
only:
- master
notifications:
email: false
|
Add Fedora and EL as build target
|
Add Fedora and EL as build target
|
YAML
|
bsd-3-clause
|
ubunteroz/ignsdk,ubunteroz/ignsdk-debian,ubunteroz/ignsdk,ubunteroz/ignsdk-debian,ubunteroz/ignsdk,ubunteroz/ignsdk-debian
|
7c923ad6d8f4ffa9c75a20223f632199fb7900a3
|
.travis.yml
|
.travis.yml
|
language: scala
sudo: false
scala:
- 2.10.4
before_install:
- pip install --user codecov
after_success:
- codecov
|
language: scala
sudo: false
scala:
- 2.10.4
script:
- sbt clean coverage test
before_install:
- pip install --user codecov
after_success:
- codecov
|
Add coverage to the list
|
Add coverage to the list
|
YAML
|
apache-2.0
|
holdenk/spark-validator
|
03fe5fc8b26032992761d9a3b216a5cce2c38170
|
.travis.yml
|
.travis.yml
|
language: go
arch:
- amd64
- arm64
os:
- linux
- osx
go:
# 1.12 is no longer supported by apimachinery; we recommend 1.13
- 1.13.x
- 1.14.x
go_import_path: k8s.io/kops
script:
- GOPROXY=https://proxy.golang.org travis_wait 30 make nodeup examples test
jobs:
# Exclude GO 1.14 for OSX until it becomes the default because of limited availability
exclude:
- os: osx
go: 1.14.x
include:
- name: Verify
arch: amd64
os: linux
go: 1.13.x
script:
- GOPROXY=https://proxy.golang.org make travis-ci
|
language: go
arch:
- amd64
- arm64
os:
- linux
- osx
go:
# 1.12 is no longer supported by apimachinery; we recommend 1.13
- 1.13.x
- 1.14.x
go_import_path: k8s.io/kops
script:
- GOPROXY=https://proxy.golang.org travis_wait 30 make nodeup examples test
jobs:
# Exclude GO 1.14 for OSX until it becomes the default because of limited availability
exclude:
- os: osx
go: 1.13.x
- os: linux
go: 1.13.x
arch: arm64
include:
- name: Verify
arch: amd64
os: linux
go: 1.13.x
script:
- GOPROXY=https://proxy.golang.org make travis-ci
|
Reduce the number of build jobs for ARM64
|
Reduce the number of build jobs for ARM64
|
YAML
|
apache-2.0
|
justinsb/kops,justinsb/kops,justinsb/kops,kubernetes/kops,kubernetes/kops,kubernetes/kops
|
b4b934d9d733ec2d8f14ca8b17aa9131e2e1a813
|
.travis.yml
|
.travis.yml
|
# Copyright 2018 Marcel Reutegger
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses />.
sudo: false
script: mvn --batch-mode install
language: java
cache:
directories:
- $HOME/.m2
|
# Copyright 2018 Marcel Reutegger
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses />.
os: linux
script: mvn --batch-mode install
language: java
cache:
directories:
- $HOME/.m2
|
Remove deprecated sudo entry and specify os
|
Remove deprecated sudo entry and specify os
|
YAML
|
lgpl-2.1
|
mreutegg/laszip4j
|
4b2803a7581e20a4cde099cd0f308dc516878e1d
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
fast_finish: true
before_install:
- travis_retry composer self-update
install:
- composer install --prefer-source
before_script:
- echo 'phar.readonly = Off' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
script: phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
fast_finish: true
before_install:
- travis_retry composer self-update
install:
- composer install --prefer-source
before_script:
- echo 'phar.readonly = Off' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
script: phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
sudo: false
|
Switch to Travis' container-based infrastructure
|
Switch to Travis' container-based infrastructure
|
YAML
|
isc
|
secondtruth/php-phar-compiler
|
8828bd6b11aa6aa45681d9e73a8768f377bf256d
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "1.2"
after_success: npm run coveralls
|
language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "iojs"
after_success: npm run coveralls
|
Test io.js instead of a specific version
|
Test io.js instead of a specific version
|
YAML
|
mit
|
jstransformers/jstransformer-plates,jstransformers/jstransformer-plates
|
cb4fc5d81f53c3c1bbe9c4930c1d65f0008d55a8
|
.travis.yml
|
.travis.yml
|
# brian's standard Travis CI config for Perl 5 modules
# https://github.com/briandfoy/brians_perl_modules_travis_config
# This file is licensed under the Artistic License 2.0
sudo: false
language: perl
perl:
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
- "5.26"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notest Devel::Cover
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- cover -delete && cover -test
after_success:
- cover -report coveralls
|
# brian's standard Travis CI config for Perl 5 modules
# https://github.com/briandfoy/brians_perl_modules_travis_config
# This file is licensed under the Artistic License 2.0
sudo: false
language: perl
perl:
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
- "5.26"
- "5.28"
- "5.30"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notest Devel::Cover
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- cover -delete && cover -test
after_success:
- cover -report coveralls
|
Update Travis up to v5.30
|
Update Travis up to v5.30
|
YAML
|
artistic-2.0
|
briandfoy/Module-Extract-DeclaredMinimumPerl,briandfoy/Module-Extract-DeclaredMinimumPerl
|
753f7be798e81ec5cb29b84770f618e20aaf0fba
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.8.7
- 2.0.0
before_script: |
hg clone https://code.google.com/p/vim/
cd vim
./configure --with-features=huge --enable-rubyinterp
make
sudo make install
cd -
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
script: |
test/run !
|
language: ruby
rvm:
- 1.8.7
- 2.0.0
- 1.9.2 # Test with vim-nox package on ubuntu
before_script: |
if [ $(ruby -e 'puts RUBY_VERSION') = 1.9.2 ]; then
sudo apt-get update -y
sudo apt-get install -y vim-nox
sudo ln -s /usr/bin/vim /usr/local/bin/vim
else
hg clone https://code.google.com/p/vim/
cd vim
./configure --with-features=huge --enable-rubyinterp
make
sudo make install
cd -
fi
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
script: |
test/run !
|
Extend Travis CI build to use vim-nox on Ubuntu 12.04
|
Extend Travis CI build to use vim-nox on Ubuntu 12.04
|
YAML
|
mit
|
msp301/vimrc
|
0c9fda4165f5f07323bc441331aa91d2750d13ea
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: 5.6
- php: hhvm
before_script:
- if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ &; fi
script:
- php -l src/*
- if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then cd tests && phpunit --configuration phpunit.xml; fi
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: 5.6
- php: hhvm
before_script:
- if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then sh -c "php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ &"; fi
script:
- php -l src/*
- if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then cd tests && phpunit --configuration phpunit.xml; fi
|
Fix syntax error when using a trailing ampersand
|
Fix syntax error when using a trailing ampersand
|
YAML
|
unlicense
|
craa/php-curl-class,php-curl-class/php-curl-class,Worm/php-curl-class,VolCh/php-curl-class,craa/php-curl-class,tillz/php-curl-class,jack-theripper/php-curl-class,evcehiack/php-curl-class,Worm/php-curl-class,petewatts/php-curl-class,SahilDude89ss/php-curl-class,Savageman/php-curl-class,jahanzaibbahadur/php-curl-class,taohaoge/php-curl-class,ptrnov/php-curl-class,thebeline/php-curl-class,ptrnov/php-curl-class,sebwas/php-curl-class,evcehiack/php-curl-class,marius321967/php-curl-class,zachborboa/php-curl-class,ValerioOnGithub/php-curl-class,taohaoge/php-curl-class,heatery/php-curl-class,SahilDude89ss/php-curl-class,ValerioOnGithub/php-curl-class,VolCh/php-curl-class,smartkey86/php-curl-class,hebaoxia/php-curl-class,php-curl-class/php-curl-class,jahanzaibbahadur/php-curl-class,smartkey86/php-curl-class,heatery/php-curl-class,hebaoxia/php-curl-class,thebeline/php-curl-class,sebwas/php-curl-class,php-curl-class/php-curl-class,zachborboa/php-curl-class,Jiangyoung/php-curl-class,tillz/php-curl-class,jack-theripper/php-curl-class,zachborboa/php-curl-class,petewatts/php-curl-class,Savageman/php-curl-class,Jiangyoung/php-curl-class
|
015b1fc123a42bcc83f437267b1075c848f604d6
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: trusty
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
before_install:
- sudo add-apt-repository ppa:mc3man/trusty-media -y
- sudo apt-get update -qq
- sudo apt-get install -qq ffmpeg rtmpdump swftools
install:
- "pip install -r requirements.txt"
script:
- export PYTHONPATH=.:$PYTHONPATH
- nosetests
|
sudo: required
dist: trusty
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
before_install:
- sudo add-apt-repository ppa:mc3man/trusty-media -y
- sudo apt-get update -qq
- sudo apt-get install -qq ffmpeg rtmpdump swftools
install:
- "pip install -r requirements.txt"
script:
- export PYTHONPATH=.:$PYTHONPATH
- travis_wait 20 nosetests
|
Increase wait timeout to avoid unstable Travis builds
|
Increase wait timeout to avoid unstable Travis builds
|
YAML
|
bsd-2-clause
|
cykl/infoqscraper
|
ce6de335d298ed1a1eb1450e621b6c3d35d709db
|
.travis.yml
|
.travis.yml
|
language: java
sudo: false
dist: trusty
install: true
addons:
firefox: latest
install:
- sudo apt-add-repository "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main"
- sudo add-apt-repository ppa:cwchien/gradle
- sudo sed -i s/deb-src.*google.*//g /etc/apt/sources.list
- wget -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
- sudo apt-get update -qq
- sudo apt-get install -y google-chrome-stable gradle
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start &
- sleep 3
script:
- gradle -v && gradle test
|
language: java
sudo: false
dist: trusty
install: true
addons:
firefox: latest
install:
- sudo apt-add-repository "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main"
- sudo sed -i s/deb-src.*google.*//g /etc/apt/sources.list
- wget -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
- sudo apt-get update -qq
- sudo apt-get install -y google-chrome-stable
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start &
- sleep 3
script:
- gradle -v && gradle test
|
Revert "Update Gradle in Travis"
|
Revert "Update Gradle in Travis"
This reverts commit 046b62510a352a62f06ab5eadd94d8d47511a9ba.
|
YAML
|
apache-2.0
|
bonigarcia/mastering-junit5,bonigarcia/mastering-junit5
|
fe590d2689488b343bf31e3b602d77db7e7f12f6
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
cache: bundler
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
- wget
- unzip
- ssh
matrix:
include:
# WE SUPPORT UPGRADES OF CHEF 11.x on RUBY 1.9.3 VIA chef_client_updater COOKBOOK
- rvm: 1.9.3
bundler_args: --without chefstyle functional --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
script:
- bundle exec rake unit
- bundle exec rake functional
- rvm: 2.0
- rvm: 2.1.10
- rvm: 2.2.10
- rvm: 2.3.7
- rvm: 2.4.4
- rvm: 2.5.1
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
branches:
only:
- master
script:
- bundle exec rake travis:ci
before_install:
- gem install bundler
- bundle --version
- gem update --system
- gem --version
|
sudo: false
language: ruby
cache: bundler
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
- wget
- unzip
- ssh
matrix:
include:
# WE SUPPORT UPGRADES OF CHEF 11.x on RUBY 1.9.3 VIA chef_client_updater COOKBOOK
- rvm: 1.9.3
bundler_args: --without chefstyle functional --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
script:
- bundle exec rake unit
- bundle exec rake functional
- rvm: 2.0
- rvm: 2.1.10
- rvm: 2.2.10
- rvm: 2.3.7
- rvm: 2.4.4
- rvm: 2.5.1
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
branches:
only:
- master
bundler_args: --without docs development
before_install:
- gem install bundler
- bundle --version
- gem update --system
- gem --version
script: bundle exec rake
|
Exclude the gems we don't need for Travis
|
Exclude the gems we don't need for Travis
Signed-off-by: Tim Smith <[email protected]>
|
YAML
|
apache-2.0
|
chef/mixlib-install,chef/mixlib-install,chef/mixlib-install
|
a0bd1d2f17b1683831f04f5dffa81653e4e71776
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- "5"
- "4"
- "0.12"
before_script:
- npm prune
after_success: npm run coverage
branches:
except:
- "/^v\\d+\\.\\d+\\.\\d+$/"
|
sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- "5"
- "4"
before_script:
- npm prune
after_success: npm run coverage
branches:
except:
- "/^v\\d+\\.\\d+\\.\\d+$/"
|
Remove Node v0.12 from tests
|
Remove Node v0.12 from tests
|
YAML
|
mit
|
ericclemmons/npm-install-loader,ericclemmons/babel-plugin-auto-install,ericclemmons/npm-install-webpack-plugin,ericclemmons/npm-install-webpack-plugin
|
e9b9562a60d69c57251e6d3a12424bb357f527b3
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.7
- 3.4
- 3.5
# https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
install:
- pip install Cython
- pip install numpy
- pip install matplotlib
- pip install iminuit
- pip install pytest pytest-cov pytest-mpl
# ipython needed for docs: IPython.sphinxext.ipython_directive
- pip install ipython sphinx sphinx_rtd_theme
script:
- python setup.py build_ext -i
- python -m pytest
- python -m pytest --mpl tests/test_plotting.py
- cd doc && make html
|
language: python
python:
- 2.7
- 3.4
- 3.5
# https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
install:
- pip install Cython
- pip install numpy
- pip install matplotlib
- pip install iminuit
- pip install pytest pytest-cov pytest-mpl
- pip install pylint
# ipython needed for docs: IPython.sphinxext.ipython_directive
- pip install ipython sphinx sphinx_rtd_theme
script:
- make flake8
- make pylint
- make test
- cd doc && make html
|
Use Makefile target in CI tests.
|
Use Makefile target in CI tests.
Also run start running pylint again.
|
YAML
|
mit
|
iminuit/probfit,iminuit/probfit
|
b812fa8d24fb84c5bdf5e0e965c69d6e833a039c
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.8"
env:
- NODE_ENV=development
before_install:
- npm install -g npm
- npm install -g nodemon
# - npm install -g codeclimate-test-reporter
#before_script:
# - npm install
#addons:
# code_climate:
# repo_token: adf08323...
#after_script:
# - codeclimate-test-reporter < lcov.info
|
language: node_js
node_js:
- "0.12"
# - "0.11"
# - "0.10"
# - "0.8"
env:
- NODE_ENV=development
before_install:
- npm install -g npm
- npm install -g nodemon
- npm install -g grunt-cli
- npm install -g bower
# - npm install -g codeclimate-test-reporter
before_script:
- bower install
# - grunt build
#addons:
# code_climate:
# repo_token: adf08323...
#after_script:
# - codeclimate-test-reporter < lcov.info
|
Add grunt and bower. Less node environments.
|
Add grunt and bower. Less node environments.
|
YAML
|
mit
|
Jbelmonte/docker-manager-ui,Jbelmonte/docker-manager-ui
|
caadb848420c2ab0f0ed182c02596a5595346e5e
|
.travis.yml
|
.travis.yml
|
script: "bundle exec rake cucumber"
rvm:
- 1.9.3
- 1.9.2
- 1.8.7
- ree-1.8.7
gemfile:
- gemfiles/3.0.9.gemfile
- gemfiles/3.1.3.gemfile
- gemfiles/3.2.1.gemfile
branches:
only:
- master
|
script: "bundle exec rake cucumber"
rvm:
- 1.9.3
- 1.9.2
- 1.8.7
- ree-1.8.7
gemfile:
- gemfiles/3.0.gemfile
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
branches:
only:
- master
|
Update Travis configuration to reflect new gemfile
|
Update Travis configuration to reflect new gemfile
|
YAML
|
mit
|
thoughtbot/diesel
|
57b7ce67ea2293b3f8acbe91a711cf89918b945e
|
.travis.yml
|
.travis.yml
|
language : rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libsdl2-dev libsdl2-image-dev
|
language : rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
global:
- LD_LIBRARY_PATH: /usr/local/lib
install:
- cd ..
- time wget -q http://www.libsdl.org/release/SDL2-2.0.3.tar.gz
- time wget -q http://www.libsdl.org/projects/SDL_image/release/SDL2_image-2.0.0.tar.gz
- time tar xf SDL2-*.tar.gz
- time tar xf SDL2_image-*.tar.gz
- cd SDL2-*
- ./configure && make && sudo make install
- cd -
- cd SDL2_image-*
- ./configure && make && sudo make install
- cd -
|
Build SDL2 from source for Travis
|
Build SDL2 from source for Travis
|
YAML
|
apache-2.0
|
swatteau/sokoban-rs,tempbottle/sokoban-rs
|
e304bf17444289add03aa50ee28e9df314a07efd
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
|
sudo: false
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
|
Test on `stable` instead of `iojs`
|
Test on `stable` instead of `iojs`
|
YAML
|
mit
|
imagemin/jpegoptim-bin
|
f49184b26f13b93ea507747dd2265a02f8dd869e
|
.travis.yml
|
.travis.yml
|
language: ruby
before_install:
- gem install bundler
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.1.1"
- "2.1.2"
- "2.1.4"
- "2.2.0"
- "2.3.1"
- "2.4.1"
|
language: ruby
before_install:
- gem install bundler
os:
- linux
- osx
rvm:
- "2.3.8"
- "2.4.5"
- "2.5.5"
- "2.6.3"
|
Update Ruby and OS coverage for Travis
|
Update Ruby and OS coverage for Travis
|
YAML
|
mit
|
neilslater/ruby_nex_cpp,neilslater/ruby_nex_cpp,neilslater/ruby_nex_cpp
|
f3f57e8ea67438121e1635dc9a00de40d4cccef5
|
.travis.yml
|
.travis.yml
|
---
language: node_js
node_js:
- '0.10'
script:
- npm test
- npm run lint
|
---
language: node_js
node_js: node
script:
- npm test
- npm run lint
|
Configure Travis CI to test on latest Node.js
|
Configure Travis CI to test on latest Node.js
|
YAML
|
mit
|
mafintosh/content-addressable-blob-store
|
fd487d123f017373afaa2d5caf90bc699a2f9a68
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.10.16'
- '0.11'
- '0.12'
- 'iojs-v1'
- 'iojs-v2'
- 'iojs-v2'
- '4.0'
services:
- redis-server
script:
- npm run test:cov
env:
- INSTALL_HIREDIS="yes"
- INSTALL_HIREDIS="no"
before_script:
- if [ "$INSTALL_HIREDIS" = "yes" ]; then npm install hiredis; fi
addons:
code_climate:
repo_token: 4cee2f60edbf31acac6ddff823f0b93e2e9882c3e5c55130049e0fd878549f84
after_success:
- if [ "$INSTALL_HIREDIS" = "yes" ]; then cat ./coverage/lcov.info | ./node_modules/.bin/codeclimate; fi
|
language: node_js
node_js:
- '0.10.16'
- '0.11'
- '0.12'
- 'iojs-v1'
- 'iojs-v2'
- 'iojs-v2'
- '3.0'
- '4.0'
services:
- redis-server
script:
- npm run test:cov
env:
- CXX=g++-4.8 INSTALL_HIREDIS="yes"
- INSTALL_HIREDIS="no"
before_script:
- if [ "$INSTALL_HIREDIS" = "yes" ]; then npm install hiredis; fi
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
code_climate:
repo_token: 4cee2f60edbf31acac6ddff823f0b93e2e9882c3e5c55130049e0fd878549f84
after_success:
- if [ "$INSTALL_HIREDIS" = "yes" ]; then cat ./coverage/lcov.info | ./node_modules/.bin/codeclimate; fi
|
Add tests for Node.js 3.0 & 4.0. Use g++-4.8
|
Add tests for Node.js 3.0 & 4.0. Use g++-4.8
|
YAML
|
mit
|
xuyanxiang/ioredis,nswbmw/ioredis,ColmHally/ioredis,DynamicYield/ioredis,DynamicYield/ioredis,AVVS/ioredis,pensierinmusica/ioredis,luin/ioredis,mtlima/ioredis,luin/ioredis,luin/ioredis,paskakaska/ioredis
|
168d9347a222296d0630fa274395db61e34bf542
|
.travis.yml
|
.travis.yml
|
language: cpp
install:
- export INITIAL_DIR=$PWD
- wget --no-check-certificate https://cmake.org/files/v3.6/cmake-3.6.2-Linux-x86_64.tar.gz -O /tmp/cmake.tar.gz
- tar -xvf /tmp/cmake.tar.gz
- export PATH=$PWD/cmake-3.6.2-Linux-x86_64/bin/:$PATH
- git clone https://github.com/google/googletest
- cd googletest
- mkdir myBuild
- cd myBuild
- cmake -DCMAKE_INSTALL_PREFIX=$PWD/myInstall ..
- export PATH=$PWD/myInstall:$PATH
- export CMAKE_PREFIX_PATH=$PWD/myInstall:$CMAKE_PREFIX_PATH
- make
- make install
- cd $INITIAL_DIR
compiler:
- clang
branches:
only:
- master
before_script:
- mkdir build
- cd build
- cmake ..
script: make all test
|
language: cpp
install:
- export INITIAL_DIR=$PWD
- wget --no-check-certificate https://cmake.org/files/v3.6/cmake-3.6.2-Linux-x86_64.tar.gz -O /tmp/cmake.tar.gz
- tar -xvf /tmp/cmake.tar.gz
- export PATH=$PWD/cmake-3.6.2-Linux-x86_64/bin/:$PATH
- git clone https://github.com/google/googletest
- cd googletest
- git checkout release-1.8.0
- mkdir myBuild
- cd myBuild
- cmake -DCMAKE_INSTALL_PREFIX=$PWD/myInstall ..
- export PATH=$PWD/myInstall:$PATH
- export CMAKE_PREFIX_PATH=$PWD/myInstall:$CMAKE_PREFIX_PATH
- make
- make install
- cd $INITIAL_DIR
compiler:
- clang
- gcc
branches:
only:
- master
before_script:
- mkdir build
- cd build
- cmake ..
script: make all test
|
Add google test version and compiler
|
Add google test version and compiler
|
YAML
|
mit
|
klalumiere/DelayedConstructor,klalumiere/DelayedConstructor
|
c5a2433daeaa8593ed334f0622684fe55cb9203b
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
cache: bundler
before_install:
- gem update --system
- rvm @global do gem uninstall bundler -a -x
- rvm @global do gem install bundler -v 1.13.7
script: ./script/ci
rvm:
- 2.3.5
- 2.4.2
- ruby-head
- jruby-9.1.13.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/fde2367248d53de4fe70
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
|
language: ruby
sudo: false
cache: bundler
script: ./script/ci
rvm:
- 2.3.5
- 2.4.2
- ruby-head
- jruby-9.1.13.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/fde2367248d53de4fe70
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
|
Remove hack to install newest bundler for Travis CI
|
Remove hack to install newest bundler for Travis CI
|
YAML
|
mit
|
lotus/mailer,hanami/mailer,lotus/mailer,hanami/mailer,hanami/mailer
|
0e52af5cc90be3b17ef0bf2d219a977c223f50fc
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '4.0'
- '9.0'
after_script: bash <(curl -s https://codecov.io/bash)
sudo: false
deploy:
- provider: npm
skip_cleanup: true
email: [email protected]
api_key:
secure: N9kjXzHlOk0y5AzD3H4rWIBWaJsqZyWAAjyIezHzwIfA3S54BiVQWRQ87VDeytdeq3MNGBn7DZxH3dEy6JiZKPy2AsXo76pEsYknU8dPxV0e6vZn3yT6eojn5p49w29viYCbYwcxinwU/Fugvn98K1W81/B+hhrz5hxK719P6FA=
on:
tags: true
node: '9.0'
- provider: releases
skip_cleanup: true
api_key:
secure: DfkFffCbPB92KCWByAcQTcL143u6ftLNlHfvlhJZGIkawhKDfJgzjuzat882Wcpw+xkLIZ685GWTGUcVQ2UBYjY9KnCkdkwNBkPGlrTPR82zmsyg+1hvPIfURop4d0xiwtkDaQLnBKQBEPYvcQ73fisYzOiZSrMIx/fSr0UqvcQ=
file:
- "nlcst-emoji-modifier.js"
- "nlcst-emoji-modifier.min.js"
on:
tags: true
node: '9.0'
|
language: node_js
node_js:
- '4.0'
- '9.0'
after_script: bash <(curl -s https://codecov.io/bash)
sudo: false
deploy:
provider: releases
skip_cleanup: true
api_key:
secure: DfkFffCbPB92KCWByAcQTcL143u6ftLNlHfvlhJZGIkawhKDfJgzjuzat882Wcpw+xkLIZ685GWTGUcVQ2UBYjY9KnCkdkwNBkPGlrTPR82zmsyg+1hvPIfURop4d0xiwtkDaQLnBKQBEPYvcQ73fisYzOiZSrMIx/fSr0UqvcQ=
file:
- "nlcst-emoji-modifier.js"
- "nlcst-emoji-modifier.min.js"
on:
tags: true
node: '9.0'
|
Remove npm deployment from Travis
|
Remove npm deployment from Travis
|
YAML
|
mit
|
syntax-tree/nlcst-emoji-modifier,wooorm/nlcst-emoji-modifier
|
6579984898aae88ef52cfba2555499441118165a
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
install:
- sh -c 'cd jOOR && mvn install -DskipTests=true'
- sh -c 'cd jOOR-java-6 && mvn install -DskipTests=true'
script:
- sh -c 'cd jOOR && mvn test'
- sh -c 'cd jOOR-java-6 && mvn test'
|
language: java
jdk:
- oraclejdk8
- oraclejdk9
install:
- sh -c 'cd jOOR && mvn install -DskipTests=true'
- sh -c 'cd jOOR-java-6 && mvn install -DskipTests=true'
script:
- sh -c 'cd jOOR && mvn test'
- sh -c 'cd jOOR-java-6 && mvn test'
|
Build jOOR also with JDK 9
|
Build jOOR also with JDK 9
|
YAML
|
apache-2.0
|
jOOQ/jOOR
|
186da1e0daf96c4cd3d23f97be3ca6e26dff68c6
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.5
- 5.6
- 7.0
- nightly
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-dist --no-interaction
script: phpunit
|
language: php
php:
- 5.6
- 7.0
- nightly
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-dist --no-interaction
script: phpunit
|
Support for PHP 5.5 phased out.
|
Support for PHP 5.5 phased out.
|
YAML
|
mit
|
olssonm/identity-number
|
87a02cbf77ac98491a73fa634a2da41f640edf56
|
.travis.yml
|
.travis.yml
|
sudo: false
language: cpp
compiler:
- gcc
- clang
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.7" CC="gcc-4.7"; fi
script:
- mkdir build
- cd build
- cmake ..
- ctest -D ExperimentalBuild
- ctest -D ExperimentalMemCheck
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- kalakris-cmake
packages:
- gcc-4.7
- g++-4.7
- valgrind
- cmake
|
sudo: false
language: cpp
compiler:
- gcc
- clang
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.7" CC="gcc-4.7"; fi
script:
- mkdir build
- cd build
- cmake ..
- make
- ctest -D ExperimentalBuild
- ctest -D ExperimentalMemCheck
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- kalakris-cmake
packages:
- gcc-4.7
- g++-4.7
- valgrind
- cmake
|
Make added as extra step.
|
CI: Make added as extra step.
|
YAML
|
bsd-2-clause
|
offa/seasocks,offa/seasocks,offa/seasocks,mattgodbolt/seasocks,offa/seasocks,offa/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks,offa/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks
|
61121a716750d6113f95255c640ed5c35b7d73fd
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.0
- 7.1
- 7.2
- master
before_script:
- composer self-update
- composer install
script:
- composer validate
- vendor/bin/parallel-lint src/ tests/
- vendor/bin/phpunit
- vendor/bin/phpstan analyze src tests --level=7
- vendor/bin/php-cs-fixer fix --rules=@PSR2 -v --dry-run --stop-on-violation --using-cache=no .
|
language: php
php:
- 7.0
- 7.1
- 7.2
- master
matrix:
allow_failures:
- php: master
before_script:
- composer self-update
- composer install
script:
- composer validate
- vendor/bin/parallel-lint src/ tests/
- vendor/bin/phpunit
- vendor/bin/phpstan analyze src tests --level=7
- vendor/bin/php-cs-fixer fix --rules=@PSR2 -v --dry-run --stop-on-violation --using-cache=no .
|
Allow failure with PHP master
|
Allow failure with PHP master
|
YAML
|
mit
|
villfa/php-invert-color
|
8010fa41950f19e0873b6fd2a4f6e912b33235db
|
.travis.yml
|
.travis.yml
|
os: linux
dist: focal
language: php
env:
- PATH="app/vendor/bin:${PATH}"
php:
- 7.4
- nightly
jobs:
allow_failures:
- php: nightly
services:
- memcached
- redis
cache:
directories:
- $HOME/.composer/cache
- $HOME/.npm
- app/vendor
before_install:
- printf "\n" | pecl install -f apcu-5.1.18 memcached
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
install:
- composer install --no-suggest
- npm ci
script:
- npm run production --verbose
- php-cs-fixer fix --diff --dry-run
- psalm --show-info=true
- phpunit --coverage-text
before_deploy: make artifacts
deploy:
on:
tags: true
provider: releases
token: ${GITHUB_TOKEN}
name: v${TRAVIS_TAG}
tag_name: ${TRAVIS_TAG}
draft: true
file:
- artifacts/DirectoryLister-${TRAVIS_TAG}.tar.gz
- artifacts/DirectoryLister-${TRAVIS_TAG}.zip
edge: true
|
os: linux
dist: bionic
language: php
env:
- PATH="app/vendor/bin:${PATH}"
php:
- 7.2
- 7.3
- 7.4
- nightly
jobs:
allow_failures:
- php: nightly
services:
- memcached
- redis
cache:
directories:
- $HOME/.composer/cache
- $HOME/.npm
- app/vendor
before_install:
- printf "\n" | pecl install -f apcu-5.1.18 memcached
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
install:
- composer update
- npm ci
script:
- npm run production --verbose
- php-cs-fixer fix --diff --dry-run
- psalm --show-info=true
- phpunit --coverage-text
before_deploy: make artifacts
deploy:
on:
tags: true
provider: releases
token: ${GITHUB_TOKEN}
name: v${TRAVIS_TAG}
tag_name: ${TRAVIS_TAG}
draft: true
file:
- artifacts/DirectoryLister-${TRAVIS_TAG}.tar.gz
- artifacts/DirectoryLister-${TRAVIS_TAG}.zip
edge: true
|
Test PHP 7.2, 7.3 and 7.4 in Travis tests
|
Test PHP 7.2, 7.3 and 7.4 in Travis tests
|
YAML
|
mit
|
DirectoryLister/DirectoryLister,DirectoryLister/DirectoryLister,DirectoryLister/DirectoryLister,DirectoryLister/DirectoryLister
|
47bf3b11f30cf3a33239565d92012aa5e22bac55
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- pypy
env:
- TEST_RELEASE=false
- TEST_RELEASE=true
- NGHTTP2=true
- HYPER_FAST_PARSE=true
matrix:
allow_failures:
- env: TEST_RELEASE=true
exclude:
- env: NGHTTP2=true
python: pypy
install:
- ".travis/install.sh"
script:
- >
if [[ "$TEST_RELEASE" == true ]]; then
py.test test_release.py
else
if [[ $TRAVIS_PYTHON_VERSION == pypy ]]; then
py.test test/
else
py.test -n 4 --cov hyper test/
coverage report -m --fail-under 100
fi
fi
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- pypy
env:
- TEST_RELEASE=false HYPER_FAST_PARSE=false
- TEST_RELEASE=false HYPER_FAST_PARSE=true
- TEST_RELEASE=true HYPER_FAST_PARSE=false
- TEST_RELEASE=true HYPER_FAST_PARSE=true
- NGHTTP2=true
matrix:
allow_failures:
- env: TEST_RELEASE=true
exclude:
- env: NGHTTP2=true
python: pypy
install:
- ".travis/install.sh"
script:
- >
if [[ "$TEST_RELEASE" == true ]]; then
py.test test_release.py
else
if [[ $TRAVIS_PYTHON_VERSION == pypy ]]; then
py.test test/
else
py.test -n 4 --cov hyper test/
coverage report -m --fail-under 100
fi
fi
|
Use HYPER_FAST_PARSE in release tests as well.
|
Use HYPER_FAST_PARSE in release tests as well.
|
YAML
|
mit
|
lawnmowerlatte/hyper,jdecuyper/hyper,fredthomsen/hyper,plucury/hyper,jdecuyper/hyper,Lukasa/hyper,irvind/hyper,masaori335/hyper,fredthomsen/hyper,lawnmowerlatte/hyper,irvind/hyper,plucury/hyper,masaori335/hyper,Lukasa/hyper
|
34ab9e303fd0782b2691d18ad910040f08f8e3bc
|
.travis.yml
|
.travis.yml
|
language: rust
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --verbose
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=cssparser/index.html>' > target/doc/index.html &&
sudo pip install ghp-import &&
ghp-import -n target/doc &&
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
env:
- secure: N66sY4jTqznkJRTNshbib1o7GpgPN8Rw66KFGkRxDfuDOZGkpmTWRPP4tLwmbFfdMOSFKd8Q1OTUOGqvRgny4TErcCF+E56/tUSdGfOFqKeGqowUGhRBLx4eso8FP1ECCTEEZE4hEs1Yb10BrPvZU6YmdBcc5e8YeDZBTAhqMUE=
|
sudo: false
language: rust
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --verbose
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=cssparser/index.html>' > target/doc/index.html &&
pip install --user ghp-import &&
~/.local/bin/ghp-import -n target/doc &&
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
env:
- secure: N66sY4jTqznkJRTNshbib1o7GpgPN8Rw66KFGkRxDfuDOZGkpmTWRPP4tLwmbFfdMOSFKd8Q1OTUOGqvRgny4TErcCF+E56/tUSdGfOFqKeGqowUGhRBLx4eso8FP1ECCTEEZE4hEs1Yb10BrPvZU6YmdBcc5e8YeDZBTAhqMUE=
|
Use hopefully faster container-based builders on Travis-CI.
|
Use hopefully faster container-based builders on Travis-CI.
|
YAML
|
mpl-2.0
|
notriddle/rust-cssparser,tempbottle/rust-cssparser,servo/rust-cssparser,servo/rust-cssparser,disjukr/rust-cssparser,tempbottle/rust-cssparser,notriddle/rust-cssparser,disjukr/rust-cssparser
|
8b378c67f6d5e0ca3effa1ab9cdce401c694b2d1
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.6
- 0.8
services: mongodb
|
language: node_js
node_js:
- 0.6
- 0.8
- 0.10
- 0.12
- 4.2
- 5.0
services: mongodb
|
Test against more Node.js versions on Travis CI
|
Test against more Node.js versions on Travis CI
|
YAML
|
mit
|
ratson/monk
|
f5d44667b81356e3f8ea43e2cd682add7d8b39b2
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
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
- make zic && make
|
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
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
- make zic && make
|
Test with Node.js 5.1 on Travis CI.
|
Test with Node.js 5.1 on Travis CI.
|
YAML
|
mit
|
bigeasy/timezone,bigeasy/timezone,bigeasy/timezone
|
79c08c1ce1f02ba8af941c4f8aa1f0fd13753f79
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- composer self-update
- composer update
|
language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- composer self-update
- composer update
- echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
|
Include mongo.so to run LiteCQRS tests.
|
Include mongo.so to run LiteCQRS tests.
|
YAML
|
mit
|
beberlei/litecqrs-php,LidskaSila/Glow
|
06bc5e8ce8249b405218a731f8c01a4ebfdef888
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '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.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
Test with latest Node.js 4 on Travis CI.
|
Test with latest Node.js 4 on Travis CI.
|
YAML
|
mit
|
bigeasy/establishment,bigeasy/establishment
|
ec2e9848a021cddae69a5cbb89e21274cc496fa6
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
|
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
|
Remove ruby 1.8.7 from ci config
|
Remove ruby 1.8.7 from ci config
|
YAML
|
mit
|
sosedoff/net-ssh-session
|
7a40739e76fdf2941244f1f03eaa06f34b1cb6e0
|
.travis.yml
|
.travis.yml
|
language: cpp
compiler:
- gcc
- clang
env:
- BUILD_CONFIGURATION=0
- BUILD_CONFIGURATION=1
- BUILD_CONFIGURATION=2
- BUILD_CONFIGURATION=3
- BUILD_CONFIGURATION=4
- BUILD_CONFIGURATION=5
- BUILD_CONFIGURATION=6
- BUILD_CONFIGURATION=7
- BUILD_CONFIGURATION=8
- BUILD_CONFIGURATION=9
- BUILD_CONFIGURATION=10
- BUILD_CONFIGURATION=11
- BUILD_CONFIGURATION=12
- BUILD_CONFIGURATION=13
- BUILD_CONFIGURATION=14
- BUILD_CONFIGURATION=15
branches:
only:
- master
script: ctest -VV -S ./CMake/usCTestScript_travis.cmake
|
language: cpp
compiler:
- gcc
- clang
env:
- BUILD_CONFIGURATION=0
- BUILD_CONFIGURATION=1
- BUILD_CONFIGURATION=2
- BUILD_CONFIGURATION=3
- BUILD_CONFIGURATION=4
- BUILD_CONFIGURATION=5
- BUILD_CONFIGURATION=6
- BUILD_CONFIGURATION=7
- BUILD_CONFIGURATION=8
- BUILD_CONFIGURATION=9
- BUILD_CONFIGURATION=10
- BUILD_CONFIGURATION=11
- BUILD_CONFIGURATION=12
- BUILD_CONFIGURATION=13
- BUILD_CONFIGURATION=14
- BUILD_CONFIGURATION=15
branches:
only:
- master
- development
script: ctest -VV -S ./CMake/usCTestScript_travis.cmake
|
Build the development branch with Travis.
|
Build the development branch with Travis.
|
YAML
|
apache-2.0
|
saschazelzer/CppMicroServices,CppMicroServices/CppMicroServices,CppMicroServices/CppMicroServices,Heather/CppMicroServices,ksubramz/CppMicroServices,quinnlin/CppMicroServices,quinnlin/CppMicroServices,mobileFX/CppMicroServices,ksubramz/CppMicroServices,mobileFX/CppMicroServices,ksubramz/CppMicroServices,CppMicroServices/CppMicroServices,CppMicroServices/CppMicroServices,saschazelzer/CppMicroServices,Heather/CppMicroServices,ksubramz/CppMicroServices,ksubramz/CppMicroServices,CppMicroServices/CppMicroServices
|
200f09d2a0d391cea106dec4caad7431e4b73413
|
.travis.yml
|
.travis.yml
|
language: php
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
- npm install bower less grunt-cli -g
- npm install
- bower install
- grunt
php:
- 5.4
- 5.5
- 5.6
- hhvm
script: bin/phpunit --configuration phpunit.xml --coverage-text
|
language: php
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
- npm install bower less grunt-cli -g
- npm install
- bower install
- grunt
php:
- 5.4
- 5.5
- 5.6
- hhvm
- nightly
script: bin/phpunit --configuration phpunit.xml --coverage-text
|
Test PHP7 as well on Travis CI
|
Test PHP7 as well on Travis CI
|
YAML
|
mpl-2.0
|
thorsten/phpMyFAQ,thorsten/phpMyFAQ,thorsten/phpMyFAQ,thorsten/phpMyFAQ
|
63350e56884be1f9e5bb91418b67fb7b4b75da15
|
.travis.yml
|
.travis.yml
|
sudo: false
git:
depth: 10
language: node_js
node_js: 6
env:
- CC=clang CXX=clang++ npm_config_clang=1
script: npm test
|
sudo: false
git:
depth: 10
language: node_js
node_js: 6
env:
- CC=clang CXX=clang++ npm_config_clang=1
script: npm test
notifications:
email:
on_success: never
on_failure: change
|
Add notification settings to Travis
|
Add notification settings to Travis
|
YAML
|
mit
|
atom/superstring,atom/superstring,atom/superstring,atom/superstring,atom/superstring
|
0e391545dfb6cc07239a01466823b287c5b393e6
|
src/modules/core/producer_tone.yml
|
src/modules/core/producer_tone.yml
|
schema_version: 0.1
type: producer
identifier: tone
title: Tone
version: 1
copyright: Meltytech, LLC
creator: Brian Matherly
license: LGPLv2.1
language: en
tags:
- Audio
description: >
Generate audio tones.
parameters:
- identifier: frequency
title: Frequency
type: float
description: >
The frequency of the tone.
units: Hz
default: 1000.0
readonly: no
mutable: yes
widget: spinner
- identifier: phase
title: Phase
type: float
description: >
The phase of the tone.
units: degrees
default: 0.0
readonly: no
mutable: yes
widget: spinner
- identifier: level
title: Level
type: float
description: >
The peak level of the tone.
units: dB
default: 0.0
readonly: no
mutable: yes
widget: spinner
|
schema_version: 0.1
type: producer
identifier: tone
title: Tone
version: 1
copyright: Meltytech, LLC
creator: Brian Matherly
license: LGPLv2.1
language: en
tags:
- Audio
description: >
Generate audio tones.
parameters:
- identifier: frequency
title: Frequency
type: float
description: >
The frequency of the tone.
unit: Hz
default: 1000.0
readonly: no
mutable: yes
widget: spinner
- identifier: phase
title: Phase
type: float
description: >
The phase of the tone.
unit: degrees
default: 0.0
readonly: no
mutable: yes
widget: spinner
- identifier: level
title: Level
type: float
description: >
The peak level of the tone.
unit: dB
default: 0.0
readonly: no
mutable: yes
widget: spinner
|
Fix invalid YAML for tone producer.
|
Fix invalid YAML for tone producer.
|
YAML
|
lgpl-2.1
|
wideioltd/mlt,anba8005/mlt,j-b-m/mlt,zzhhui/mlt,mltframework/mlt,anba8005/mlt,xzhavilla/mlt,zzhhui/mlt,j-b-m/mlt,xzhavilla/mlt,siddharudh/mlt,xzhavilla/mlt,siddharudh/mlt,wideioltd/mlt,wideioltd/mlt,mltframework/mlt,xzhavilla/mlt,zzhhui/mlt,xzhavilla/mlt,anba8005/mlt,mltframework/mlt,zzhhui/mlt,zzhhui/mlt,mltframework/mlt,wideioltd/mlt,wideioltd/mlt,mltframework/mlt,j-b-m/mlt,wideioltd/mlt,zzhhui/mlt,siddharudh/mlt,j-b-m/mlt,mltframework/mlt,j-b-m/mlt,xzhavilla/mlt,anba8005/mlt,mltframework/mlt,mltframework/mlt,mltframework/mlt,j-b-m/mlt,wideioltd/mlt,wideioltd/mlt,siddharudh/mlt,siddharudh/mlt,zzhhui/mlt,siddharudh/mlt,mltframework/mlt,j-b-m/mlt,j-b-m/mlt,anba8005/mlt,zzhhui/mlt,j-b-m/mlt,zzhhui/mlt,anba8005/mlt,xzhavilla/mlt,siddharudh/mlt,anba8005/mlt,siddharudh/mlt,xzhavilla/mlt,xzhavilla/mlt,siddharudh/mlt,anba8005/mlt,j-b-m/mlt,wideioltd/mlt,anba8005/mlt
|
d4ba8b33d5275fd431c00f5601a32749d6d2a571
|
stack.yaml
|
stack.yaml
|
resolver: lts-13.25
packages:
- .
flags: {}
extra-package-dbs: []
|
resolver: lts-13.25
packages:
- .
flags: {}
extra-package-dbs: []
nix:
packages: [zlib.dev, zlib.out, pkgconfig, haskell.compiler.ghc865]
|
Add Nix information for the lucky few.
|
Add Nix information for the lucky few.
|
YAML
|
isc
|
diku-dk/futhark,HIPERFIT/futhark,HIPERFIT/futhark,HIPERFIT/futhark,diku-dk/futhark,diku-dk/futhark,diku-dk/futhark,diku-dk/futhark
|
faba14fa18195da7ed5c5d53972544759e7b7668
|
stack.yaml
|
stack.yaml
|
flags:
Snowdrift:
dev: true
resolver: lts-9.18
packages:
- website
- crowdmatch
- run-persist
# This is patched to use UTCTime instead of Localtime (needs to get moved
# upstream: see https://git.snowdrift.coop/sd/snowdrift/issues/8)
- location:
git: https://git.snowdrift.coop/sd/postgresql-simple-migration-patches.git
commit: 55ae21a7ee5b0386ec7c6909409b1bdacebcc924
extra-dep: true
- location:
git: https://notabug.org/fr33domlover/shakespeare-sass.git
commit: 70dc41d6df75e77d94125ad8a8613868d8d76b03
extra-dep: true
extra-deps:
- hashids-1.0.2.3
- libravatar-0.4
- hsass-0.5.0
# Stripe is absent from lts-9
- stripe-core-2.2.3
- stripe-haskell-2.2.3
- stripe-http-streams-2.2.3
nix:
pure: false
packages:
- ncurses
- gmp
- gcc
- openssl
- postgresql96
- zlib
|
flags:
Snowdrift:
dev: true
resolver: lts-9.18
packages:
- website
- crowdmatch
- run-persist
# This is patched to use UTCTime instead of Localtime (needs to get moved
# upstream: see https://git.snowdrift.coop/sd/snowdrift/issues/8)
- location:
git: https://git.snowdrift.coop/sd/postgresql-simple-migration-patches.git
commit: 55ae21a7ee5b0386ec7c6909409b1bdacebcc924
extra-dep: true
- location:
git: https://notabug.org/fr33domlover/shakespeare-sass.git
commit: e25b7f6699096e0ffa619dc71a8ef028940e5bb9
extra-dep: true
extra-deps:
- hashids-1.0.2.3
- libravatar-0.4
- hsass-0.5.0
# Stripe is absent from lts-9
- stripe-core-2.2.3
- stripe-haskell-2.2.3
- stripe-http-streams-2.2.3
nix:
pure: false
packages:
- ncurses
- gmp
- gcc
- openssl
- postgresql96
- zlib
|
Use latest version of shakespeare-sass
|
Use latest version of shakespeare-sass
Fixes silius files producing whitespace-stripped CSS when shakespeare-sass is
used in development mode.
|
YAML
|
agpl-3.0
|
snowdriftcoop/snowdrift
|
3eab63710ba93369221dcdda9651ba2b3145eb3b
|
stack.yaml
|
stack.yaml
|
resolver: lts-13.20
flags: {}
packages:
- '.'
extra-deps:
- hakyll-4.12.5.2
- lrucache-1.2.0.1
|
resolver: lts-18.19
flags: {}
packages:
- '.'
extra-deps:
- hakyll-4.15.1.1
- lrucache-1.2.0.1
|
Use more recent Stackage LTS and Hakyll version
|
Use more recent Stackage LTS and Hakyll version
This isn't strictly necessary given that this site is being deprecated,
but I wasn't able to easily build the previous version on NixOS.
|
YAML
|
mit
|
ucsd-progsys/liquidhaskell-blog,ucsd-progsys/liquidhaskell-blog
|
3c829ec52a48a68a8b0f350dd5d3837731635e4b
|
stack.yaml
|
stack.yaml
|
resolver: lts-16.7
packages:
- .
extra-deps:
- sexp-grammar-2.2.1@sha256:a05a86f83e7d1d9767fbc1b0cba7859455a10c6365173b72c10f5b0e93140a50,2473
- invertible-grammar-0.1.3@sha256:aeae40093db800e1130b8f58ae47f4474b131c22d830913d1051d1ab083f6f13,1651
- versions-4.0.1
flags: {}
extra-package-dbs: []
nix:
packages: [zlib.dev, zlib.out, pkgconfig, haskell.compiler.ghc882]
# By default, stack doesn't compile multiple modules in parallel.
# This makes it do so.
ghc-options:
$locals: -j -optP-Wno-nonportable-include-path
|
resolver: nightly-2020-12-14
packages:
- .
extra-deps: []
flags: {}
extra-package-dbs: []
nix:
packages: [zlib.dev, zlib.out, pkgconfig, haskell.compiler.ghc882]
# By default, stack doesn't compile multiple modules in parallel.
# This makes it do so.
ghc-options:
$locals: -j -optP-Wno-nonportable-include-path
|
Upgrade to newer Stack snapshot.
|
Upgrade to newer Stack snapshot.
|
YAML
|
isc
|
HIPERFIT/futhark,diku-dk/futhark,HIPERFIT/futhark,diku-dk/futhark,diku-dk/futhark,diku-dk/futhark,HIPERFIT/futhark,diku-dk/futhark
|
743a2cadfeb25129931aecf6d60586943736dc59
|
.codacy.yml
|
.codacy.yml
|
---
engines:
phpmd:
enabled: true
config:
rulesets: "phpmd.xml.dist"
exclude_paths:
- 'ext/**'
- 'prototypes/**'
|
---
engines:
phpmd:
enabled: true
config:
rulesets: "phpmd.xml.dist"
phpcs:
enabled: true
config:
ruleset: "phpcs.xml.dist"
exclude_paths:
- 'ext/**'
- 'prototypes/**'
|
Enable phpcs ruleset for Codacy
|
Enable phpcs ruleset for Codacy
|
YAML
|
mit
|
vpg/zephir,vpg/zephir,vpg/zephir,phalcon/zephir,zephir-lang/zephir,zephir-lang/zephir,vpg/zephir,zephir-lang/zephir,zephir-lang/zephir,phalcon/zephir,zephir-lang/zephir,vpg/zephir,vpg/zephir,phalcon/zephir,phalcon/zephir,phalcon/zephir,phalcon/zephir
|
cb2ecb10fba1e0eb05c0dba4c129e8fd3c107630
|
.poggit.yml
|
.poggit.yml
|
--- # Poggit-CI Manifest. Open the CI at https://poggit.pmmp.io/ci/Sandertv/BlockPets
branches:
- master
projects:
BlockPets:
path: ""
icon: resources/BlockPetsLogo.png
libs:
- src: Falkirks/spoondetector/spoondetector
version: ^0
- src: poggit/libasynql/libasynql
version: ^3.0
- src: muqsit/InvMenu/InvMenu
version: ^1.1.1
...
|
--- # Poggit-CI Manifest. Open the CI at https://poggit.pmmp.io/ci/Sandertv/BlockPets
branches:
- master
projects:
BlockPets:
path: ""
icon: resources/BlockPetsLogo.png
compressBuilds: false
fullGzip: 9
libs:
- src: Falkirks/spoondetector/spoondetector
version: ^0
- src: poggit/libasynql/libasynql
version: ^3.0
- src: muqsit/InvMenu/InvMenu
version: ^1.1.1
...
|
Compress whole phar instead of individual files
|
Compress whole phar instead of individual files
This is disabled by default because of unstable behavior with phar stub, but this plugin doesn't have a stub anyway.
This will enable compression that optimizes the recurring license headers, etc., and usually reduces the artifact size greatly.
|
YAML
|
apache-2.0
|
BlockHorizons/BlockPets
|
c98450d1d53014ad6f7b8a506e0fe7e7eaaf349c
|
stack.yaml
|
stack.yaml
|
resolver: lts-6.2
extra-deps:
- Ranged-sets-0.3.0
- bytestring-tree-builder-0.2.7
- hasql-0.19.12
- hasql-pool-0.4.1
- hasql-transaction-0.4.5.1
- jwt-0.7.2
- postgresql-binary-0.9.0.1
- binary-parser-0.5.2
- contravariant-extras-0.3.2
- placeholders-0.1
- postgresql-error-codes-1
- success-0.2.6
- tuple-th-0.2.5
- wai-cors-0.2.5
- cryptohash-sha256-0.11.100.0
- hackage-security-0.5.2.1
- swagger2-2.1
- hjsonpointer-0.3.0.1
- network-uri-2.6.1.0
ghc-options:
postgrest: -O2 -Werror -Wall -fwarn-identities
packages:
- .
- location:
git: https://github.com/seagreen/hjsonschema
commit: 075da33626d9d5cf20645a998b86518222d6b2d6
extra-dep: true
|
resolver: lts-6.7
extra-deps:
- Ranged-sets-0.3.0
- bytestring-tree-builder-0.2.7
- hasql-0.19.12
- hasql-pool-0.4.1
- hasql-transaction-0.4.5.1
- jwt-0.7.2
- postgresql-binary-0.9.0.1
- binary-parser-0.5.2
- contravariant-extras-0.3.2
- placeholders-0.1
- postgresql-error-codes-1
- success-0.2.6
- tuple-th-0.2.5
- wai-cors-0.2.5
- cryptohash-sha256-0.11.100.0
- hackage-security-0.5.2.1
- swagger2-2.1
- hjsonpointer-0.3.0.1
- hjsonschema-1.0.0.0
- network-uri-2.6.1.0
ghc-options:
postgrest: -O2 -Werror -Wall -fwarn-identities
|
Use real version of hjsonschema
|
Use real version of hjsonschema
Its raw commit on github no longer exists
|
YAML
|
mit
|
steve-chavez/postgrest,diogob/postgrest,begriffs/postgrest,Skyfold/postgrest,NotBrianZach/postgrest,steve-chavez/postgrest,ruslantalpa/postgrest
|
27fa4896ec5b06c69d44d529f5e8d7d0eb489a7f
|
_config.yml
|
_config.yml
|
# Site settings
title: the padded cell
email: [email protected]
description: ""
baseurl: ""
url: "http://sanitarium.se"
twitter_username: gaqzi
github_username: gaqzi
facebook_username:
timezone: UTC
github_base_url: https://github.com/gaqzi/sanitarium.se/blob/master/
# Build settings
markdown: kramdown
redcarpet:
extensions:
- footnotes
kramdown:
input: GFM
syntax_highlighter: rouge
hard_wrap: false
highlighter: pygments
permalink: pretty
paginate: 100
paginate_path: /page/:num
exclude:
- bin/*
- blog.iml
- css/*.min.css
- css/bootstrap.css
- css/clean-blog.css
- css/syntax.css
- Gemfile
- Gemfile.lock
- Gruntfile.js
- js/bootstrap.js
- js/bootstrap.min.js
- js/clean-blog.js
- js/clean-blog.min.js
- js/jquery.js
- js/jquery.min.js
- less
- LICENSE
- Makefile
- node_modules
- package.json
- package-lock.json
- README.md
sitemap:
file: "/sitemap.xml"
exclude:
- "/atom.xml"
- "/feed.xml"
- "/feed/index.xml"
include_posts:
- "/index.html"
change_frequency_name: "change_frequency"
priority_name: "priority"
|
# Site settings
title: the padded cell
email: [email protected]
description: ""
baseurl: ""
url: "http://sanitarium.se"
twitter_username: gaqzi
github_username: gaqzi
facebook_username:
timezone: UTC
github_base_url: https://github.com/gaqzi/sanitarium.se/blob/master/
# Build settings
markdown: kramdown
redcarpet:
extensions:
- footnotes
kramdown:
input: GFM
syntax_highlighter: rouge
hard_wrap: false
highlighter: pygments
permalink: pretty
paginate: 100
paginate_path: /page/:num
exclude:
- .idea/
- bin/*
- blog.iml
- css/*.min.css
- css/bootstrap.css
- css/clean-blog.css
- css/syntax.css
- Gemfile
- Gemfile.lock
- Gruntfile.js
- js/bootstrap.js
- js/bootstrap.min.js
- js/clean-blog.js
- js/clean-blog.min.js
- js/jquery.js
- js/jquery.min.js
- less
- LICENSE
- Makefile
- node_modules
- package.json
- package-lock.json
- README.md
sitemap:
file: "/sitemap.xml"
exclude:
- "/atom.xml"
- "/feed.xml"
- "/feed/index.xml"
include_posts:
- "/index.html"
change_frequency_name: "change_frequency"
priority_name: "priority"
|
Exclude .idea folder from jekyll config
|
Exclude .idea folder from jekyll config
|
YAML
|
apache-2.0
|
gaqzi/sanitarium.se,gaqzi/sanitarium.se,gaqzi/sanitarium.se,gaqzi/sanitarium.se
|
f3a113ea4aa32606fd072343fb86807edf6b12a8
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.11"
- "0.10"
|
language: node_js
node_js:
- "8"
- "6"
- "4"
|
Test on Node 4 and up
|
Test on Node 4 and up
|
YAML
|
mit
|
mariocasciaro/gulp-clone
|
451ac84e967acfbf005ffb33fec6153a3fe478c4
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
dist: trusty
sudo: false
rvm:
- 2.4.2
- 2.4.1
- 2.3.4
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
branches:
only:
- master
notifications:
slack:
on_success: change
on_failure: always
rooms:
secure: ml+Ph8FuoU4TgEqGmjERaF5peoNTRhllG5rBFDUgGxPCKRxE9snYDwc+29RAhA7izlaUABIA3fWT11SdF2RMTUorsrz0PbYtyBZuI9AKloww1CUFMl2kr8+DRt/AzMcGYs8OgQW12NLNNRV72X4wUKsJXpazVHsXctU/Fh/AqX0=
|
sudo: false
language: ruby
cache: bundler
matrix:
include:
- rvm: 2.3.7
- rvm: 2.4.4
- rvm: 2.5.1
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
branches:
only:
- master
bundler_args: --without docs development
script: bundle exec rake
notifications:
slack:
on_success: change
on_failure: always
rooms:
secure: ml+Ph8FuoU4TgEqGmjERaF5peoNTRhllG5rBFDUgGxPCKRxE9snYDwc+29RAhA7izlaUABIA3fWT11SdF2RMTUorsrz0PbYtyBZuI9AKloww1CUFMl2kr8+DRt/AzMcGYs8OgQW12NLNNRV72X4wUKsJXpazVHsXctU/Fh/AqX0=
|
Test on Ruby 2.5 in Travis + exclude gem groups
|
Test on Ruby 2.5 in Travis + exclude gem groups
Signed-off-by: Tim Smith <[email protected]>
|
YAML
|
apache-2.0
|
ClogenyTechnologies/knife-google,chef/knife-google,chef/knife-google
|
466d54ebbb4a9fec10ad77688010b31992a3264c
|
.travis.yml
|
.travis.yml
|
sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
env:
- MONGO_VERSION=stable
matrix:
include:
- php: 5.3
dist: precise
- php: 7.0
env: ADAPTER_VERSION="^1.0.0" MONGODB_VERSION=stable
services: mongodb
before_script:
- if [ "x${MONGO_VERSION}" != "x" ]; then yes '' | pecl -q install -f mongo-${MONGO_VERSION}; fi
- if [ "x${MONGODB_VERSION}" != "x" ]; then pecl install -f mongodb-${MONGODB_VERSION}; fi
- if [ "x${ADAPTER_VERSION}" != "x" ]; then composer require "alcaeus/mongo-php-adapter=${ADAPTER_VERSION}" --ignore-platform-reqs; fi
- composer self-update
- composer install --dev
script:
- ./vendor/bin/phpunit
|
sudo: false
language: php
php:
- 5.4
- 5.5
- 5.6
env:
- MONGO_VERSION=stable
matrix:
include:
- php: 5.3
dist: precise
- php: 7.0
env: ADAPTER_VERSION="^1.0.0" MONGODB_VERSION=stable
services: mongodb
before_script:
- if [ "x${MONGO_VERSION}" != "x" ]; then yes '' | pecl -q install -f mongo-${MONGO_VERSION}; fi
- if [ "x${MONGODB_VERSION}" != "x" ]; then pecl install -f mongodb-${MONGODB_VERSION}; fi
- if [ "x${ADAPTER_VERSION}" != "x" ]; then composer require "alcaeus/mongo-php-adapter=${ADAPTER_VERSION}" --ignore-platform-reqs; fi
- composer self-update
- composer install --dev
script:
- ./vendor/bin/phpunit
|
Remove 5.3 from the standard set
|
Remove 5.3 from the standard set
|
YAML
|
mit
|
caciobanu/mongodb-migrations,caciobanu/mongodb-migrations,caciobanu/mongodb-migrations
|
866f4f13413a858f9226a2f4e8af096daf9d424a
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
notifications:
email: false
# Setup anaconda
before_install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
install:
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pip numpy nose
- source activate test-environment
- pip install pytest-cov python-coveralls pytest-xdist coverage==3.7.1 #we need this version of coverage for coveralls.io to work
- pip install pep8 pytest-pep8
- python setup.py install
script:
- nosetests --with-coverage --cover-package=sbdc --cov-config .coveragerc --logging-level=INFO
after_success:
- coveralls --config_file .coveragerc
|
language: python
python:
- "2.7"
notifications:
email: false
# Setup anaconda
before_install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
install:
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pip numpy pytest
- source activate test-environment
- pip install pytest-cov python-coveralls pytest-xdist coverage==3.7.1 #we need this version of coverage for coveralls.io to work
- pip install pep8 pytest-pep8
- python setup.py install
script:
- PYTHONPATH=$PWD:$PYTHONPATH py.test -s -v --pep8 --cov=sbdc --cov-config .coveragerc --cov-report term-missing tests
after_success:
- coveralls --config_file .coveragerc
|
Replace nose with py.test for Travis CI configuration
|
Replace nose with py.test for Travis CI configuration
|
YAML
|
apache-2.0
|
gakhov/sbdc
|
d2db1ab78f199d3c41887d9d8ba99974d681ed2f
|
.github/workflows/pythonapp.yml
|
.github/workflows/pythonapp.yml
|
name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: |
sudo make dev-install-no-model
sudo pip3 install pytest-faulthandler
sudo apt install xvfb
- name: Lint with flake8
run: |
sudo pip3 install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
sudo pip3 install pytest pytest-cov codecov
xvfb-run --auto-servernum python3 -m pytest --cov=dragonfire/ --capture=sys --disable-pytest-warnings -vv
# send the code coverage report to Codeconv
codecov --token=${{ secrets.CODECOV_TOKEN }}
|
name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Get pip cache
id: pip-cache
run: |
python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)"
- uses: actions/cache@v1
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/checkout@v1
- name: Install dependencies
run: |
sudo make dev-install-no-model
sudo pip3 install pytest-faulthandler
sudo apt install xvfb
- name: Lint with flake8
run: |
sudo pip3 install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
sudo pip3 install pytest pytest-cov codecov
xvfb-run --auto-servernum python3 -m pytest --cov=dragonfire/ --capture=sys --disable-pytest-warnings -vv
# send the code coverage report to Codeconv
codecov --token=${{ secrets.CODECOV_TOKEN }}
|
Implement the pip cache for the CI build
|
Implement the pip cache for the CI build
|
YAML
|
mit
|
mertyildiran/Dragonfire,DragonComputer/Dragonfire,mertyildiran/Dragonfire,DragonComputer/Dragonfire,DragonComputer/Dragonfire
|
2314b8f230ebc012319e4f0f7045b569338d9472
|
.github/workflows/slicerbot.yml
|
.github/workflows/slicerbot.yml
|
name: "Slicer Bot"
on:
pull_request:
branches:
- update-github-workflow-with-schedule-and-dispatch
workflow_dispatch:
schedule:
- cron: "30 11 * * 2"
jobs:
update-slicer-certificate-bundle:
name: "Update Slicer.crt certificate bundle"
runs-on: ubuntu-latest
steps:
- name: "Download certdata.txt from https://github.com/mozilla/gecko-dev"
run: echo "Download certdata.txt from https://github.com/mozilla/gecko-dev"
|
name: "Slicer Bot"
on:
pull_request:
jobs:
update-slicer-certificate-bundle:
name: "Update Slicer.crt certificate bundle"
runs-on: ubuntu-latest
steps:
- name: "Download certdata.txt from https://github.com/mozilla/gecko-dev"
run: echo "Download certdata.txt from https://github.com/mozilla/gecko-dev"
|
Remove workflow_dispatch, schedule and pr branch
|
github-workflow: Remove workflow_dispatch, schedule and pr branch
|
YAML
|
apache-2.0
|
jcfr/ci-sandbox,jcfr/ci-sandbox
|
68ea23498b669c410c1311ea2e68c4c258af10dc
|
.travis.yml
|
.travis.yml
|
language: go
|
sudo: false
language: go
go:
- 1.6.2
- tip
matrix:
allow_failures:
- go: tip
fast_finish: true
install:
- # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d -s .)
- go tool vet .
- go test -v -race ./...
|
Build with 1.6+tip, run gofmt, go vet, go test -race checks.
|
Travis: Build with 1.6+tip, run gofmt, go vet, go test -race checks.
Make tip a fast-finish allowed failure. That way, if CI fails on
tip due to a temporary issue with tip, it will not break build status.
However, it's still possible to see tip build status by looking at CI
details page.
This is a followup to #13. The default Travis configuration is not very
thorough, and skips many useful checks. This adds some of those.
It's modeled after https://github.com/google/go-github/blob/0af232a73d5e33ea92bd7f6d3efab510c4780856/.travis.yml.
|
YAML
|
apache-2.0
|
googlesamples/mugo
|
c094e6a2d6d9c21b3523ce7c58fc39334b8a54b7
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.6"
# command to install dependencies
install:
- pip install -r requirements.txt
# command to run tests
script:
- pytest -cov=wikilink --cov-report=html
branches:
only:
- dev
after_success:
- coveralls
|
language: python
python:
- "3.6"
# command to install dependencies
install:
- pip install -r requirements.txt
# command to run tests
script:
- pytest --cov=wikilink tests/ --cov-report=html
branches:
only:
- dev
after_success:
- coveralls
|
Fix syntax for coverall line
|
Fix syntax for coverall line
Signed-off-by: Tran Ly Vu <[email protected]>
|
YAML
|
apache-2.0
|
tranlyvu/findLink,tranlyvu/find-link
|
8648b6ec593747080cc08594eefb33865d685669
|
.travis.yml
|
.travis.yml
|
language: go
go:
- "1.7"
- "1.8"
- "1.8.1"
script:
- go test -v -race ./...
|
language: go
go:
- "1.7"
- "1.8"
- "1.8.1"
- "tip"
script:
- go test -v -race ./...
|
Test golang tip on Travis CI
|
Test golang tip on Travis CI
|
YAML
|
mit
|
hnakamur/ltsvlog
|
273c616b5293fb6aa62de90a240b34d7c505d483
|
_config.yml
|
_config.yml
|
name: Sufi-Al-Hussaini
description: Senior Software Developer | Urdu Sufi Poet | Self-proclaimed philosopher
meta_description: "Shoaib Ahmed is a system software developer, urdu Sufi poet and self-proclaimed philosopher. He writes under the nom-de-plume of 'Sufi-Al-Hussaini'."
aboutPage: true
markdown: kramdown
highlighter: rouge
gems: [jekyll-paginate]
paginate: 20
baseurl: /
domain_name: 'http://shoaib-ahmed.com'
google_analytics: 'UA-66607718-1'
disqus: true
disqus_shortname: 'sufialhussaini'
# Details for the RSS feed generator
url: 'http://shoaib-ahmed.com'
author: 'Shoaib Ahmed'
authorTwitter: 'sufi-al-hussaini'
permalink: /:title/
defaults:
-
scope:
path: "" # empty string for all files
type: pages
values:
layout: default
-
scope:
path: "" # empty string for all files
type: posts
values:
layout: post
-
scope:
path: ""
type: drafts
values:
layout: post
|
name: Sufi-Al-Hussaini
description: Senior Software Developer | Urdu Sufi Poet | Self-proclaimed philosopher
meta_description: "Shoaib Ahmed is a system software developer, urdu Sufi poet and self-proclaimed philosopher. He writes under the nom-de-plume of 'Sufi-Al-Hussaini'."
aboutPage: true
markdown: kramdown
highlighter: rouge
gems: [jekyll-paginate]
paginate: 20
baseurl: /
domain_name: 'http://shoaib-ahmed.com'
google_analytics: 'UA-66607718-1'
disqus: true
disqus_shortname: 'sufialhussaini'
# Details for the RSS feed generator
url: 'http://shoaib-ahmed.com'
author: 'Shoaib Ahmed'
authorTwitter: 'sufi-al-hussaini'
permalink: /:year/:title/
defaults:
-
scope:
path: "" # empty string for all files
type: pages
values:
layout: default
-
scope:
path: "" # empty string for all files
type: posts
values:
layout: post
-
scope:
path: ""
type: drafts
values:
layout: post
|
Modify permalink to include year
|
Modify permalink to include year
|
YAML
|
mit
|
Sufi-Al-Hussaini/Sufi-Al-Hussaini.github.io,Sufi-Al-Hussaini/Sufi-Al-Hussaini.github.io,Sufi-Al-Hussaini/Sufi-Al-Hussaini.github.io,Sufi-Al-Hussaini/Sufi-Al-Hussaini.github.io
|
5e4fddf2d0f3884136aa3822f12e4ca7b8d064d0
|
.travis.yml
|
.travis.yml
|
sudo: false
language: go
go:
- 1.14
- 1.15
before_script:
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $GOPATH/bin v1.25.1
script:
- make test vet lint testacc
|
sudo: false
language: go
go:
- 1.14
- 1.15
cache:
directories:
- $GOPATH/pkg/mod
before_script:
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $GOPATH/bin v1.25.1
script:
- make test vet lint testacc
|
Add `$GOPATH/pkg/mod` to Travis CI cache
|
Add `$GOPATH/pkg/mod` to Travis CI cache
|
YAML
|
mpl-2.0
|
kjmkznr/terraform-provider-mackerel,kjmkznr/terraform-provider-mackerel
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.