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
60eaa123e22e2d016c6c1ce074f0d367d349fa2f
.travis.yml
.travis.yml
sudo: false language: python python: - 2.7 - 3.5 script: - pip install -U pytest - python setup.py test branches: except: - skeleton deploy: provider: pypi server: https://upload.pypi.org/legacy/ on: tags: true all_branches: true python: 3.5 user: jaraco # supply password with `travis encrypt --add deploy.password` distributions: dists
sudo: false language: python python: - 2.7 - 3.5 script: - pip install -U pytest - python setup.py test branches: except: - skeleton deploy: provider: pypi server: https://upload.pypi.org/legacy/ on: tags: true all_branches: true python: 3.5 user: jaraco distributions: dists password: secure: shK8GEX9tEBfC0h/NoQfz/36AQOXL4U9a4Bl8NxiOJRNcnJpyFjHHPFKc8lzZ9McVltRqAMbdPWqkqOQquuTjM+dTaD5S+DxDnJU0lJbatrHE4gS8jMoJKLotYX/NRup72vzYQyXq1QjMNSf1lrVf8ASqaaUlMwubKUQd0D1OmY57/3CGbqhSnrmhZ5aSwZ7sy289Gk9Il06VXpqhJ6rBiCVtYJdPccu6oYBidE7KH0VhEC132wA8G8onT2jc22CSGpwIrtR8IQxL/B9d4ycAUulpMCXM0a77I5pWpJO8minPBKQD6TWwt3hsn6e1DoKv6gpSOZg4BYD4vxmNVby2vAxwNu0AaQxCdT5i2q6ow2EdCX2G7FN587pbCNKMqZi7CNCxqqE0gO0MacXl6LoP8Om08FIzxytDMDj1Qk+dHr8GAy9dS+iiAARpY47q/uNDQ6MuNvMCrzyjfBmLpmTm6xnkoSFEwTY1d4vjo7QMzzSXbIt/JxiH9ZFD3TtZnbNNZAok7IpRLz7tKMkslsH9DfI5E3/L4+36UNZgsMXc9FyOkkGOS6UphWoKipGfd7A6nMgMTBD8tJ7KdP28266ecvI/W0DGRoRikKkWhPX7U/NA6mLmva0NiOFuMSNXwbvJVYlzZyIp1xG0ERuxUoj9suVBn+hPLn4SoN4PQbthdM=
Add PyPI password for automatic deployment
Add PyPI password for automatic deployment
YAML
mit
jaraco/jaraco.itertools
db7ed527dae8d8165ae3ffc6df64765a17e134cf
.travis.yml
.travis.yml
language: go go: - 1.2 - 1.3 - 1.4 - tip before_install: - sudo apt-get install libgeoip-dev bzr install: - mkdir -p $TRAVIS_BUILD_DIR/db - curl -s http://geodns.bitnames.com/geoip/GeoLiteCity.dat.gz | gzip -cd > $TRAVIS_BUILD_DIR/db/GeoIPCity.dat - curl -s http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz | gzip -cd > $TRAVIS_BUILD_DIR/db/GeoIPASNum.dat - echo [geodns] >> dns/geodns.conf - echo Directory=$TRAVIS_BUILD_DIR/db >> dns/geodns.conf - go get github.com/abh/dns - go get github.com/abh/geoip - go get gopkg.in/check.v1 - go get -v - go build -v - go install script: - cd $TRAVIS_BUILD_DIR && go test -gocheck.v - go test -gocheck.v -gocheck.b -gocheck.btime=2s
language: go go: - 1.3 - 1.4 - 1.5 - tip before_install: - sudo apt-get install libgeoip-dev bzr install: - mkdir -p $TRAVIS_BUILD_DIR/db - curl -s http://geodns.bitnames.com/geoip/GeoLiteCity.dat.gz | gzip -cd > $TRAVIS_BUILD_DIR/db/GeoIPCity.dat - curl -s http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz | gzip -cd > $TRAVIS_BUILD_DIR/db/GeoIPASNum.dat - echo [geodns] >> dns/geodns.conf - echo Directory=$TRAVIS_BUILD_DIR/db >> dns/geodns.conf - go get github.com/abh/dns - go get github.com/abh/geoip - go get gopkg.in/check.v1 - go get -v - go build -v - go install script: - cd $TRAVIS_BUILD_DIR && go test -gocheck.v - go test -gocheck.v -gocheck.b -gocheck.btime=2s
Test on 1.5; remove 1.2 tests
Test on 1.5; remove 1.2 tests
YAML
apache-2.0
abh/geodns,gofort/geodns,gofort/geodns,gofort/geodns,abh/geodns
98f071dd3695c3a36913d278ef34259b08f98daa
.travis.yml
.travis.yml
language: python cache: pip sudo: false git: depth: 3 python: - "3.5" # command to install dependencies install: - "pip install -r requirements.txt" # command to run tests script: "python manage.py test"
language: python cache: pip sudo: false git: depth: 3 python: - "3.5" - "3.6" # command to install dependencies install: - "pip install -r requirements.txt" # command to run tests script: "python manage.py test"
Add tests for python 3.6
Add tests for python 3.6
YAML
mit
ukgovdatascience/classifyintentsapp,ukgovdatascience/classifyintentsapp
f1f95ccf77e36fd3b1e1841055b5b77f3ce08002
.travis.yml
.travis.yml
--- language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3 env: - "mecab_version=0.996" - "mecab_version=0.98" - "mecab_version=0.96" install: # mecab - curl -O http://mecab.googlecode.com/files/mecab-${mecab_version}.tar.gz && tar xf mecab-${mecab_version}.tar.gz - pushd mecab-${mecab_version} && ./configure && make && sudo make install && popd
--- language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3 env: - "mecab_version=0.996" - "mecab_version=0.98" - "mecab_version=0.96" install: # mecab - curl -O http://mecab.googlecode.com/files/mecab-${mecab_version}.tar.gz && tar xf mecab-${mecab_version}.tar.gz - pushd mecab-${mecab_version} && ./configure && make && sudo make install && popd # bundler - bundle install
Add bundle install in install section
Add bundle install in install section
YAML
mit
mrkn/mecaby,mrkn/mecaby
3caa4147c4689e1d50430bc5bc5b63f53e69c6bf
.travis.yml
.travis.yml
osx_image: xcode8.3 language: objective-c cache: directories: - Carthage/ before_install: - brew install swiftlint - script/install before_script: - set -o pipefail script: - xcodebuild -project SlideStock.xcodeproj -scheme SlideStock build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -c - swiftlint
osx_image: xcode8.3 language: objective-c cache: directories: - Carthage/ before_install: - brew install swiftlint - travis_wait 30 script/install before_script: - set -o pipefail script: - xcodebuild -project SlideStock.xcodeproj -scheme SlideStock build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -c - swiftlint
Fix no output in the last 10 minutes issue
:green_heart: Fix no output in the last 10 minutes issue
YAML
mit
natmark/SlideStock,natmark/SlideStock,natmark/SlideStock
a7a1d3c184ab403f9e1925de75340e86479c06ff
.travis.yml
.travis.yml
language: node_js sudo: required node_js: - "0.10" install: - curl https://install.meteor.com | /bin/sh - npm install -g eslint - npm install -g spacejam script: - export PATH="$HOME/.meteor:$PATH" - cp settings.json.template settings.json - eslint . - spacejam test-packages --settings settings.json branches: only: - master
language: node_js sudo: false node_js: - "0.10" install: - curl https://install.meteor.com | /bin/sh - npm install -g eslint - npm install -g spacejam script: - export PATH="$HOME/.meteor:$PATH" - cp settings.json.template settings.json - eslint . - spacejam test-packages --settings settings.json branches: only: - master notifications: irc: channels: - "irc.what-network.net#gazelle" template: - "Build %{build_number} %{result}: %{build_url}" on_success: change on_failure: always use_notice: false skip_join: false
Add IRC notifications to Travis
Add IRC notifications to Travis
YAML
mit
yash069/meteor-gazelle,jrherr/meteor-gazelle,WillJHaggard/meteor-gazelle,sneakysneakysneaky/meteor-gazelle,n1889/meteor-gazelle,haresbarak/meteor-gazelle,flaming-/meteor-gazelle,yash069/meteor-gazelle,jrherr/meteor-gazelle,WillJHaggard/meteor-gazelle,haresbarak/meteor-gazelle,sneakysneakysneaky/meteor-gazelle,haresbarak/meteor-gazelle,harrybui22/meteor-gazelle,kimoi/meteor-gazelle,WillJHaggard/meteor-gazelle,shaunstanislaus/meteor-gazelle,n1889/meteor-gazelle,sneakysneakysneaky/meteor-gazelle,kimoi/meteor-gazelle,nullren/meteor-gazelle,harrybui22/meteor-gazelle,shaunstanislaus/meteor-gazelle,nullren/meteor-gazelle,ahaym/meteor-gazelle,codevlabs/meteor-gazelle,harrybui22/meteor-gazelle,shaunstanislaus/meteor-gazelle,meteor-gazelle/meteor-gazelle,n1889/meteor-gazelle,jrherr/meteor-gazelle,meteor-gazelle/meteor-gazelle,JerimyTate/meteor-gazelle,flaming-/meteor-gazelle,yash069/meteor-gazelle,JerimyTate/meteor-gazelle,ahaym/meteor-gazelle,nullren/meteor-gazelle,ahaym/meteor-gazelle,JerimyTate/meteor-gazelle,meteor-gazelle/meteor-gazelle,flaming-/meteor-gazelle,codevlabs/meteor-gazelle,codevlabs/meteor-gazelle,kimoi/meteor-gazelle
4d24e286a525441fe0160936cb9635c29b0c2caa
.travis.yml
.travis.yml
language: node_js node_js: - "0.12" after_script: - npm run coveralls notifications: irc: channels: - "chat.freenode.net#bionode" template: - "%{message} %{repository}#%{build_number}: %{commit_message} (%{branch} - %{commit} : %{author})" webhooks: urls: - https://webhooks.gitter.im/e/bc08fdd81e88a4b24fed on_success: change on_failure: always on_start: false env: DEBUG='*'
language: node_js node_js: - "0.12" after_script: - npm run coveralls notifications: irc: channels: - "chat.freenode.net#bionode" template: - "%{message} %{repository}#%{build_number}: %{commit_message} (%{branch} - %{commit} : %{author})" webhooks: urls: - https://webhooks.gitter.im/e/bc08fdd81e88a4b24fed on_success: change on_failure: always on_start: false env: DEBUG="*"
Fix indentation for Travis debug
Fix indentation for Travis debug
YAML
mit
bionode/bionode-ncbi
11ab3e989c551e7667c9535dcf7f0330711dba6f
.travis.yml
.travis.yml
language: groovy jdk: - oraclejdk8 - oraclejdk7 - openjdk7 before_script: - scripts/run_http_server &
language: groovy jdk: - oraclejdk8 - oraclejdk7 - openjdk7 before_script: - scripts/run_http_server & notifications: webhooks: urls: - https://webhooks.gitter.im/e/730568d3888e6d40e2f8 on_success: change on_failure: always
Add Gitter notifications when a build fails.
Add Gitter notifications when a build fails.
YAML
mit
contracto-lab/contracto-retrofit
838017bbd178daa43d25c3dafc7ba7f1503a76fc
.travis.yml
.travis.yml
language: node_js node_js: - "9" - "8" - "6" - "4" - "0.12" - "0.10" before_script: - npm install -g grunt-cli script: grunt test && grunt cover after_script: - codeclimate-test-reporter < coverage/lcov.info addons: code_climate: repo_token: c0bec1f3744fa5764dfb105faa999ebf3b747548d3ed52a04773bf844afefa44
language: node_js node_js: - "9" - "8" - "6" - "4" before_script: - npm install -g grunt-cli script: grunt test && grunt cover after_script: - codeclimate-test-reporter < coverage/lcov.info addons: code_climate: repo_token: c0bec1f3744fa5764dfb105faa999ebf3b747548d3ed52a04773bf844afefa44
Drop Node 0.x build support
Drop Node 0.x build support Nested dependencies no longer support 0.x
YAML
mit
oculus42/short-uuid
fe7b595919dec00e50dd74eda9aa8c697856fe91
.travis.yml
.travis.yml
language: go go: - 1.0 - 1.1 - 1.2 - tip install: - go get launchpad.net/gocheck - go get gopkg.in/bufio.v1
language: go go: - 1.1 - 1.2 - tip install: - go get launchpad.net/gocheck - go get gopkg.in/bufio.v1
Remove Go 1.0 from supported versions.
Remove Go 1.0 from supported versions.
YAML
bsd-3-clause
go-bufio/bufio
38b14ec6ab6393889be1e0cdc1bae46224403318
.travis.yml
.travis.yml
language: ruby script: "bundle exec rake test" rvm: - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode - rbx-19mode branches: only: - master - develop notifications: recipients: - jeremy.olliver@gmail.com
language: ruby script: "bundle exec rake test" rvm: - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode - rbx branches: only: - master - develop notifications: recipients: - jeremy.olliver@gmail.com
Update rvm string for rbx
Update rvm string for rbx
YAML
mit
jeremyolliver/new_relic_ping,fabn/heartbeat_rails,fabn/heartbeat_rails,fabn/new_relic_ping,fabn/new_relic_ping,fabn/heartbeat_rails,jeremyolliver/new_relic_ping,fabn/new_relic_ping
41640938542d5a5838ad0031a7bb2ef4c03abdfe
.travis.yml
.travis.yml
language: rust rust: - 1.17.0 - 1.18.0 - 1.19.0 - 1.20.0 - stable - beta - nightly matrix: allow_failures: - rust: nightly include: - rust: stable os: osx env: - OPENSSL_INCLUDE_DIR=/usr/local/opt/openssl/include - DEP_OPENSSL_INCLUDE=/usr/local/opt/openssl/include
language: rust rust: - 1.21.0 - 1.22.1 - 1.23.0 - 1.24.1 - 1.25.0 - 1.26.2 - stable - beta - nightly matrix: allow_failures: - rust: nightly include: - rust: stable os: osx env: - OPENSSL_INCLUDE_DIR=/usr/local/opt/openssl/include - DEP_OPENSSL_INCLUDE=/usr/local/opt/openssl/include
Update rustc versions, doesn't build on <= 1.20
travices: Update rustc versions, doesn't build on <= 1.20
YAML
mit
flugsio/liru
741c66d4acbec46b3c6bd9ebfe478c42005e0506
.travis.yml
.travis.yml
--- language: python python: "2.7" sudo: required dist: trusty before_install: - sudo apt-get update -qq install: - pip install ansible - "echo localhost > inventory remote_user=root" script: - "ansible-playbook -i inventory role.yml --connection=local --sudo" - > ansible-playbook -i inventory role.yml --connection=local --sudo | grep -q 'changed=0.*failed=0' && (echo 'Idempotence test: pass' && exit 0) || (echo 'Idempotence test: fail' && exit 1) - > ansible-playbook -i inventory role.yml --connection=local --sudo --tags unattended | grep -q 'changed=0.*failed=0' && (echo 'Idempotence test: pass' && exit 0) || (echo 'Idempotence test: fail' && exit 1) - apt-config dump | grep 'Unattended-Upgrade "1"' - sudo unattended-upgrades --dry-run -d notifications: webhooks: https://galaxy.ansible.com/api/v1/notifications/
--- language: python python: "2.7" sudo: required dist: trusty before_install: - sudo apt-get update -qq install: - pip install ansible - "echo localhost > inventory remote_user=root" script: - "ansible-playbook -i inventory role.yml --connection=local --sudo" - > ansible-playbook -i inventory role.yml --connection=local --sudo | grep -q 'changed=0.*failed=0' && (echo 'Idempotence test: pass' && exit 0) || (echo 'Idempotence test: fail' && exit 1) - > ansible-playbook -i inventory role.yml --connection=local --sudo --tags unattended | grep -q 'changed=0.*failed=0' && (echo 'Idempotence test: pass' && exit 0) || (echo 'Idempotence test: fail' && exit 1) - apt-config dump | grep 'Unattended-Upgrade "1"' - sudo unattended-upgrades --dry-run notifications: webhooks: https://galaxy.ansible.com/api/v1/notifications/
Reduce noise generated by dry run in Travis
Reduce noise generated by dry run in Travis
YAML
mit
wuvt/wuvt-ansible,wuvt/wuvt-ansible,wuvt/wuvt-ansible,wuvt/wuvt-ansible
896fae5b545de799894f8d6e022105dddc9d8df5
.travis.yml
.travis.yml
language: go go: - 1.7.x - 1.8.x - master script: - make misspell-check - make fmt-check - make all - make pack - make coverage after_success: - bash <(curl -s https://codecov.io/bash)
language: go go: - 1.7.x - 1.8.x script: - make misspell-check - make fmt-check - make all - make pack - make coverage after_success: - bash <(curl -s https://codecov.io/bash)
Remove master branch of go environment in Travis. Since the fmt and converage are not compatible.
[IN-119] Remove master branch of go environment in Travis. Since the fmt and converage are not compatible.
YAML
apache-2.0
Cepave/open-falcon-backend,Cepave/open-falcon-backend,Cepave/open-falcon-backend,Cepave/open-falcon-backend,Cepave/open-falcon-backend,Cepave/open-falcon-backend
f66c7dbba25699eb3604f01f051810adc026a361
.travis.yml
.travis.yml
language: node_js node_js: - 'stable' - '8' - '6' sudo: false env: - workerCount=3 timeout=600000 matrix: fast_finish: true branches: only: - master - release-2.7 - release-2.8 - release-2.9 install: - npm uninstall typescript --no-save - npm uninstall tslint --no-save - npm install cache: directories: - node_modules git: depth: 1
language: node_js node_js: - 'stable' - '8' - '6' sudo: false env: - workerCount=3 timeout=600000 matrix: fast_finish: true branches: only: - master - release-2.7 - release-2.8 - release-2.9 - release-3.0 install: - npm uninstall typescript --no-save - npm uninstall tslint --no-save - npm install cache: directories: - node_modules git: depth: 1
Add release-3.0 to supported branches
Add release-3.0 to supported branches
YAML
apache-2.0
microsoft/TypeScript,SaschaNaz/TypeScript,kpreisser/TypeScript,RyanCavanaugh/TypeScript,SaschaNaz/TypeScript,minestarks/TypeScript,basarat/TypeScript,weswigham/TypeScript,kpreisser/TypeScript,minestarks/TypeScript,nojvek/TypeScript,weswigham/TypeScript,Microsoft/TypeScript,RyanCavanaugh/TypeScript,kpreisser/TypeScript,Microsoft/TypeScript,basarat/TypeScript,kitsonk/TypeScript,alexeagle/TypeScript,donaldpipowitch/TypeScript,SaschaNaz/TypeScript,kitsonk/TypeScript,nojvek/TypeScript,kitsonk/TypeScript,microsoft/TypeScript,Microsoft/TypeScript,SaschaNaz/TypeScript,alexeagle/TypeScript,donaldpipowitch/TypeScript,microsoft/TypeScript,weswigham/TypeScript,basarat/TypeScript,minestarks/TypeScript,donaldpipowitch/TypeScript,nojvek/TypeScript,nojvek/TypeScript,basarat/TypeScript,alexeagle/TypeScript,donaldpipowitch/TypeScript,RyanCavanaugh/TypeScript
66c1dcc3422bc4ff199c326a63f2ee2cb1176151
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" - "0.8" services: - redis-server
language: node_js node_js: - "0.11" - "0.10" services: - redis-server
Remove support for node 0.8
Remove support for node 0.8
YAML
mit
4screens/pushd,futurice/pushd,Binarypark/pushd,Yu-Qiu/test-pushd,chobiwa/pushd,rs/pushd,avqdev/pushd,chobiwa/pushd,mattwoberts/pushd,Binarypark/pushd,peleccom/pushd,Suninus/pushd,mattwoberts/pushd,Yu-Qiu/test-pushd,rs/pushd,avqdev/pushd,Product-Foundry/pushd,Product-Foundry/pushd,4screens/pushd,Suninus/pushd,peleccom/pushd,futurice/pushd
2e47b7ad0b77799671caf1749045a4952917c247
.travis.yml
.travis.yml
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 1.9.3 - 2.0.0 - jruby-19mode - rbx
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode - rbx
Add Ruby 2.1.0 to Travis CI mix.
Add Ruby 2.1.0 to Travis CI mix.
YAML
unlicense
ruby-rdf/rdf-trig
de2cdb5ac59e53faf783b6ae03b0fcf0a51e4907
.travis.yml
.travis.yml
language: go go: - tip - 1.8 - 1.7 - 1.6 - 1.5 - 1.4.2 - 1.3.3 - 1.2.2 - 1.1.2
language: go go: - tip - 1.10 - 1.9 - 1.8 - 1.7 - 1.6 - 1.5 - 1.4.2 - 1.3.3 - 1.2.2 - 1.1.2
Add go1.9 and go.10 to Travis build config
Add go1.9 and go.10 to Travis build config
YAML
mit
istio/go-junit-report,jstemmer/go-junit-report
a70e629bff9a350d6c117be6f61083aa769c7aa7
.travis.yml
.travis.yml
language: node_js node_js: - '6.3' - '6.2.2' - '0.12.x' env: matrix: - NODE_ENV=development script: npm run coverage after_success: - cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
language: node_js node_js: - '6.3' - '6.2.2' - '0.12' env: matrix: - NODE_ENV=development script: npm run coverage after_success: - cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
Correct ALL Travis NodeJS versions
Correct ALL Travis NodeJS versions
YAML
apache-2.0
ibizan/ibizan,aaronsky/ibizan,ibizan/ibizan,aaronsky/ibizan
9f1d95e81d1848a56f660ced09c9eb56a26f119a
.travis.yml
.travis.yml
language: node_js node_js: - "15" - "16" - "17" - "18"
language: node_js node_js: - "12" - "13" - "14" - "15" - "16"
Add legacy node version for CI testing.
Add legacy node version for CI testing.
YAML
mit
nepsilon/search-query-parser,nepsilon/search-query-parser
cb631fb59d09310f9981d7800eb6d16226b3aff0
.travis.yml
.travis.yml
language: csharp mono: none dotnet: 2.0.0-preview2-006497 dist: trusty script: - ./build.sh -c Release
language: csharp mono: none dotnet: 2.0.0-preview2-006497 dist: trusty script: - dotnet --version - ./build.sh -c Release
Add dotnet --version to Travis CI
Add dotnet --version to Travis CI
YAML
mit
joaoasrosa/pullrequests-viewer,joaoasrosa/pullrequests-viewer,joaoasrosa/pullrequests-viewer,joaoasrosa/pullrequests-viewer,joaoasrosa/pullrequests-viewer
49d2e57643f640815f37789137974b42d4117f89
.travis.yml
.travis.yml
--- language: go go: - 1.4 - tip before_install: - go get -u github.com/axw/gocov/gocov - go get -u github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover script: - COVERALLS='-service=travis-ci' ./.test-cover.sh
--- language: go go: - 1.4 - tip before_install: - go get -u github.com/axw/gocov/gocov - go get -u github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover script: - ./.test-cover.sh
Disable coveralls for now, missing data
Disable coveralls for now, missing data
YAML
mit
sandlerben/go-torch,allengaller/go-torch,sandlerben/go-torch,maximecaron/go-torch,Cofyc/go-torch,allengaller/go-torch,shaunstanislaus/go-torch,denji/go-torch,chinanjjohn2012/go-torch,uber/go-torch,shaunstanislaus/go-torch,NanXiao/go-torch,chinanjjohn2012/go-torch,Cofyc/go-torch,uber/go-torch,maximecaron/go-torch,NanXiao/go-torch,denji/go-torch
50ace69fc516fbe1710a5d261efe61b5e71804fc
.travis.yml
.travis.yml
language: node_js node_js: - "node" environment: ELECTRON_RUN_AS_NODE: 1 VSCODE_BUILD_VERBOSE: true sudo: false os: - linux addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.9 - g++-4.9 - gcc-4.9-multilib - g++-4.9-multilib - zip - libgtk2.0-0 - libx11-dev - libxkbfile-dev before_install: - if [ $TRAVIS_OS_NAME == "linux" ]; then export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0; sh -e /etc/init.d/xvfb start; sleep 3; fi install: - cd client - npm install - npm install gulp - npm run vscode:prepublish script: - npm test --silent - gulp build
sudo: false language: cpp os: - linux environment: VSCODE_BUILD_VERBOSE: true addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.9 - g++-4.9 - gcc-4.9-multilib - g++-4.9-multilib - zip - libgtk2.0-0 - libx11-dev - libxkbfile-dev - libsecret-1-dev before_install: - git clone --depth 1 https://github.com/creationix/nvm.git ./.nvm - source ./.nvm/nvm.sh - nvm install 7.4.0 - nvm use 7.4.0 - npm install -g gulp - if [ $TRAVIS_OS_NAME == "linux" ]; then export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0; sh -e /etc/init.d/xvfb start; sleep 3; fi install: - cd client - npm install - npm run vscode:prepublish script: - npm test --silent - gulp build
Fix Travis testing due to unrelated failures
Fix Travis testing due to unrelated failures This commit modifies the travis.tml testing file to be more like the actual VSCode testing configuration (https://github.com/Microsoft/vscode/blob/master/.travis.yml) In particular: - Add libsecret-1-dev which was added as a dependency in https://github.com/Microsoft/vscode/commit/d4d8718d916e643f48bf4c161d7cf848dad8b5e1 - Remove the ELECTRON_RUN_AS_NODE enviroment variable as it is not required - Force node version testing to 7.4.0
YAML
apache-2.0
jpogran/puppet-vscode,jpogran/puppet-vscode,glennsarti/puppet-vscode
3a843cf35607dc25688db9d4a3308aa522ce563d
.travis.yml
.travis.yml
language: ruby rvm: 2.6.5 cache: bundler sudo: false before_install: - git config --global user.name 'Travis CI' - git config --global user.email 'travis-ci@example.com' - gem update --system - gem install bundler install: bundle install notifications: email: false services: - postgresql
language: ruby rvm: 2.6.5 cache: bundler sudo: false before_install: - git config --global user.name 'Travis CI' - git config --global user.email 'travis-ci@example.com' - gem update --system - gem install bundler - bundler config --global disable_platform_warnings true install: bundle install notifications: email: false services: - postgresql
Disable platform warnings in CI
Disable platform warnings in CI The tzinfo-data gem is only used by MS Windows and JRuby. This causes Bundler to print a warning on actual OSes used for development or for hosting. > The dependency tzinfo-data (>= 0) will be unused by any of the > platforms Bundler is installing for. Bundler is installing for ruby > but the dependency is only for x86-mingw32, x64-mingw32, x86-mswin32, > java. To add those platforms to the bundle, run `bundle lock > --add-platform x86-mingw32 x64-mingw32 x86-mswin32 java`. Silence this warning in CI with the `disable_platform_warnings` Bundler configuration, [documented] to > Disable warnings during bundle install when a dependency is unused on > the current platform. [documented]: https://bundler.io/v1.17/bundle_config.html
YAML
mit
thoughtbot/suspenders,delphaber/suspenders,thoughtbot/suspenders,thoughtbot/suspenders,delphaber/suspenders,delphaber/suspenders
35b207833e208c469aee54e584a4d77bd5f116a5
.travis.yml
.travis.yml
--- language: node_js node_js: - 'iojs-v3' env: - TEST_DIR=. - TEST_DIR=scripts/babel-relay-plugin script: cd $TEST_DIR && npm install && npm test
--- language: node_js node_js: - '4' env: - TEST_DIR=. - TEST_DIR=scripts/babel-relay-plugin script: cd $TEST_DIR && npm install && npm test
Configure Travis CI to use node@4.0.0
Configure Travis CI to use node@4.0.0 Summary: Closes https://github.com/facebook/relay/pull/348 Reviewed By: @​svcscm Differential Revision: D2459819
YAML
mit
almasakchabayev/relay,iamchenxin/relay,josephsavona/relay,freiksenet/relay,cpojer/relay,AnSavvides/relay,yungsters/relay,kassens/relay,chirag04/relay,dmfrancisco/relay,niklasvh/relay,chentsulin/relay,benjaminogles/relay,benjaminogles/relay,yungsters/relay,AnSavvides/relay,NevilleS/relay,niklasvh/relay,josephsavona/relay,Shopify/relay,almasakchabayev/relay,ide/relay,cpojer/relay,heracek/relay,dbslone/relay,zpao/relay,josephsavona/relay,jtthrillson/relay,AnSavvides/relay,atxwebs/relay,facebook/relay,chentsulin/relay,facebook/relay,kassens/relay,zpao/relay,mroch/relay,magnus-lycka/relay,cesarandreu/relay,freiksenet/relay,voideanvalue/relay,cesarandreu/relay,cesarandreu/relay,atxwebs/relay,IlyasM/relayWorking,atxwebs/relay,iamchenxin/relay,venepe/relay,Shopify/relay,NevilleS/relay,facebook/relay,michaelchum/relay,jtthrillson/relay,vjeux/relay,kassens/relay,gabelevi/relay,ide/relay,apalm/relay,michaelchum/relay,wincent/relay,yungsters/relay,jtthrillson/relay,tmitchel2/relay,dbslone/relay,ide/relay,apalm/relay,iamchenxin/relay,gabelevi/relay,dmfrancisco/relay,venepe/relay,atxwebs/relay,mcanthony/relay,cpojer/relay,rosskevin/relay,Aweary/relay,almasakchabayev/relay,kassens/relay,Aweary/relay,tmitchel2/relay,wincent/relay,apalm/relay,facebook/relay,niklasvh/relay,dmfrancisco/relay,chirag04/relay,kangkot/relay,chentsulin/relay,voideanvalue/relay,kassens/relay,voideanvalue/relay,andimarek/generic-relay,voideanvalue/relay,IlyasM/relayWorking,andimarek/generic-relay,xuorig/relay,facebook/relay,xuorig/relay,facebook/relay,IlyasM/relayWorking,xuorig/relay,heracek/relay,iamchenxin/relay,xuorig/relay,zpao/relay,Shopify/relay,voideanvalue/relay,gabelevi/relay,cpojer/relay,kassens/relay,mroch/relay,Aweary/relay,mcanthony/relay,heracek/relay,magnus-lycka/relay,vjeux/relay,xuorig/relay,voideanvalue/relay,wincent/relay,mcanthony/relay,vjeux/relay,freiksenet/relay,kangkot/relay,NevilleS/relay,rosskevin/relay,chirag04/relay,mroch/relay,magnus-lycka/relay,kangkot/relay,wincent/relay,wincent/relay,venepe/relay,tmitchel2/relay,andimarek/generic-relay,michaelchum/relay,xuorig/relay,wincent/relay,forter/generic-relay,benjaminogles/relay
e0bf1aca61f60aa8f8d3f59baac60d257975fe66
.travis.yml
.travis.yml
language: ruby env: - RSPEC_VERSION=2 - RSPEC_VERSION=3 rvm: - 1.9.3 - 2.0.0 - ruby-head matrix: allow_failures: - rvm: ruby-head script: - rake ci
language: ruby env: - RSPEC_VERSION=2 - RSPEC_VERSION=3 rvm: - 1.9.3 - 2.0.0 - 2.1.0 - ruby-head matrix: allow_failures: - rvm: ruby-head script: - rake ci
Add Ruby 2.1.0 to Travis CI
Add Ruby 2.1.0 to Travis CI
YAML
mit
justincampbell/generative
88a2359e16fd2c42e10da69ff1c8a387fbaefbc5
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "8" - "10" before_install: "sudo add-apt-repository -y ppa:inkscape.dev/stable && sudo apt-get update && sudo apt-get install -y inkscape && inkscape --version" script: "npm run-script travis"
language: node_js node_js: - '8' - '10' - '12' before_install: 'sudo add-apt-repository -y ppa:inkscape.dev/stable && sudo apt-get update && sudo apt-get install -y inkscape && inkscape --version' script: 'npm run-script travis'
Drop node.js 6 support, add 12 (semver-major)
Drop node.js 6 support, add 12 (semver-major)
YAML
bsd-3-clause
papandreou/node-inkscape
8a77c4687d42710dab3a6d42f0e1967e35771543
.travis.yml
.travis.yml
sudo: false dist: trusty language: rust rust: - nightly - stable matrix: allow_failures: - rust: stable # Dependencies of kcov, used by coverage addons: apt: packages: - libcurl4-openssl-dev - libelf-dev - libdw-dev - binutils-dev - cmake sources: - kalakris-cmake cache: cargo before_script: # Install tools if not already installed - cargo install --list | grep clippy || cargo install clippy - cargo install --list | grep rustfmt || cargo install rustfmt - cargo install --list | grep cargo-update || cargo install cargo-update - cargo install --list | grep tarpaulin || cargo install cargo-tarpaulin # Update all tools - cargo install-update -a || true # sometimes nightly breaks stuff, that's okay # Lint - cd core - cargo fmt -- --write-mode=diff after_success: - cargo clippy -- -Z no-trans -D clippy # clippy really loves to break, so it's okay if it fails - cd .. - cargo tarpaulin --ciserver travis-ci --coveralls $TRAVIS_JOB_ID
sudo: false dist: trusty language: rust rust: - nightly - stable matrix: allow_failures: - rust: stable # Dependencies of kcov, used by coverage addons: apt: packages: - libcurl4-openssl-dev - libelf-dev - libdw-dev - binutils-dev - cmake sources: - kalakris-cmake cache: cargo before_script: # Install tools if not already installed - cargo install --list | grep clippy || cargo install clippy - cargo install --list | grep rustfmt || cargo install rustfmt - cargo install --list | grep cargo-update || cargo install cargo-update - cargo install --list | grep tarpaulin || cargo install cargo-tarpaulin # Update all tools - cargo install-update -a || true # sometimes nightly breaks stuff, that's okay - echo "Installed rust utils:" - cargo install --list # Lint - cd core - cargo fmt -- --write-mode=diff after_success: - cargo clippy -- -Z no-trans -D clippy # clippy really loves to break, so it's okay if it fails - cd .. - cargo tarpaulin --ciserver travis-ci --coveralls $TRAVIS_JOB_ID
Add little info about installed utils
Repo: Add little info about installed utils
YAML
agpl-3.0
SirRade/shootr,SirRade/shootr,SirRade/shootr,SirRade/shootr,SirRade/shootr
b347069cd188713463513717a46bcc4ad5da34bb
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 before_install: - rvm @global do gem uninstall bundler --all --executables - gem uninstall bundler --all --executables - gem install bundler --version '< 1.7.0'
language: ruby cache: bundler rvm: - 2.0.0 before_install: - rvm @global do gem uninstall bundler --all --executables - gem uninstall bundler --all --executables - gem install bundler --version '1.6.9' sudo: false
Migrate Travis-CI settings to container infrastructure
Migrate Travis-CI settings to container infrastructure http://docs.travis-ci.com/user/migrating-from-legacy/
YAML
mit
higebu/vagrant-vsphere,EdHurtig/vagrant-vsphere,lilirui/vagrant-vsphere,edmcman/vagrant-vsphere,discoposse/vagrant-vsphere,vijayviji/vagrant-vsphere,mkuzmin/vagrant-vsphere,barklyprotects/vagrant-vsphere
ea657c498801f6983308a2a6f0e633766b467dce
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 2.1.1 # - jruby-19mode before_install: - gem update bundler script: - bundle exec rake spec sudo: false cache: bundler notifications: recipients: - azumakuniyuki+travis-ci.org@gmail.com email: on_success: change on_failure: always
language: ruby rvm: - 2.0.0 - 2.1.1 # - jruby-19mode before_install: - gem update bundler - gem install string-scrub script: - bundle exec rake spec sudo: false cache: bundler notifications: recipients: - azumakuniyuki+travis-ci.org@gmail.com email: on_success: change on_failure: always
Install string-scrub gem before rake spec
Install string-scrub gem before rake spec
YAML
bsd-2-clause
azumakuniyuki/rb-Sisimai,azumakuniyuki/rb-Sisimai
bd9334a20a45e77c978035617cd56e1b87b8c96b
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.2 - jruby - ree - ruby-head
rvm: - 1.8.7 - 1.9.1 - 1.9.2 - ree - ruby-head
Remove JRuby add MRI 1.9.1
Remove JRuby add MRI 1.9.1
YAML
mit
EvilFaeton/linkedin,john/linkedin,emorikawa/linkedin-oauth2,NeverAgain/linkedin-oauth2,brianpetro/linkedin,sagmor/linkedin,hexgnu/linkedin,varunlalan/linkedin
5304f3aa43e3f6f1efc0dbcf9316464ceef83e60
.travis.yml
.travis.yml
language: c++ compiler: gcc env: global: - GCC_VERSION="4.9" before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update -qq - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-${GCC_VERSION}; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-${GCC_VERSION}" CC="gcc-${GCC_VERSION}"; fi install: - wget http://apt.biicode.com/install.sh && chmod +x install.sh && ./install.sh - bii setup:cpp script: - bii init #Remember: bii/ folder ignored on git repo - bii find --update - bii cpp:configure -DCMAKE_CXX_COMPILER=$(which $CXX) - bii cpp:build
language: c++ compiler: gcc env: global: - GCC_VERSION="4.9" before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update -qq - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-${GCC_VERSION}; fi - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq gcc-${GCC_VERSION}; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-${GCC_VERSION}" CC="gcc-${GCC_VERSION}"; fi install: - wget http://apt.biicode.com/install.sh && chmod +x install.sh && ./install.sh - bii setup:cpp script: - bii init #Remember: bii/ folder ignored on git repo - bii find --update - bii cpp:configure -DCMAKE_CXX_COMPILER=$(which $CXX) - bii cpp:build
Update GCC too, not only g++
Update GCC too, not only g++
YAML
mit
bowlofstew/boost,biicode/boost,bowlofstew/boost,biicode/boost,bowlofstew/boost,biicode/boost
64537e36b81406f3610d7fb0af4194a79ddf3546
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - jruby - jruby-head install: - sudo apt-get install -qq graphviz - bundle install
language: ruby rvm: - 1.9.3 - 2.0.0 - jruby install: - sudo apt-get install -qq graphviz - bundle install
Remove jruby-head Travis config; takes too long to run
Remove jruby-head Travis config; takes too long to run
YAML
mit
chanibal/asciidoctor-diagram,asciidoctor/asciidoctor-diagram
b9473904f64fb10718f954c1282897a298b509c0
.travis.yml
.travis.yml
language: python python: - "2.7" # Environment setup before_install: - sudo apt-get update -qq - wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda # Useful for debugging any issues with conda - conda info -a - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION - source activate test-env # "Install" of SMQTK + immediate deps install: - conda install -n test-env $(cat requirements.txt) # Run tests here script: - nosetests --with-doctest python/smqtk/
language: python python: - "2.7" # Environment setup before_install: - sudo apt-get update -qq - wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda # Useful for debugging any issues with conda - conda info -a - conda create -q -n test-env python=$TRAVIS_PYTHON_VERSION - source activate test-env # "Install" of SMQTK + immediate deps install: - conda install -n test-env $(cat requirements.txt) # Run tests here script: - nosetests --with-doctest python/smqtk/
Fix typo in conda environment string use
Fix typo in conda environment string use
YAML
bsd-3-clause
Purg/SMQTK,anguoyang/SMQTK,Purg/SMQTK,Purg/SMQTK,kfieldho/SMQTK,kfieldho/SMQTK,anguoyang/SMQTK,anguoyang/SMQTK,Purg/SMQTK,kfieldho/SMQTK,Purg/SMQTK,Purg/SMQTK,anguoyang/SMQTK,anguoyang/SMQTK,kfieldho/SMQTK,kfieldho/SMQTK,anguoyang/SMQTK,Purg/SMQTK,anguoyang/SMQTK,kfieldho/SMQTK,kfieldho/SMQTK,kfieldho/SMQTK,anguoyang/SMQTK,Purg/SMQTK,anguoyang/SMQTK,anguoyang/SMQTK,Purg/SMQTK,kfieldho/SMQTK
c46fcf095f80b47f287dc8406d3ff3112fa72d17
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" script: - npm test --coverage after_success: cat ${TRAVIS_BUILD_DIR}/coverage/lcov.info | coveralls
language: node_js node_js: - "0.10" - "0.12" - "4" script: - npm test --coverage after_success: cat ${TRAVIS_BUILD_DIR}/coverage/lcov.info | coveralls
Add supporting of 'node@0.12.x' and 'node@4.x'
Add supporting of 'node@0.12.x' and 'node@4.x'
YAML
mit
eGavr/toc-md
a8b014e71042647cc7f8b8304ed131334f61a6c8
.travis.yml
.travis.yml
sudo: required dist: trusty language: node_js node_js: - '10.4' addons: apt: sources: - google-chrome packages: - google-chrome-stable - google-chrome-beta before_install: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start before_script: - npm install -g karma script: - npm run prettier:check - npm run test-travis after_success: cat ./coverage/coverage.lcov | ./node_modules/coveralls/bin/coveralls.js
sudo: required dist: trusty language: node_js node_js: - '10.6' - '8.9' addons: apt: sources: - google-chrome packages: - google-chrome-stable - google-chrome-beta before_install: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start before_script: - npm install -g karma script: - npm run prettier:check - npm run test-travis after_success: cat ./coverage/coverage.lcov | ./node_modules/coveralls/bin/coveralls.js
Support latest node current & stable
Support latest node current & stable
YAML
mit
danrevah/ngx-pipes,danrevah/ng-pipes,danrevah/ng-pipes,danrevah/ngx-pipes,danrevah/ng2-pipes,danrevah/ng2-pipes
5eab76f430e74b1f9c0e618fd9035b79063d4722
.travis.yml
.travis.yml
language: node_js node_js: - "6.0" addons: apt: sources: - ubuntu-toolchain-r-test packages: - libcairo2-dev - libjpeg8-dev - libpango1.0-dev - libgif-dev - g++-4.9 env: - CXX=g++-4.9 before_install: - npm explore npm -g -- npm install node-gyp@latest sudo: false
language: node_js node_js: - "8.0" addons: apt: sources: - ubuntu-toolchain-r-test packages: - libcairo2-dev - libjpeg8-dev - libpango1.0-dev - libgif-dev - g++-4.9 env: - CXX=g++-4.9 before_install: - npm explore npm -g -- npm install node-gyp@latest sudo: false
Use node 8 for build
Use node 8 for build
YAML
mit
anandanand84/technicalindicators,anandanand84/technicalindicators,anandanand84/technicalindicators,anandanand84/technicalindicators
6675d417409a34b5568f3a5ea0b578156c585ece
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" env: - DJANGO=1.6.0 - DJANGO=1.5.5 - DJANGO=1.4.10 virtualenv: system_site_packages: true install: - pip install -q coveralls Django==$DJANGO --use-mirrors - pip install -r requirements.txt services: - memcached - redis-server before_script: - psql -c 'create database varifydb;' -U postgres script: - coverage run test_suite.py after_success: - coveralls
language: python python: - "2.6" - "2.7" env: - DJANGO=1.5.5 - DJANGO=1.4.10 virtualenv: system_site_packages: true install: - pip install -q coveralls Django==$DJANGO --use-mirrors - pip install -r requirements.txt services: - memcached - redis-server before_script: - psql -c 'create database varifydb;' -U postgres script: - coverage run test_suite.py after_success: - coveralls
Stop testing on Django 1.6
Stop testing on Django 1.6 Harvest doesn't so neither will we for now
YAML
bsd-2-clause
chop-dbhi/varify,chop-dbhi/varify,chop-dbhi/varify,chop-dbhi/varify
fa4799d8d7b77ee119787561ee0fa09056661aee
.travis.yml
.travis.yml
--- language: scala script: "sbt coveralls test" scala: - 2.9.2
--- language: scala script: "sbt coveralls test" scala: - 2.9.2 before_script: - "echo JAVA_HOME $JAVA_HOME" - "echo 'which java' `which java`" - "echo JAVA_OPTS $JAVA_OPTS" - "export JAVA_OPTS=-Xmx1024m"
Increase Xmx to 1024m on Travis CI
Increase Xmx to 1024m on Travis CI
YAML
apache-2.0
ezh/digi-lib,ezh/digi-lib
f2d3ab6eb4bc1d3bb13d586d6598ba24a19a6a15
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "7" - "8" - "11" after_success: - npm run coveralls
language: node_js node_js: - "8" - "11" - "13" after_success: - npm run coveralls
Stop running tests on too old node versions
Stop running tests on too old node versions
YAML
mit
wanasit/chrono,wanasit/chrono
2dbfb2682b9cd6aa9488684dd1fa523e153657bf
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 # - 1.9.3 script: 'rake spec' before_install: - sudo add-apt-repository -y ppa:raphink/augeas - sudo apt-get update -qq - sudo apt-get install -qq libaugeas0 libaugeas-dev env: - PUPPET_VERSION="~> 2.7.0" # - PUPPET_VERSION="3.3" gemfile: .gemfile notifications: email: false
language: ruby rvm: - 1.8.7 # - 1.9.3 script: 'rake spec' before_install: - sudo add-apt-repository -y ppa:raphink/augeas - sudo apt-get update -qq - sudo apt-get install -qq libaugeas0 libaugeas-dev - sudo chmod -r /usr/share/augeas/lenses/dist/splunk.aug env: - PUPPET_VERSION="~> 2.7.0" # - PUPPET_VERSION="3.3" gemfile: .gemfile notifications: email: false
Disable dist splunk lens to demonstrate failure
Disable dist splunk lens to demonstrate failure I thought at first Augeas 1.1.0 was required for setting the lens path to the module in rspec-puppet-augeas, but shortly realized that the splunk lens is, in fact, distributed in 1.1.0. So to demonstrate the setting the lens path not working, I am disabling the distributed Splunk lens.
YAML
apache-2.0
wcooley/puppet-splunk_conf
4731946c976997b61fd3e99e8d3d09dd2974b543
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 - hhvm - nightly - hhvm-nightly env: global: - PATH="$HOME/.composer/vendor/bin:$PATH" matrix: fast_finish: true include: - php: 5.5 env: COMPOSER_FLAGS="--prefer-lowest" allow_failures: - php: nightly - php: hhvm-nightly sudo: false cache: directories: - $HOME/.composer/cache/files before_install: - composer selfupdate - composer config -g github-oauth.github.com $GITHUB_OAUTH_TOKEN - composer global require phpunit/phpunit:@stable --no-update install: - composer global update --prefer-dist --no-interaction - composer update --prefer-dist --no-interaction $COMPOSER_FLAGS script: make test after_script: - php vendor/bin/coveralls -v - php vendor/bin/test-reporter
language: php php: - 5.5 - 5.6 - 7.0 - hhvm - nightly env: global: - PATH="$HOME/.composer/vendor/bin:$PATH" matrix: fast_finish: true include: - php: 5.5 env: COMPOSER_FLAGS="--prefer-lowest" allow_failures: - php: nightly sudo: false cache: directories: - $HOME/.composer/cache/files before_install: - composer selfupdate - composer config -g github-oauth.github.com $GITHUB_OAUTH_TOKEN - composer global require phpunit/phpunit:@stable --no-update install: - composer global update --prefer-dist --no-interaction - composer update --prefer-dist --no-interaction $COMPOSER_FLAGS script: make test after_script: - php vendor/bin/coveralls -v - php vendor/bin/test-reporter
Remove unsupported hhvm-nightly from Travis
Remove unsupported hhvm-nightly from Travis
YAML
mit
Soullivaneuh/php-jquery-knob
dc38978a2f500f3f93b9ee76751918fa65eab93f
.travis.yml
.travis.yml
bundler_args: --without development script: "bundle exec rake spec" rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - ree - ruby-head
bundler_args: --without development script: "bundle exec rake spec" rvm: - 1.9.3 - 2.0.0
Test with Ruby 1.9.3 and Ruby 2.0.0
Test with Ruby 1.9.3 and Ruby 2.0.0
YAML
mit
ZenCocoon/phone_validator
b9bc3db5a5de369fb24a15a90af42ac7750cc03b
.travis.yml
.travis.yml
sudo: false cache: directories: - .ghc - .cabal env: - CABALVER=1.22 GHCVER=7.10.2 ALEXVER=3.1.4 HAPPYVER=1.19.5 addons: apt: sources: - hvr-ghc packages: - libgtk-3-dev - ghc-7.10.2 - cabal-install-1.22 - alex-3.1.4 - happy-1.19.5 before_install: - export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH - export PATH=/opt/alex/$ALEXVER/bin:/opt/happy/$HAPPYVER/bin:$PATH - travis_retry cabal update install: - type gtk2hsC2hs >/dev/null 2>&1 || { cabal install gtk2hs-buildtools; } - cabal install --only-dependencies --enable-tests script: - cabal configure --enable-tests - cabal build --ghc-options="-Werror" - cabal test - cabal check
sudo: false cache: directories: - $HOME/.ghc - $HOME/.cabal env: - CABALVER=1.22 GHCVER=7.10.2 ALEXVER=3.1.4 HAPPYVER=1.19.5 addons: apt: sources: - hvr-ghc packages: - libgtk-3-dev - ghc-7.10.2 - cabal-install-1.22 - alex-3.1.4 - happy-1.19.5 before_install: - export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH - export PATH=/opt/alex/$ALEXVER/bin:/opt/happy/$HAPPYVER/bin:$PATH - travis_retry cabal update install: - type gtk2hsC2hs >/dev/null 2>&1 || { cabal install gtk2hs-buildtools; } - cabal install --only-dependencies --enable-tests script: - cabal configure --enable-tests - cabal build --ghc-options="-Werror" - cabal test - cabal check
Fix a stupid mistake with Travis
Fix a stupid mistake with Travis
YAML
bsd-3-clause
DNNX/bob
84f472f6a0e05eac4e18470d70752c7294c43393
.travis.yml
.travis.yml
language: python # List of Python versions to test matrix: fast_finish: true include: - python: 2.7 - python: 3.2 - python: 3.3 - python: 3.4 # Python 3 are allowed to fail because it is not supported at this moment allow_failures: - python: 3.2 - python: 3.3 - python: 3.4 # command to the requirements install: - pip install -r config/requirements.txt # command to run tests script: python manage.py test --settings settings.travis
language: python # List of Python versions to test matrix: fast_finish: true include: - python: 2.7 - python: 3.4 - python: 3.5 # Python 3 are allowed to fail because it is not supported at this moment allow_failures: - python: 3.4 - python: 3.5 # command to the requirements install: - pip install -r config/requirements.txt # command to run tests script: python manage.py test --settings settings.travis
Update python versions supported by Django1.9
Update python versions supported by Django1.9
YAML
bsd-3-clause
Inter-Actief/alexia,Inter-Actief/alexia,Inter-Actief/alexia,Inter-Actief/alexia
9ac6fd1b9351413d745ab05afbc4bc017df2a57e
.travis.yml
.travis.yml
# Specify which ruby versions you wish to run your tests on, each version will be used rvm: - 2.1.8 - 2.2.6 - 2.3.3 - 2.4.0 - jruby-9.1.17.0 - jruby-9.2.0.0 # Specify the recipients for email notification notifications: recipients: - jakob@mentalized.net addons: code_climate: repo_token: 6746eb72f5d9759f7d83ea90e8f49e3f01480d3b8f6334eea9e7cd9991c41ea4 matrix: include: - rvm: 2.0.0 gemfile: gemfiles/Gemfile.ruby-2.0
# Specify which ruby versions you wish to run your tests on, each version will be used rvm: - 2.3.7 - 2.4.4 - 2.5.1 - jruby-9.1.17.0 - jruby-9.2.0.0 # Specify the recipients for email notification notifications: recipients: - jakob@mentalized.net addons: code_climate: repo_token: 6746eb72f5d9759f7d83ea90e8f49e3f01480d3b8f6334eea9e7cd9991c41ea4 matrix: include: - rvm: 2.0.0 gemfile: gemfiles/Gemfile.ruby-2.0
Test on supported versions of Ruby
Test on supported versions of Ruby * 2.1.x is officially long gone * 2.2.x is officially EOL
YAML
mit
substancelab/rconomic
134d620f82f2fc4584311acf8bcaae4df59bb9e0
.travis.yml
.travis.yml
language: haskell ghc: 7.8 env: - LTS_VER=2.5 sudo: false branches: only: - master - travis addons: apt: packages: - libwebkitgtk-dev before_install: - cabal update - cabal install stackage-cli gtk2hs-buildtools - stackage-sandbox init lts-$LTS_VER - git clone https://github.com/pavelkogan/reactive-banana-gtk.git - cabal sandbox add-source ./reactive-banana-gtk/ cache: directories: - $HOME/.stackage/sandboxes
language: haskell ghc: 7.8 env: - LTS_VER=2.5 sudo: false branches: only: - master - travis addons: apt: packages: - libwebkitgtk-dev before_install: - cabal update - cabal install stackage-cli - stackage-sandbox init lts-$LTS_VER - export PATH=$HOME/.stackage/sandboxes/ghc-$(ghc_find 7.8)/lts-$LTS_VER/bin/:$PATH - cabal install gtk2hs-buildtools - git clone https://github.com/pavelkogan/reactive-banana-gtk.git - cabal sandbox add-source ./reactive-banana-gtk/ cache: directories: - $HOME/.stackage/sandboxes - $HOME/.ghc - $HOME/.cabal before_cache: - rm -f $HOME/.cabal/packages/hackage.haskell.org/00-index.*
Fix buildtools version and cache more
Fix buildtools version and cache more
YAML
bsd-3-clause
pavelkogan/NeuroSpider
0ca5a857940312ac7fd76955af64fe061b0856a0
.travis.yml
.travis.yml
language: cpp compiler: - gcc - clang before_install: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - if [ "$CXX" == "clang++" ]; then sudo add-apt-repository -y 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.5 main'; fi - sudo apt-get update -qq install: - sudo apt-get install liblua5.1-dev libncurses-dev libboost-dev libz-dev - if [ "$CXX" == "g++" ]; then sudo apt-get install g++-4.9; fi - if [ "$CXX" == "g++" ]; then export CXX="g++-4.9"; fi - if [ "$CXX" == "clang++" ]; then sudo apt-get install --allow-unauthenticated libstdc++-4.9-dev clang-3.5; fi - if [ "$CXX" == "clang++" ]; then export CXX="clang++-3.5"; fi script: cmake . && make && make install
language: cpp compiler: - gcc - clang before_install: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - if [ "$CXX" == "clang++" ]; then sudo add-apt-repository -y 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.5 main'; fi - sudo apt-get update -qq install: - sudo apt-get install liblua5.1-dev lua5.1 libncurses-dev libboost-dev libz-dev - if [ "$CXX" == "g++" ]; then sudo apt-get install g++-4.9; fi - if [ "$CXX" == "g++" ]; then export CXX="g++-4.9"; fi - if [ "$CXX" == "clang++" ]; then sudo apt-get install --allow-unauthenticated libstdc++-4.9-dev clang-3.5; fi - if [ "$CXX" == "clang++" ]; then export CXX="clang++-3.5"; fi script: - cmake . && make && make install - echo "os.exit()" | lua -l color_coded
Test if lua can load the library
Test if lua can load the library In addition to compiling the library file, we can also check if lua can load it. This may reveal linker errors such as undefined references.
YAML
mit
tushar2708/color_coded,jeaye/color_coded,tony/color_coded,Hexcles/color_coded,jeaye/color_coded,tony/color_coded,UnrealQuester/color_coded,Hexcles/color_coded,Hexcles/color_coded,UnrealQuester/color_coded,UnrealQuester/color_coded,tony/color_coded,tushar2708/color_coded,jeaye/color_coded,tushar2708/color_coded,tony/color_coded,UnrealQuester/color_coded,tushar2708/color_coded,jeaye/color_coded,Hexcles/color_coded
582c5d27c53132c032ad639caa4e92a752772777
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" - iojs - iojs-v1.0.2
language: node_js node_js: - "0.12" - "0.11" - "0.10" - iojs - iojs-v1.0.2
Add Node version 0.12 to Travis config
Add Node version 0.12 to Travis config
YAML
mit
lawitschka/galao,spieker/galao,spieker/galao,lawitschka/galao
372099f3d3bf8c7c893665ba475bdfff89b4b3f1
.travis.yml
.travis.yml
language: rust sudo: true rust: - nightly - beta before_script: - pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH after_success: | travis-cargo --only beta doc && travis-cargo --only beta doc-upload && travis-cargo coveralls env: global: secure: cqq4PpUsrmCNLbWrmkkuf/SaCKET0+QN5w0lXmuOndBES5C+m/aR417T3Pb+7PR4gqibf47eSXgaVCQa64eZAI5PjgXrdZ7FtPRu/mgcsgcgiVrSUz5C/KSMsmp876Gl67csjCZ6SZXJ3YC0/Jh3jiJLiRt9Giqzn/s1v15j/CY=
language: rust sudo: true rust: - nightly - beta - stable before_script: - pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH after_success: | travis-cargo --only beta doc && travis-cargo --only beta doc-upload && travis-cargo coveralls env: global: secure: cqq4PpUsrmCNLbWrmkkuf/SaCKET0+QN5w0lXmuOndBES5C+m/aR417T3Pb+7PR4gqibf47eSXgaVCQa64eZAI5PjgXrdZ7FtPRu/mgcsgcgiVrSUz5C/KSMsmp876Gl67csjCZ6SZXJ3YC0/Jh3jiJLiRt9Giqzn/s1v15j/CY=
Add stable version of rustc to Travis.
Add stable version of rustc to Travis.
YAML
apache-2.0
dirvine/rust-utp
0dfa45b73747ec5df78a160ca57728fd91ac7ffc
.travis.yml
.travis.yml
language: scala stages: - name: test - name: release if: (branch = master AND type = push) OR (tag IS present) jobs: include: - env: TEST="scalafmt" jdk: oraclejdk8 script: ./scalafmt --test - env: TEST="2.11" jdk: oraclejdk8 script: sbt ci-test - env: TEST="2.12" jdk: oraclejdk8 script: sbt ci-test - env: TEST="2.11" jdk: openjdk11 script: sbt ci-test - env: TEST="2.12" jdk: openjdk11 script: sbt ci-test - stage: release jdk: oraclejdk8 script: sbt ci-release docs/docusaurusPublishGhpages cache: directories: - $HOME/.sbt - $HOME/.ivy2/cache - $HOME/.coursier - target/repos before_cache: - du -h -d 1 $HOME/.ivy2/cache - du -h -d 2 $HOME/.sbt/ - find $HOME/.sbt -name "*.lock" -type f -delete - find $HOME/.ivy2/cache -name "ivydata-*.properties" -type f -delete - rm -rf $HOME/.ivy2/local
language: scala stages: - name: test - name: release if: (branch = master AND type = push) OR (tag IS present) jobs: include: - env: TEST="scalafmt" jdk: openjdk8 script: ./scalafmt --test - env: TEST="2.11" jdk: openjdk8 script: sbt ci-test - env: TEST="2.12" jdk: openjdk8 script: sbt ci-test - env: TEST="2.11" jdk: openjdk11 script: sbt ci-test - env: TEST="2.12" jdk: openjdk11 script: sbt ci-test - stage: release jdk: openjdk8 script: sbt ci-release docs/docusaurusPublishGhpages cache: directories: - $HOME/.sbt - $HOME/.ivy2/cache - $HOME/.coursier - target/repos before_cache: - du -h -d 1 $HOME/.ivy2/cache - du -h -d 2 $HOME/.sbt/ - find $HOME/.sbt -name "*.lock" -type f -delete - find $HOME/.ivy2/cache -name "ivydata-*.properties" -type f -delete - rm -rf $HOME/.ivy2/local
Use openjdk8 instead of oraclejdk8
Use openjdk8 instead of oraclejdk8 > oraclejdk8 is not preinstalled on Xenial anymore, and cannot be retrieved from Oracle itself anymore. We'd suggest using either openjdk, or the currently supported Oracle JDK. https://github.com/travis-ci/travis-ci/issues/10290
YAML
apache-2.0
scalameta/scalafmt,olafurpg/scalafmt,olafurpg/scalafmt,scalameta/scalafmt,scalameta/scalafmt,olafurpg/scalafmt,olafurpg/scalafmt,scalameta/scalafmt
b59e48ca8d0c664ebbce271c9bc69f1b13e03940
.travis.yml
.travis.yml
# We need sudo to install pip system-wide sudo: required os: - linux - osx install: - sudo -H pip install coverage==3.7.1 - sudo -H pip install coveralls script: ./ci.sh after_success: - coveralls
# We need sudo to install pip system-wide sudo: required os: - linux - osx install: - sudo -H pip install coveralls coverage script: ./ci.sh after_success: - coveralls
Use the latest Python coverage
Use the latest Python coverage
YAML
mit
walles/px,walles/px
67ae4ccb7a974918d7bfba7f6e745c524642e047
.travis.yml
.travis.yml
rvm: - 1.9 - 2.0 - 2.1 branches: only: - master
rvm: - 1.9 - 2.0 - 2.1
Enable PRs and other branches
Enable PRs and other branches
YAML
mit
derekcollison/ruby-nats,derekcollison/ruby-nats
9337ccf96456b23e002c871f2565644b3f016389
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 script: bundle exec rspec before_install: - gem update --system
language: ruby rvm: - 2.0.0 script: bundle exec rspec before_install: - gem update --system notifications: webhooks: urls: - https://lita-freenode.herokuapp.com/travis
Add Lita webhook for Travis.
Add Lita webhook for Travis.
YAML
mit
jimmycuadra/lita-karma,erikogan/lita-karma
75753f131b205d151f12d0a13fb95f20ade8a997
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "5" - "6" before_script: "npm install -g codeclimate-test-reporter" script: "make test-cov" after_script: "cat coverage/lcov.info | codeclimate-test-reporter" addons: code_climate: repo_token: 5a644ff51596ca5151a352e9502ea06228bc7187a7bdc816360b8e538bbac923
language: node_js node_js: - "6" - "7" before_script: "npm install -g codeclimate-test-reporter" script: "make test-cov" after_script: "cat coverage/lcov.info | codeclimate-test-reporter" addons: code_climate: repo_token: 5a644ff51596ca5151a352e9502ea06228bc7187a7bdc816360b8e538bbac923
Remove Node 4 and 5 from Travis, add Node 7
Remove Node 4 and 5 from Travis, add Node 7
YAML
mit
martinandert/babel-plugin-css-in-js,martinandert/babel-plugin-css-in-js,martinandert/babel-plugin-css-in-js,martinandert/babel-plugin-css-in-js
981871db3498dfcf6a169b5b6e84a64ecb1d9981
.travis.yml
.travis.yml
language: php php: - 7.2 - 7.3 env: matrix: - COMPOSER_FLAGS="--prefer-lowest" - COMPOSER_FLAGS="" before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source script: - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
language: php php: - 7.2 - 7.3 - 7.4 env: matrix: - COMPOSER_FLAGS="--prefer-lowest" - COMPOSER_FLAGS="" before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source script: - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
Add php 7.4 to the matrix
Add php 7.4 to the matrix
YAML
mit
pmatseykanets/laravel-scout-postgres
f38416e14077df0c9b4c91d1dce13b022addb802
.travis.yml
.travis.yml
language: node_js node_js: - '4.2.6' - '5.5.0'
language: node_js node_js: - '4.4.5' - '6.2.1'
Update Node version for Travis
Update Node version for Travis
YAML
mit
joshswan/react-native-autolink,joshswan/react-native-autolink
8a34c4e3d293f0c7347021c89952866530ab0f7b
.travis.yml
.travis.yml
sudo: false dist: trusty language: java jdk: - openjdk8 - oraclejdk8 install: ./gradlew setupDecompWorkspace script: ./gradlew build notifications: email: false
sudo: required dist: trusty language: java jdk: - openjdk8 - oraclejdk8 install: ./gradlew setupDecompWorkspace script: ./gradlew build notifications: email: false
Revert "Use container-based trusty image on Travis"
Revert "Use container-based trusty image on Travis" Since ForgeGradle requires a lot of memory, these run better on the virtual machines with more memory. This reverts commit ad52ffe5640a6d55781e9bf1d6f6bc97ea898785.
YAML
mit
sanman00/SpongeCommon,JBYoshi/SpongeCommon,SpongePowered/Sponge,SpongePowered/Sponge,Grinch/SpongeCommon,SpongePowered/SpongeCommon,sanman00/SpongeCommon,JBYoshi/SpongeCommon,SpongePowered/SpongeCommon,SpongePowered/Sponge,Grinch/SpongeCommon
a7a031928c6598f8752ea4d5c0743028e20c0b2d
.travis.yml
.travis.yml
language: node_js sudo: true node_js: - "10.14.2" demo/dist: xenial branches: only: - master before_script: - export CHROME_BIN=/usr/bin/google-chrome - export DISPLAY=:99.0 - sudo apt-get update - wget -N https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -P ~/ - sudo dpkg -i --force-depends ~/google-chrome-stable_current_amd64.deb services: - xvfb script: - npm run lint - node_modules/.bin/karma start --single-run --no-fail-on-empty-test-suite - cd demo - npm install - node_modules/.bin/ng test --watch false - node_modules/.bin/webdriver-manager update - ng build --base-href "https://koderlabs.github.io/ngx-device-detector/demo/" --prod --output-hashing=all - cd .. - cp -R ./demo/dist ./docs/demo deploy: provider: pages skip_cleanup: true github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard local_dir: docs on: branch: master
language: node_js sudo: true node_js: - "10.14.2" demo/dist: xenial branches: only: - master tags: true before_script: - export CHROME_BIN=/usr/bin/google-chrome - export DISPLAY=:99.0 - sudo apt-get update - wget -N https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -P ~/ - sudo dpkg -i --force-depends ~/google-chrome-stable_current_amd64.deb services: - xvfb script: - npm run lint - node_modules/.bin/karma start --single-run --no-fail-on-empty-test-suite - cd demo - npm install - node_modules/.bin/ng test --watch false - node_modules/.bin/webdriver-manager update - ng build --base-href "https://koderlabs.github.io/ngx-device-detector/demo/" --prod --output-hashing=all - cd .. - cp -R ./demo/dist ./docs/demo deploy: provider: pages skip_cleanup: true github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard local_dir: docs on: branch: master
Add support for tag deploys
chore(ci): Add support for tag deploys Added support for tags should trigger deployment
YAML
mit
KoderLabs/ng2-device-detector,KoderLabs/ng2-device-detector
c9ace4e32de93444a575fa6eb0c43780bddcb4eb
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" env: - DJANGO_VERSION=1.4.15 DATABASE_SETTINGS='settings_test_mysql.py' - DJANGO_VERSION=1.5.10 DATABASE_SETTINGS='settings_test_mysql.py' - DJANGO_VERSION=1.6.7 DATABASE_SETTINGS='settings_test_mysql.py' - DJANGO_VERSION=1.7 DATABASE_SETTINGS='settings_test_mysql.py' - DJANGO_VERSION=1.8b1 DATABASE_SETTINGS='settings_test_mysql.py' - DJANGO_VERSION=1.4.15 DATABASE_SETTINGS='settings_test_postgresql.py' - DJANGO_VERSION=1.5.10 DATABASE_SETTINGS='settings_test_postgresql.py' - DJANGO_VERSION=1.6.7 DATABASE_SETTINGS='settings_test_postgresql.py' - DJANGO_VERSION=1.7 DATABASE_SETTINGS='settings_test_postgresql.py' - DJANGO_VERSION=1.8b1 DATABASE_SETTINGS='settings_test_postgresql.py' install: - pip install -r requirements_dev.txt - pip uninstall -y Django - pip install -q Django==$DJANGO_VERSION before_script: - mysql -e 'create database calaccess_raw;' - psql -c 'create database calaccess_raw;' -U postgres - cp example/project/$DATABASE_SETTINGS.template example/project/settings_local.py script: - pep8 calaccess_raw - pyflakes calaccess_raw - coverage run example/manage.py test calaccess_raw after_success: - coveralls
language: python python: - "2.7" - "3.3" - "3.4" env: - DJANGO_VERSION=1.7 DATABASE_SETTINGS='settings_test_mysql.py' - DJANGO_VERSION=1.8b1 DATABASE_SETTINGS='settings_test_mysql.py' - DJANGO_VERSION=1.7 DATABASE_SETTINGS='settings_test_postgresql.py' - DJANGO_VERSION=1.8b1 DATABASE_SETTINGS='settings_test_postgresql.py' install: - pip install -r requirements_dev.txt - pip uninstall -y Django - pip install -q Django==$DJANGO_VERSION before_script: - mysql -e 'create database calaccess_raw;' - psql -c 'create database calaccess_raw;' -U postgres - cp example/project/$DATABASE_SETTINGS.template example/project/settings_local.py script: - pep8 calaccess_raw - pyflakes calaccess_raw - coverage run example/manage.py test calaccess_raw after_success: - coveralls
Reduce the Django versions we test against
Reduce the Django versions we test against
YAML
mit
danmit/django-calaccess-raw-data,mcasti/django-calaccess-raw-data,myersjustinc/django-calaccess-raw-data,jsfenfen/django-calaccess-raw-data,mb10/django-calaccess-raw-data,adborden/django-calaccess-raw-data,karkinosw/django-calaccess-raw-data,dwillis/django-calaccess-raw-data,Livhaker/django-calaccess-raw-data,roncampbell/django-calaccess-raw-data,jenny8lee/django-calaccess-raw-data,erikao/django-calaccess-raw-data,dcloud/django-calaccess-raw-data,nikkiusher/django-calaccess-raw-data,ebonymarieb/django-calaccess-raw-data,california-civic-data-coalition/django-calaccess-raw-data,MCGarvey/django-calaccess-raw-data,dagaa/django-calaccess-raw-data,caseymm/django-calaccess-raw-data,chrislkeller/django-calaccess-raw-data,JulieWestfall/django-calaccess-raw-data,taraadiseshan/django-calaccess-raw-data,jieqianzhang/django-calaccess-raw-data,Charlex/django-calaccess-raw-data,influence-usa/django-calaccess-raw-data,emamd/django-calaccess-raw-data,latams/django-calaccess-raw-data,anthonyjpesce/django-calaccess-raw-data,karissa/django-calaccess-raw-data,j-vasquez/django-calaccess-raw-data,NicoleWest/django-calaccess-raw-data,ashwu/django-calaccess-raw-data
6260e7ab123a732e95f82e21e7bd8aede2e5abee
.travis.yml
.travis.yml
before_install: - gem update bundler - bundle --version - gem update --system 2.2.2 - gem --version language: ruby cache: bundler rvm: - ree - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - 2.1.1 - ruby-head - rbx-2 matrix: include: - rvm: jruby-18mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" # for simplecov - rvm: jruby-19mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" # for simplecov - rvm: jruby-20mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" # for simplecov - rvm: jruby-21mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" # for simplecov - rvm: jruby-head env: JRUBY_OPTS="$JRUBY_OPTS --debug" # for simplecov allow_failures: - rvm: ruby-head - rvm: jruby-head fast_finish: true notifications: irc: channels: - irc.freenode.org#rom-rb on_success: never on_failure: change
before_install: - gem update bundler - bundle --version - gem update --system 2.2.2 - gem --version language: ruby rvm: - ree - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - 2.1.1 - ruby-head - rbx-2 matrix: include: - rvm: jruby-18mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" # for simplecov - rvm: jruby-19mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" # for simplecov - rvm: jruby-20mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" # for simplecov - rvm: jruby-21mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" # for simplecov - rvm: jruby-head env: JRUBY_OPTS="$JRUBY_OPTS --debug" # for simplecov allow_failures: - rvm: ruby-head - rvm: jruby-head fast_finish: true notifications: irc: channels: - irc.freenode.org#rom-rb on_success: never on_failure: change
Remove cache configuration for bundler
Remove cache configuration for bundler * This causes issues between rubies because they require different dependencies
YAML
mit
dkubb/memoizable
f9b47adaa84d92587654a945ed341afdf169f170
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 script: - "mvn verify -Ponline-its -DwlpVersion=8.5.5_05 -DwlpLicense=L-MCAO-9SYMVC"
sudo: false language: java jdk: - oraclejdk8 script: - "mvn verify -Ponline-its -DwlpVersion=8.5.5_06 -DwlpLicense=L-MCAO-9SYMVC"
Use latest Liberty and try Travis containers
Use latest Liberty and try Travis containers
YAML
apache-2.0
MisaelSalcido/ci.ant,jgawor/ci.ant,rmcmx/ci.ant,cthigh/ci.ant,WASdev/ci.ant
43785a0800d1fc5d2e65ee84dee9b1034ef2137b
.travis.yml
.travis.yml
language: ruby bundler_args: --standalone --binstubs script: ./bin/rspec spec/**/*_spec.rb rvm: - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - 2.1.1 - jruby-19mode - rbx gemfile: - gemfiles/activerecord_3_1.gemfile - gemfiles/activerecord_3_2.gemfile - gemfiles/activerecord_4.gemfile - gemfiles/activerecord_edge.gemfile matrix: exclude: - rvm: 1.9.2 gemfile: gemfiles/activerecord_4.gemfile - rvm: 1.9.2 gemfile: gemfiles/activerecord_edge.gemfile branches: only: - master
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - 2.1.1 - jruby-19mode - rbx gemfile: - gemfiles/activerecord_3_1.gemfile - gemfiles/activerecord_3_2.gemfile - gemfiles/activerecord_4.gemfile - gemfiles/activerecord_edge.gemfile env: - DB=postgresql - DB=mysql - DB=sqlite3 matrix: exclude: - rvm: 1.9.2 gemfile: gemfiles/activerecord_4.gemfile - rvm: 1.9.2 gemfile: gemfiles/activerecord_edge.gemfile branches: only: - master before_script: - sh -c "if [ '$DB' = 'postgresql' ]; then psql -c 'DROP DATABASE IF EXISTS sexy_scopes_spec;' -U postgres; fi" - sh -c "if [ '$DB' = 'postgresql' ]; then psql -c 'CREATE DATABASE sexy_scopes_spec;' -U postgres; fi" - sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE IF NOT EXISTS sexy_scopes_spec;'; fi"
Update Travis configuration to run specs for all supported RDBMS
Update Travis configuration to run specs for all supported RDBMS
YAML
mit
samleb/sexy_scopes,Kriechi/sexy_scopes
99a0552e527e5084ce1ae58372515b662674a39b
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.1
language: ruby rvm: - 2.1.10 - 2.2.7 - 2.3.3 - 2.4.1
Use modern Rubies on Travis CI
Use modern Rubies on Travis CI
YAML
mit
douglaswth/machine_tag
0db697b2948f26fe2d35f7c7df837689cbb28d46
.travis.yml
.travis.yml
osx_image: xcode7.1 language: objective-c script: # Carthage - xctool build -project Async.xcodeproj -scheme "Async iOS" - xctool build -project Async.xcodeproj -scheme "Async OSX" # CocoaPods #- xctool clean build -workspace AsyncPodsExample/AsyncPodsExample.xcworkspace -scheme "AsyncExample iOS" -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO #- xctool clean build -workspace AsyncPodsExample/AsyncPodsExample.xcworkspace -scheme "AsyncExample OS X" -sdk macosx ONLY_ACTIVE_ARCH=NO # Tests (OS X only, since simulator doesn't play nice with GCD) - xctool build test -project AsyncTest/Async.xcodeproj -scheme "AsyncOSX" after_success: - bash <(curl -s https://codecov.io/bash)
osx_image: xcode7.1 language: objective-c script: # Carthage # - xctool build -project Async.xcodeproj -scheme "Async iOS" - xctool build -project Async.xcodeproj -scheme "Async OSX" # CocoaPods #- xctool clean build -workspace AsyncPodsExample/AsyncPodsExample.xcworkspace -scheme "AsyncExample iOS" -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO #- xctool clean build -workspace AsyncPodsExample/AsyncPodsExample.xcworkspace -scheme "AsyncExample OS X" -sdk macosx ONLY_ACTIVE_ARCH=NO # Tests (OS X only, since simulator doesn't play nice with GCD) - xctool build test -project AsyncTest/Async.xcodeproj -scheme "AsyncOSX" after_success: - bash <(curl -s https://codecov.io/bash)
Disable iOS build on Travis CI
Disable iOS build on Travis CI Throws a code signing error currently. I want tests to succed to add codecoverage and stuff.
YAML
mit
2h4u/Async,duemunk/Async,2h4u/Async,duemunk/Async,duemunk/Async,2h4u/Async
aa98a0a6ffac31d0060b36cb607a647784ff7fb6
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3
language: ruby rvm: - 1.9.3 - 2.0.0-p598 - 2.1.5 - 2.2.0
Add newer Ruby versions to Travis CI
Add newer Ruby versions to Travis CI
YAML
mit
komoju/heroics,interagent/heroics,komoju/heroics,interagent/heroics
1b09968d3a860d429755f4c83172818403a7e4e6
.travis.yml
.travis.yml
sudo: required language: rust rust: - stable - beta - nightly before_script: - pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH script: - travis-cargo build - travis-cargo test # - travis-cargo --only stable doc after_success: # - travis-cargo --only stable doc-upload - travis-cargo coveralls
sudo: required language: rust rust: # - stable - beta - nightly before_script: - pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH script: - travis-cargo build - travis-cargo test # - travis-cargo --only stable doc after_success: # - travis-cargo --only stable doc-upload - travis-cargo coveralls
Remove Rust stable from test env
Remove Rust stable from test env
YAML
mit
messense/robotparser-rs
aa49c499ed60e2880b36cca56647ace4a2f87312
.travis.yml
.travis.yml
language: python group: travis_lts sudo: false services: - docker before_install: # - export RIAK_ADMIN="riak-admin" - export DOCKER_HOST=tcp://0.0.0.0:2375 - export DOCKER_CLUSTER=1 - python setup.py setup_riak python: - '3.5.0' - '3.5.1' - '3.5.2' - '3.6.0' install: - pip install . - pip install coveralls script: - nosetests -v after_success: - coveralls
language: python group: travis_lts sudo: false services: - docker before_install: # - export RIAK_ADMIN="riak-admin" - export DOCKER_HOST=tcp://0.0.0.0:2375 - export DOCKER_CLUSTER=1 - python setup.py setup_riak python: - '3.5.4' - '3.6.4' install: - pip install . - pip install coveralls script: - nosetests -v after_success: - coveralls
Use only last minor python version for tests
Use only last minor python version for tests
YAML
mit
rambler-digital-solutions/aioriak
92b60ad5513c7e3f32e99abc3bd80cd283b3e8d9
.travis.yml
.travis.yml
osx_image: xcode7.3 language: objective-c podfile: Demo/Podfile cache: cocoapods script: cd Demo ; set -o pipefail && xcodebuild -workspace 'Demo.xcworkspace' -scheme 'Demo' -configuration 'Debug' -sdk iphonesimulator -destination platform='iOS Simulator',OS='9.1',name='iPhone 6s' build test | xcpretty -c --test
osx_image: xcode7.3 language: objective-c podfile: Demo/Podfile cache: cocoapods script: - set -o pipefail - xcodebuild test -scheme 'Action' -sdk iphonesimulator | xcpretty -c --test - cd Demo ; xcodebuild -workspace 'Demo.xcworkspace' -scheme 'Demo' -configuration 'Debug' -sdk iphonesimulator -destination platform='iOS Simulator',OS='9.1',name='iPhone 6s' build test | xcpretty -c --test
Add test job on Travis CI
Add test job on Travis CI
YAML
mit
RxSwiftCommunity/Action,RxSwiftCommunity/Action,RxSwiftCommunity/Action
6e26c9135d959fd51f8dae02928cb2e50159a9c6
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4.2' - '5.1' branches: only: - master - travis-ci - finalizers # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm install - npm install istanbul coveralls
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4' - '5.1' branches: only: - master - travis-ci - finalizers # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm install - npm install istanbul coveralls
Test with latest Node.js 4 on Travis CI.
Test with latest Node.js 4 on Travis CI.
YAML
mit
bigeasy/cadence,bigeasy/cadence
7f9148f0237d52824df214d6b326010b7c13999a
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.2 - 1.9.3 - rbx-19mode - jruby-19mode - ruby-head notifications: irc: "irc.freenode.org#adhearsion"
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.1.0 - rbx-19mode - jruby-19mode - ruby-head notifications: irc: "irc.freenode.org#adhearsion"
Test on recent Ruby releases
Test on recent Ruby releases
YAML
mit
adhearsion/future-resource
700c2c56c951a88cd61e308f3470f6a70fca0e50
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.11" script: - npm test
language: node_js node_js: - "0.10" - "0.11" - "0.12" - "iojs" script: - npm test
Add io.js & node 0.12
Add io.js & node 0.12
YAML
mit
lykmapipo/alamid-schema,peerigon/alamid-schema
d9d3b29d456449d7861e6a209ba7cc31159ecddb
.travis.yml
.travis.yml
language: node_js node_js: - 12 cache: directories: - $TRAVIS_BUILD_DIR/demo/node_modules - $TRAVIS_BUILD_DIR/demo/functions/node_modules before_install: - cp -R packages/rmw-shell/cra-template-rmw/template demo/ - cd demo/template/continuous_deployment - chmod +x before_install.sh - ./before_install.sh before_script: - npm test - chmod +x ./continuous_deployment/build.sh - travis_wait 40 ./continuous_deployment/build.sh script: - chmod +x ./continuous_deployment/deploy.sh - travis_wait 40 ./continuous_deployment/deploy.sh
language: node_js node_js: - 12 cache: directories: - $TRAVIS_BUILD_DIR/demo/node_modules - $TRAVIS_BUILD_DIR/demo/functions/node_modules before_install: - mkdir -p demo/ - cp -R packages/rmw-shell/cra-template-rmw/template demo/ - cd demo/continuous_deployment - chmod +x before_install.sh - ./before_install.shgit before_script: - npm test - chmod +x ./continuous_deployment/build.sh - travis_wait 40 ./continuous_deployment/build.sh script: - chmod +x ./continuous_deployment/deploy.sh - travis_wait 40 ./continuous_deployment/deploy.sh
Create folder demo if it doesn't exist
Create folder demo if it doesn't exist
YAML
mit
TarikHuber/react-most-wanted,TarikHuber/react-most-wanted,TarikHuber/react-most-wanted
172a4afb66ea8808e0268d0677721fecc9975a2b
.travis.yml
.travis.yml
language: ruby rvm: 1.9.3
language: ruby rvm: - "1.9.3" - "2.0" - "2.1" - "2.2" - ruby-head - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head fast_finish: true
Add 2.0, 2.1, 2.2, ruby-head/jruby-head, allow failures
Add 2.0, 2.1, 2.2, ruby-head/jruby-head, allow failures If required rubies fail tests, skip remaining tests via fast_finish.
YAML
mit
imtayadeway/miq_tools_services,ManageIQ/miq_tools_services
ecffdba335c8271b6fe540b98ea9ae31855b7b98
.travis.yml
.travis.yml
sudo: required language: generic env: IMAGE_NAME: vhost-proxy:test # Only use seconds here, so that these can be used with "sleep" as well PROJECT_INACTIVITY_TIMEOUT: 30s PROJECT_DANGLING_TIMEOUT: 60s PROXY_DEBUG: 1 DOCKSAL_VERSION: master services: - docker install: - sudo sudo curl -L https://raw.githubusercontent.com/docksal/docksal/${DOCKSAL_VERSION}/bin/fin -o /usr/local/bin/fin && sudo chmod +x /usr/local/bin/fin - fin version - fin update - fin docker build -t ${IMAGE_NAME} . - PROJECTS_ROOT=$TRAVIS_BUILD_DIR IMAGE_VHOST_PROXY=$IMAGE_NAME fin reset proxy - fin sysinfo before_script: - .travis/before_script.sh script: - bats tests/smoke-test.bats
sudo: required language: generic env: IMAGE_NAME: vhost-proxy:test # Only use seconds here, so that these can be used with "sleep" as well PROJECT_INACTIVITY_TIMEOUT: 30s PROJECT_DANGLING_TIMEOUT: 60s PROXY_DEBUG: 1 DOCKSAL_VERSION: develop services: - docker install: - sudo sudo curl -L https://raw.githubusercontent.com/docksal/docksal/${DOCKSAL_VERSION}/bin/fin -o /usr/local/bin/fin && sudo chmod +x /usr/local/bin/fin - fin version - fin update - fin docker build -t ${IMAGE_NAME} . - PROJECTS_ROOT=$TRAVIS_BUILD_DIR IMAGE_VHOST_PROXY=$IMAGE_NAME fin system reset vhost-proxy - fin sysinfo before_script: - .travis/before_script.sh script: - bats tests/smoke-test.bats
Switch to dev version of Docksal
Switch to dev version of Docksal
YAML
mit
docksal/service-vhost-proxy,docksal/service-vhost-proxy
c14b733c9ff0afa04c18f2d06f6d3326c8e11c91
.travis.yml
.travis.yml
language: clojure lein: lein2 addons: postgresql: "9.3" before_script: - createdb -e -U postgres -E UTF-8 -O $USER tamarack - sudo apt-get install phantomjs npm - sudo npm install -g karma karma-phantomjs-launcher karma-jasmine script: - lein cljsbuild once - lein midje - /usr/local/lib/node_modules/karma/bin/karma start --single-run
language: clojure lein: lein2 addons: postgresql: "9.3" before_script: - createdb -e -U postgres -E UTF-8 -O $USER tamarack - sudo apt-get install phantomjs npm - sudo npm install -g karma - sudo npm install -g karma-phantomjs-launcher - sudo npm install -g karma-jasmine script: - lein cljsbuild once - lein midje - /usr/local/lib/node_modules/karma/bin/karma start --single-run
Split up npm package installation to multiple steps
Split up npm package installation to multiple steps
YAML
bsd-3-clause
mhallin/tamarack,mhallin/tamarack
1814af2fcbc96c42b3403685453430513d2a313e
.travis.yml
.travis.yml
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 2.2.5 - 2.3.1 - jruby-9.1.2.0 - rbx cache: bundler sudo: false addons: code_climate: repo_token: 5806cc8a21c03f4e2f9d3b9d98d5d9fe084b66243b1dbb27b467dbc795acdcac
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 2.2.5 - 2.3.1 - jruby - rbx cache: bundler sudo: false addons: code_climate: repo_token: 5806cc8a21c03f4e2f9d3b9d98d5d9fe084b66243b1dbb27b467dbc795acdcac matrix: allow_failures: - rvm: jruby
Change Travis JRuby to default and allow failures.
Change Travis JRuby to default and allow failures.
YAML
unlicense
ruby-rdf/rdf,PerfectMemory/rdf
d18ab05e34ac988a78503b838fb37270651c13c4
.travis.yml
.travis.yml
language: java before_script: - wget -c http://download.dnscrypt.org/libsodium/releases/libsodium-0.4.1.tar.gz - tar xzvf libsodium-0.4.1.tar.gz - cd libsodium-0.4.1 && mkdir vendor - ./configure --prefix=`pwd`/vendor - make && make install - cd ../ script: "LD_LIBRARY_PATH=/home/travis/build/abstractj/kalium/libsodium-0.4.1/vendor/lib" env: JAVA_OPTS="-Djava.library.path=/home/travis/build/abstractj/kalium/libsodium-0.4.1/vendor/lib" jdk: - oraclejdk7 - openjdk6 after_success: - rm -rf libsodium-0.4.1*
language: java before_script: - wget -c http://download.libsodium.org/libsodium/releases/libsodium-0.4.1.tar.gz - tar xzvf libsodium-0.4.1.tar.gz - cd libsodium-0.4.1 && mkdir vendor - ./configure --prefix=`pwd`/vendor - make && make install - cd ../ script: "LD_LIBRARY_PATH=/home/travis/build/abstractj/kalium/libsodium-0.4.1/vendor/lib" env: JAVA_OPTS="-Djava.library.path=/home/travis/build/abstractj/kalium/libsodium-0.4.1/vendor/lib" jdk: - oraclejdk7 - openjdk6 after_success: - rm -rf libsodium-0.4.1*
Update libsodium URL on Travis
Update libsodium URL on Travis
YAML
apache-2.0
abstractj/kalium,abstractj/kalium,vshaipov/kalium,tml/kalium,andresgalante/kalium,joshjdevl/kalium-jni,lukin0110/kalium,f24-ag/kalium-jni,joshjdevl/kalium-jni,joshjdevl/kalium-jni,f24-ag/kalium-jni
1a21c3494fbef8cfcb34ab90fa781cd989931016
.travis.yml
.travis.yml
language: scala scala: - 2.10.3 before_script: - npm install bower - npm install grunt-cli - gem install sass - cd public - npm install - bower install - cd .. script: - cd public - grunt test - cd .. - sbt clean compile test dist deploy: provider: heroku api_key: secure: RwSpEp49ALY8s4x6/HonZXrm0URSl8rgyLsZ8PhRQHN/P/pgPnUwsEWh6yxcHKR4dyq1ib6doKNzkAHfafoUvgIKgnTruJ9KmR3yqvXx8wZpd9Kos57XXKm0yfhfc8XVBgeBst79zTFDAO7WDs0Lp0r+xRCHo0nTqulD/xRXxJU= skip_cleanup: true app: develop: bridge-development
language: scala scala: - 2.10.3 before_script: - npm install bower - npm install grunt-cli - gem install sass - cd public - npm install - bower install - cd .. script: - cd public - grunt test - cd .. deploy: provider: heroku api_key: secure: RwSpEp49ALY8s4x6/HonZXrm0URSl8rgyLsZ8PhRQHN/P/pgPnUwsEWh6yxcHKR4dyq1ib6doKNzkAHfafoUvgIKgnTruJ9KmR3yqvXx8wZpd9Kos57XXKm0yfhfc8XVBgeBst79zTFDAO7WDs0Lp0r+xRCHo0nTqulD/xRXxJU= skip_cleanup: true app: develop: bridge-development
Use the default sbt script.
Use the default sbt script.
YAML
apache-2.0
DwayneJengSage/BridgePF,Sage-Bionetworks/BridgePF,alxdarksage/BridgePF,Sage-Bionetworks/BridgePF,alxdarksage/BridgePF,Sage-Bionetworks/BridgePF,DwayneJengSage/BridgePF,DwayneJengSage/BridgePF,alxdarksage/BridgePF
81755a8b66de38214bb9f4087a206801fae2ff92
.travis.yml
.travis.yml
language: node_js node_js: - 0.8 branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm install
language: node_js node_js: - 0.8 - 0.6 branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm install
Test against Node.js 0.10 at Travis CI.
Test against Node.js 0.10 at Travis CI.
YAML
mit
bigeasy/connect-npm
c1085c94a1f7244f261f3728885ca43fb6d0b016
.travis.yml
.travis.yml
--- language: node_js node_js: # we recommend testing addons with the same minimum supported node version as Ember CLI # so that your addon works for all apps - "6" sudo: false dist: trusty addons: chrome: stable cache: directories: - $HOME/.npm env: global: # See https://git.io/vdao3 for details. - JOBS=1 matrix: # we recommend new addons test the current and previous LTS # as well as latest stable release (bonus points to beta/canary) - EMBER_TRY_SCENARIO=ember-lts-2.12 - EMBER_TRY_SCENARIO=ember-lts-2.16 - EMBER_TRY_SCENARIO=ember-release - EMBER_TRY_SCENARIO=ember-beta - EMBER_TRY_SCENARIO=ember-canary - EMBER_TRY_SCENARIO=ember-default matrix: fast_finish: true allow_failures: - env: EMBER_TRY_SCENARIO=ember-canary before_install: - npm config set spin false - npm install -g npm@4 - npm --version script: - npm run lint:js # Usually, it's ok to finish the test scenario without reverting # to the addon's original dependency state, skipping "cleanup". - node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup
--- language: node_js node_js: # we recommend testing addons with the same minimum supported node version as Ember CLI # so that your addon works for all apps - "6" sudo: false dist: trusty addons: chrome: stable cache: yarn: true directories: - $HOME/.npm env: global: # See https://git.io/vdao3 for details. - JOBS=1 matrix: # we recommend new addons test the current and previous LTS # as well as latest stable release (bonus points to beta/canary) - EMBER_TRY_SCENARIO=ember-lts-2.12 - EMBER_TRY_SCENARIO=ember-lts-2.16 - EMBER_TRY_SCENARIO=ember-release - EMBER_TRY_SCENARIO=ember-beta - EMBER_TRY_SCENARIO=ember-canary - EMBER_TRY_SCENARIO=ember-default matrix: fast_finish: true allow_failures: - env: EMBER_TRY_SCENARIO=ember-canary before_install: - npm config set spin false - npm install -g npm@4 bower - npm --version install: - yarn install - bower install script: - npm run lint:js # Usually, it's ok to finish the test scenario without reverting # to the addon's original dependency state, skipping "cleanup". - node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup
Add bower installation to Travis config
Add bower installation to Travis config
YAML
apache-2.0
Netflix/ember-nf-graph,Netflix/ember-nf-graph
370a7ed4c6fe74debde7a0d074de0a45fc1e896d
.travis.yml
.travis.yml
language: php dist: trusty sudo: false php: - 5.6 - 7.0 - 7.1 env: global: - DEFAULT=1 matrix: fast_finish: true include: - php: 5.6 env: PHPCS=1 DEFAULT=0 - php: 7.1 env: PHPSTAN=4 DEFAULT=0 - php: 7.1 env: PHPSTAN=5 DEFAULT=0 allow_failures: - env: PHPSTAN=5 DEFAULT=0 before_script: - if [[ $DEFAULT = 1 ]]; then composer install; fi - if [[ $PHPCS = 1 ]]; then composer require cakephp/cakephp-codesniffer:~2.1; fi - if [[ $PHPSTAN > 0 ]]; then composer require phpstan/phpstan:^0.6; fi script: - if [[ $DEFAULT = 1 ]]; then vendor/bin/phpunit --coverage-clover=coverage.xml; fi - if [[ $PHPCS = 1 ]]; then vendor/bin/phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests; fi - if [[ $PHPSTAN > 0 ]]; then vendor/bin/phpstan analyse ./src --level $PHPSTAN; fi notifications: email: false after_success: - bash <(curl -s https://codecov.io/bash)
language: php dist: trusty sudo: false php: - 5.6 - 7.0 - 7.1 env: global: - DEFAULT=1 matrix: fast_finish: true include: - php: 5.6 env: PHPCS=1 DEFAULT=0 - php: 7.1 env: PHPSTAN=5 DEFAULT=0 allow_failures: - env: PHPSTAN=5 DEFAULT=0 before_script: - if [[ $DEFAULT = 1 ]]; then composer install; fi - if [[ $PHPCS = 1 ]]; then composer require cakephp/cakephp-codesniffer:~2.1; fi - if [[ $PHPSTAN > 0 ]]; then composer require phpstan/phpstan:^0.6; fi script: - if [[ $DEFAULT = 1 ]]; then vendor/bin/phpunit --coverage-clover=coverage.xml; fi - if [[ $PHPCS = 1 ]]; then vendor/bin/phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests; fi - if [[ $PHPSTAN > 0 ]]; then vendor/bin/phpstan analyse ./src --level $PHPSTAN; fi notifications: email: false after_success: - bash <(curl -s https://codecov.io/bash)
Drop PHPStan level 4 because it's being confused by Cake's EntityInterface.
Drop PHPStan level 4 because it's being confused by Cake's EntityInterface.
YAML
mit
robotusers/cakephp-table-inheritance
90b1f732f6503850fbcd7923ab6d83a1c72584fd
.travis.yml
.travis.yml
language: python python: - "2.7" env: - SIMPHONY_VERSION=0.2.0 - SIMPHONY_VERSION=master matrix: allow_failures: - env: SIMPHONY_VERSION=master before_install: - sudo apt-get update -qq - sudo apt-get install mpi-default-bin mpi-default-dev install: # build and install lammps - ./install_external.sh - export PATH=$PATH:$PWD/mylammps/src/ - pip install -r dev_requirements.txt - pip install git+https://github.com/simphony/simphony-common.git@${SIMPHONY_VERSION}#egg=simphony - pip install -r doc_requirements.txt - pip install coveralls - python setup.py develop script: - flake8 --exclude=mylammps . - coverage run -m unittest discover - python setup.py build_sphinx after_success: - coveralls
language: python python: - "2.7" env: - SIMPHONY_VERSION=0.2.0 - SIMPHONY_VERSION=master matrix: allow_failures: - env: SIMPHONY_VERSION=master before_install: - sudo apt-get update -qq - sudo apt-get install mpi-default-bin mpi-default-dev install: # build and install lammps - ./install_external.sh - export PATH=$PATH:$PWD/mylammps/src/ - pip install -r dev_requirements.txt - pip install git+https://github.com/simphony/simphony-common.git@${SIMPHONY_VERSION}#egg=simphony - pip install -r doc_requirements.txt - python setup.py develop script: - flake8 --exclude=mylammps . - coverage run -m unittest discover - python setup.py build_sphinx after_success: - pip install codecov - codecov
Use codecov instead of coveralls
Use codecov instead of coveralls
YAML
bsd-2-clause
simphony/simphony-lammps-md,simphony/simphony-lammps-md
8f3455692fd85761dc6c616cf59f14a6f68bff49
.travis.yml
.travis.yml
language: ruby script: 'bundle exec rake spec' rvm: - 1.9.3 - 2.0.0 - ruby-head - jruby-19mode - jruby-head - rbx-19mode notifications: irc: channels: - irc.freenode.org#rom-rb on_success: never on_failure: change
language: ruby script: 'bundle exec rake spec' rvm: - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode - ruby-head allow_failures: - rvm: jruby-19mode - rvm: ruby-head notifications: irc: channels: - irc.freenode.org#rom-rb on_success: never on_failure: change
Allow failures on jruby and ruby-head
Allow failures on jruby and ruby-head
YAML
mit
solnic/rom-session
178fc1c5fff113afa33f47c7c649211173509104
.travis.yml
.travis.yml
language: erlang otp_release: - 19.2 services: - docker install: make deps plt script: make dialyze eunit EUNIT_OPTS=verbose && ./ct-run-docker.sh notifications: email: on_success: never on_failure: always
language: erlang otp_release: - 19.3 services: - docker install: make deps plt script: make dialyze eunit EUNIT_OPTS=verbose && ./ct-run-docker.sh notifications: email: on_success: never on_failure: always
Update Erlang version to 19.3
Update Erlang version to 19.3
YAML
mit
manifest/riak-acl
c044890415e0b90ca68b802742c1d61d0b00e384
.travis.yml
.travis.yml
language: python sudo: false # Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs matrix: include: - python: 3.7 dist: xenial sudo: true - python: 3.6 install: - travis_retry pip install -r requirements-dev.txt - travis_retry pip install -e . script: - flake8 --ignore N802,N806 `find . -name \*.py | grep -v setup.py | grep -v version.py | grep -v __init__.py | grep -v /docs/` - py.test --pyargs AFQ --cov-report term-missing --cov=AFQ after_success: - coveralls
language: python sudo: false # Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs matrix: include: - python: 3.7 dist: xenial sudo: true - python: 3.6 install: - travis_retry pip install -r requirements-dev.txt - travis_retry pip install -e . script: - flake8 --ignore N802,N806,W503 --select W504 `find . -name \*.py | grep -v setup.py | grep -v version.py | grep -v __init__.py | grep -v /docs/` - py.test --pyargs AFQ --cov-report term-missing --cov=AFQ after_success: - coveralls
Apply change in strategy in the Travis configuration as well.
Apply change in strategy in the Travis configuration as well.
YAML
bsd-2-clause
yeatmanlab/pyAFQ,arokem/pyAFQ,yeatmanlab/pyAFQ,arokem/pyAFQ
bd28aad894bcf14ebf7afc176a3a99dcd7a915af
.travis.yml
.travis.yml
language: objective-c osx_image: xcode9 xcode_project: Cuckoo.xcodeproj xcode_scheme: Cuckoo xcode_sdk: macosx before_script: - gem install cucumber --no-rdoc --no-ri - gem install aruba --no-rdoc --no-ri script: - pushd Generator - make test - popd - xcodebuild -project 'Cuckoo.xcodeproj' -scheme 'Cuckoo-macOS+Run' clean test | xcpretty - pod lib lint after_script: - sleep 5
language: objective-c osx_image: xcode10 xcode_project: Cuckoo.xcodeproj xcode_scheme: Cuckoo xcode_sdk: macosx before_script: - gem install cucumber --no-rdoc --no-ri - gem install aruba --no-rdoc --no-ri script: - pushd Generator - make test - popd - xcodebuild -project 'Cuckoo.xcodeproj' -scheme 'Cuckoo-macOS+Run' clean test | xcpretty - pod lib lint after_script: - sleep 5
Use Xcode 10 for testing.
Use Xcode 10 for testing.
YAML
mit
Brightify/Cuckoo,SwiftKit/Cuckoo,Brightify/Cuckoo,SwiftKit/Cuckoo,Brightify/Cuckoo,SwiftKit/Cuckoo
caff4402ae066f69366e95ea33dcf75ecc0cecfb
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" env: - CMD=python matrix: allow_failures: - python: "2.6" - python: "3.2" exclude: - python: "3.5" include: - python: "3.5" env: CMD="coverage run --source=pynano" before_install: - pip install codecov install: - pip install -e .[test] script: $CMD setup.py test after_success: - test -e .coverage && codecov
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" env: - CMD=python matrix: allow_failures: - python: "2.6" - python: "3.2" - python: "3.3" exclude: - python: "3.5" include: - python: "3.5" env: CMD="coverage run --source=pynano" before_install: - pip install codecov install: - pip install -e .[test] script: $CMD setup.py test after_success: - test -e .coverage && codecov
Move Py3.3 tests to "allow fail"
Move Py3.3 tests to "allow fail" We'll keep testing against it, but I'm not going to officially support it.
YAML
mit
Kromey/pynano
bc512d8045360a44c1405d829fac6e4abfcc9b8e
.travis.yml
.travis.yml
language: node_js node_js: - "0.12" - "0.11" - "0.10" - "iojs" branches: only: - master
language: node_js node_js: - "0.12" - "0.11" - "0.10" - "iojs" branches: only: - master addons: code_climate: repo_token: 4fffc4322b06a32898c1723cb47f836feeca943f6b5515d171a01afbbcf50fc6 script: "npm run-script test-travis" after_script: codeclimate < coverage/lcov.info
Configure code coverage in Travis
Configure code coverage in Travis
YAML
mit
ktsashes/FruitJS,ktsashes/FruitJS
a0677eb073cd4114776a28c18452181e868212bc
.travis.yml
.travis.yml
sudo: false language: ruby cache: bundler branches: only: - master rvm: - 2.5 - 2.4 - 2.3 before_install: # https://github.com/travis-ci/travis-ci/issues/8978#issuecomment-354036443 - gem update --system - gem install bundler
sudo: false language: ruby cache: bundler branches: only: - master rvm: - 2.6 - 2.5 - 2.4 - 2.3 before_install: # https://github.com/travis-ci/travis-ci/issues/8978#issuecomment-354036443 - gem update --system - gem install bundler
Test on 2.6 on Travis
Test on 2.6 on Travis
YAML
mit
Shopify/money
67004983a97c8724f84b6f47d00888e3a978acf9
.travis.yml
.travis.yml
language: python python: - 2.7 - 3.3 notifications: email: false # Setup anaconda before_install: - if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-2.0.0-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-2.0.0-Linux-x86_64.sh -O miniconda.sh; fi - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/anaconda/bin:$PATH # The next couple lines fix a crash with multiprocessing on Travis - sudo rm -rf /dev/shm - sudo ln -s /run/shm /dev/shm # Install packages install: - conda install --yes pip python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib nose dateutil pandas statsmodels - pip install python-coveralls --use-mirrors - pip install nose-cov --use-mirrors - python setup.py install - export MATPLOTLIB_BACKEND=agg # Run test script: - nosetests --with-cov --cov ggplot --cov-config .coveragerc --logging-level=INFO # Calculate coverage after_success: - coveralls --config_file .coveragerc
language: python python: - 2.7 - 3.3 notifications: email: false # Setup anaconda before_install: - travis/miniconda.sh -b - export PATH=/home/travis/anaconda/bin:$PATH # The next couple lines fix a crash with multiprocessing on Travis - sudo rm -rf /dev/shm - sudo ln -s /run/shm /dev/shm # Install packages install: - conda install --yes pip python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib nose dateutil pandas statsmodels - pip install python-coveralls --use-mirrors - pip install nose-cov --use-mirrors - python setup.py install - export MATPLOTLIB_BACKEND=agg # Run test script: - nosetests --with-cov --cov ggplot --cov-config .coveragerc --logging-level=INFO # Calculate coverage after_success: - coveralls --config_file .coveragerc
Add miniconda.sh to repository to simplify Travis setup and prevent issues if main Continuum server goes down.
Add miniconda.sh to repository to simplify Travis setup and prevent issues if main Continuum server goes down.
YAML
mit
has2k1/plotnine,has2k1/plotnine
31220cc26bbf50c280c125a7cc7974fe3fd4311a
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - 4 - 6 addons: apt: packages: - xvfb cache: yarn: true before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash - export PATH=$HOME/.yarn/bin:$PATH install: - export DISPLAY=':99.0' - Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & - yarn install script: - yarn run lint - lerna bootstrap --ignore={benchmarks,demos} --concurrency=1 - lerna run pretest --ignore={benchmarks,demos} - lerna run test --ignore={benchmarks,demos} --concurrency=1 - yarn run tsc
language: node_js sudo: false node_js: - 6 addons: apt: packages: - xvfb cache: yarn: true before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash - export PATH=$HOME/.yarn/bin:$PATH install: - export DISPLAY=':99.0' - Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & - yarn install script: - yarn run lint - lerna bootstrap --ignore={benchmarks,demos} --concurrency=1 - lerna run pretest --ignore={benchmarks,demos} - lerna run test --ignore={benchmarks,demos} --concurrency=1 - yarn run tsc
Stop testing on Node 4
Stop testing on Node 4
YAML
mit
rtsao/styletron
901343b02a205fcbd4f93a70bd796812a6608c17
.travis.yml
.travis.yml
sudo: false dist: trusty language: ruby rvm: "2.2.3" cache: bundler bundler_args: --without production --retry=6 addons: postgresql: "9.5" env: global: - OX_AR_DB_USER=postgres - OX_AR_DB_PASS= - OX_AR_TEST_DB=travis_ci_test before_script: bundle exec rake --trace db:create db:schema:load db:seed
sudo: false dist: trusty language: ruby rvm: "2.2.3" cache: bundler branches: only: - master bundler_args: --without production --retry=6 addons: postgresql: "9.5" env: global: - OX_AR_DB_USER=postgres - OX_AR_DB_PASS= - OX_AR_TEST_DB=travis_ci_test before_script: bundle exec rake --trace db:create db:schema:load db:seed
Make Travis run only on PRs and updates to master
Make Travis run only on PRs and updates to master
YAML
mit
openstax/accounts-rails,openstax/accounts-rails,openstax/accounts-rails
238533a52da360b791ba7dcafaede5cf85f04c16
.travis.yml
.travis.yml
language: ruby rvm: - 2.0 - 2.1 - 2.2 - ruby-head - rbx-19mode env: - "ADAPTER=in_memory" - "ADAPTER=yaml" - "ADAPTER=sqlite" - "ADAPTER=mysql DM_DB_USER=root DM_DB_PASSWORD=''" - "ADAPTER=postgres DM_DB_USER=postgres DM_DB_PASSWORD=''" cache: bundler sudo: true services: - mysql - postgresql before_install: - until sudo apt-get update -qq; do :; done # retry until successful - sudo apt-get install -qq postgresql-server-dev-9.3 bundler_args: --without yard guard metrics benchmarks --retry 3 before_script: - mysql -e "create database datamapper_alternate_tests;" - mysql -e "create database datamapper_default_tests;" - psql -c "create database datamapper_default_tests;" -U postgres - psql -c "create database datamapper_alternate_tests;" -U postgres script: "bundle exec rake spec" matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head include: - rvm: jruby-19mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" - rvm: jruby-head env: JRUBY_OPTS="$JRUBY_OPTS --debug" notifications: irc: "irc.freenode.org#datamapper"
language: ruby rvm: - 2.0 - 2.1 - 2.2 - ruby-head - jruby-19mode - jruby-head - rbx-19mode env: - "ADAPTER=in_memory" - "ADAPTER=yaml" - "ADAPTER=sqlite" - "ADAPTER=mysql DM_DB_USER=root DM_DB_PASSWORD=''" - "ADAPTER=postgres DM_DB_USER=postgres DM_DB_PASSWORD=''" cache: bundler sudo: true services: - mysql - postgresql before_install: - until sudo apt-get update -qq; do :; done # retry until successful - sudo apt-get install -qq postgresql-server-dev-9.3 bundler_args: --without yard guard metrics benchmarks --retry 3 before_script: - mysql -e "create database datamapper_alternate_tests;" - mysql -e "create database datamapper_default_tests;" - psql -c "create database datamapper_default_tests;" -U postgres - psql -c "create database datamapper_alternate_tests;" -U postgres script: "bundle exec rake spec" matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head notifications: irc: "irc.freenode.org#datamapper"
Move jruby-19mode and jruby-head to rvm matrix
Move jruby-19mode and jruby-head to rvm matrix
YAML
mit
troygnichols/dm-types,datamapper/dm-types
809ca225df8d7176e6a6696c788b9e787b5c56db
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 before_script: # Install composer for dependency management - wget http://getcomposer.org/composer.phar # Set the GitHub OAuth token to make use of the 6000 per hour rate limit - "mkdir -p ~/.composer" - cp .travis.composer.config.json ~/.composer/config.json # Build! #- mkdir app/cache/test - mv app/config/parameters.yml.travis app/config/parameters.yml - mv --force app/config/config_travis.yml app/config/config_test.yml - cp src/SimplyTestable/WebClientBundle/Resources/config/parameters.yml.travis src/SimplyTestable/WebClientBundle/Resources/config/parameters.yml - php composer.phar install - php app/console doctrine:database:create - php app/console doctrine:migrations:migrate --no-interaction script: - phpunit -c app after_script: - wget http://pear.phpunit.de/get/phpcpd.phar - php phpcpd.phar --exclude src/SimplyTestable/WebClientBundle/Tests/ src/SimplyTestable/WebClientBundle/
language: php php: - 5.3 - 5.4 - 5.5 before_script: # Install code quality tools - wget http://pear.phpunit.de/get/phpcpd.phar # Install composer for dependency management - wget http://getcomposer.org/composer.phar # Set the GitHub OAuth token to make use of the 6000 per hour rate limit - "mkdir -p ~/.composer" - cp .travis.composer.config.json ~/.composer/config.json # Build! #- mkdir app/cache/test - mv app/config/parameters.yml.travis app/config/parameters.yml - mv --force app/config/config_travis.yml app/config/config_test.yml - cp src/SimplyTestable/WebClientBundle/Resources/config/parameters.yml.travis src/SimplyTestable/WebClientBundle/Resources/config/parameters.yml - php composer.phar install - php app/console doctrine:database:create - php app/console doctrine:migrations:migrate --no-interaction script: - phpunit -c app - php phpcpd.phar --exclude src/SimplyTestable/WebClientBundle/Tests/ src/SimplyTestable/WebClientBundle/
Add phpcpd to main test set
Add phpcpd to main test set
YAML
mit
webignition/web.client.simplytestable.com,webignition/web.client.simplytestable.com,webignition/web.client.simplytestable.com
3c9348cbedfd98bfd14bd34f522465867ad9de10
.travis.yml
.travis.yml
language: python env: - DOCKER_COMPOSE_VERSION=1.4.2 services: - docker before_install: - 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 - docker-compose build --parallel script: - docker-compose up -d - docker-compose exec main python /var/django/www/manage.py test deploy: provider: script script: bash .docker/docker_push on: branch: dev
language: python env: - DOCKER_COMPOSE_VERSION=1.25.3 services: - docker before_install: - 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 - docker-compose build --parallel script: - docker-compose up -d - docker-compose exec main python /var/django/www/manage.py test deploy: provider: script script: bash .docker/docker_push on: branch: dev
Change version of docker compose
Change version of docker compose
YAML
bsd-3-clause
Ridys/ribot,Ridys/ribot
757d8ca8ec2c8ccf37495247470c2e4c57da400d
.travis.yml
.travis.yml
language: objective-c before_install: - brew update - brew upgrade xctool script: xctool -project "hashtag-warrior.xcodeproj" -scheme "#Warrior"
language: objective-c before_install: - brew update - brew upgrade xctool script: xctool -project "hashtag-warrior.xcodeproj" -scheme "#Warrior" -configuration "Release" -sdk "iphonesimulator7.0" test
Build the release configuration, run it on the simulator and run the tests.
Build the release configuration, run it on the simulator and run the tests.
YAML
mit
TuftEntertainment/hashtag-warrior,TuftEntertainment/hashtag-warrior,TuftEntertainment/hashtag-warrior,TuftEntertainment/hashtag-warrior,TuftEntertainment/hashtag-warrior,TuftEntertainment/hashtag-warrior,TuftEntertainment/hashtag-warrior,TuftEntertainment/hashtag-warrior
55a5e8230b52240c8ae6ed3893a7d90cd61f3fde
.travis.yml
.travis.yml
language: ruby rvm: - 2.4.9 - 2.5.7 - 2.6.5 - 2.7.0 before_install: - gem update --system - gem install bundler cache: bundler sudo: false fast_finish: true notifications: email: on_success: always on_failure: always
language: ruby rvm: - 2.4.9 - 2.5.7 - 2.6.5 - 2.7.0 before_install: - gem update --system - gem install bundler cache: bundler sudo: false fast_finish: true env: - PAYSAFE_ACCOUNT_NUMBER=test - PAYSAFE_API_KEY=test - PAYSAFE_API_SECRET=test - PAYSAFE_SUT_API_KEY=test - PAYSAFE_SUT_API_SECRET=test - PAYSAFE_UNITY_API_KEY=test - PAYSAFE_UNITY_API_SECRET=test - PAYSAFE_UNITY_SUT_API_KEY=test - PAYSAFE_UNITY_SUT_API_SECRET=test notifications: email: on_success: always on_failure: always
Add env variables with test values
Add env variables with test values The value doesn't matter here, just that each one is set. VCR is configured to replace these env variables. If you want to re-record cassettes, you need to do so locally with the working credentials.
YAML
mit
javierjulio/optimal_payments,javierjulio/optimal_payments,javierjulio/paysafe,javierjulio/paysafe
56fe089f4e7fcecae28d1563f25aaf879900ca22
.travis.yml
.travis.yml
language: go go: release before_install: - gocleandeps=c16c849abae90c23419d - git clone https://gist.github.com/$gocleandeps.git - goclean=71d0380287747d956a26 - git clone https://gist.github.com/$goclean.git install: - go get -d -t -v ./... - bash $gocleandeps/gocleandeps.sh script: - export PATH=$PATH:$HOME/gopath/bin - bash $goclean/goclean.sh after_success: - goveralls -coverprofile=profile.cov -service=travis-ci
language: go go: - 1.3.3 - 1.4.1 before_install: - gocleandeps=c16c849abae90c23419d - git clone https://gist.github.com/$gocleandeps.git - goclean=71d0380287747d956a26 - git clone https://gist.github.com/$goclean.git install: - go get -d -t -v ./... - bash $gocleandeps/gocleandeps.sh script: - export PATH=$PATH:$HOME/gopath/bin - bash $goclean/goclean.sh after_success: - goveralls -coverprofile=profile.cov -service=travis-ci
Update Go versions for Travis.
Update Go versions for Travis.
YAML
isc
pkothbauer/btcutil,conseweb/coinutil,jrick/btcutil,conseweb/coinutil,btcsuite/btcutil,benma/btcutil,dajohi/btcutil,Roasbeef/btcutil,decred/dcrd,CryptocurrencyCabal/btcutil,jrick/dcrd,benma/btcutil,FactomProject/btcutil,jrick/dcrd,FactomProject/btcutil,ppcsuite/ppcutil,wallclockbuilder/btcutil,ppcsuite/ppcutil,Roasbeef/btcutil,jrick/btcutil,jrick/btcd,dajohi/btcutil,pkothbauer/btcutil,wallclockbuilder/btcutil,jrick/btcd,decred/dcrd,jrick/btcd,CryptocurrencyCabal/btcutil,btcsuite/btcutil
d4a9c899682b95e1e4d79bf1feec452476c5ee37
.travis.yml
.travis.yml
language: rust addons: postgresql: 9.3 before_script: - createuser -U postgres -ld holmes - psql -c "ALTER USER holmes UNENCRYPTED PASSWORD 'holmes'" -U postgres after_success: - sudo apt-get install libcurl4-openssl-dev libelf-dev libdw-dev - wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz - tar xzf master.tar.gz - mkdir kcov-master/build - cd kcov-master/build - cmake .. - make - sudo make install - cd ../.. - kcov --coveralls-id=$TRAVIS_JOB_ID --exclude-pattern=/.cargo,/out target/kcov target/debug/lib-*
sudo: false language: rust addons: postgresql: 9.3 apt: packages: - libcurl4-openssl-dev - libelf-dev - libdw-dev - binutils-dev rust: - nightly - beta - stable before_script: # Make a holmes:holmes user for the tests - | createuser -U postgres -ld holmes psql -c "ALTER USER holmes UNENCRYPTED PASSWORD 'holmes'" -U postgres # Install travis-cargo - | pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH # Replace cargo with travis-cargo script: - travis-cargo build - travis-cargo test - travis-cargo bench - travis-cargo --only stable doc # If we built successfully, after_success: # Upload coverage data - travis-cargo coveralls --no-sudo --verify # Upload docs if we're on master and using rustc-stable - travis-cargo --only stable doc-upload env: global: - TRAVIS_CARGO_NIGHTLY_FEATURE="" - secure: "AR0+7nwUGLC+rCgMfpw43/MyMQAnVcVrLsZocMuCdHm+5iDb3oFxiTMibYzzXuOXAmFHjQozKMgswlPSamMgLHlVDCCII635smHFEJoOFC9ttlNkIa0OF8YmewK133m7IH4n7QbKUw+Kghmi9ZGkrujIrcGGNeZLvme5FIeEKI8="
Make build work inside a container
Make build work inside a container Travis will build things a bit faster if you can be built w/o sudo, and these modifications should make that possible.
YAML
mit
BinaryAnalysisPlatform/holmes,maurer/holmes,maurer/holmes