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 |
|---|---|---|---|---|---|---|---|---|---|
a48d0da05df74cd21035a5c8ac92502598b51e95 | .travis.yml | .travis.yml | sudo: required
language: python
python:
- "2.7"
before_install:
- /bin/bash -c "cd /Nomad; cp shared/secrets.example.py shared/secrets.py; cp shared/jobmine.example.py shared/jobmine.py; cp shared/ratemycoopjob.example.py shared/ratemycoopjob.py;"
install:
- pip install -r requirements.txt
- sudo python -m nltk.downloader -d /usr/local/share/nltk_data conll2000 conll2002 maxent_ne_chunker punkt averaged_perceptron_tagger
script:
- python -m unittest discover --pattern=*test.py -v
| sudo: required
language: python
python:
- "2.7"
before_install:
- /bin/bash -c "cd /Nomad; cp shared/secrets.example.py shared/secrets.py; cp shared/jobmine.example.py shared/jobmine.py; cp shared/ratemycoopjob.example.py shared/ratemycoopjob.py;"
install:
- pip install -r requirements.txt
- source ~/virtualenv/python2.7/bin/activate
- sudo python -m nltk.downloader -d /usr/local/share/nltk_data conll2000 conll2002 maxent_ne_chunker punkt averaged_perceptron_tagger
script:
- python -m unittest discover --pattern=*test.py -v
| Add virtualenv before download nltk data | Add virtualenv before download nltk data
| YAML | mit | Mo-Talha/Nomad,Mo-Talha/Nomad,Mo-Talha/Nomad,Mo-Talha/Nomad |
37bceebe55ef867ca6e4c77e209af4f3468c3558 | .travis.yml | .travis.yml | language: python
sudo: false
cache:
- pip
python:
- "2.7"
- "3.5"
env:
- DJANGO_VERSION=1.10
- DJANGO_VERSION=1.11
install:
- pip install -r requirements.txt
- pip uninstall -y Django
- pip install -q Django==$DJANGO_VERSION
before_script:
- psql -c 'create database calaccess_processed;' -U $USER
- psql -c "CREATE EXTENSION postgis;" -U $USER -d calaccess_processed
- cp example/settings_local.py.template example/settings_local.py
script:
- flake8 calaccess_processed
- coverage run example/manage.py test calaccess_processed
after_success:
- coveralls
addons:
postgresql: "9.4" | language: python
sudo: false
cache:
- pip
python:
- "2.7"
- "3.5"
env:
- DJANGO_VERSION=1.10
- DJANGO_VERSION=1.11
install:
- pip install -r requirements.txt
- pip uninstall -y Django
- pip install -q Django==$DJANGO_VERSION
before_script:
- psql -c 'create database calaccess_processed;' -U $USER
- psql -c "CREATE EXTENSION postgis;" -U $USER -d calaccess_processed
- cp example/project/settings_local.py.template example/project/settings_local.py
script:
- flake8 calaccess_processed
- coverage run example/manage.py test calaccess_processed
after_success:
- coveralls
addons:
postgresql: "9.4" | Correct dir for settings files | Correct dir for settings files
| YAML | mit | california-civic-data-coalition/django-calaccess-processed-data,california-civic-data-coalition/django-calaccess-processed-data |
9e464f1518d8270b1f58673e9efa2104129ef972 | .travis.yml | .travis.yml | sudo: required
dist: xenial
addons:
apt:
sources:
- sourceline: 'ppa:ondrej/php'
packages:
- mysql-server
services:
- mysql
stages:
- test
# - deploy
language: node_js
node_js: 10
cache:
directories:
- $HOME/haxe
os:
- linux
# - osx
env:
- HAXE_VERSION=3.4.7
- HAXE_VERSION=latest
- HAXE_VERSION=nightly
install:
- npm i -g lix
- npm install
- lix install haxe $HAXE_VERSION
- lix download
- if [[ "$(haxe -version)" =~ ^4.* ]]; then sudo apt-get install php7.0-cli php7.0-mysql; else sudo apt-get install php5.6-cli php5.6-mysql; fi
script:
- lix run travix node
- lix run travix php
# jobs:
# include:
# # - stage: test # should uncomment this when there is no matrix above (e.g. only one os, one env, etc)
# - stage: deploy
# os: linux
# install:
# - npm i -g lix
# - lix download
# script: skip
# env:
# secure: xxxxxxxx
# after_success:
# - lix run travix install
# - lix run travix release
| sudo: required
dist: xenial
addons:
apt:
sources:
- sourceline: 'ppa:ondrej/php'
packages:
- mysql-server
services:
- mysql
stages:
- test
# - deploy
language: node_js
node_js: 10
cache:
directories:
- $HOME/haxe
os:
- linux
# - osx
env:
- HAXE_VERSION=latest
- HAXE_VERSION=nightly
install:
- npm i -g lix
- npm install
- lix install haxe $HAXE_VERSION
- lix download
- if [[ "$(haxe -version)" =~ ^4.* ]]; then sudo apt-get install php7.0-cli php7.0-mysql; else sudo apt-get install php5.6-cli php5.6-mysql; fi
script:
- lix run travix node
# - lix run travix php
# jobs:
# include:
# # - stage: test # should uncomment this when there is no matrix above (e.g. only one os, one env, etc)
# - stage: deploy
# os: linux
# install:
# - npm i -g lix
# - lix download
# script: skip
# env:
# secure: xxxxxxxx
# after_success:
# - lix run travix install
# - lix run travix release
| Disable haxe3 and php test for now | Disable haxe3 and php test for now
| YAML | mit | haxetink/tink_sql |
1fb54663816bb1b5191ad5ad83c07e6f7f38d56c | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- oraclejdk8
addons:
postgresql: 9.4
before_script:
- mvn versions:display-dependency-updates versions:display-plugin-updates
- psql -c 'create database mtsar;' -U postgres
- java -jar target/mtsar-*.jar db migrate environment.yml.travis
- mvn clean
env:
- MTSAR_TEST_YAML=environment.yml.travis
cache:
directories:
- $HOME/.m2
| sudo: false
language: java
jdk:
- oraclejdk8
addons:
postgresql: 9.4
before_script:
- mvn versions:display-dependency-updates versions:display-plugin-updates
- psql -c 'create database mtsar;' -U postgres
- java -jar target/mtsar-*.jar db migrate environment.yml.travis
- mvn clean
env:
- MTSAR_TEST_YAML=environment.yml.travis
cache:
directories:
- $HOME/.m2
addons:
apt:
packages:
- oracle-java8-installer
| Update JDK on Travis CI | Update JDK on Travis CI
| YAML | apache-2.0 | dustalov/mtsar,mtsar/mtsar,mtsar/mtsar,mtsar/mtsar,dustalov/mtsar,dustalov/mtsar |
6eda322656b85672c1cd525d1115d8e6a7b00e13 | .travis.yml | .travis.yml | osx_image: xcode7.2
language: objective-c
sudo: false
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
before_install:
- bundle install --without=documentation
script:
- set -o pipefail
- xcodebuild build test -project SPTDataLoader.xcodeproj -scheme SPTDataLoader -sdk iphonesimulator ONLY_ACTIVE_ARCH=YES -enableCodeCoverage YES | xcpretty -c -f `xcpretty-travis-formatter`;
after_success: ./slather.sh
| osx_image: xcode7.2
language: objective-c
sudo: false
branches:
only:
- master
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
before_install:
- bundle install --without=documentation
script:
- set -o pipefail
- xcodebuild build test -project SPTDataLoader.xcodeproj -scheme SPTDataLoader -sdk iphonesimulator ONLY_ACTIVE_ARCH=YES -enableCodeCoverage YES | xcpretty -c -f `xcpretty-travis-formatter`;
after_success: ./slather.sh
| Change to only run push build for master | Change to only run push build for master | YAML | apache-2.0 | spotify/SPTDataLoader,spotify/SPTDataLoader,spotify/SPTDataLoader,iOSCowboy/SPTDataLoader,iOSCowboy/SPTDataLoader |
ccaec20c55b5b102bf9096d6e74a157ec53def28 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.1.7
- 2.2.3
- jruby-19mode
- jruby-head
- rbx-2
- ruby-head
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: jruby-head
before_install:
- gem update --system
- gem install bundler -v 1.10.6
install: 'bundle'
script: 'bundle exec rspec && bundle exec rubocop'
notifications:
email:
- pedro.carrico@gmail.com
| language: ruby
rvm:
- 2.2.3
- 2.5.1
- jruby-19mode
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: jruby-head
before_install:
- gem update --system
- gem install bundler -v 1.10.6
install: 'bundle'
script: 'bundle exec rake'
notifications:
email:
- pedro.carrico@gmail.com
| Tidy up Travis configuration accordingly | Tidy up Travis configuration accordingly
| YAML | mit | forkbreak/fork_break |
e0fdc80e0565c8d83eb20d74a85e2b10c8c83050 | .travis.yml | .travis.yml | language: ruby
notifications:
email: true
matrix:
include:
- rvm: 2.1.0
| language: ruby
cache: bundler
notifications:
email: true
matrix:
include:
- rvm: 2.1.0
| Make Travis faster by caching bundles | Make Travis faster by caching bundles
More info at http://docs.travis-ci.com/user/caching/
| YAML | mit | Fullscreen/squid,Fullscreen/squid |
d36834bb2d99cdb835506291442c2c358c9197fb | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
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
#addons:
# code_climate:
# repo_token: adf08323...
after_script:
- istanbul cover jasmine-node --captureExceptions client/test/spec/ && cat ./reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./reports/coverage
# - codeclimate-test-reporter < client/test/coverage/lcov.info
notifications:
email:
on_succes: always
on_failure: always | language: node_js
node_js:
- "0.12"
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
#addons:
# code_climate:
# repo_token: adf08323...
after_script:
- codeclimate-test-reporter < ./reports/coverage/lcov.info
- istanbul cover jasmine-node --captureExceptions client/test/spec/ && cat ./reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./reports/coverage
notifications:
email:
on_succes: always
on_failure: always | Send coverage information to Code Climate | Send coverage information to Code Climate
| YAML | mit | Jbelmonte/docker-manager-ui,Jbelmonte/docker-manager-ui |
9351e19a47ee3b04a3b77539e9f65a8699e0cefc | .travis.yml | .travis.yml | language: erlang
notifications:
email: false
otp_release:
- 17.3
- 17.1
- 17.0
install: true
script: "make eunit && make ct-connect && make ct-roundtrip"
| language: erlang
notifications:
email: false
otp_release:
- 17.5
- 17.4
- 17.3
- 17.1
install: true
script: "make eunit && make ct-connect && make ct-roundtrip"
| Remove 17.0 and add erlang 17.4 and 17.5 | Remove 17.0 and add erlang 17.4 and 17.5
| YAML | mit | bwegh/erwa,comtihon/erwa,comtihon/erwa,comtihon/erwa,ethrbh/erwa |
82130ecce01292666b2b01b527f41442b22d16eb | .travis.yml | .travis.yml | sudo: required
dist: trusty
group: deprecated-2017Q4
language: go
services:
- docker
addons:
postgresql: "9.6"
go:
- 1.7.6
- 1.8.7
- 1.9.3
- 1.10.1
before_install:
- ./script/check_formatting.sh
- ./script/check_assets.sh
install:
- make setup
script:
- make build
- make test
- make test-all
- make docker-release | sudo: required
dist: trusty
group: deprecated-2017Q4
language: go
services:
- docker
addons:
postgresql: "9.6"
go:
- 1.10.4
- 1.11
before_install:
- ./script/check_formatting.sh
- ./script/check_assets.sh
install:
- make setup
script:
- make build
- make test
- make test-all
- make docker-release | Update CI matrix to use latest 2 versions of go | Update CI matrix to use latest 2 versions of go
| YAML | mit | sosedoff/pgweb,sosedoff/pgweb,sosedoff/pgweb,sosedoff/pgweb |
7c791d48398c9443073190171ebf87e0d3b1877e | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- ruby-head
before_install:
- gem update --system
- gem install bundler -v 1.11.2
| language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.7
- 2.3.3
- 2.4.1
- ruby-head
before_install:
- gem update --system
- gem install bundler -v 1.11.2
| Update Ruby version on Travis CI | Update Ruby version on Travis CI
| YAML | mit | emsk/romaji_cop,emsk/romaji_cop,emsk/romajic,emsk/romajic,emsk/romajic,emsk/romaji_cop |
cd4d696e22b1630715c4abefc16c5496f7378675 | .travis.yml | .travis.yml | language: ruby
sudo: false
before_script:
- git config --global user.email "nobody@example.com"
- git config --global user.name "Nobody Doe"
script: bundle exec rspec
env:
global: TARA_DOWNLOAD_DIR="$HOME/.tara/downloads"
cache:
bundler: true
directories:
- $HOME/.tara/downloads
matrix:
include:
- rvm: ruby-2.1.5
env: TRAVELING_RUBY_VERSION=20150210
- rvm: ruby-2.2.2
env: TRAVELING_RUBY_VERSION=20150715
| language: ruby
sudo: false
before_script:
- git config --global user.email "nobody@example.com"
- git config --global user.name "Nobody Doe"
script: bundle exec rspec
env:
global: TARA_DOWNLOAD_DIR="$HOME/.tara/downloads"
cache:
bundler: true
directories:
- $HOME/.tara/downloads
matrix:
include:
- rvm: ruby-2.1.5
env: TRAVELING_RUBY_VERSION=20150210
- rvm: ruby-2.1.6
env: TRAVELING_RUBY_VERSION=20150715
- rvm: ruby-2.2.2
env: TRAVELING_RUBY_VERSION=20150715
| Add v2.1.6 to Travis configuration | Add v2.1.6 to Travis configuration | YAML | bsd-3-clause | mthssdrbrg/tara,stenlarsson/tara |
dcc915b5d77bf16a89a1f435d0fc9c321c66eaf8 | .travis.yml | .travis.yml | language: python
matrix:
include:
- python: "3.7"
env: TOXENV=py37
- python: "3.8"
env: TOXENV=py38
- python: "3.9"
env: TOXENV=py39
- python: "3.10"
env: TOXENV=py310
- python: pypy3
env: TOXENV=pypy3
- env: TOXENV=codestyle
- env: TOXENV=lint
- env: TOXENV=typecheck
python: "3.10"
install: pip install tox
script: tox
| dist: focal
language: python
matrix:
include:
- python: "3.7"
env: TOXENV=py37
- python: "3.8"
env: TOXENV=py38
- python: "3.9"
env: TOXENV=py39
- python: "3.10"
env: TOXENV=py310
- python: pypy3
env: TOXENV=pypy3
- env: TOXENV=codestyle
- env: TOXENV=lint
- env: TOXENV=typecheck
python: "3.10"
install: pip install tox
script: tox
| Build on Ubuntu 20.04 (Focal Fossa) | Build on Ubuntu 20.04 (Focal Fossa)
| YAML | bsd-3-clause | john-kurkowski/tldextract |
3ecc13ec966b899c17b7e28370d97d6771106efc | .travis.yml | .travis.yml | language: go
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
install:
- mkdir -p "$GOPATH/src/google.golang.org"
- mv "$TRAVIS_BUILD_DIR" "$GOPATH/src/google.golang.org/grpc"
script:
- make test testrace
- make coverage
| language: go
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
install:
- mkdir -p "$GOPATH/src/google.golang.org"
- mv "$TRAVIS_BUILD_DIR" "$GOPATH/src/google.golang.org/grpc"
script:
- make test testrace
| Disable the code coverage checker. | Disable the code coverage checker.
It's too noisy and not worth it. I don't like encouraging the code
coverage game, wherein people write bad tests to get points.
It's annoying to get a red X in the PR status when coverage dropped
by 1 line or 0.4%.
Good code review should be sufficient to verify we have both tests
and good tests.
| YAML | bsd-3-clause | andreimatei/grpc-go,hugoz1234/grpc-go,peter-edge/grpc-go,dsymonds/grpc-go,menghanl/grpc-go,fuchsia-mirror/third_party-grpc-grpc-go,dfawley/grpc-go,rakyll/grpc-go,bradfitz/grpc-go,mpl/grpc-go,iamqizhao/grpc-go,hugoz1234/grpc-go,go4org/grpc,stanley-cheung/grpc-go,bradfitz/grpc-go,rakyll/grpc-go,menghanl/grpc-go,iamqizhao/grpc-go,improbable-io/grpc-go,dfawley/grpc-go,andreimatei/grpc-go,go4org/grpc,mpl/grpc-go,grpc/grpc-go,dsymonds/grpc-go,MakMukhi/grpc-go,thinkerou/grpc-go,stanley-cheung/grpc-go,grpc/grpc-go,thinkerou/grpc-go,improbable-io/grpc-go,fuchsia-mirror/third_party-grpc-grpc-go,peter-edge/grpc-go,MakMukhi/grpc-go |
3079c6ec173742c772158cfe617a34876e8f2985 | .travis.yml | .travis.yml | sudo: required
services:
- docker
before_install:
- docker pull adamryman/splunk-travis-ci:latest
- docker run --hostname splunk -p 8089:8089 -d adamryman/splunk-travis-ci
- docker ps -a
- sudo apt-get update
- sudo apt-get install curl
- docker exec `docker ps -q` cat /opt/splunk/etc/system/local/server.conf
- curl --version
- curl -k --verbose --sslv3 https://0.0.0.0:8089/services/auth/login -d username=admin -d password=changeme
- node sdkdo tests context
- curl -k --verbose https://localhost:8089/services/auth/login -d username=admin -d password=changeme
- curl -k --verbose https://localhost:8089/services/auth/login -d username=admin -d password=changeme
language: node_js
script:
node sdkdo tests context
| sudo: required
services:
- docker
before_install:
- docker pull adamryman/splunk-travis-ci:latest
- docker images
- docker run --hostname splunk -p 8089:8089 -d adamryman/splunk-travis-ci
- docker ps -a
- sudo apt-get update
- sudo apt-get install curl
- docker exec `docker ps -q` cat /opt/splunk/etc/system/local/server.conf
- curl --version
- curl -k --verbose --sslv3 https://0.0.0.0:8089/services/auth/login -d username=admin -d password=changeme
- node sdkdo tests context
- curl -k --verbose https://localhost:8089/services/auth/login -d username=admin -d password=changeme
- curl -k --verbose https://localhost:8089/services/auth/login -d username=admin -d password=changeme
language: node_js
script:
node sdkdo tests context
| Add docker images to see sha | Add docker images to see sha
| YAML | apache-2.0 | adamryman/splunk-sdk-javascript,adamryman/splunk-sdk-javascript |
8db56c5a854b4d64ced22c672fcbb1acd2c9109d | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- openjdk8
install:
- mvn clean test-compile -DskipTests=true -Dmaven.javadoc.skip=true --batch-mode -V
after_success:
- mvn coveralls:report --batch-mode
- mvn -P enable-jacoco install jacoco:report --batch-mode
- mvn -DskipTests=true verify
before_cache:
- rm -fr $HOME/.m2/repository/org/jenkins-ci/plugins/jira
cache:
directories:
- $HOME/.m2
| language: java
dist: xenial
sudo: false
jdk:
- openjdk8
install:
- mvn clean test-compile -DskipTests=true -Dmaven.javadoc.skip=true --batch-mode -V
after_success:
- mvn coveralls:report --batch-mode
- mvn -P enable-jacoco install jacoco:report --batch-mode
- mvn -DskipTests=true verify
before_cache:
- rm -fr $HOME/.m2/repository/org/jenkins-ci/plugins/jira
cache:
directories:
- $HOME/.m2
| Use Ubuntu 18.04 Xenial in TravisCI | Use Ubuntu 18.04 Xenial in TravisCI
| YAML | mit | warden/jira-plugin,warden/jira-plugin |
572ce5143efb6dcd6387489d5ee4cedcc9c9326a | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk11
- openjdk11
- oraclejdk12
- openjdk12
before_install:
- chmod +x gradlew
| language: java
jdk:
- oraclejdk11
- openjdk11
- openjdk12
before_install:
- chmod +x gradlew
| Remove Oracle JDK 12 from Travis Build | Remove Oracle JDK 12 from Travis Build
Oracle JDK 12 build fails, reason needs to be investigated.
| YAML | apache-2.0 | bertilmuth/requirementsascode |
fb2698c8a4dfdca284f6a01a072fe715b98f3361 | .travis.yml | .travis.yml | language: node_js
nodejs:
- "lts/*"
#addons:
# apt:
# packages:
# - mongodb
cache:
directories:
- "node_modules"
before_install:
- npm install --global gulp-cli typescript
- npm install @types/node github:mihaerzen/mongodb-download
- tsc --project node_modules/mongodb-download
install:
- npm install
- npm run-script build-production
# maybe we don't need to run build-production? CI runs backend tests only
# script phase calls `npm test` by default
# Note: still need to add:
# SSH + Git deployment to testing.faraway-vision.io
# Slack notifications for builds
| language: node_js
nodejs:
- lts/*
cache:
directories:
- node_modules
before_install:
- npm install --global gulp-cli typescript
- npm install @types/node github:mihaerzen/mongodb-download
- tsc --project node_modules/mongodb-download
install:
- npm install
- npm run-script build-production
notifications:
slack:
secure: kUh8fanrGsJrOI9NuyB4C8yyYzN+YqaNw5V2ZMuHv5OUaFZlAa7dj19Luek7uCf5SBYt0xZWBgFbubqkcnCLYb0gGBMJB6ULG3XcUhSCDTwVwIECsWmtwjiK2MgLdqemwE5e7zN45kH9+ZqlcJugKfwFPwp0QisX8FtKCm9gpJeu6gXXxjoBdtmYVdVkAq+Tu9gwNGfqvJkieKovx07LJQUCDc0rUxuiyogpzqDZH0OSEaJZzk6s2fza6gYsLJkdSgPQK8Dx20ER3oRWWu181WsEtdfIu+grg9uGmFeF28rfFXVfBONUpxT60fBb0uCjDBHbRhEV8ab2sgw1VJWMCf9s78wbQUj0iZ56/I9rClpNvOdM91RZRtZWFW1cVWoGMYwwUd9esUypLRE47uB9YFCndwtd3a4IfVFa1KMBeuWV3QRIYC02Z0JWNDf1r/HFAG4OF1S8uFMSzfKLzwgw8wq2blVESm40VR9r5EuLHULktdtNvgz5KKKy3nw3PnutO94kUi1LEcSDfxid78S0N2klSKnG7dSDgzoOj1T/A3tlrwiLP6C8CA3npCl+4NHwi+aoRWMdd1ZVSh0GTa2zGyxgJktTf0TTvsBF8gETLFp/8xxRb4waf7CgAG9EBpxbt5ja2sZMeUt9dGtT9HOeSgfVIjA9VCAs4SFMm/ndwnc=
| Add Slack integration config to Travis | Add Slack integration config to Travis
| YAML | mit | dragonrobotics/PartTracker,stmobo/PartTracker,stmobo/PartTracker,stmobo/PartTracker,dragonrobotics/PartTracker,dragonrobotics/PartTracker |
b1ed349f2f1613c25170c57a1b06e637a6282234 | .travis.yml | .travis.yml | language: node_js
| language: node_js
deploy:
provider: npm
email: tobias.bieniek@gmx.de
api_key:
secure: Ac9r8S3XId/gzoB9oSNgBwA4fwUEdCt1vzM9IYWbobqaUK0Gr2Frts/yjPGYQDlZ1bj0eBg4OrM1REvU3pss8sYui3ouFcgA7KDBp+Uz/SSLRVNVS5SF/FIeYbjcuHxgv/GrAs0hp/+86dDWqamPmvnxMohsWtl6zAXNOavP520=
on:
tags: true
repo: Turbo87/webpack-notifier
| Add npm deployments for tags | TravisCI: Add npm deployments for tags
| YAML | isc | Turbo87/webpack-notifier,Turbo87/webpack-notifier |
78bdd61f0ffcb16bfbc8ccb074291e802e9d63b4 | .travis.yml | .travis.yml | language: android
os: linux
dist: trusty
jdk:
- oraclejdk8
env:
global:
- ANDROID_COMPILE_API_LEVEL=28
- ANDROID_BUILD_TOOLS_VERSION=28.0.3
android:
components:
- tools
- platform-tools
# The BuildTools version used by your project
- build-tools-$ANDROID_BUILD_TOOLS_VERSION
# The SDK version used to compile your project
- android-$ANDROID_COMPILE_API_LEVEL
# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
# Specify at least one system image,
# if you need to run emulator(s) during your tests
- sys-img-x86-android-28
# - sys-img-armeabi-v7a-android-28
licenses:
- 'android-sdk-preview-license-.+'
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
script:
- ./gradlew :cloudsdk:assembleDebug :cloudsdk:createDebugCoverageReport
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- $HOME/.gradle/native/
- $HOME/.gradle/daemon/native/
| language: android
os: linux
dist: trusty
jdk:
- oraclejdk8
env:
global:
- ANDROID_COMPILE_API_LEVEL=28
- ANDROID_BUILD_TOOLS_VERSION=28.0.3
android:
components:
- tools
- platform-tools
# The BuildTools version used by your project
- build-tools-$ANDROID_BUILD_TOOLS_VERSION
# The SDK version used to compile your project
- android-$ANDROID_COMPILE_API_LEVEL
# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
# Specify at least one system image,
# if you need to run emulator(s) during your tests
- sys-img-x86-android-28
# - sys-img-armeabi-v7a-android-28
licenses:
- 'android-sdk-preview-license-.+'
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
script:
- ./gradlew :cloudsdk:assembleDebug :cloudsdk:createDebugCoverageReport
after_success:
- bash <(curl -s https://codecov.io/bash)
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- $HOME/.gradle/native/
- $HOME/.gradle/daemon/native/
| Enable code coverage reports in a single line of YAML(??) | Enable code coverage reports in a single line of YAML(??)
| YAML | apache-2.0 | spark/photon-tinker-android,spark/photon-tinker-android |
cdc305ffa35ca7d6a4c5bbec697ce86acfde365c | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.6
env:
- JEKYLL_ENV=production
install:
- bundle install
script:
- bundle exec jekyll build -d _site
branches:
only:
- master
notifications:
email:
on_success: never
on_failure: change
| language: ruby
rvm:
- 2.6
env:
- JEKYLL_ENV=production
install:
- bundle install
script:
- bundle exec jekyll build -d _site
cache:
bundler: true
branches:
only:
- master
notifications:
email:
on_success: never
on_failure: change
| Make CI cache bundler gems | Make CI cache bundler gems
| YAML | mit | jmlntw/jmlntw.github.io |
107a096688e4f751fafbe68f54ec83c409b203e7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- rbx
- 2.0.0
- 2.1.1
matrix:
allow_failures:
- rvm: rbx
services:
- postgres
before_script:
- psql -c 'create database perpetuity_gem_test;' -U postgres
| language: ruby
rvm:
- 1.9.3
- rbx
- 2.0.0
- 2.1.1
matrix:
allow_failures:
- rvm: rbx
addons:
postgresql: 9.3
before_script:
- psql -c 'create database perpetuity_gem_test;' -U postgres
| Use Postgres 9.3 on Travis CI | Use Postgres 9.3 on Travis CI
| YAML | mit | jgaskins/perpetuity-postgres |
83989fdc3f3fb939c96c737ef4581fe7e89a562e | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.0
| sudo: required
before_install: gem update --system
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.0
| Use latest Rubygems in Travis | Use latest Rubygems in Travis
A bug in Rubgems < 2.6.9 prevents the rainbow gem from being installed.
See: sickill/rainbow#44
| YAML | mit | mmozuras/pronto-poper |
ada6c53130641398208a041985c708f798cade76 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: c++
compiler:
- clang
- gcc
install:
- sudo add-apt-repository -y ppa:beineri/opt-qt592-trusty
- sudo apt-get update -qq
- sudo apt-get install -qq cmake qt592base
before_script:
- export PATH=$PATH:/opt/qt592/bin
script:
- cmake -DBUILD_TESTS=on .
- make
- ctest
| sudo: required
dist: trusty
language: c++
compiler:
- clang
- gcc
install:
- sudo add-apt-repository -y ppa:beineri/opt-qt592-trusty
- sudo apt-get update -qq
- sudo apt-get install -qq cmake qt59base
before_script:
- export PATH=$PATH:/opt/qt59/bin
script:
- cmake -DBUILD_TESTS=on .
- make
- ctest
| Correct typo in package names. | Correct typo in package names.
| YAML | mit | nitroshare/qhttpengine |
cc9eed7e79ed4d28214767d158e9c5262daa2e27 | .travis.yml | .travis.yml | ---
language: ruby
bundler_args: --without system_tests --jobs 3 --retry 3
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
sudo: false
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" STRICT_VARIABLES="yes"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes"
notifications:
email: false
| ---
language: ruby
bundler_args: --without system_tests --jobs 3 --retry 3
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
sudo: false
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 3.0" STRICT_VARIABLES="yes" ORDERING="random"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0" STRICT_VARIABLES="yes" ORDERING="random"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0" STRICT_VARIABLES="yes" ORDERING="random"
- rvm: 2.1.6
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes" ORDERING="random"
notifications:
email: false
| Add support for Puppet 4.0 | Add support for Puppet 4.0
| YAML | apache-2.0 | dhoppe/puppet-puppet,dhoppe/puppet-puppet |
7e3a8ff340f0b07924c2af8a3e84944965d6948f | .travis.yml | .travis.yml | language: php
php: [5.3, 5.4, 5.5, 5.6, 7.0]
before_script:
- composer selfupdate
- composer install --prefer-source
script:
- ./vendor/bin/phpspec run --format=pretty
| language: php
php: [5.3, 5.4, 5.5, 5.6, 7.0, 7.1]
before_script:
- composer selfupdate
- composer install --prefer-source
script:
- ./vendor/bin/phpspec run --format=pretty
| Make it compatible with PHP7.1 | Make it compatible with PHP7.1
| YAML | mit | carlosV2/Communism |
3affab68ec3e81cfb35ff40a5f347852f2b42b11 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- ruby-head
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=master" | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- ruby-head
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=master"
matrix:
allow_failures:
- env: "RAILS_VERSION=master"
- rvm: ruby-head | Allow fail of head Ruby and Rails | Travis: Allow fail of head Ruby and Rails
| YAML | mit | Arjeno/leases |
59dead676045ddba7dbd5b3ad5dcd7a489614fd7 | .travis.yml | .travis.yml | language: csharp
mono: none
dotnet: 2.0.0
install: travis_wait mvn install
notifications:
email: false
matrix:
include:
- os: linux
dist: trusty
- os: osx
before_install:
- if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get -qq update && sudo apt-get install -y tor; else brew install tor; fi
- if [ $TRAVIS_OS_NAME = osx ]; then ulimit -S -n 4096; fi
- echo $(sudo killall tor)
- tor RunAsDaemon 1
script:
- sleep 5
- dotnet test MagicalCryptoWallet.Tests/MagicalCryptoWallet.Tests.csproj
| language: csharp
mono: none
dotnet: 2.0.0
notifications:
email: false
matrix:
include:
- os: linux
dist: trusty
- os: osx
before_install:
- if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get -qq update && sudo apt-get install -y tor; else brew install tor; fi
- if [ $TRAVIS_OS_NAME = osx ]; then ulimit -S -n 4096; fi
- echo $(sudo killall tor)
- tor RunAsDaemon 1
script:
- sleep 5
- travis_wait dotnet test MagicalCryptoWallet.Tests/MagicalCryptoWallet.Tests.csproj
| Fix linux bug for good | Fix linux bug for good | YAML | mit | nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet |
f47aa2b7260f4303531981cb0bb4ee5202190ecb | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: groovy
jdk:
- oraclejdk8
install:
-
script:
- scripts/shadowJar.sh
notifications:
slack: ftsrg:YMFDeJB1YkOli9BXOKvtoB1Y
| sudo: required
dist: trusty
language: groovy
jdk:
- oraclejdk8
install:
-
script:
- scripts/build.sh
notifications:
slack: ftsrg:YMFDeJB1YkOli9BXOKvtoB1Y
| Build only instead of packaging fat jars | Build only instead of packaging fat jars
| YAML | epl-1.0 | FTSRG/trainbenchmark,FTSRG/trainbenchmark,FTSRG/trainbenchmark,FTSRG/trainbenchmark |
90cbfc059604504d06284551b62ecc7b1cfae9f4 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "stable"
- "4.1"
before_install:
- npm install svgexport -g
after_success:
- npm run lint
| sudo: false
language: node_js
os:
- linux
- osx
node_js:
- "stable"
- "4.1"
before_install:
- npm install svgexport -g
after_success:
- npm run lint
| Add OSX testing on Travis | Add OSX testing on Travis
| YAML | apache-2.0 | tshoper/gitbook,gencer/gitbook,tshoper/gitbook,gencer/gitbook,strawluffy/gitbook,GitbookIO/gitbook |
7c2d52124bb6ced393e99f40ef4b1133df39ddf2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
branches:
except:
- gh-pages
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- npm install -g bower gulp
- npm install | sudo: false
language: node_js
node_js:
- "0.12"
branches:
except:
- gh-pages
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- npm install -g bower gulp
- npm install | Update Travis to use node 12 and new docker containers | Update Travis to use node 12 and new docker containers
| YAML | mit | dalelotts/angular-prime-directive,dalelotts/angular-prime-directive |
0966704c5430eff81ebe3e55b314a39438ff01e9 | .travis.yml | .travis.yml | language: c
services:
- docker
branches:
only:
- master
- develop
- /^feature\/\w+/
env:
global:
- DOCKER_IMAGE=blacklabelops/virtualbox
script:
- docker run -v $(pwd):$(pwd) -w $(pwd) -e VAGRANT_TOKEN $DOCKER_IMAGE /bin/sh -c 'packer build packer.json'
| language: c
services:
- docker
branches:
only:
- master
- develop
- /^feature\/\w+/
env:
global:
- DOCKER_IMAGE=fathens/docker-packer-virtualbox:develop
script:
- docker run -v $(pwd):$(pwd) -w $(pwd) -e VAGRANT_TOKEN $DOCKER_IMAGE /bin/sh -c 'packer build packer.json'
| Revert "既存の Docker Image を使用" | Revert "既存の Docker Image を使用"
This reverts commit ffff6793cadd80f6ba0b48ffc83f56b3f33800be.
| YAML | mit | fathens/VagrantBox-boot2docker |
d4639742a40a755eeb94779f7fa1396be71fb6b5 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- stable
- '0.12'
install:
- export NODE_ENV=development
- npm install
# Install specific gulp-sass version.
# Compromise between getting builds working for more recent NodeJS versions
- npm uninstall gulp-sass
- npm install gulp-sass@2
- cp _config/task.sass.js test/mock-project/_config/task.sass.js
- cp package.json test/mock-project/package.json
- cd test/mock-project
- npm install
- npm install gulp
- cd ../..
- npm install mocha -g
- npm install gulp-cli -g
script:
- mocha
cache:
directories:
- node_modules
- test/mock-project/node_modules
git:
depth: 1 | sudo: false
language: node_js
node_js:
- stable
- '0.12'
env:
- NODE_ENV=development
install:
- npm install
# Install specific gulp-sass version.
# Compromise between getting builds working for more recent NodeJS versions
- npm uninstall gulp-sass
- npm install gulp-sass@2
- cp _config/task.sass.js test/mock-project/_config/task.sass.js
- cp package.json test/mock-project/package.json
- cd test/mock-project
- npm install
- npm install gulp
- cd ../..
- npm install mocha -g
- npm install gulp-cli -g
script:
- mocha
cache:
directories:
- node_modules
- test/mock-project/node_modules
git:
depth: 1
| Add an .editorconfig file to the module | Add an .editorconfig file to the module
| YAML | mit | cartridge/cartridge-sass,code-computerlove/slate-styles |
e4443513251a12fb250f3246098f8fd887a89087 | .travis.yml | .travis.yml | language: node_js
node_js:
- "lts/argon"
- "lts/boron"
- "7"
sudo: false
dist: trusty
before_install:
- "npm config set spin false"
- "npm install -g npm@latest"
| language: node_js
node_js:
- "lts/argon"
- "lts/boron"
- "7"
sudo: false
dist: trusty
cache:
yarn: true
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
install:
- yarn install --no-lockfile
script:
- yarn test
| Use yarn instead of npm | CI: Use yarn instead of npm
| YAML | mit | kellyselden/broccoli-babel-transpiler,babel/broccoli-babel-transpiler,rwjblue/broccoli-babel-transpiler |
d70f8b6645eead3b3d4be43781fe3d1ca8ee32aa | .travis.yml | .travis.yml | language: rust
sudo: false
matrix:
include:
- rust: 1.0.0
- rust: 1.2.0
- rust: stable
- rust: beta
- rust: nightly
env:
- FEATURES='unstable qc'
- BENCH=1
branches:
only:
- master
script:
- |
cargo build --verbose &&
cargo test --verbose &&
([ -z "$FEATURES" ] || cargo build --verbose --features "$FEATURES") &&
([ -z "$FEATURES" ] || cargo test --verbose --features "$FEATURES") &&
([ "$BENCH" != 1 ] || cargo bench --verbose --features "$FEATURES")
| language: rust
sudo: false
matrix:
include:
- rust: 1.1.0
- rust: 1.2.0
- rust: stable
- rust: beta
- rust: nightly
env:
- FEATURES='unstable qc'
- BENCH=1
branches:
only:
- master
script:
- |
cargo build --verbose &&
cargo test --verbose &&
([ -z "$FEATURES" ] || cargo build --verbose --features "$FEATURES") &&
([ -z "$FEATURES" ] || cargo test --verbose --features "$FEATURES") &&
([ "$BENCH" != 1 ] || cargo bench --verbose --features "$FEATURES")
| Test Rust 1.1 or later | Test Rust 1.1 or later
| YAML | apache-2.0 | rust-itertools/itertools,flo-l/rust-itertools,imp/rust-itertools |
0856698fd3db7d65756147a483649109793c5ba8 | .travis.yml | .travis.yml | sudo: required
dist: trusty
env:
global:
- CLI_VERSION=1.0.0-rc4-004788
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
- NUGET_XMLDOC_MODE=skip
branches:
only:
- master
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
install:
- export DOTNET_INSTALL_DIR="$PWD/.dotnetcli"
- ./tools/install.sh --version "$CLI_VERSION" --install-dir "$DOTNET_INSTALL_DIR"
- export PATH="$DOTNET_INSTALL_DIR:$PATH"
- npm install -g bower
- npm install -g gulp
script:
- ./build.sh
| sudo: required
dist: trusty
env:
global:
- CLI_VERSION=1.0.0-rc4-004788
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
- NUGET_XMLDOC_MODE=skip
branches:
only:
- master
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
install:
- export DOTNET_INSTALL_DIR="$PWD/.dotnetcli"
- curl -sSL https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.sh | bash /dev/stdin --version "$CLI_VERSION" --install-dir "$DOTNET_INSTALL_DIR"
- export PATH="$DOTNET_INSTALL_DIR:$PATH"
- npm install -g bower
- npm install -g gulp
- dotnet --info
script:
- ./build.sh
| Fix Travis CI install script | Fix Travis CI install script
Fix the Travis CI install script to correctly install the .NET SDK.
| YAML | mit | martincostello/api,martincostello/api,martincostello/api |
4e30cbfc30fedccd2ffc79696178ad6b05e088c8 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.5"
- "3.6"
- "pypy"
install:
- pip install -r testing_requirements.txt
- travis_retry pip install coverage
script:
- virtualenv --version
- coverage --version
- cram --version
- coverage run --source=bibpy -m py.test --verbose
- python setup.py install
- python examples/crossref_expansion.py
- python examples/field_conversion.py
- python examples/entry_formatting.py
- python examples/requirements_check.py
- python examples/string_expansion.py
after_success:
- coveralls
branches:
only:
- master
| language: python
python:
- "2.7"
- "3.3"
- "3.5"
- "3.6"
- "pypy"
install:
- pip install -r testing_requirements.txt
- travis_retry pip install coverage
script:
- virtualenv --version
- coverage --version
- cram --version
- pytest --version
- coverage run --source=bibpy -m pytest --verbose
- python setup.py install
- python examples/crossref_expansion.py
- python examples/field_conversion.py
- python examples/entry_formatting.py
- python examples/requirements_check.py
- python examples/string_expansion.py
after_success:
- coveralls
branches:
only:
- master
| Print pytest version on Travis | Print pytest version on Travis
| YAML | mit | MisanthropicBit/bibpy,MisanthropicBit/bibpy |
c2245e1066233307946008631a37f085f0d6b87e | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 10
- 12
after_success:
- npm run coverage
- ./deploy.sh
env:
global:
- COMMIT_AUTHOR_EMAIL: yeoman@yeoman.io
- COMMIT_AUTHOR_NAME: yeoman
- SOURCE_BRANCH: master
- TARGET_BRANCH: gh-pages
- DOCS_DIR: ../yeoman-generator-doc
- GH_OWNER: yeoman
- GH_PROJECT_NAME: generator
- DEPLOY_ON_NODE_VERSION: 12
- secure: >-
Hv7gACQoYGtesz1NTJYRHjGCimEJEjj4bQP2iTpDUUbfAiYe/4QPemoyDEFjRxbu5m2uoYwMk0AQrW7DnQhNAhl7u24jYnRgQyd/2GOx3xZgjwnao27gsrTHss4IyXEaS2h3kRuIVSD+xibz/lwZm+erHOQ9VOwvCQkOKnILXW8=
| sudo: false
language: node_js
node_js:
- 14
- 12
after_success:
- npm run coverage
- ./deploy.sh
env:
global:
- COMMIT_AUTHOR_EMAIL: yeoman@yeoman.io
- COMMIT_AUTHOR_NAME: yeoman
- SOURCE_BRANCH: master
- TARGET_BRANCH: gh-pages
- DOCS_DIR: ../yeoman-generator-doc
- GH_OWNER: yeoman
- GH_PROJECT_NAME: generator
- DEPLOY_ON_NODE_VERSION: 14
- secure: >-
Hv7gACQoYGtesz1NTJYRHjGCimEJEjj4bQP2iTpDUUbfAiYe/4QPemoyDEFjRxbu5m2uoYwMk0AQrW7DnQhNAhl7u24jYnRgQyd/2GOx3xZgjwnao27gsrTHss4IyXEaS2h3kRuIVSD+xibz/lwZm+erHOQ9VOwvCQkOKnILXW8=
| Switch from node 10 to 12 at Travis. | Switch from node 10 to 12 at Travis. | YAML | bsd-2-clause | yeoman/generator,yeoman/generator |
768c315edf184bcd03271b3321f96ec2fc3beb84 | .travis.yml | .travis.yml | sudo: required
language: java
jdk:
- openjdk8
node_js: "8.11.3"
services:
- docker
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
mvn -B -q -Pprod package docker:build;
docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD";
docker push microcks/microcks:latest;
fi
- if [ "$TRAVIS_BRANCH" == "0.9.0" ]; then
mvn -B -q -Pprod -DskipTests package docker:build;
docker tag microcks/microcks microcks/microcks:nightly;
docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD";
docker push microcks/microcks:nightly;
fi
- if [ "$TRAVIS_BRANCH" == "$TRAVIS_TAG" ]; then
mvn -B -q -Pprod package docker:build;
docker tag microcks/microcks microcks/microcks:$TRAVIS_TAG;
docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD";
docker push microcks/microcks:$TRAVIS_TAG;
fi
| sudo: required
language: java
jdk:
- openjdk8
node_js: "8.11.3"
services:
- docker
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
mvn -B -q -Pprod package docker:build;
docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD";
docker push microcks/microcks:latest;
fi
- if [ "$TRAVIS_BRANCH" == "0.9.x" ]; then
mvn -B -q -Pprod -DskipTests package docker:build;
docker tag microcks/microcks microcks/microcks:nightly;
docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD";
docker push microcks/microcks:nightly;
fi
- if [ "$TRAVIS_BRANCH" == "$TRAVIS_TAG" ]; then
mvn -B -q -Pprod package docker:build;
docker tag microcks/microcks microcks/microcks:$TRAVIS_TAG;
docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD";
docker push microcks/microcks:$TRAVIS_TAG;
fi
| Rename 0.9.0 branch into 0.9.x | Rename 0.9.0 branch into 0.9.x
| YAML | apache-2.0 | microcks/microcks,microcks/microcks,microcks/microcks,microcks/microcks,microcks/microcks |
af61d11cc1ac3705d97fc9597ee087c203e677f3 | .travis.yml | .travis.yml | language: rust
sudo: false
notifications:
email:
on_success: never
on_failure: change
branches:
only:
# This is where pull requests from "bors r+" are built.
- staging
# This is where pull requests from "bors try" are built.
- trying
# Build pull requests.
- master
rust:
- nightly
os:
- linux
- osx
- windows
cache:
cargo: true
directories:
- $HOME/Library/Caches/Homebrew
addons:
apt:
packages:
- qemu-system-x86
homebrew:
packages:
- qemu
install:
- if [ $TRAVIS_OS_NAME = windows ]; then wget https://qemu.weilnetz.de/w64/2018/qemu-w64-setup-20180801.exe; 7z x qemu-w64-setup-20180801.exe; fi
before_script:
- rustup component add rust-src
- (test -x $HOME/.cargo/bin/cargo-update-installed || cargo install cargo-update-installed)
- (test -x $HOME/.cargo/bin/cargo-xbuild || cargo install cargo-xbuild)
- (test -x $HOME/.cargo/bin/bootimage || cargo install bootimage)
- cargo update-installed
script:
- bootimage build
- cargo test
- bootimage test
| language: rust
sudo: false
notifications:
email:
on_success: never
on_failure: change
branches:
only:
# This is where pull requests from "bors r+" are built.
- staging
# This is where pull requests from "bors try" are built.
- trying
# Build pull requests.
- master
rust:
- nightly
os:
- linux
- osx
- windows
cache:
cargo: true
directories:
- $HOME/Library/Caches/Homebrew
addons:
apt:
packages:
- qemu-system-x86
homebrew:
packages:
- qemu
install:
- if [ $TRAVIS_OS_NAME = windows ]; then choco install qemu; export PATH="/c/Program Files/qemu:$PATH"; fi
before_script:
- rustup component add rust-src
- (test -x $HOME/.cargo/bin/cargo-update-installed || cargo install cargo-update-installed)
- (test -x $HOME/.cargo/bin/cargo-xbuild || cargo install cargo-xbuild)
- (test -x $HOME/.cargo/bin/bootimage || cargo install bootimage)
- cargo update-installed
script:
- bootimage build
- cargo test
- bootimage test
| Install qemu on Windows through choco | Install qemu on Windows through choco
| YAML | apache-2.0 | phil-opp/blog_os,phil-opp/blogOS,phil-opp/blog_os,phil-opp/blog_os,phil-opp/blogOS,phil-opp/blog_os |
aef4cea121596d93c6061cf3d25714248db954d7 | .travis.yml | .travis.yml | language: python
sudo: false
env:
global:
# Undocumented feature of nose-show-skipped.
NOSE_SHOW_SKIPPED: 1
matrix:
include:
- python: 2.7
env: {TOXENV: py27-cov, COVERAGE: 1}
- python: 3.3
env: {TOXENV: py33-test}
- python: 3.4
env: {TOXENV: py34-test}
- python: 3.5
env: {TOXENV: py35-test}
- python: pypy
env: {TOXENV: pypy-test}
- python: 2.7
env: {TOXENV: py27-flake8}
- python: 3.3
env: {TOXENV: py33-flake8}
# Non-Python dependencies.
addons:
apt:
packages:
- bash-completion
- mp3gain
# To install dependencies, tell tox to do everything but actually running the
# test.
install:
- travis_retry python setup.py test -a "--notest"
script: python setup.py test
# Report coverage to codecov.io.
before_install:
- "[ ! -z $COVERAGE ] && travis_retry pip install codecov || true"
after_success:
- "[ ! -z $COVERAGE ] && codecov || true"
cache:
pip: true
| language: python
sudo: false
env:
global:
# Undocumented feature of nose-show-skipped.
NOSE_SHOW_SKIPPED: 1
matrix:
include:
- python: 2.7
env: {TOXENV: py27-cov, COVERAGE: 1}
- python: 3.3
env: {TOXENV: py33-test}
- python: 3.4
env: {TOXENV: py34-test}
- python: 3.5
env: {TOXENV: py35-test}
- python: pypy
env: {TOXENV: pypy-test}
- python: 2.7
env: {TOXENV: py27-flake8}
- python: 3.3
env: {TOXENV: py33-flake8}
allow_failures:
- python: 3.3
- python: 3.4
- python: 3.5
# Non-Python dependencies.
addons:
apt:
packages:
- bash-completion
- mp3gain
# To install dependencies, tell tox to do everything but actually running the
# test.
install:
- travis_retry python setup.py test -a "--notest"
script: python setup.py test
# Report coverage to codecov.io.
before_install:
- "[ ! -z $COVERAGE ] && travis_retry pip install codecov || true"
after_success:
- "[ ! -z $COVERAGE ] && codecov || true"
cache:
pip: true
| Allow Python 3.3, 3.4 and 3.5 tests to fail | Allow Python 3.3, 3.4 and 3.5 tests to fail
| YAML | mit | beetbox/mediafile |
ab6dcb94918c5692e73d7e025754cdf69c590bb5 | .travis.yml | .travis.yml | language: node_js
node_js:
- 4.4
install:
- npm install -g bower
- npm install
- bower install
| language: node_js
node_js:
- 4.4
before_install:
- cd Front-End
install:
- npm install -g bower
- npm install
- bower install
| Move into good folder before building nodeJS for TravisCI | Move into good folder before building nodeJS for TravisCI | YAML | agpl-3.0 | gabriel-farache/calendar,gabriel-farache/calendar,gabriel-farache/calendar,gabriel-farache/calendar |
269d52b984ca674a457fbe2da2ddca70131e0870 | .travis.yml | .travis.yml | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
- vendor
matrix:
fast_finish: true
include:
- php: 5.5
env:
- COMPOSER_ARGUMENTS=--prefer-lowest
- php: 5.6
env:
- EXECUTE_TEST_COVERALLS=true
- php: 7.0
env:
- EXECUTE_CS_CHECK=true
- php: hhvm
before_install:
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then phpenv config-rm xdebug.ini || return 0; fi
- composer self-update
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer require --dev --no-update satooshi/php-coveralls:dev-master; fi
install:
- travis_retry composer update --no-interaction $COMPOSER_ARGUMENTS
- composer info -i
script:
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then vendor/bin/phpunit --coverage-clover clover.xml; fi
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then vendor/bin/phpunit; fi
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then vendor/bin/php-cs-fixer fix -v --dry-run; fi
after_script:
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then vendor/bin/coveralls -v; fi
| sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
- vendor
matrix:
fast_finish: true
include:
- php: 5.5
env:
- COMPOSER_ARGUMENTS=--prefer-lowest
- php: 5.6
env:
- EXECUTE_TEST_COVERALLS=true
- php: 7.0
env:
- EXECUTE_CS_CHECK=true
- php: hhvm
before_install:
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then phpenv config-rm xdebug.ini || return 0; fi
install:
- travis_retry composer update --no-interaction $COMPOSER_ARGUMENTS
- composer info -i
script:
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then vendor/bin/phpunit --coverage-clover clover.xml; fi
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then vendor/bin/phpunit; fi
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then vendor/bin/php-cs-fixer fix -v --dry-run; fi
after_script:
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then
wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar;
chmod +x coveralls.phar;
php coveralls.phar -v;
fi
| Remove selfupdater and improve coveralls client | [Travis] Remove selfupdater and improve coveralls client
Travis already do composer selfupdater before start to execute travis.yml | YAML | bsd-2-clause | Maks3w/php-library-skeleton |
1be605d77110e97a64a8570c2f06d806691e52d9 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.6"
addons:
apt_packages:
- sqlite3
before_install:
- pip install pep8 pylint
script: make qa
| language: python
python:
- "2.7"
- "3.5"
addons:
apt_packages:
- sqlite3
before_install:
- pip install pep8 pylint
script: make qa
| Use Python 3.5 to avoid pylint bug | Use Python 3.5 to avoid pylint bug
https://github.com/PyCQA/pylint/issues/1282?imz_s=r5tojmsr4io4osig3e0a7q0u07
| YAML | apache-2.0 | dspinellis/rdbunit,dspinellis/rdbunit |
2a33c7113aa4923624f80a726f3f3f4746f0d36a | .travis.yml | .travis.yml | osx_image: xcode8.2
language: objective-c
cache: bundler
rvm:
- 2.3.1
before_install:
- gem install xcpretty -N --no-ri --no-rdoc
- gem install cocoapods -v '1.2.0' -N --no-ri --no-rdoc
script:
- set -o pipefail
- xcodebuild test -workspace Example/Delirium.xcworkspace -scheme Delirium-Example -destination "platform=iOS Simulator,name=iPhone 7" | xcpretty
deploy:
skip_cleanup: true
provider: script
script: 'PATH="${TRAVIS_BUILD_DIR}/bin:$PATH" pod trunk push'
on:
tags: true
branch: master
| osx_image: xcode8.2
language: objective-c
cache: bundler
rvm:
- 2.3.1
before_install:
- gem install xcpretty -N --no-ri --no-rdoc
- gem install cocoapods -v '1.2.0' -N --no-ri --no-rdoc
script:
- set -o pipefail
- xcodebuild test -workspace Example/Delirium.xcworkspace -scheme Delirium-Example -destination 'platform=iOS Simulator,name=iPad Air 2,OS=10.2' | xcpretty
deploy:
skip_cleanup: true
provider: script
script: 'PATH="${TRAVIS_BUILD_DIR}/bin:$PATH" pod trunk push'
on:
tags: true
branch: master
| Use a fixed simulator for Travis. | Use a fixed simulator for Travis.
| YAML | mit | icapps/ios-delirium,icapps/ios-delirium |
f927da7c61885ccb4b4601428940d1f58507aab4 | .travis.yml | .travis.yml | language: ruby
cache: bundler
script: "bundle exec rake"
rvm:
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.6
- 2.5.5
- 2.6.3
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
before_install:
# rubygems 3.x dropped support for Ruby <2.2
- gem update --system 2.7.10
# Rails 4.2 doesn't support bundler 2.0, so we need to lock bundler to
# v1.17.3. This is just for Ruby 2.5 which ships with bundler 2.x on Travis
# CI while Ruby 2.6 does not.
# TODO: Remove once Rails 4.2 support is dropped and we can use bundler 2.x
# TODO: Comment in, once we can use rubygems 3.x (but not bundler 2.x)
# - yes | rvm @global do gem uninstall bundler --all
# - yes | rvm @global do gem install bundler -v 1.17.3 || true
matrix:
fast_finish: true
exclude:
- rvm: 2.1.10
gemfile: gemfiles/rails_5.0.gemfile
- rvm: 2.1.10
gemfile: gemfiles/rails_5.1.gemfile
- rvm: 2.1.10
gemfile: gemfiles/rails_5.2.gemfile
| language: ruby
cache: bundler
script: "bundle exec rake"
rvm:
- 2.4.6
- 2.5.5
- 2.6.3
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
before_install:
- gem update --system
# Rails 4.2 doesn't support bundler 2.0, so we need to lock bundler to
# v1.17.3. This is just for Ruby 2.5 which ships with bundler 2.x on Travis
# CI while Ruby 2.6 does not.
# TODO: Remove once Rails 4.2 support is dropped and we can use bundler 2.x
- yes | rvm @global do gem uninstall bundler --all
- yes | rvm @global do gem install bundler -v 1.17.3 || true
matrix:
fast_finish: true
| Remove EOL Rubies from Travis CI | Remove EOL Rubies from Travis CI
| YAML | mit | expectedbehavior/acts_as_archival,expectedbehavior/acts_as_archival |
d4c04df9ffa038661c2cecfd18b1e1def9cd17fc | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
before_install:
# Use utf8 encoding. Should be default, but this is insurance against
# future changes
- export PYTHONIOENCODING=UTF8
# Install conda
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
# Install dot
- sudo apt-get install graphviz
install:
- conda install --yes pip "pytest<2.6" sphinx cython numpy
- pip install coveralls pytest-cov
before_script:
# Some of the tests use git commands that require a user to be configured
- git config --global user.name "A U Thor"
- git config --global user.email "author@example.com"
script:
- py.test --cov astropy_helpers
after_success:
- coveralls
| language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
before_install:
# Use utf8 encoding. Should be default, but this is insurance against
# future changes
- export PYTHONIOENCODING=UTF8
# Install conda
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
# Update apt-get listings
- sudo apt-get update
# Install dot
- sudo apt-get install graphviz
install:
- conda install --yes pip "pytest<2.6" sphinx cython numpy
- pip install coveralls pytest-cov
before_script:
# Some of the tests use git commands that require a user to be configured
- git config --global user.name "A U Thor"
- git config --global user.email "author@example.com"
script:
- py.test --cov astropy_helpers
after_success:
- coveralls
| Make sure apt-get updates package listings | Make sure apt-get updates package listings | YAML | bsd-3-clause | dpshelio/astropy-helpers,embray/astropy_helpers,larrybradley/astropy-helpers,bsipocz/astropy-helpers,embray/astropy_helpers,astropy/astropy-helpers,astropy/astropy-helpers,embray/astropy_helpers,embray/astropy_helpers,larrybradley/astropy-helpers,larrybradley/astropy-helpers,bsipocz/astropy-helpers,Cadair/astropy-helpers,dpshelio/astropy-helpers,Cadair/astropy-helpers,bsipocz/astropy-helpers |
815b875f88bc5ce49a18df474ef24527c44eab1f | .travis.yml | .travis.yml | rvm:
- 2.0.0
- 1.9.3
before_install: rm -f Gemfile
before_script: bin/ci/before_script
bundler_args: --without development
script: bundle exec rake spec
notifications:
recipients:
- ci@spanner.org
irc: "irc.freenode.org#radiantcms"
env:
- DB=mysql
- DB=postgres
gemfile:
- rails40.gemfile
- rails32.gemfile
| rvm:
- 2.0.0
- 1.9.3
before_install:
- rm -f Gemfile
- gem install -v 1.17.3 bundler
before_script: bin/ci/before_script
bundler_args: --without development
script: bundle exec rake spec
notifications:
recipients:
- ci@spanner.org
irc: "irc.freenode.org#radiantcms"
env:
- DB=mysql
- DB=postgres
gemfile:
- rails40.gemfile
- rails32.gemfile
| Update bundler to 1.17.3 on Travis ... | Update bundler to 1.17.3 on Travis ...
Again, hoping to avoid the weird dependency version resolvement bugs;
https://travis-ci.org/radiant/radiant/jobs/523436660
https://github.com/bundler/bundler/issues/6620
| YAML | mit | radiant/radiant,radiant/radiant,radiant/radiant,radiant/radiant |
8985e498465d437b27ee9e5395cecf644baa7b1c | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
before_install:
- pip install coveralls
install:
- pip install Django==${DJANGO}
- pip install -e .
- pip install -r requirements.txt
script: make coverage
env:
- DJANGO=1.8.8
- DJANGO=1.9.1
matrix:
exclude:
- python: 3.3
env: DJANGO=1.9.1
after_success:
- coveralls
notifications:
email:
on_success: change
on_failure: change
| language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
before_install:
- pip install coveralls
install:
- pip install Django==$_DJANGO
- pip install -e .
- pip install -r requirements.txt
script: make coverage
env:
- _DJANGO=1.8.14
- _DJANGO=1.9.8
matrix:
exclude:
- python: 3.3
env: _DJANGO=1.9.8
after_success:
- coveralls
notifications:
email:
on_success: change
on_failure: change
| Update Django versions for testing | Update Django versions for testing
also make the syntax compatible with Strazar monitoring service.
For more info see
http://mrsenko.com/blog/mr-senko/2016/05/18/triggering-automatic-dependency-testing/
| YAML | bsd-2-clause | pgollakota/django-chartit,pgollakota/django-chartit,pgollakota/django-chartit |
ac8d19ebfc789e774bb52b0e5f7bfa93a776a0a1 | .travis.yml | .travis.yml | language: node_js
node_js:
- "7.0.0"
script: "npm run-script test-cover"
| language: node_js
node_js:
- "7.2.1"
script: "npm run-script test-cover"
| Update node version to 7.2.1 | Update node version to 7.2.1 | YAML | mit | beny78/qwebs,BenoitClaveau/qwebs,BenoitClaveau/qwebs,beny78/qwebs |
b56a620cc14918307508b38636a02d05f0ea2699 | .travis.yml | .travis.yml | ---
os: linux
dist: xenial
language: ruby
cache: bundler
rvm:
- 2.7.1
- 2.6.6
- 2.5.8
- ruby-head
- jruby-9.2.11.0
| ---
os: linux
dist: focal
language: ruby
cache: bundler
rvm:
- 2.7.1
- 2.6.6
- 2.5.8
- ruby-head
- jruby-9.2.11.0
| Use Ubuntu Focal in CI | Use Ubuntu Focal in CI
| YAML | mit | pitluga/keepassx |
d35cf41e9c78221352bffabdf3fc56220c9428d6 | .travis.yml | .travis.yml | language: android
android:
components:
# Update tools and then platform-tools explicitly so lint gets an updated database. Can be removed once 3.0 is out.
- tools
- platform-tools
- sys-img-armeabi-v7a-android-18
jdk:
- oraclejdk8
before_script:
# Install SDK license so Android Gradle plugin can install deps.
- mkdir "$ANDROID_HOME/licenses" || true
script: ./gradlew clean test
branches:
except:
- gh-pages
notifications:
email: false
sudo: false
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle
| language: android
android:
components:
# Update tools and then platform-tools explicitly so lint gets an updated database. Can be removed once 3.0 is out.
- tools
- platform-tools
- sys-img-armeabi-v7a-android-18
jdk:
- oraclejdk8
before_script:
# Install SDK license so Android Gradle plugin can install deps.
- mkdir "$ANDROID_HOME/licenses" || true
- echo "8933bad161af4178b1185d1a37fbf41ea5269c55" > "$ANDROID_HOME/licenses/android-sdk-license"
script: ./gradlew clean test
branches:
except:
- gh-pages
notifications:
email: false
sudo: false
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle
| Add missing license agreement line | Add missing license agreement line
| YAML | apache-2.0 | mikepenz/FastAdapter,mikepenz/FastAdapter,mikepenz/FastAdapter,mikepenz/FastAdapter |
0379705e0c76db68eb8dd368431e55b284bd7e64 | .travis.yml | .travis.yml | language: python
cache: pip
sudo: required
virtualenv:
system_site_packages: true
env:
matrix:
- PYTHON_VERSION="2.7" SCIPY_VERSION="0.17.1" SKLEARN_VERSION="0.17.1"
install:
- "source CI/install.sh"
- "pip install -r requirements.txt"
- "python CI/download_tokenizer.py"
# command to run tests
script:
- "py.test tests/*.py" | language: python
cache: pip
sudo: required
addons:
apt:
packages:
- gfortran
- libgfortran3
virtualenv:
system_site_packages: true
env:
matrix:
- PYTHON_VERSION="2.7" SCIPY_VERSION="0.17.1" SKLEARN_VERSION="0.17.1"
install:
- "source CI/install.sh"
- "pip install -r requirements.txt"
- "python CI/download_tokenizer.py"
# command to run tests
script:
- "py.test tests/*.py" | Fix libfortran errors from gensim | TravisCI: Fix libfortran errors from gensim
| YAML | mit | KshitijKarthick/tvecs,KshitijKarthick/tvecs,KshitijKarthick/tvecs |
afd10968ddfe267f861d39c928bb59d3c67738db | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.0
before_install: gem install bundler -v 1.10.6
| language: ruby
rvm:
- 2.3.0
before_install: gem install bundler -v 1.11.2
gemfile:
- gemfiles/Gemfile-rails.4.2.x
| Use custom Gemfile on Travis | Use custom Gemfile on Travis
| YAML | mit | amatsuda/motorhead,amatsuda/motorhead,amatsuda/motorhead |
03d2bd41b584366dd22171865e577328cc537f36 | .travis.yml | .travis.yml | # Just apply Travis-CI for these branches
branches:
only:
- master
- experimental
language: node_js
node_js:
- 4
- 6
- 7
- 8
install:
- cd client/ && npm install && gulp babel && cd ..
- cd server/ && npm install && cd ..
- cd test/ && npm install && cd ..
script:
- cd test/ && npm test
notifications:
email:
recipients:
- ibc@aliax.net
on_success: change
on_failure: always
| # Just apply Travis-CI for these branches
branches:
only:
- master
- experimental
language: node_js
node_js:
- 6
- 8
- 10
install:
- cd client/ && npm install && gulp babel && cd ..
- cd server/ && npm install && cd ..
- cd test/ && npm install && cd ..
script:
- cd test/ && npm test
notifications:
email:
recipients:
- ibc@aliax.net
on_success: change
on_failure: always
| Update Node versions in Travis | Update Node versions in Travis
| YAML | mit | ibc/protoo |
f296767438766a99c2132fc65048aa80d6f4fbab | .travis.yml | .travis.yml | language: groovy
groovy:
- 2.4.5
jdk:
- oraclejdk7
script: ./gradlew clean build
branches:
except:
- gh-pages
notifications:
email: false
| language: groovy
groovy:
- 2.4.5
jdk:
- oraclejdk8
- oraclejdk7
script: ./gradlew clean build
branches:
except:
- gh-pages
notifications:
email: false
| Test again JDK 7 + 8 | Test again JDK 7 + 8 | YAML | apache-2.0 | thomaspaulmann/Documentor |
197c0719dca18542870e992d538fc1c50930fe40 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
compiler:
- clang
install:
- "python setup.py install"
- "pip install coveralls"
script:
- "nosetests --with-coverage --cover-package=shellinford"
after_success:
- coveralls
| language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
compiler:
- clang
install:
- "python setup.py install"
- "pip install coveralls"
script:
- "nosetests --with-coverage --cover-package=shellinford"
after_success:
- coveralls
| Remove Python 3.7 test temporary | Remove Python 3.7 test temporary
| YAML | bsd-3-clause | ikegami-yukino/shellinford-python,ikegami-yukino/shellinford-python |
69ec7c3495036415f133c5fec34628c873cf93b6 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: node_js
node_js:
- "8"
- "9"
- "10"
- "11"
- "12"
notifications:
email:
- yakov@therocketsurgeon.com
- tallpsmith@gmail.com
| sudo: required
dist: trusty
language: node_js
node_js:
- "10"
- "11"
- "12"
notifications:
email:
- yakov@therocketsurgeon.com
- tallpsmith@gmail.com
| Remove Node.js versions 8 & 9 now that these are long end of life | Remove Node.js versions 8 & 9 now that these are long end of life
| YAML | mit | Aconex/drakov,Aconex/drakov |
22bb1b933702dfd2f0a3932aef2963ff00ecb745 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.1.6
- 2.2.2
| language: ruby
rvm:
- 1.9.3
- 2.1.6
- 2.2.3
- jruby-head
| Add JRuby as test target on Travis CI | Add JRuby as test target on Travis CI
| YAML | unlicense | bhuga/promising-future,philipmw/promising-future |
17cd4f7d0c6f6f06350be2fea7f21259f50bb2b2 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
- "9"
notifications:
email: false
| language: node_js
sudo: false
node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
notifications:
email: false
| Remove Node 4, 5 and add 10 | tests: Remove Node 4, 5 and add 10
| YAML | mit | RobLoach/metalsmith-jstransformer |
65fbc00aec117d6c3dfda3be2f56293e076aa1ec | .travis.yml | .travis.yml | language: cpp
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- libboost-all-dev
before_script:
- cd ../..
- git clone https://github.com/czipperz/vick czipperz/vick
- cd czipperz/vick
- mkdir -p plugins
- cd plugins
# customize me!
- git clone https://github.com/czipperz/vick-plugin-base
- cd ..
script:
- make regen Dtesting=-Dtesting
- make CXX=g++-4.8 test -j 10
| language: cpp
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- libboost-all-dev
before_script:
- cd ../..
- git clone https://github.com/czipperz/vick czipperz/vick
- cd czipperz/vick
- mkdir -p plugins
- cd plugins
# customize me!
- git clone https://github.com/czipperz/vick-plugin-base
- cd ..
script:
- make regen Dtesting=-Dtesting
- make CXX=g++-4.8 test -j 10
- make CXX=g++-4.8 -j 10
| Call normal make in plugins | Call normal make in plugins
| YAML | unlicense | czipperz/vick-makefile,czipperz/vick-page,czipperz/vick-find,czipperz/vick-compile,czipperz/vick-open-line,czipperz/vick-shell-command,czipperz/vick-insert-mode,czipperz/vick-linear-change-manager,czipperz/vick-join |
e2687b2d7694a212114c70aa52aa0497a90f31cc | .travis.yml | .travis.yml | language: node_js
node_js:
- 4
install:
- npm install
script:
- npm run check
| language: node_js
node_js:
- 4
install:
- npm install npm
- npm install
script:
- npm run check
| Install on Travis with latest npm. | Install on Travis with latest npm.
| YAML | mit | cloverfield-tools/universal-react-boilerplate,ericelliott/universal-react-boilerplate,ericelliott/universal-react-boilerplate,gacosta89/knightsTour,gacosta89/knightsTour,cloverfield-tools/universal-react-boilerplate |
a0ce0fa75bb82620e7dbd36891ed04a2975e9a6c | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer selfupdate
install:
- composer install
before_script:
- mkdir -p build/logs
script:
- phpunit --coverage-clover build/logs/clover.xml
after_script:
- test -e build/logs/clover.xml && wget https://scrutinizer-ci.com/ocular.phar
- test -e build/logs/clover.xml && php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
| language: php
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer selfupdate
install:
- composer install
before_script:
- mkdir -p build/logs
script:
- phpunit --coverage-clover build/logs/clover.xml
after_script:
- test -e build/logs/clover.xml && wget https://scrutinizer-ci.com/ocular.phar
- test -e build/logs/clover.xml && php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
| Test on PHP 7.0 and 7.1 | Test on PHP 7.0 and 7.1
| YAML | mit | clippings/phantom-pdf,clippings/phantom-pdf,clippings/phantom-pdf |
bff0fa21b7cc1fdff0825ee746d13f0c89b21316 | .travis.yml | .travis.yml | # https://travis-ci.org/diyan/assimilator
language: go
dist: trusty
# Define 'sudo: false' to run on container-based workers
sudo: false
go:
- 1.5.x
- 1.6.x
- 1.7.x
- master
env:
- GOOS=linux GOARCH=amd64
# - GOOS=linux GOARCH=386
# - GOOS=linux GOARCH=arm
# - GOOS=darwin GOARCH=amd64
# - GOOS=darwin GOARCH=386
# - GOOS=darwin GOARCH=arm
# - GOOS=windows GOARCH=amd64
# - GOOS=windows GOARCH=386
before_install:
- go get github.com/Masterminds/glide
install:
- env
- make get-go-deps
script:
- make build-go
#after_success:
# - coveralls
| # https://travis-ci.org/diyan/assimilator
language: go
dist: trusty
# Define 'sudo: false' to run on container-based workers
sudo: false
go:
- 1.5.x
- 1.6.x
- 1.7.x
- master
env:
- GOOS=linux GOARCH=amd64
# - GOOS=linux GOARCH=386
# - GOOS=linux GOARCH=arm
# - GOOS=darwin GOARCH=amd64
# - GOOS=darwin GOARCH=386
# - GOOS=darwin GOARCH=arm
# - GOOS=windows GOARCH=amd64
# - GOOS=windows GOARCH=386
before_install:
- if go version | grep --quiet go1.5; then export GO15VENDOREXPERIMENT=1; fi
- go get github.com/Masterminds/glide
install:
- env
- make get-go-deps
script:
- make build-go
#after_success:
# - coveralls
| Set GO15VENDOREXPERIMENT for Go 1.5 on Travis | Set GO15VENDOREXPERIMENT for Go 1.5 on Travis
| YAML | mit | diyan/assimilator,diyan/assimilator,diyan/assimilator |
abb79390d9c8ef0aad994499d2c9b7797e6253b2 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
matrix:
allow_failures:
- php: 5.5
env:
global:
secure: "2RoFj0l11RstXSJZKtTCGksMRVy2b1ecA0Kp96PM7hbGZ6W3sslvemSD6YWN\nLEbKLZlHrbld98x1z0vXGqMTU6FCaXdYNjym59yOgD8caGBgEzmrs3RmgW5l\n3Q/ZVwB6Ld17tlOrGa6igyJ+P8kWvZP0AcriVZJDW5pH49XEAjU="
install:
- ./.travis.install
script: vendor/bin/phpunit --configuration phpunit.xml.dist
| language: php
php:
- 5.3
- 5.4
- 5.5
matrix:
allow_failures:
- php: 5.5
env:
global:
secure: "2RoFj0l11RstXSJZKtTCGksMRVy2b1ecA0Kp96PM7hbGZ6W3sslvemSD6YWN\nLEbKLZlHrbld98x1z0vXGqMTU6FCaXdYNjym59yOgD8caGBgEzmrs3RmgW5l\n3Q/ZVwB6Ld17tlOrGa6igyJ+P8kWvZP0AcriVZJDW5pH49XEAjU="
before_install:
- composer self-update --no-interaction --ansi
install:
- ./.travis.install
script: vendor/bin/phpunit --configuration phpunit.xml.dist
| Configure Travis to update composer before install | Configure Travis to update composer before install
| YAML | mit | rchouinard/rych-random |
82b57eab8277531023d1ffe3a073539460bf32db | .travis.yml | .travis.yml | language: c
compiler:
- clang
script: PLATFORM=TESTING make test_long
install:
- gem install coveralls-lcov
before_install:
- sudo apt-get update -qq
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq -y libgd2-xpm ia32-libs
ia32-libs-multiarch; fi
- script/bootstrap.sh
- cd src
after_success:
- PLATFORM=TESTING make coverage
- coveralls-lcov build/tests/coverage.info
deploy:
provider: releases
api_key:
secure: NOSHkTeRCfYcfW6ft8/5xOsEmn0DFrfvJL0UFsDQ9f0dBPoXPMJpgbXr+0i4wbMvwIgAKmJ2SfgvIBcm8IWXhLSMsZiaaTvrbomNgqI8ZIghBdSe6GARaiF/9V/A5l/8zCVMs65Kpo1BssC0BiESpIgoOR/aeF5J6TmCIbUe03k=
before_deploy: echo "n" | fab release:skip_tests=True
skip_cleanup: true
file_glob: true
file: "./release/openxc-vi-firmware-v*.*.*.zip"
on:
repo: openxc/vi-firmware
tags: true
| language: c
compiler:
- clang
script: PLATFORM=TESTING make test_long
install:
- gem install coveralls-lcov
before_install:
- sudo apt-get update -qq
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq -y libgd2-xpm ia32-libs
ia32-libs-multiarch; fi
- script/bootstrap.sh
- cd src
after_success:
- PLATFORM=TESTING make coverage
- coveralls-lcov build/tests/coverage.info
before_deploy: echo "n" | fab release:skip_tests=True
deploy:
provider: releases
api_key:
secure: NOSHkTeRCfYcfW6ft8/5xOsEmn0DFrfvJL0UFsDQ9f0dBPoXPMJpgbXr+0i4wbMvwIgAKmJ2SfgvIBcm8IWXhLSMsZiaaTvrbomNgqI8ZIghBdSe6GARaiF/9V/A5l/8zCVMs65Kpo1BssC0BiESpIgoOR/aeF5J6TmCIbUe03k=
skip_cleanup: true
file_glob: true
file: "./release/openxc-vi-firmware-v*.*.*.zip"
on:
repo: openxc/vi-firmware
tags: true
| Fix before_deploy config for CI. | Fix before_deploy config for CI.
| YAML | bsd-3-clause | ene-ilies/vi-firmware,openxc/vi-firmware,ene-ilies/vi-firmware,ene-ilies/vi-firmware,ene-ilies/vi-firmware,openxc/vi-firmware,openxc/vi-firmware,openxc/vi-firmware |
5d5d51c98b308ba044e432d95ccfc0b98472626e | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- oraclejdk8
addons:
postgresql: 9.4
apt:
packages:
- oracle-java8-installer
before_script:
- mvn versions:display-dependency-updates versions:display-plugin-updates
- psql -c 'create database mtsar;' -U postgres
- java -jar target/mtsar-*.jar db migrate environment.yml.travis
- mvn clean
env:
- MTSAR_TEST_YAML=environment.yml.travis
cache:
directories:
- $HOME/.m2
| sudo: false
language: java
jdk:
- oraclejdk8
addons:
postgresql: 9.5
apt:
packages:
- oracle-java8-installer
before_script:
- mvn versions:display-dependency-updates versions:display-plugin-updates
- psql -c 'create database mtsar;' -U postgres
- java -jar target/mtsar-*.jar db migrate environment.yml.travis
- mvn clean
env:
- MTSAR_TEST_YAML=environment.yml.travis
cache:
directories:
- $HOME/.m2
| Switch to PostgreSQL on Travis CI | Switch to PostgreSQL on Travis CI [ci skip]
| YAML | apache-2.0 | mtsar/mtsar,dustalov/mtsar,dustalov/mtsar,mtsar/mtsar,dustalov/mtsar,mtsar/mtsar |
68cfb1bd7d1f6e9958c23a6615339815187cf011 | .travis.yml | .travis.yml | language: go
go:
- 1.5
- 1.6
- 1.7
- master
gobuild_args: -race
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/69b57e988266b7fa9abe
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # default: false
| language: go
go:
- 1.5
- 1.6
- 1.7
gobuild_args: -race
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/69b57e988266b7fa9abe
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # default: false
| Remove master branch for git -- its broken on Travis. | Remove master branch for git -- its broken on Travis.
| YAML | apache-2.0 | gdamore/mangos,abelfrye/mangos,go-mangos/mangos,go-mangos/mangos |
544c356191946023de4f668f73463255e4829582 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "5"
before_install:
- npm install -g npm@latest
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "5"
before_install:
- npm set progress=false
- npm install -g npm@latest
| Disable progress bar for npm install | Disable progress bar for npm install
| YAML | mit | jupl/eslint-config |
72c5d1327d57a199d485a6f8163f6461c9bd2a7a | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.8.7-p374"
- "1.9.2"
- "1.9.3"
before_install:
- sudo apt-get update
- sudo apt-get install expect
script:
bundle exec cucumber -f progress
| language: ruby
rvm:
- "1.8.7-p374"
- "1.9.2"
- "1.9.3"
- "2.0.0"
- "2.1.5"
before_install:
- sudo apt-get update
- sudo apt-get install expect
script:
bundle exec cucumber -f progress
| Add new versions of Ruby to Travis matrix | Add new versions of Ruby to Travis matrix
| YAML | mit | charneykaye/hiera-eyaml,gdubicki/hiera-eyaml,mkulke/hiera-eyaml,TomPoulton/hiera-eyaml,charneykaye/hiera-eyaml,kyledecot/hiera-eyaml,elyscape/hiera-eyaml,gdubicki/hiera-eyaml,TomPoulton/hiera-eyaml,mkulke/hiera-eyaml,elyscape/hiera-eyaml,kyledecot/hiera-eyaml |
733139c78b64ff04dfbbe450715235a7e16dc18d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| sudo: false
language: node_js
node_js:
- '0.12'
| Build only on Node v0.12. | Build only on Node v0.12.
| YAML | mit | rishabhsrao/generator-ironhide-webapp,rishabhsrao/generator-ironhide-webapp,rishabhsrao/generator-ironhide-webapp |
f1229800c7b54cc39caeb8c4c6bfe59555853143 | .travis.yml | .travis.yml | sudo: false
language: java
addons:
sonarqube:
organization: "jcgay-github"
token:
secure: "LzgaDK3Jw49v8jDdR6bnb+F9m7mscSaS5KiZEs7pxAzWRgPYVjc3eBipDaMzHYQvUMprTnh1gPL3k45m7CdH5gUN1JeGQxaD4F/0oIVHOlUDDACUSlzpmXdcEcFmtQjo9DXNWWr4e0dNeHC/zk+4edu+dRQtVSDBk5zWXSmrEoQ"
before_install:
- jdk_switcher use openjdk6
- sed -i "s|\[JDK6\]|$JAVA_HOME|g" etc/toolchains.xml
- jdk_switcher use oraclejdk8
install:
- mvn install -DskipTests=true -B -V -t etc/toolchains.xml
script:
- mvn package sonar:sonar -Prun-coverage -B -t etc/toolchains.xml
after_success:
- mvn install coveralls:report -Prun-coverage -t etc/toolchains.xml
cache:
directories:
- '$HOME/.m2/repository'
- '$HOME/.sonar/cache'
| sudo: false
language: java
addons:
sonarcloud:
organization: "jcgay-github"
token:
secure: "LzgaDK3Jw49v8jDdR6bnb+F9m7mscSaS5KiZEs7pxAzWRgPYVjc3eBipDaMzHYQvUMprTnh1gPL3k45m7CdH5gUN1JeGQxaD4F/0oIVHOlUDDACUSlzpmXdcEcFmtQjo9DXNWWr4e0dNeHC/zk+4edu+dRQtVSDBk5zWXSmrEoQ"
before_install:
- jdk_switcher use openjdk6
- sed -i "s|\[JDK6\]|$JAVA_HOME|g" etc/toolchains.xml
- jdk_switcher use oraclejdk8
install:
- mvn install -DskipTests=true -B -V -t etc/toolchains.xml
script:
- mvn package sonar:sonar -Prun-coverage -B -t etc/toolchains.xml
after_success:
- mvn install coveralls:report -Prun-coverage -t etc/toolchains.xml
cache:
directories:
- '$HOME/.m2/repository'
- '$HOME/.sonar/cache'
| Use new sonarcloud addon name on Travis CI | Use new sonarcloud addon name on Travis CI
| YAML | mit | jcgay/maven-color |
88a16b73ab07d3bdf303b2f1d93da8f85ff1f90e | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.2
deploy:
provider: rubygems
api_key:
secure: kwPTUQGR25urq/yKIFLcV2TjBalTGU5uWI+jK36I1fatvtbk6geL3BbpPuyiIQOvu2Kge6c5bEQpnOFNNeRW08G7vojhn1aFp7MtKLuE47jazbA1ekGh7Cvyt/actu9wensNAuew87IpJW9Fjxu+5B/RHz678nJqIA4zxFwL1TU=
gem: metasploit-runner
on:
tags: true
repo: amngibson/metasploit-runner
all_branches: true
| language: ruby
rvm:
- 2.1.2
- 2.1.5
- 2.2.0
deploy:
provider: rubygems
api_key:
secure: kwPTUQGR25urq/yKIFLcV2TjBalTGU5uWI+jK36I1fatvtbk6geL3BbpPuyiIQOvu2Kge6c5bEQpnOFNNeRW08G7vojhn1aFp7MtKLuE47jazbA1ekGh7Cvyt/actu9wensNAuew87IpJW9Fjxu+5B/RHz678nJqIA4zxFwL1TU=
gem: metasploit-runner
on:
tags: true
repo: amngibson/metasploit-runner
all_branches: true
| Add some more Ruby versions to the TravisCI verify | Add some more Ruby versions to the TravisCI verify
| YAML | mit | amngibson/metasploit-runner |
5a215f2efcc8a186db97c748bc73e8c132ef56b9 | .travis.yml | .travis.yml | language: node_js
node_js:
- '8'
- '9'
script: 'npm run ci'
| language: node_js
node_js:
- '8'
- '10'
- '12'
script: 'npm run ci'
| Drop node.js 9, add 10 and 12 | Drop node.js 9, add 10 and 12
| YAML | bsd-3-clause | unexpectedjs/unexpected-stream |
282785a07e954bd96c6a624ba83d9932fcf4a4de | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
- 2.1
cache: bundler
gemfile:
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.0.gemfile
- gemfiles/rails_4.1.gemfile
- gemfiles/rails_4.2.gemfile
| language: ruby
rvm:
- 2.2
- 2.1
cache: bundler
before_install: gem install bundler
gemfile:
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.0.gemfile
- gemfiles/rails_4.1.gemfile
- gemfiles/rails_4.2.gemfile
| Update bundler to avoid crashing | Update bundler to avoid crashing
| YAML | mit | gtd/validation_scopes |
184e8e8ecb08860dd9090a9ec696f0bfca6405ea | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script: python nordicsemi -h
| language: python
python:
- "2.7"
#- "3.4"
#- "3.5"
#- "3.5-dev" # 3.5 development branch
#- "nightly" # currently points to 3.6-dev
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script: python nordicsemi -h
| Edit CI until pynrfjprog is fixed | Edit CI until pynrfjprog is fixed
TODO: pynrfjprog is broken for Python 3. | YAML | bsd-3-clause | mjdietzx/nrfjprog |
2ecedd9a2b399c09694e3c61f0444aeeed368633 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install -g npm
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| Use the NPM on tap. | Use the NPM on tap.
| YAML | mit | bigeasy/vestibule,bigeasy/signal,bigeasy/vestibule |
5cee4a53c19b500144063c1122e3d9fc873ca58b | .travis.yml | .travis.yml | language: node_js
node_js:
- '4.0'
- '8.0'
after_script: bash <(curl -s https://codecov.io/bash)
deploy:
- provider: npm
email: tituswormer@gmail.com
api_key:
secure: Mv/7/oYjB9H9G/WL2lTaCZ3+qq2NXBdNtKTeZsrw8qDI4taGqYkq91CCbwRdBe+rH+pyQL++aKEBPlb3yx8liAklXWpPMlav/VYzcNMb3DsaJg9YN/q0qdrmhNQ2nj0NFlFoTR7/HoQzwB61bI2upCFDG1zfmKpLca4hjseQML8=
on:
tags: true
node: '8.0'
- provider: releases
api_key:
secure: VCUx8OF+mGbR3bWqlaSXWOq2zsLjnfYowCgRPxfX0sOPWtzVmVW+8hKz323Qx8/yfkebulJzQ1p1Up3iZoqTwoxH3va0FUz2EnFwUZx2Mu93CHS4soF7b2vLEpCXlB8TCkq+Ywdp2I3oFJP+2vrxEpAv0oQddeWEqx086hvoRvk=
file:
- "trigram-utils.js"
- "trigram-utils.min.js"
on:
tags: true
node: '8.0'
| language: node_js
node_js:
- '4.0'
- '8.0'
after_script: bash <(curl -s https://codecov.io/bash)
deploy:
provider: releases
api_key:
secure: VCUx8OF+mGbR3bWqlaSXWOq2zsLjnfYowCgRPxfX0sOPWtzVmVW+8hKz323Qx8/yfkebulJzQ1p1Up3iZoqTwoxH3va0FUz2EnFwUZx2Mu93CHS4soF7b2vLEpCXlB8TCkq+Ywdp2I3oFJP+2vrxEpAv0oQddeWEqx086hvoRvk=
file:
- "trigram-utils.js"
- "trigram-utils.min.js"
on:
tags: true
node: '8.0'
| Remove npm deployment from Travis | Remove npm deployment from Travis
| YAML | mit | wooorm/trigram-utils |
d2bd1707a3afcb0b377389381809b50ec0f966f3 | .travis.yml | .travis.yml | language: go
go:
- "1.7"
- "1.8"
- "1.9"
- "1.10"
- "1.11"
before_script:
- go get -u golang.org/x/lint/golint
- go get github.com/mattn/goveralls
script:
- test -z $(gofmt -s -l ./*.go)
- go test -v -covermode=count -coverprofile=profile.cov ./...
- go vet ./...
- goveralls -coverprofile=profile.cov -service=travis-ci -repotoken $COVERALLS_TOKEN || true
| language: go
go:
- "1.9"
- "1.10"
- "1.11"
before_script:
- go get -u golang.org/x/lint/golint
- go get github.com/mattn/goveralls
script:
- test -z $(gofmt -s -l ./*.go)
- go test -v -covermode=count -coverprofile=profile.cov ./...
- go vet ./...
- goveralls -coverprofile=profile.cov -service=travis-ci -repotoken $COVERALLS_TOKEN || true
| Drop Travis for Go v1.7 and v1.8 | Drop Travis for Go v1.7 and v1.8
| YAML | mit | stevenroose/gonfig |
e6b7b78bd967eac66c24605d22ec8252bc859ada | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
env:
- CHEF_VERSION="= 11.4.0"
- CHEF_VERSION="~> 11.0"
- CHEF_VERSION="= 12.0.0"
- CHEF_VERSION="~> 12.0"
matrix:
exclude:
- rvm: 1.9.2
env: CHEF_VERSION="= 12.0.0"
- rvm: 1.9.2
env: CHEF_VERSION="~> 12.0"
- rvm: 1.9.3
env: CHEF_VERSION="= 12.0.0"
- rvm: 1.9.3
env: CHEF_VERSION="~> 12.0"
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
sudo: false
env:
- CHEF_VERSION="= 11.4.0"
- CHEF_VERSION="~> 11.0"
- CHEF_VERSION="= 12.0.0"
- CHEF_VERSION="~> 12.0"
matrix:
exclude:
- rvm: 1.9.2
env: CHEF_VERSION="= 12.0.0"
- rvm: 1.9.2
env: CHEF_VERSION="~> 12.0"
- rvm: 1.9.3
env: CHEF_VERSION="= 12.0.0"
- rvm: 1.9.3
env: CHEF_VERSION="~> 12.0"
| Use the new build env on Travis | Use the new build env on Travis
more ram, dedicated cpus, better networking, more capacity | YAML | apache-2.0 | zuazo/chef-encrypted-attributes,onddo/chef-encrypted-attributes |
302b666372329a4a3470f768f3e7b603e464540d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '6.3'
after_install:
- npm dedupe
- npm shrinkwrap --dev
- cat npm-shrinkwrap.json
script:
- gulp build --type=prod
after_success:
- 'curl -L https://github.com/netlify/netlifyctl/releases/download/v0.1.0/netlifyctl-linux-amd64-v0.1.0.tar.gz | tar zx'
- '[ $TRAVIS_BRANCH == master ] && ./netlifyctl -y -A $NETLIFY_TOKEN -C netlify.prod.toml deploy'
- '[ $TRAVIS_BRANCH == release ] && ./netlifyctl -y -A $NETLIFY_TOKEN -C netlify.release.toml deploy'
- '[ $TRAVIS_BRANCH == feat/new-ux ] && surge --project ./dist --domain sandbox1.prototypo.io'
branches:
only:
- master
- release
- feat/new-ux
notifications:
slack:
secure: nROAluwgT8ytE/2dlg2wKFDp/bA3AGd2SHOAN4mKwefAAyudofWhlx85qNLcLUAjfvIVYdPBRXx6BwlF0l5pAl7WCJKEFMAfhFZeXwEVd3DTXK9SvEwMym9qEiZXI6vyZY3IHb7MFy2p6uXpFE9Ub1Vdq8AEV7OPW8UZ742PYEA=
| sudo: false
language: node_js
node_js:
- '6.3'
after_install:
- npm dedupe
- npm shrinkwrap --dev
- cat npm-shrinkwrap.json
script:
- NODE_ENV=production gulp build --type=prod
after_success:
- 'curl -L https://github.com/netlify/netlifyctl/releases/download/v0.1.0/netlifyctl-linux-amd64-v0.1.0.tar.gz | tar zx'
- '[ $TRAVIS_BRANCH == master ] && ./netlifyctl -y -A $NETLIFY_TOKEN -C netlify.prod.toml deploy'
- '[ $TRAVIS_BRANCH == release ] && ./netlifyctl -y -A $NETLIFY_TOKEN -C netlify.release.toml deploy'
branches:
only:
- master
- release
notifications:
slack:
secure: nROAluwgT8ytE/2dlg2wKFDp/bA3AGd2SHOAN4mKwefAAyudofWhlx85qNLcLUAjfvIVYdPBRXx6BwlF0l5pAl7WCJKEFMAfhFZeXwEVd3DTXK9SvEwMym9qEiZXI6vyZY3IHb7MFy2p6uXpFE9Ub1Vdq8AEV7OPW8UZ742PYEA=
| Update config to minify only in production | Update config to minify only in production
| YAML | mpl-2.0 | byte-foundry/prototypo,byte-foundry/prototypo,byte-foundry/prototypo |
1c0c803802e51173e1f37fea8529586c5743ff80 | .travis.yml | .travis.yml | language: ruby
before_script:
- "export RAILS_ENV=development"
- "export PULL_REQUEST_ID=${TRAVIS_PULL_REQUEST}"
script:
- "bundle exec pronto run -f github_pr -c origin/develop"
- "bundle exec rake test"
rvm:
- 2.0.0
- 1.9.3
| language: ruby
before_script:
- export RAILS_ENV=development
- export PULL_REQUEST_ID=${TRAVIS_PULL_REQUEST}
script:
- bundle exec pronto run -f github_pr -c origin/develop
- bundle exec rake test
rvm:
- 2.0.0
- 1.9.3
env:
secure: EGZMq7mUTRi3YrWoczfYos8oJtC7g6Nvm/ludTOZzpFAKNU1UiubCy37L7qV4OfO8ACewQrvFMIOB1Jtj8q/UAQgJH+xHY9U5ghDAvnBDmFdJ0JUksy2H3tHBzU2eAIRrdHuBk507/rgRgwCOxAqtFOUrlu4GVozeaBnjYcJscQ=
| Add api key for pronto | Add api key for pronto
| YAML | mit | diaspora/vines,diaspora/vines |
0a76f6eb7fb96d863b7075d2f3c6919d4bb8171c | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
matrix:
include:
- php: 5.6
env: PHPUNIT_OPTIONS="--coverage-clover build/logs/clover.xml"
install:
- composer install
script:
- phpunit $PHPUNIT_OPTIONS
after_script:
- "if [[ ! -f build/logs/clover.xml ]] ; then php vendor/bin/coveralls -v; fi"
- "if [[ ! -f build/logs/clover.xml ]] ; then wget https://scrutinizer-ci.com/ocular.phar; fi"
- "if [[ ! -f build/logs/clover.xml ]] ; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi"
| language: php
php:
- 5.3
- 5.4
- 5.5
matrix:
include:
- php: 5.6
env: PHPUNIT_OPTIONS="--coverage-clover build/logs/clover.xml"
install:
- composer install
script:
- phpunit $PHPUNIT_OPTIONS
after_script:
- "if [[ ! -f build/logs/clover.xml ]] ; then php vendor/bin/coveralls -v; fi"
- "if [[ ! -f build/logs/clover.xml ]] ; then wget https://scrutinizer-ci.com/ocular.phar; fi"
- "if [[ ! -f build/logs/clover.xml ]] ; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi"
| Remove PHP 5.3.3, there is a separate issue for this. | Remove PHP 5.3.3, there is a separate issue for this.
| YAML | mit | elliotchance/concise,elliotchance/concise |
ae34c930a0c195f82f9cb740cbbdd9344c81158f | .travis.yml | .travis.yml | sudo: required
services:
- docker
env:
DOCKER_COMPOSE_VERSION: 1.7.1
DEBIAN_FRONTEND: noninteractive
before_install:
- sudo apt-get update
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine
- sudo service docker restart
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
script:
- docker-compose up --build
after_script:
- ls -R build/
| env:
- _SHIBBOLETH_VERSION=2.5.6
- _SHIBBOLETH_VERSION=2.6.0
- _SHIBBOLETH_VERSION=
sudo: required
services:
- docker
env:
DOCKER_COMPOSE_VERSION: 1.7.1
DEBIAN_FRONTEND: noninteractive
before_install:
- sudo apt-get update
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine
- sudo service docker restart
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
script:
- docker-compose up --build
after_script:
- ls -R build/
| Test on various versions of Shibboleth | Test on various versions of Shibboleth
| YAML | mit | nginx-shib/shibboleth-fastcgi |
cdca429eba9e9b3a995fe92301dd6a498214cba7 | .travis.yml | .travis.yml | language: csharp
solution: Nerdle.AutoConfig.sln
install:
- nuget restore Nerdle.AutoConfig.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release Nerdle.AutoConfig.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./Nerdle.AutoConfig.Tests.Integration/bin/Release/Nerdle.AutoConfig.Tests.Integration.dll ./Nerdle.AutoConfig.Tests.Unit/bin/Release/Nerdle.AutoConfig.Tests.Unit.dll | language: csharp
solution: Nerdle.AutoConfig.sln
install:
- nuget restore Nerdle.AutoConfig.sln
- nuget install NUnit.Runners -Version 2.7.0 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release Nerdle.AutoConfig.sln
- mono ./testrunner/NUnit.Runners.2.7.0/tools/nunit-console.exe ./Nerdle.AutoConfig.Tests.Integration/bin/Release/Nerdle.AutoConfig.Tests.Integration.dll ./Nerdle.AutoConfig.Tests.Unit/bin/Release/Nerdle.AutoConfig.Tests.Unit.dll | Update NUnit.Runners to version 2.7.0 on Travis | Update NUnit.Runners to version 2.7.0 on Travis
| YAML | mit | edpollitt/Nerdle.AutoConfig |
b8c112241a5c321782207df63355b997e304422e | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
- hhvm
sudo: false
install:
- composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-text
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
# also test against HHVM, but require "trusty" and ignore errors
matrix:
include:
- php: hhvm
dist: trusty
allow_failures:
- php: hhvm
sudo: false
install:
- composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-text
| Fix HHVM build for now again and ignore future HHVM build errors | Fix HHVM build for now again and ignore future HHVM build errors
| YAML | mit | clue/php-soap-react |
c323cd07c15dd41d3658eb448f7f667c5e7e0e4a | .travis.yml | .travis.yml | language: php
install: composer install
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
script:
- php bench.php
- make test
| language: php
install: composer install
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
script:
- php bench.php
- make test
| Add PHP 7.2 on Travis CI | Add PHP 7.2 on Travis CI
Not sure it exists on Travis
| YAML | mit | maciejczyzewski/bottomline,maciejczyzewski/bottomline |
cdddc0b06dae241995b6a8274ce60e2e488816d5 | .travis.yml | .travis.yml | language: java
dist: trusty
os: linux
install:
- jdk_switcher use openjdk7
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true
jdk:
- openjdk7
- openjdk8
- openjdk9
script:
- jdk_switcher use $TRAVIS_JDK_VERSION
- ./mvnw test -Dmaven.javadoc.skip=true
| language: java
dist: trusty
os: linux
install:
- jdk_switcher use openjdk8
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true
jdk:
- openjdk7
- openjdk8
- openjdk9
script:
- jdk_switcher use $TRAVIS_JDK_VERSION
- ./mvnw test -Dmaven.javadoc.skip=true
| Use Java 8 for initial build | Use Java 8 for initial build | YAML | apache-2.0 | zeroturnaround/zt-zip,zeroturnaround/zt-zip |
e425da2a0f9583c8e43302fe07e28f37c41e17cf | .travis.yml | .travis.yml | language: python
cache: pip
matrix:
include:
- os: linux
dist: xenial
sudo: false
python: '2.6'
- os: linux
dist: xenial
sudo: false
python: '2.7'
- os: linux
dist: xenial
sudo: false
python: '3.2'
- os: linux
dist: xenial
sudo: false
python: '3.3'
- os: linux
dist: xenial
sudo: false
python: '3.4'
- os: linux
dist: xenial
sudo: false
python: '3.5'
- os: linux
dist: xenial
sudo: false
python: '3.6'
- os: linux
dist: xenial
sudo: true
python: '3.7'
- os: linux
dist: xenial
sudo: false
python: 'nightly'
- os: linux
dist: xenial
sudo: false
python: 'pypy'
- os: linux
dist: xenial
sudo: false
python: 'pypy3'
install:
- pip install -r requirements.txt -r devel-requirements.txt -r extra-requirements.txt
- pip install -e .
script:
- travis_wait 20 sh runtests.sh
| language: python
cache: pip
matrix:
include:
- os: linux
dist: xenial
sudo: false
python: '2.7'
- os: linux
dist: xenial
sudo: false
python: '3.4'
- os: linux
dist: xenial
sudo: false
python: '3.5'
- os: linux
dist: xenial
sudo: false
python: '3.6'
- os: linux
dist: xenial
sudo: true
python: '3.7'
- os: linux
dist: xenial
sudo: false
python: 'nightly'
- os: linux
dist: xenial
sudo: false
python: 'pypy'
- os: linux
dist: xenial
sudo: false
python: 'pypy3'
install:
- pip install -r requirements.txt -r devel-requirements.txt -r extra-requirements.txt
- pip install -e .
script:
- travis_wait 20 sh runtests.sh
| Disable Travis builds for py 2.6, 3.2 & 3.3 | Disable Travis builds for py 2.6, 3.2 & 3.3
Seems like they discontinued those.
| YAML | bsd-2-clause | etingof/pysnmp,etingof/pysnmp |
3ab479a9ac378d9f0de72a616d136ea487424eb5 | .travis.yml | .travis.yml | sudo: false
language: go
before_install:
- git config --global user.email "user@example.com"
- git fetch --unshallow
- git fetch origin +refs/notes/devtools/*:refs/notes/devtools/*
- git fetch origin +refs/heads/master:refs/heads/master
before_script:
- grep "os/exec" `find ./ -name '*.go'` && echo "Use the execabs package instead of exec" && exit 1
| sudo: false
language: go
before_install:
- git config --global user.email "user@example.com"
- git fetch --unshallow
- git fetch origin +refs/notes/devtools/*:refs/notes/devtools/*
- git fetch origin +refs/heads/master:refs/heads/master
before_script:
- if grep "os/exec" `find ./ -name '*.go'`; then echo "Use the execabs package instead of exec" && exit 1; fi
| Fix Travis CI check for the use of the os/exec package | Fix Travis CI check for the use of the os/exec package
| YAML | apache-2.0 | google/git-appraise |
343e008335f272f2832e793f9e98cb5aef192a47 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
- 4
- 6
- 8
| language: node_js
node_js:
- 4
- 6
- 8
| Drop support for Node 0.10 | Drop support for Node 0.10
| YAML | mit | auth0/node-wsfed,auth0/node-wsfed |
82d79e4e455092914987e1b0d6b90ab6e8248e37 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
branches:
only:
- master
- dev
- /^stable\d+(\.\d+)?$/
#before_install:
# - cd ..
# - git clone https://github.com/owncloud/core.git
# - mv galleryplus core/apps/
# - cd core
# - git submodule init
# - git submodule update
# - cd apps/galleryplus
script: ant test
# - phpunit tests
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7
branches:
only:
- master
- dev
- /^stable\d+(\.\d+)?$/
#before_install:
# - cd ..
# - git clone https://github.com/owncloud/core.git
# - mv galleryplus core/apps/
# - cd core
# - git submodule init
# - git submodule update
# - cd apps/galleryplus
script: ant test
# - phpunit tests
| Add PHP 5.6 and PHP 7 to test matrix | Add PHP 5.6 and PHP 7 to test matrix | YAML | agpl-3.0 | desaintmartin/gallery,interfasys/galleryplus,owncloud/gallery,setnes/gallery,owncloud/gallery,viraj96/gallery,setnes/galleryplus,owncloud/galleryplus,owncloud/gallery,viraj96/gallery,interfasys/galleryplus,setnes/galleryplus,imjalpreet/gallery,tahaalibra/gallery,setnes/gallery,viraj96/gallery,interfasys/galleryplus,setnes/galleryplus,owncloud/galleryplus,imjalpreet/gallery,tahaalibra/gallery,owncloud/galleryplus,desaintmartin/gallery,imjalpreet/gallery,IATkachenko/gallery,IATkachenko/gallery,desaintmartin/gallery,setnes/gallery,IATkachenko/gallery,tahaalibra/gallery |
d9c6f30954bc6199d3f7ae303f181413a5bf9213 | .travis.yml | .travis.yml |
language: generic
env:
global:
- CMAKE_GENERATOR="Unix Makefiles" CMAKE_OPTIONS=" "
matrix:
include:
- os: linux
dist: trusty
sudo: required
env: BUILD_PLATFORM="Linux-x64"
- os: osx
osx_image: xcode7.3
env: BUILD_PLATFORM="Darwin-x64"
install:
- buildscripts/1-install-deps-travis.sh
- export PATH="/data/bin:$PATH"
script:
- CMAKE_BUILD_TYPE=Debug buildscripts/2-build-travis.sh
- CMAKE_BUILD_TYPE=Release buildscripts/2-build-travis.sh
after_success:
- CMAKE_BUILD_TYPE=Debug buildscripts/3-release-travis.sh
- CMAKE_BUILD_TYPE=Release buildscripts/3-release-travis.sh
|
language: generic
env:
global:
- CMAKE_GENERATOR="Unix Makefiles" CMAKE_OPTIONS=" "
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
matrix:
include:
- os: linux
dist: trusty
sudo: required
env: BUILD_PLATFORM="Linux-x64"
- os: osx
osx_image: xcode7.3
env: BUILD_PLATFORM="Darwin-x64"
install:
- buildscripts/1-install-deps-travis.sh
- export PATH="/data/bin:$PATH"
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
script:
- CMAKE_BUILD_TYPE=Debug buildscripts/2-build-travis.sh
- CMAKE_BUILD_TYPE=Release buildscripts/2-build-travis.sh
after_success:
- CMAKE_BUILD_TYPE=Debug buildscripts/3-release-travis.sh
- CMAKE_BUILD_TYPE=Release buildscripts/3-release-travis.sh
| Update Travis file to request GCC 4.9 | Update Travis file to request GCC 4.9
The JSON library requires at least GCC 4.9
| YAML | mit | graphicsfuzz/get-image-egl,graphicsfuzz/get-image-egl,graphicsfuzz/get-image-egl |
767d1bbe430fc7aa7a9d7d9724d52e8b9b9d85f4 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
- oraclejdk8
before_script:
sudo keytool -importcert -keystore $JAVA_HOME/jre/lib/security/cacerts -file betamax.pem -storepass changeit -noprompt
sudo: required
| language: java
jdk:
- oraclejdk7
- oraclejdk8
before_script:
sudo keytool -importcert -keystore $JAVA_HOME/jre/lib/security/cacerts -file betamax.pem -storepass changeit -noprompt
sudo: required
notifications:
email: false
hipchat:
on_success: never
on_failure: change
template:
- '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}
(<a href="%{build_url}">Details</a>/<a href="%{compare_url}">Change view</a>)'
format: html
rooms:
secure: SlHYF5fCJOkWl5bgAbD2tD7HRuI+S0VpJQypL5sXIpXda7k2DWQcYOqfRERuBs9ZJAJ+4wy4CMFWQT7D0mh2HYaW+SvFcvD2UrRDzPcORNTndRQ1PcoZn52YAvPE8681KVgXaFggJc+LY9zpvFpnuDIwHV9qR53D84Sw8pDkkWU=
| Configure notifications from Travis CI | Configure notifications from Travis CI
| YAML | bsd-3-clause | twingly/twingly-analytics-api-java,twingly/twingly-search-api-java |
e7601d7edd1513cc4eee14de828c74272289477d | .travis.yml | .travis.yml | language: csharp
sudo: false
mono:
- latest
- 4.2.4
os:
- linux
- osx
script:
- ./build.sh
notifications:
email: false | language: csharp
sudo: false
mono:
- latest
os:
- linux
- osx
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fiopenssl; fi
install:
- export DOTNET_INSTALL_DIR="$PWD/.dotnetcli"
- curl -sSL https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.sh | bash /dev/stdin --version "$CLI_VERSION" --install-dir "$DOTNET_INSTALL_DIR"
- export PATH="$DOTNET_INSTALL_DIR:$PATH"
script:
- ./build.sh
notifications:
email: false | Add brew OpenSSL for Mac | Add brew OpenSSL for Mac
| YAML | mit | syedhassaanahmed/aspnet-core-crud-demo,syedhassaanahmed/aspnet-core-crud-demo,syedhassaanahmed/aspnet-core-crud-demo |
0123c0ed1a1f55a28d9aa661a6dcf95e0085bcd6 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.2
- hhvm
install:
- composer self-update
- composer install --prefer-dist --dev
- composer info --installed
before_script:
- mysql -e 'create database amqp_helper_test;'
script: phpunit -c phpunit.xml | language: php
php:
- 5.6
- 7.2
- hhvm
install:
- composer self-update
- composer update
#- composer install --prefer-dist --dev
- composer info --installed
before_script:
- mysql -e 'create database amqp_helper_test;'
script: phpunit -c phpunit.xml | Update test's bootstrap.php for backward compatibility | Update test's bootstrap.php for backward compatibility
| YAML | apache-2.0 | fproject/amqp-helper |
6e8355d1d6a957b254bbd40e35ec52a8137a8618 | .travis.yml | .travis.yml | language: php
env:
global:
- COMPOSER_ROOT_VERSION=2.0.x-dev
matrix:
include:
- php: 5.6
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=PGSQL PHPUNIT_COVERAGE_TEST=1
- php: 7.2
env: DB=MYSQL PHPUNIT_TEST=1
before_script:
# Init PHP
- phpenv rehash
- phpenv config-rm xdebug.ini
# Install composer dependencies
- composer validate
- composer require --no-update silverstripe/installer 4.0.x-dev
- if [[ $DB == PGSQL ]]; then composer require --no-update silverstripe/postgresql 2.0.x-dev; fi
- composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
script:
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit; fi
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs --ignore=install.php src/ tests/ *.php; fi
after_success:
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
| language: php
dist: trusty
env:
global:
- COMPOSER_ROOT_VERSION=2.0.x-dev
matrix:
include:
- php: 5.6
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=PGSQL PHPUNIT_COVERAGE_TEST=1
- php: 7.2
env: DB=MYSQL PHPUNIT_TEST=1
before_script:
# Init PHP
- phpenv rehash
- phpenv config-rm xdebug.ini
# Install composer dependencies
- composer validate
- composer require --no-update silverstripe/installer 4.0.x-dev
- if [[ $DB == PGSQL ]]; then composer require --no-update silverstripe/postgresql 2.0.x-dev; fi
- composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
script:
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit; fi
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs --ignore=install.php src/ tests/ *.php; fi
after_success:
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
| Use trusty dist for Travis builds | Use trusty dist for Travis builds
| YAML | bsd-3-clause | silverstripe-labs/silverstripe-registry |
3edd6f07dd231713f2bf992909a3ee94f8dba5b9 | .travis.yml | .travis.yml | language: go
go:
- 1.6.x
- 1.8.x
- 1.9.x
- tip
go_import_path: go.mercari.io/go-httpdoc
os:
- linux
- osx
sudo: false
install:
- go get -v ./...
script:
- go vet
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: go
go:
- 1.8.x
- 1.9.x
- tip
go_import_path: go.mercari.io/go-httpdoc
os:
- linux
- osx
sudo: false
install:
- go get -v ./...
script:
- go vet
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| Remove 1.6.x in CI testing | Remove 1.6.x in CI testing
| YAML | mit | mercari/go-httpdoc |
b4d197d343459cc06af4670b3996028dd01b792c | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- '4.0'
- '8.0'
after_script: bash <(curl -s https://codecov.io/bash)
deploy:
- provider: npm
email: tituswormer@gmail.com
api_key:
secure: HmCBkFxRhMNttuoXAXxsuQh+YXBuFI2FebWY9MJxstETr2He1EB4b7eY8lNulVevclALxEot+yBg2dZbZSIAIXp5YidAg5QuBIv4p/4a9UF6szR5v9gbVCcrK3KnwvMQ+nrw5Hqz53tkcZcV2bCB29lYM+DJp0JDTaOjF+apiyg=
on:
tags: true
node: '8.0'
| language: node_js
sudo: false
node_js:
- '4.0'
- '8.0'
after_script: bash <(curl -s https://codecov.io/bash)
| Remove npm deployment from Travis | Remove npm deployment from Travis
| YAML | mit | wooorm/udhr,wooorm/udhr |
cdd1adb5b6a77fef59392de631f1c9ea88f0b5a5 | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
cache: bundler
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- ruby-head
- jruby-9.1.1.0
- jruby-head
env:
global:
- JRUBY_OPTS=''
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
branches:
only: master
notifications:
email: false
| ---
language: ruby
sudo: false
cache: bundler
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- ruby-head
- jruby-9.1.1.0
- jruby-head
env:
global:
- JRUBY_OPTS=''
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.1.0
fast_finish: true
branches:
only: master
notifications:
email: false
| Change to allow for jrbuy failure. | Change to allow for jrbuy failure.
| YAML | mit | piotrmurach/tty-command,piotrmurach/tty-command |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.