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
c964cb1ccf4d8fb730fd4c8c3f8b0aa0ba438ef5
.travis.yml
.travis.yml
# travis configuration file # Copyright 2018 Ilya Shipitsin <chipitsine@gmail.com> # Nicolas Mora <mail@babelouest.org> sudo: required language: c addons: apt: packages: [ check, libsubunit-dev, cppcheck ] matrix: include: - env: LABEL=linux-gcc os: linux compiler: gcc - env: LABEL=lnux-clang os: linux compiler: clang - env: LABEL=cppcheck os: osx addons: homebrew: packages: - check update: true script: - mkdir build && cd build - cmake -DBUILD_ORCANIA_TESTING=on -DWITH_JOURNALD=off .. - make test - env: LABEL=osx os: linux script: - cppcheck --force --enable=warning,missingInclude --error-exitcode=1 . >build.log 2>&1 || (cat build.log && exit 1) script: - pushd test - make test - popd - mkdir build && cd build - cmake -DBUILD_ORCANIA_TESTING=on .. - make test package - sudo make install - cd ../ - make - make clean check
# travis configuration file # Copyright 2018 Ilya Shipitsin <chipitsine@gmail.com> # Nicolas Mora <mail@babelouest.org> sudo: required language: c addons: apt: packages: [ check, libsubunit-dev, cppcheck, pkg-config ] matrix: include: - env: LABEL=linux-gcc os: linux compiler: gcc - env: LABEL=lnux-clang os: linux compiler: clang - env: LABEL=cppcheck os: osx addons: homebrew: packages: - check - pkg-config update: true script: - pushd test - make test - popd - mkdir build && cd build - cmake -DBUILD_ORCANIA_TESTING=on .. - make test - env: LABEL=osx os: linux script: - cppcheck --force --enable=warning,missingInclude --error-exitcode=1 . >build.log 2>&1 || (cat build.log && exit 1) script: - pushd test - make test - popd - mkdir build && cd build - cmake -DBUILD_ORCANIA_TESTING=on .. - make test package - sudo make install - cd ../ - make - make clean check
Add pkg-config as dependency for both linux and osx, run tests using makefile on osx too, remove option WITH_JOURNALD, not used there
Add pkg-config as dependency for both linux and osx, run tests using makefile on osx too, remove option WITH_JOURNALD, not used there
YAML
lgpl-2.1
babelouest/orcania,babelouest/orcania
0e931dd92eed0c734f2365240f7c7dc667d0bc36
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 before_install: gem install bundler -v 1.10.6
language: ruby rvm: - 2.2.2 before_install: gem install bundler -v 1.10.6
Upgrade Ruby version to 2.2.2
Upgrade Ruby version to 2.2.2 This was necessary because some of the gem prerequisites include Ruby >= 2.0
YAML
mit
HitFox/cm-sms,HitFox/cm-sms
452db2f8d7421677a67eb8246934e97f44f39559
.travis.yml
.travis.yml
language: go go: - "1.16" services: - docker cache: directories: - ${GOPATH}/pkg/mod notifications: webhooks: if: type != pull_request urls: - https://coveralls.io/webhook?repo_token=COVERALLS_TOKEN jobs: include: - name: "Unit test" if: type == pull_request script: make test env: - GO111MODULE=on - name: "Integration test" if: type == pull_request script: make run && sleep 15 && make test_integration env: - GO111MODULE=on - name: "Unit test (with coverage)" if: type != pull_request script: make test_cover upload_cover env: - GO111MODULE=on - name: "Integration test (with coverage)" if: type != pull_request script: make run && sleep 15 && test_integration_cover upload_cover env: - GO111MODULE=on
language: go go: - "1.16" services: - docker cache: directories: - ${GOPATH}/pkg/mod notifications: webhooks: if: type != pull_request urls: - https://coveralls.io/webhook?repo_token=COVERALLS_TOKEN jobs: include: - name: "Unit test" if: type == pull_request script: make test env: - GO111MODULE=on - name: "Integration test" if: type == pull_request script: make run && sleep 15 && make test_integration env: - GO111MODULE=on - name: "Unit test (with coverage)" if: type != pull_request script: make test_cover upload_cover env: - GO111MODULE=on - name: "Integration test (with coverage)" if: type != pull_request script: make run && sleep 15 && make test_integration_cover upload_cover env: - GO111MODULE=on
Fix broken CI integration on master branch
Fix broken CI integration on master branch
YAML
apache-2.0
looplab/eventhorizon
ff964a6ca482c3cd6446095075d61339068f9c33
.travis.yml
.travis.yml
language: node_js # Trying to configure npm as well? Look a little bit further down this file. node_js: - "7.5.0" script: "npm run test" # Install Lerna deps before_script: "./node_modules/.bin/lerna bootstrap" notifications: email: false
language: node_js node_js: - "7.5.0" script: "npm run test" notifications: email: false
Update Travis to no longer run Lerna bootstrap
Update Travis to no longer run Lerna bootstrap
YAML
mit
jmeas/api-pls
b1517f2852fc799e453189ac27af0d22a092c571
.travis.yml
.travis.yml
language: node_js node_js: - 0.8 - 0.10 - 0.11 env: matrix: global: secure: "cPBnfWyT5IYtTEzk8/+CJnOZ7+PukuezjKTtFxkgomliSUTo23BCUzXAxTsQeq13ZmxITouoFzwxt5Wfb3qBanodwNpX4LCQ1fwvR/WXk/fxfCStukr0qR4Yc3c0j9Ocj74zaPn0j7JJXY7mdFdiUwrKy+eyRW8hdnY9N9KFEZA=" secure: "TpqYB8dBCofefMxh5EWczpgJ8bVnz1jbSGeYNFKX0vLkhQo/YelU9TTNJ00t8zmINNsfFqCKye/wRKDoeQ4rY1whdIx7U5MRol1tzvoHk6D64UK0GFqBeMKNEV+nRwUS1JSH5hOYqOrwvUmY717kXyu+tG26VqSszmoLaC6h6GI="
language: node_js node_js: - 0.10 - 0.11 env: matrix: global: secure: "cPBnfWyT5IYtTEzk8/+CJnOZ7+PukuezjKTtFxkgomliSUTo23BCUzXAxTsQeq13ZmxITouoFzwxt5Wfb3qBanodwNpX4LCQ1fwvR/WXk/fxfCStukr0qR4Yc3c0j9Ocj74zaPn0j7JJXY7mdFdiUwrKy+eyRW8hdnY9N9KFEZA=" secure: "TpqYB8dBCofefMxh5EWczpgJ8bVnz1jbSGeYNFKX0vLkhQo/YelU9TTNJ00t8zmINNsfFqCKye/wRKDoeQ4rY1whdIx7U5MRol1tzvoHk6D64UK0GFqBeMKNEV+nRwUS1JSH5hOYqOrwvUmY717kXyu+tG26VqSszmoLaC6h6GI="
Remove node version 0.8 due to failing build
Remove node version 0.8 due to failing build
YAML
mit
terribleplan/Typertext,terribleplan/Typertext
976f686b7e3021b1f0e9a88ba8e7fd395e700a70
.travis.yml
.travis.yml
sudo: required dist: trusty language: generic compiler: - gcc env: matrix: - ROS_DISTRO="melodic" PRERELEASE=true install: - git clone https://github.com/ros-industrial/industrial_ci.git .ci_config script: - .ci_config/travis.sh
sudo: required dist: trusty language: generic compiler: - gcc env: matrix: - ROS_DISTRO="noetic" PRERELEASE=true install: - git clone https://github.com/ros-industrial/industrial_ci.git .ci_config script: - .ci_config/travis.sh
Switch CI to run noetic
Switch CI to run noetic
YAML
apache-2.0
rospilot/rospilot,rospilot/rospilot,rospilot/rospilot,rospilot/rospilot,rospilot/rospilot,rospilot/rospilot
b4bd8fae929b6069d55769d2d7f9c8d6ae174976
.travis.yml
.travis.yml
matrix: include: - name: Discord language: python python: 3.7.3 # Workaround for Python 3.7 # https://github.com/travis-ci/travis-ci/issues/9815 dist: xenial services: - postgresql addons: postgresql: "10" cache: pip: true before_script: - psql -c "CREATE DATABASE harmonbot" - psql -c "CREATE USER harmonbot SUPERUSER" - cd Discord script: - python Harmonbot.py - name: Telegram language: python python: 3.7.3 # Workaround for Python 3.7 # https://github.com/travis-ci/travis-ci/issues/9815 dist: xenial cache: pip: true before_script: - cd Telegram script: - python Telegram_Harmonbot.py - name: Discord Listener language: go go: "1.10" install: - go get github.com/bwmarrin/discordgo - go get github.com/bwmarrin/dgvoice - go get github.com/joho/godotenv before_script: - cd Discord script: - go run Harmonbot_Listener.go
matrix: include: - name: Discord language: python python: 3.7.3 dist: xenial # Required for Python 3.7 # https://docs.travis-ci.com/user/languages/python/#python-37-and-higher # https://github.com/travis-ci/travis-ci/issues/9815 services: - postgresql addons: postgresql: "10" cache: pip: true before_script: - psql -c "CREATE DATABASE harmonbot" - psql -c "CREATE USER harmonbot SUPERUSER" - cd Discord script: - python Harmonbot.py - name: Telegram language: python python: 3.7.3 dist: xenial # Required for Python 3.7 # https://docs.travis-ci.com/user/languages/python/#python-37-and-higher # https://github.com/travis-ci/travis-ci/issues/9815 cache: pip: true before_script: - cd Telegram script: - python Telegram_Harmonbot.py - name: Discord Listener language: go go: "1.10" install: - go get github.com/bwmarrin/discordgo - go get github.com/bwmarrin/dgvoice - go get github.com/joho/godotenv before_script: - cd Discord script: - go run Harmonbot_Listener.go
Update Travis CI configuration comments
Update Travis CI configuration comments
YAML
mit
Harmon758/Harmonbot,Harmon758/Harmonbot
997ef19edace7f75a5e4548d1942b6b3b99680d7
.travis.yml
.travis.yml
sudo: false os: linux language: java env: global: - OMNICORE_HOST=https://bintray.com/artifact/download/omni/OmniBinaries - OMNICORE_RELEASE=omnicore-0.0.11.2-rel - OMNICORE_FILE=$OMNICORE_RELEASE-linux64.tar.gz - OMNICORE_HASH=787e5fef50118f59d76128d3a8435efc355b3a18962c3e209a79556e47a48ec4 cache: directories: - $HOME/.gradle/caches install: - wget "$OMNICORE_HOST/$OMNICORE_FILE" - echo "$OMNICORE_HASH $OMNICORE_FILE" | shasum --algorithm 256 --check - mkdir -p copied-artifacts/src/ - tar zxvf $OMNICORE_FILE -C /tmp - mv /tmp/$OMNICORE_RELEASE/bin/omnicored copied-artifacts/src/ script: - ./test-omni-integ-regtest.sh
sudo: false os: linux language: java env: global: - OMNICORE_HOST=https://bintray.com/artifact/download/omni/OmniBinaries - OMNICORE_RELEASE=omnicore-0.0.11.2-rel - OMNICORE_FILE=$OMNICORE_RELEASE-linux64.tar.gz - OMNICORE_HASH=787e5fef50118f59d76128d3a8435efc355b3a18962c3e209a79556e47a48ec4 cache: directories: - $HOME/.gradle/caches install: - wget "$OMNICORE_HOST/$OMNICORE_FILE" - echo "$OMNICORE_HASH $OMNICORE_FILE" | shasum --algorithm 256 --check - mkdir -p copied-artifacts/src/ - tar zxvf $OMNICORE_FILE -C /tmp - mv /tmp/$OMNICORE_RELEASE/bin/omnicored copied-artifacts/src/ script: - ./test-omni-integ-regtest.sh jdk: - openjdk8 - openjdk11
Build under both OpenJDK 8 & OpenJDK 11
TravisCI: Build under both OpenJDK 8 & OpenJDK 11
YAML
apache-2.0
OmniLayer/OmniJ,OmniLayer/OmniJ,OmniLayer/OmniJ
92965f76cfeac82bae7bfa810e0380e2e57e3dd6
.travis.yml
.travis.yml
language: php php: - 5.3.3 - 5.3 - 5.4 - 5.5 - 5.6 - nightly - hhvm # run build against nightly but allow them to fail matrix: fast_finish: true allow_failures: - php: nightly - php: hhvm # faster builds on new travis setup not using sudo sudo: false install: - composer self-update before_script: - composer install --prefer-dist --no-interaction script: - phpunit --coverage-clover=coverage.clover after_script: - | wget https://scrutinizer-ci.com/ocular.phar php ocular.phar code-coverage:upload --format=php-clover coverage.clover
language: php php: - 5.3.3 - 5.3 - 5.4 - 5.5 - 5.6 - nightly - hhvm # run build against nightly but allow them to fail matrix: fast_finish: true allow_failures: - php: nightly - php: hhvm # faster builds on new travis setup not using sudo sudo: false install: - composer self-update before_script: # disable TLS for composer because openssl is disabled for PHP 5.3.3 on travis # see: https://blog.travis-ci.com/upcoming_ubuntu_11_10_migration/ - if [[ $TRAVIS_PHP_VERSION = 5.3.3 ]]; then composer config -g -- disable-tls true; fi; - if [[ $TRAVIS_PHP_VERSION = 5.3.3 ]]; then composer config -g -- secure-http false; fi; - composer install --prefer-dist --no-interaction script: - phpunit --coverage-clover=coverage.clover after_script: - | wget https://scrutinizer-ci.com/ocular.phar php ocular.phar code-coverage:upload --format=php-clover coverage.clover
Fix composer TLS exception on PHP 5.3.3
Fix composer TLS exception on PHP 5.3.3
YAML
apache-2.0
j0k3r/php-readability
ec1d6c899c3c937637e430aa5198685de52b7e59
.travis.yml
.travis.yml
language: haskell ghc: - 7.10 - 7.8
language: haskell ghc: - 7.10 - 7.8 script: "./run-tests"
Use custom script in Travis CI for a more informative output
Use custom script in Travis CI for a more informative output
YAML
mit
nadirs/hearts-hs
a2c85471158ba860280f8d4613f4f338b76f699f
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - 2.2.7 - 2.3.4 - 2.4.1 - ruby-head gemfile: - gemfiles/Gemfile-rails4.1.x - gemfiles/Gemfile-rails4.2.x - gemfiles/Gemfile-rails5.0.x - gemfiles/Gemfile-rails5.1.x - gemfiles/Gemfile-rails_edge matrix: allow_failures: - rvm: 2.2.7 gemfile: gemfiles/Gemfile-rails_edge - rvm: 2.3.4 gemfile: gemfiles/Gemfile-rails_edge - rvm: 2.4.1 gemfile: gemfiles/Gemfile-rails_edge - rvm: ruby-head gemfile: gemfiles/Gemfile-rails4.1.x - rvm: ruby-head gemfile: gemfiles/Gemfile-rails4.2.x - rvm: ruby-head gemfile: gemfiles/Gemfile-rails5.0.x - rvm: ruby-head gemfile: gemfiles/Gemfile-rails5.1.x - rvm: ruby-head gemfile: gemfiles/Gemfile-rails_edge
language: ruby sudo: false rvm: - 2.2.8 - 2.3.5 - 2.4.2 - ruby-head gemfile: - gemfiles/Gemfile-rails4.1.x - gemfiles/Gemfile-rails4.2.x - gemfiles/Gemfile-rails5.0.x - gemfiles/Gemfile-rails5.1.x - gemfiles/Gemfile-rails_edge matrix: allow_failures: - rvm: 2.2.7 gemfile: gemfiles/Gemfile-rails_edge - rvm: 2.3.4 gemfile: gemfiles/Gemfile-rails_edge - rvm: 2.4.1 gemfile: gemfiles/Gemfile-rails_edge - rvm: ruby-head gemfile: gemfiles/Gemfile-rails4.1.x - rvm: ruby-head gemfile: gemfiles/Gemfile-rails4.2.x - rvm: ruby-head gemfile: gemfiles/Gemfile-rails5.0.x - rvm: ruby-head gemfile: gemfiles/Gemfile-rails5.1.x - rvm: ruby-head gemfile: gemfiles/Gemfile-rails_edge
Use the latest Rubies on Travis CI
Use the latest Rubies on Travis CI
YAML
mit
koic/gtm_rails
c7802d2600c737dc7f7b9ac8639902bac242a2eb
.travis.yml
.travis.yml
nguage: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.8 - 2.2.4 - 2.3.0 script: bundle exec rspec before_install: # fixes Travis CI error: NoMethodError: undefined method `spec' for nil:NilClass - gem install bundler
nguage: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.8 - 2.2.4 - 2.3.0 - jruby-9.0.5.0 script: bundle exec rspec before_install: # fixes Travis CI error: NoMethodError: undefined method `spec' for nil:NilClass - gem install bundler
Add JRuby to Travis CI tests
Add JRuby to Travis CI tests
YAML
mit
biola/turnout,biola/turnout
c9a587df428d2e8e76389dcc856484e4a7a60ee4
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - hhvm matrix: fast_finish: true allow_failures: - php: hhvm before_script: - composer self-update - composer update script: - cd $TRAVIS_BUILD_DIR - vendor/bin/phpunit -c test/phpunit.xml --coverage-clover=./build/clover.xml - vendor/bin/phpcs --standard=PSR2 -s -p src/ after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover ./build/clover.xml
language: php php: - 5.4 - 5.5 - hhvm matrix: fast_finish: true before_script: - composer self-update - composer update script: - cd $TRAVIS_BUILD_DIR - vendor/bin/phpunit -c test/phpunit.xml --coverage-clover=./build/clover.xml - vendor/bin/phpcs --standard=PSR2 -s -p src/ after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover ./build/clover.xml
Remove HHVM from allowed failures
Remove HHVM from allowed failures
YAML
bsd-3-clause
spiffyjr/spiffy-package
152c93d83a99b1c599c3f6f4e2d56f6b8a2af79a
.travis.yml
.travis.yml
rvm: - 1.9.3 - 2.0.0 - 2.1.* - 2.2.* gemfile: - Gemfile before_script: gem update bundler
rvm: - 1.9.3 - 2.0.0 - 2.1.* - 2.2.* gemfile: - Gemfile before_install: gem update bundler
Use before_install instead of before_script
Use before_install instead of before_script
YAML
mit
sonots/fluent-plugin-record-reformer
31be9ce57cb2295928c652cc3b10334281038ef3
.travis.yml
.travis.yml
language: node_js node_js: - 9 - 10 - 11 - 13 script: npm run test-coverage
language: node_js node_js: - 10 - 11 - 12 - 13 script: npm run test-coverage
Change Node versions for Travis
Change Node versions for Travis Signed-off-by: Arve Knudsen <ddb1ca96248d128f0719f3f79aee1e346dace4b9@gmail.com>
YAML
mit
aknuds1/html-to-react,aknuds1/html-to-react
63c0ac7b3a899cb04de70dbdf410537ba33ebbab
.travis.yml
.travis.yml
language: node_js dist: trusty node_js: - "4" - "6" - "7" before_install: - 'echo ''gem: --no-ri --no-rdoc'' > ~/.gemrc' install: - npm i -g npm - npm install - rvm install 2.3.1 - rvm use 2.3.1 - gem install danger --version '~> 4.0' before_script: - ruby -v script: - danger - npm run lint && npm run test notifications: email: on_failure: change cache: yarn: true bundler: true directories: - node_modules
language: node_js dist: trusty node_js: - "6" - "7" before_install: - 'echo ''gem: --no-ri --no-rdoc'' > ~/.gemrc' install: - npm i -g npm - npm install - rvm install 2.3.1 - rvm use 2.3.1 - gem install danger --version '~> 4.0' before_script: - ruby -v script: - danger - npm run lint && npm run test notifications: email: on_failure: change cache: yarn: true bundler: true directories: - node_modules
Stop testing on Node v4 on Travis
Stop testing on Node v4 on Travis Travis with Node v4 was failing because we're using some ES6 syntax in the rollup config it doesn't understand. Since styled-components runs in the browser and developers should be using Node v6 anyway due to the publishing bug there's no point in testing Node v4, so I've disabled it.
YAML
mit
JamieDixon/styled-components,styled-components/styled-components,css-components/styled-components,styled-components/styled-components,JamieDixon/styled-components,JamieDixon/styled-components,styled-components/styled-components
cf09cf3590c3109c4bf62f479c90871c7cfdddb3
.travis.yml
.travis.yml
language: rust script: - rustc --version && cargo --version - cmake . - make - cd lcm-rust/lcm - cargo build --verbose - cargo test --verbose - cd ../lcm-gen - cargo build --verbose - cargo test --verbose
language: rust rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly install: - wget -qO- http://www.cmake.org/files/v3.1/cmake-3.1.0-Linux-x86_64.tar.gz | tar xvz - sudo cp -fR cmake-3.1.0-Linux-x86_64/* /usr script: - cmake . - make - cd lcm-rust/lcm - cargo build --verbose - cargo test --verbose - cd ../lcm-gen - cargo build --verbose - cargo test --verbose
Update Travis CI for CMake 3+
Update Travis CI for CMake 3+
YAML
lgpl-2.1
adeschamps/lcm,adeschamps/lcm,adeschamps/lcm,adeschamps/lcm,adeschamps/lcm,adeschamps/lcm,adeschamps/lcm,adeschamps/lcm
f5e6fd1498b0c6117f2d88627831c8c6f403f09b
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.11" - "0.10" - "0.12" - "4.0" - "4.1" before_install: - npm update -g npm - npm install -g bob coveralls --loglevel error script: - DEBUG=canihaz bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
sudo: false language: node_js node_js: - "0.11" - "0.12" - "4.1" - "4.2" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm install -g bob coveralls --loglevel error script: - DEBUG=canihaz bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
Update Travis config to latest. Update Travis config to latest.
Update Travis config to latest. Update Travis config to latest.
YAML
mit
cliffano/bob
5e466342f7c5eaffc375c00aa0b7ec48795587ae
recipes/bioconductor-flowai/meta.yaml
recipes/bioconductor-flowai/meta.yaml
package: name: bioconductor-flowai version: 1.2.9 source: fn: flowAI_1.2.9.tar.gz url: http://bioconductor.org/packages/3.3/bioc/src/contrib/flowAI_1.2.9.tar.gz md5: 1dd66dd6dde1a351bda75a00d6f69a85 build: skip: True # [osx] number: 0 rpaths: - lib/R/lib/ - lib/ requirements: build: - bioconductor-flowcore - r - r-changepoint - r-ggplot2 - r-knitr - r-plyr - r-rcolorbrewer - r-reshape2 - r-scales run: - bioconductor-flowcore - r - r-changepoint - r-ggplot2 - r-knitr - r-plyr - r-rcolorbrewer - r-reshape2 - r-scales test: commands: - '$R -e "library(''flowAI'')"' about: home: http://bioconductor.org/packages/release/bioc/html/flowAI.html license: GPL summary: 'The package is able to perform an automatic or interactive quality control on FCS data acquired using flow cytometry instruments. By evaluating three different properties: 1) flow rate, 2) signal acquisition, 3) dynamic range, the quality control enables the detection and removal of anomalies.'
package: name: bioconductor-flowai version: 1.2.9 source: fn: flowAI_1.2.9.tar.gz url: http://bioconductor.org/packages/3.3/bioc/src/contrib/flowAI_1.2.9.tar.gz md5: 1dd66dd6dde1a351bda75a00d6f69a85 build: number: 0 rpaths: - lib/R/lib/ - lib/ requirements: build: - bioconductor-flowcore - r - r-changepoint - r-ggplot2 - r-knitr - r-plyr - r-rcolorbrewer - r-reshape2 - r-scales run: - bioconductor-flowcore - r - r-changepoint - r-ggplot2 - r-knitr - r-plyr - r-rcolorbrewer - r-reshape2 - r-scales test: commands: - '$R -e "library(''flowAI'')"' about: home: http://bioconductor.org/packages/release/bioc/html/flowAI.html license: GPL summary: 'The package is able to perform an automatic or interactive quality control on FCS data acquired using flow cytometry instruments. By evaluating three different properties: 1) flow rate, 2) signal acquisition, 3) dynamic range, the quality control enables the detection and removal of anomalies.'
Add OS X build for bioconductor-flowai.
Add OS X build for bioconductor-flowai.
YAML
mit
HassanAmr/bioconda-recipes,npavlovikj/bioconda-recipes,daler/bioconda-recipes,acaprez/recipes,ivirshup/bioconda-recipes,abims-sbr/bioconda-recipes,roryk/recipes,keuv-grvl/bioconda-recipes,rvalieris/bioconda-recipes,chapmanb/bioconda-recipes,omicsnut/bioconda-recipes,peterjc/bioconda-recipes,cokelaer/bioconda-recipes,blankenberg/bioconda-recipes,martin-mann/bioconda-recipes,lpantano/recipes,keuv-grvl/bioconda-recipes,bow/bioconda-recipes,blankenberg/bioconda-recipes,Luobiny/bioconda-recipes,phac-nml/bioconda-recipes,rvalieris/bioconda-recipes,cokelaer/bioconda-recipes,joachimwolff/bioconda-recipes,ostrokach/bioconda-recipes,acaprez/recipes,oena/bioconda-recipes,zachcp/bioconda-recipes,saketkc/bioconda-recipes,joachimwolff/bioconda-recipes,peterjc/bioconda-recipes,oena/bioconda-recipes,lpantano/recipes,HassanAmr/bioconda-recipes,rvalieris/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,joachimwolff/bioconda-recipes,bow/bioconda-recipes,omicsnut/bioconda-recipes,ostrokach/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,abims-sbr/bioconda-recipes,phac-nml/bioconda-recipes,guowei-he/bioconda-recipes,mdehollander/bioconda-recipes,bioconda/bioconda-recipes,shenwei356/bioconda-recipes,daler/bioconda-recipes,bebatut/bioconda-recipes,bioconda/recipes,matthdsm/bioconda-recipes,peterjc/bioconda-recipes,phac-nml/bioconda-recipes,keuv-grvl/bioconda-recipes,Luobiny/bioconda-recipes,dmaticzka/bioconda-recipes,dkoppstein/recipes,bow/bioconda-recipes,rob-p/bioconda-recipes,JenCabral/bioconda-recipes,hardingnj/bioconda-recipes,HassanAmr/bioconda-recipes,zachcp/bioconda-recipes,ostrokach/bioconda-recipes,gvlproject/bioconda-recipes,mdehollander/bioconda-recipes,ivirshup/bioconda-recipes,omicsnut/bioconda-recipes,mcornwell1957/bioconda-recipes,joachimwolff/bioconda-recipes,dmaticzka/bioconda-recipes,ostrokach/bioconda-recipes,daler/bioconda-recipes,oena/bioconda-recipes,shenwei356/bioconda-recipes,phac-nml/bioconda-recipes,xguse/bioconda-recipes,roryk/recipes,mdehollander/bioconda-recipes,CGATOxford/bioconda-recipes,matthdsm/bioconda-recipes,mcornwell1957/bioconda-recipes,bebatut/bioconda-recipes,rvalieris/bioconda-recipes,matthdsm/bioconda-recipes,zachcp/bioconda-recipes,rvalieris/bioconda-recipes,jfallmann/bioconda-recipes,daler/bioconda-recipes,JenCabral/bioconda-recipes,JenCabral/bioconda-recipes,peterjc/bioconda-recipes,JenCabral/bioconda-recipes,colinbrislawn/bioconda-recipes,hardingnj/bioconda-recipes,chapmanb/bioconda-recipes,jasper1918/bioconda-recipes,saketkc/bioconda-recipes,bioconda/recipes,CGATOxford/bioconda-recipes,abims-sbr/bioconda-recipes,jfallmann/bioconda-recipes,martin-mann/bioconda-recipes,dmaticzka/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,xguse/bioconda-recipes,cokelaer/bioconda-recipes,rvalieris/bioconda-recipes,saketkc/bioconda-recipes,martin-mann/bioconda-recipes,zachcp/bioconda-recipes,saketkc/bioconda-recipes,hardingnj/bioconda-recipes,matthdsm/bioconda-recipes,guowei-he/bioconda-recipes,omicsnut/bioconda-recipes,omicsnut/bioconda-recipes,jfallmann/bioconda-recipes,matthdsm/bioconda-recipes,saketkc/bioconda-recipes,gregvonkuster/bioconda-recipes,guowei-he/bioconda-recipes,bioconda/bioconda-recipes,daler/bioconda-recipes,colinbrislawn/bioconda-recipes,jasper1918/bioconda-recipes,keuv-grvl/bioconda-recipes,ivirshup/bioconda-recipes,abims-sbr/bioconda-recipes,bow/bioconda-recipes,bioconda/recipes,chapmanb/bioconda-recipes,CGATOxford/bioconda-recipes,CGATOxford/bioconda-recipes,daler/bioconda-recipes,ostrokach/bioconda-recipes,mdehollander/bioconda-recipes,keuv-grvl/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,peterjc/bioconda-recipes,xguse/bioconda-recipes,chapmanb/bioconda-recipes,bow/bioconda-recipes,martin-mann/bioconda-recipes,lpantano/recipes,instituteofpathologyheidelberg/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,Luobiny/bioconda-recipes,martin-mann/bioconda-recipes,HassanAmr/bioconda-recipes,joachimwolff/bioconda-recipes,ostrokach/bioconda-recipes,acaprez/recipes,gvlproject/bioconda-recipes,gregvonkuster/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,CGATOxford/bioconda-recipes,phac-nml/bioconda-recipes,abims-sbr/bioconda-recipes,bioconda/bioconda-recipes,HassanAmr/bioconda-recipes,shenwei356/bioconda-recipes,dmaticzka/bioconda-recipes,gregvonkuster/bioconda-recipes,blankenberg/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,Luobiny/bioconda-recipes,mcornwell1957/bioconda-recipes,acaprez/recipes,mdehollander/bioconda-recipes,roryk/recipes,keuv-grvl/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,ivirshup/bioconda-recipes,gvlproject/bioconda-recipes,guowei-he/bioconda-recipes,gvlproject/bioconda-recipes,bebatut/bioconda-recipes,guowei-he/bioconda-recipes,hardingnj/bioconda-recipes,jasper1918/bioconda-recipes,shenwei356/bioconda-recipes,jasper1918/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,peterjc/bioconda-recipes,npavlovikj/bioconda-recipes,JenCabral/bioconda-recipes,colinbrislawn/bioconda-recipes,lpantano/recipes,gvlproject/bioconda-recipes,jasper1918/bioconda-recipes,bow/bioconda-recipes,rob-p/bioconda-recipes,colinbrislawn/bioconda-recipes,abims-sbr/bioconda-recipes,mcornwell1957/bioconda-recipes,gvlproject/bioconda-recipes,CGATOxford/bioconda-recipes,ivirshup/bioconda-recipes,mcornwell1957/bioconda-recipes,oena/bioconda-recipes,rob-p/bioconda-recipes,blankenberg/bioconda-recipes,npavlovikj/bioconda-recipes,dkoppstein/recipes,mdehollander/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,colinbrislawn/bioconda-recipes,gregvonkuster/bioconda-recipes,saketkc/bioconda-recipes,chapmanb/bioconda-recipes,dkoppstein/recipes,xguse/bioconda-recipes,HassanAmr/bioconda-recipes,xguse/bioconda-recipes,rob-p/bioconda-recipes,colinbrislawn/bioconda-recipes,ivirshup/bioconda-recipes,bioconda/bioconda-recipes,cokelaer/bioconda-recipes,dmaticzka/bioconda-recipes,bebatut/bioconda-recipes,hardingnj/bioconda-recipes,matthdsm/bioconda-recipes,jfallmann/bioconda-recipes,npavlovikj/bioconda-recipes,joachimwolff/bioconda-recipes,oena/bioconda-recipes,dmaticzka/bioconda-recipes,JenCabral/bioconda-recipes
238bbcae575e7d4a462ac858c1f7d02618db3681
plugins/tripleo-overcloud/validate.yml
plugins/tripleo-overcloud/validate.yml
- name: Perform pre-deployment validations hosts: localhost gather_facts: yes any_errors_fatal: true tasks: - name: "Install/Upgrade are mutually exclusive" fail: msg: "Options '--deploy' and '--upgrade' and '--ocupdate' are mutually exclusive" when: - ( install.deploy|default('') and install.upgrade|default('')) or ( install.deploy|default('') and install.ocupdate|default(False)) or ( install.upgrade|default('') and install.ocupdate|default(False)) - name: validate storage nodes fail: msg: "To many storage nodes to discover storage backend. Provide --storage-backend cli option with the backend to use. " when: - install.deploy|default('') - not (install.storage|default({})).backend|default(False) - "'swift' in groups" - "'ceph' in groups" - block: - name: validate storage-config option is provided fail: msg: "The --storage-config cli option should be provided for external storage backend when --storage-external is used. " when: - install.storage.config == 'internal' - name: check if user provided external storage config stat: path: "{{ install.storage.config }}" register: install_storage_config_file - fail: msg: "The file for external storage config is not found. Expected path: {{ install.storage.config }}" when: - install_storage_config_file.stat.exists == False when: - install.deploy|default('') - install.storage.external
- name: Perform pre-deployment validations hosts: localhost gather_facts: yes any_errors_fatal: true tasks: - name: "Install/Upgrade are mutually exclusive" fail: msg: "Options '--deploy' and '--upgrade' and '--ocupdate' are mutually exclusive" when: - ( install.deploy|default('') and install.upgrade|default('')) or ( install.deploy|default('') and install.ocupdate|default(False)) or ( install.upgrade|default('') and install.ocupdate|default(False)) - name: validate storage nodes fail: msg: "To many storage nodes to discover storage backend. Provide --storage-backend cli option with the backend to use. " when: - install.deploy|default('') - not (install.storage|default({})).backend|default(False) - "'swift' in groups" - "'ceph' in groups"
Revert "Netapp backend job should fail if no netapp backend is available"
Revert "Netapp backend job should fail if no netapp backend is available" This reverts commit c347c76f0a09b673244b937d3e2fdf5070ef5408. Change-Id: I05e769cfc71a6359586465507d87a05bb29f2dc9
YAML
apache-2.0
redhat-openstack/infrared,redhat-openstack/infrared,redhat-openstack/infrared
6b125eef6562dca9559e85146616fa344899a094
.travis.yml
.travis.yml
language: python python: - "2.7" - "2.6" env: - DJANGO=1.3.1 - DJANGO=1.4 install: - pip install -q Django==$DJANGO --use-mirrors - pip install -q -e . --use-mirrors script: - python runtests.py branches: only: - master notifications: irc: "irc.freenode.org#django-fluent" email: recipients: - travis@edoburu.nl on_success: never on_failure: always
language: python python: - "2.7" - "2.6" env: - DJANGO=1.3.1 - DJANGO=1.4 install: - pip install -q Django==$DJANGO --use-mirrors - pip install -q -e . --use-mirrors script: - python runtests.py branches: only: - master notifications: irc: channels: - "irc.freenode.org#django-fluent" template: - "%{repository}#%{build_number} (%{commit}) %{message} -- %{build_url}" email: recipients: - travis@edoburu.nl on_success: never on_failure: always
Make Travis build notifications profoundly less annoying
Make Travis build notifications profoundly less annoying
YAML
apache-2.0
pombredanne/django-fluent-contents,pombredanne/django-fluent-contents,pombredanne/django-fluent-contents,ixc/django-fluent-contents,django-fluent/django-fluent-contents,ixc/django-fluent-contents,django-fluent/django-fluent-contents,django-fluent/django-fluent-contents,jpotterm/django-fluent-contents,jpotterm/django-fluent-contents,edoburu/django-fluent-contents,ixc/django-fluent-contents,edoburu/django-fluent-contents,edoburu/django-fluent-contents,jpotterm/django-fluent-contents
a938edc2f3d172d05e1ec4720649d936952766d8
.travis.yml
.travis.yml
language: ruby rvm: - 2.4.9 - 2.5.7 - 2.6.5 - 2.7.0 - 3.0.0 - jruby-9.2.11.0 gemfile: - gemfiles/Gemfile.activesupport-4.x - gemfiles/Gemfile.activesupport-5.x - gemfiles/Gemfile.activesupport-6.x jobs: exclude: - rvm: 2.4.9 gemfile: gemfiles/Gemfile.activesupport-6.x - rvm: 2.7.0 gemfile: gemfiles/Gemfile.activesupport-4.x - rvm: 3.0.0 gemfile: gemfiles/Gemfile.activesupport-4.x include: - rvm: ruby-head gemfile: gemfiles/Gemfile.activesupport-edge - rvm: jruby-head gemfile: gemfiles/Gemfile.activesupport-edge allow_failures: - gemfile: gemfiles/Gemfile.activesupport-edge fast_finish: true
language: ruby rvm: - 2.4.9 - 2.5.7 - 2.6.5 - 2.7.0 - 3.0.0 - jruby-9.2.14.0 gemfile: - gemfiles/Gemfile.activesupport-4.x - gemfiles/Gemfile.activesupport-5.x - gemfiles/Gemfile.activesupport-6.x jobs: exclude: - rvm: 2.4.9 gemfile: gemfiles/Gemfile.activesupport-6.x - rvm: 2.7.0 gemfile: gemfiles/Gemfile.activesupport-4.x - rvm: 3.0.0 gemfile: gemfiles/Gemfile.activesupport-4.x include: - rvm: ruby-head gemfile: gemfiles/Gemfile.activesupport-edge - rvm: jruby-head gemfile: gemfiles/Gemfile.activesupport-edge allow_failures: - gemfile: gemfiles/Gemfile.activesupport-edge fast_finish: true
Use latest jruby version for testing
Use latest jruby version for testing
YAML
mit
Intrepidd/working_hours
3a298341af22760a547acfddff62ff21fb3daccc
.travis.yml
.travis.yml
language: c before_install: - yes | sudo add-apt-repository ppa:hansjorg/rust - sudo apt-get update install: - sudo apt-get install rust-nightly libfuse-dev script: - make all - make check - make examples
language: c before_install: - sudo apt-get update - wget http://static.rust-lang.org/dist/rust-nightly-x86_64-unknown-linux-gnu.tar.gz -O /tmp/rust-nightly-x86_64-unknown-linux-gnu.tar.gz install: - tar -C /tmp -zxvf /tmp/rust-nightly-x86_64-unknown-linux-gnu.tar.gz - sudo /tmp/rust-nightly-x86_64-unknown-linux-gnu/install.sh - sudo apt-get install libfuse-dev script: - make all - make check - make examples
Configure Travis-CI to use the official nightly Rust build
Configure Travis-CI to use the official nightly Rust build
YAML
mit
cuviper/rust-fuse,tkonolige/rust-fuse,lsm/rust-fuse,ziyadparekh/rust-fuse,jroesch/rust-fuse,zargony/rust-fuse,zsiciarz/rust-fuse
d7cdcf9254418a898b1167ef8995eda81fdc7959
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.4" matrix: allow_failures: - python: "2.7" - python: "3.4" fast_finish: true # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install stomp.py - pip install python-daemon - pip install python-ldap - pip install dirq - pip install unittest2 - pip install coveralls before_script: - export TMPDIR=$PWD/tmp - mkdir $TMPDIR # command to run tests, e.g. python setup.py test script: - export PYTHONPATH=$PYTHONPATH:`pwd -P` - cd test - coverage run --source=ssm,bin -m unittest2 discover after_success: - coveralls
language: python python: - "2.6" - "2.7" - "3.4" matrix: allow_failures: - python: "2.7" - python: "3.4" fast_finish: true # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install stomp.py - pip install python-daemon - pip install python-ldap - pip install dirq - pip install unittest2 - pip install coveralls before_script: - export TMPDIR=$PWD/tmp - mkdir $TMPDIR # command to run tests, e.g. python setup.py test script: - export PYTHONPATH=$PYTHONPATH:`pwd -P` - cd test - coverage run --source=ssm,bin -m unittest2 -b discover after_success: - coveralls
Add buffering to unit tests
Add buffering to unit tests - Add buffering to unit tests so that output is kept with the output of the relevant test.
YAML
apache-2.0
apel/ssm,apel/ssm,stfc/ssm,stfc/ssm,tofu-rocketry/ssm,tofu-rocketry/ssm
be0f949c0eeb49466cac1800e41e1eeb5d34ab26
.travis.yml
.travis.yml
language: python python: - "3.6" install: - pip install -r requirements.txt - pip install pytest pytest-cov codeclimate-test-reporter script: - py.test -v --cov=. tests/ after_success: - codeclimate-test-reporter notifications: slack: secure: QPq14naOvUQjnVZJrSRo6K5oRIBOHiZC7bfEKJxGEYa4Xi0x3o9maNLYtcgw5ZLgkv15e31yb/MeLF1F0DiNTBc9j4mn7a0PYALhn5kaeXel+J+xgrm2FGx+uF7BK0zQeWGTZAdX1WO8S00Ri7PjqMsSFyMAlHqoqWHONrb2fuU=
env: global: - CC_TEST_REPORTER_ID=1561686e6399317b53a92aaad0550f8b91fe5af312e1f2852ab803ff6fcb6fa9 language: python python: - "3.6" install: - pip install -r requirements.txt - pip install pytest pytest-cov codeclimate-test-reporter script: - py.test -v --cov=. tests/ after_success: - codeclimate-test-reporter notifications: slack: secure: QPq14naOvUQjnVZJrSRo6K5oRIBOHiZC7bfEKJxGEYa4Xi0x3o9maNLYtcgw5ZLgkv15e31yb/MeLF1F0DiNTBc9j4mn7a0PYALhn5kaeXel+J+xgrm2FGx+uF7BK0zQeWGTZAdX1WO8S00Ri7PjqMsSFyMAlHqoqWHONrb2fuU=
Apply new coverage report settings at code climate
:hammer: Apply new coverage report settings at code climate
YAML
mit
tadashi-aikawa/gemini
b7e0b56d73d8cbc05f0a95143d8443562a404b41
.travis.yml
.travis.yml
# Allow (faster) Docker builds sudo: false language: haskell before_install: - git clone https://github.com/galoisinc/ivory - export IVORY_REPO=$PWD/ivory install: - cabal install alex - cabal install happy script: - IVORY_REPO=$IVORY_REPO make $ENV_TEST_TARGET ghc: - 7.6 - 7.8 env: - ENV_TEST_TARGET=tower - ENV_TEST_TARGET=tower-config - ENV_TEST_TARGET=tower-aadl - ENV_TEST_TARGET=tower-hal
# Allow (faster) Docker builds sudo: false language: haskell before_install: - git clone https://github.com/galoisinc/ivory - export IVORY_REPO=$PWD/ivory install: - cabal install alex - cabal install happy script: - IVORY_REPO=$IVORY_REPO make $ENV_TEST_TARGET ghc: - 7.8 env: - ENV_TEST_TARGET=tower - ENV_TEST_TARGET=tower-config - ENV_TEST_TARGET=tower-aadl - ENV_TEST_TARGET=tower-hal
Drop GHC 7.6 support in tower.
Drop GHC 7.6 support in tower. We've already dropped it for ivory-tower-stm32 and smaccmpilot, and now tower-hal doesn't build on 7.6 due to what looks suspiciously like a compiler bug. Give up and go home.
YAML
bsd-3-clause
GaloisInc/tower
6dc21528a25baf79f918d28444a7339de3813ba1
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.7 - 2.3.4 - 2.4.1 - jruby-9.1.10.0 script: - bundle exec rake ci sudo: false cache: bundler
language: ruby rvm: - 2.2.9 - 2.3.6 - 2.4.3 - 2.5.0 - jruby-9.1.15.0 sudo: false cache: bundler before_install: gem update --system script: bundle exec rake ci
Test against latest rubies on Travis
Test against latest rubies on Travis
YAML
mit
yujinakayama/guard-rubocop
905bdf56aa61b900139ec32d594fc59a4c3bcd22
.travis.yml
.travis.yml
language: c script: make test branches: only: - gh-pages notifications: irc: channels: - "chat.freenode.net#selenium" on_success: change on_failure: always template: - "%{repository} (%{commit}): %{message}" - "Build details: %{build_url}"
language: c script: make test branches: only: - gh-pages notifications: irc: channels: - "chat.freenode.net#selenium" on_success: change on_failure: always template: - "%{repository} (%{commit}): %{message}" - "Build details: %{build_url}" sudo: false
Switch to container based builds (implied by "sudo: false")
Switch to container based builds (implied by "sudo: false")
YAML
apache-2.0
AJ-72/docs,AJ-72/docs,SeleniumHQ/docs,User253489/docs,SeleniumHQ/docs,User253489/docs,AJ-72/docs,SeleniumHQ/docs,User253489/docs
bc79c580eaf370345cec98b49b35ed220d5b7348
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" script: - "pip install ." branches: except: - "getnib"
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "pypy" script: - "pip install ." matrix: allow_failures: - python: "2.6" - python: "pypy"
Add pypy and allow 2.6 & pypy builds to fail
Add pypy and allow 2.6 & pypy builds to fail
YAML
mit
jreese/nib
2680d014f3cf233b34f8c740b8a7ec1b9f06ea8b
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.3 before_install: gem install bundler -v 1.10.6
language: ruby rvm: - 2.2.3 - 2.2.1 before_install: gem install bundler -v 1.10.6
Add Ruby 2.2.1 to Travis
Add Ruby 2.2.1 to Travis
YAML
mit
ChuckJHardy/cloudscrape-client-ruby,ChuckJHardy/cloudscrape-client-ruby,cloudscrape/cloudscrape-client-ruby,cloudscrape/cloudscrape-client-ruby
e9bbf39fc5843dd8c07c0ece66ff76c380bc6398
.travis.yml
.travis.yml
language: python python: - "3.3" install: - pip install -e .[dev] script: - cd .. - py.test --ignore tangled/tangled/__main__.py --ignore tangled/setup.py tangled/tangled
language: python python: - "3.3" install: - pip install -e .[dev] script: - cd .. - > py.test --ignore tangled/setup.py --ignore tangled/tangled/__main__.py --cov tangled/tangled --doctest-modules tangled/tangled
Add coverage and doc testing to Travis CI config
Add coverage and doc testing to Travis CI config
YAML
mit
TangledWeb/tangled
76f647ecfe9d43a1d7fcf5e63642b73ab215e709
packages/po/polynomial.yaml
packages/po/polynomial.yaml
homepage: https://github.com/mokus0/polynomial changelog-type: '' hash: 26166a9a976cbf6331b875675575171883b29cb089422f2ccd14133521c7b708 test-bench-deps: test-framework-hunit: -any test-framework: -any base: ! '>=3 && <5' vector-space: -any test-framework-quickcheck2: -any HUnit: ==1.2.* polynomial: -any QuickCheck: ! '>=2' vector: -any maintainer: James Cook <mokus@deepbondi.net> synopsis: Polynomials changelog: '' basic-deps: base: ! '>=3 && <5' vector-space: -any deepseq: -any vector-th-unbox: ! '>=0.2.1' pretty: ! '>=1.1.2' vector: -any all-versions: - '0.5' - '0.6' - 0.6.5 - 0.7.1 - 0.7.2 - 0.7.3 author: James Cook <mokus@deepbondi.net> latest: 0.7.3 description-type: haddock description: ! 'A type for representing polynomials, several functions for manipulating and evaluating them, and several interesting polynomial sequences.' license-name: LicenseRef-PublicDomain
homepage: https://github.com/mokus0/polynomial changelog-type: '' hash: 3286ba3663bae84bc6c2595cce625b62feb6c8b1c0d89b8b999b7f0a9374c1b2 test-bench-deps: test-framework-hunit: -any test-framework: -any base: ! '>=3 && <5' vector-space: -any test-framework-quickcheck2: -any HUnit: ==1.2.* polynomial: -any QuickCheck: ! '>=2' vector: -any maintainer: James Cook <mokus@deepbondi.net> synopsis: Polynomials changelog: '' basic-deps: base: ! '>=3 && <4.11' vector-space: -any deepseq: -any vector-th-unbox: ! '>=0.2.1' pretty: ! '>=1.1.2' vector: -any all-versions: - '0.5' - '0.6' - 0.6.5 - 0.7.1 - 0.7.2 - 0.7.3 author: James Cook <mokus@deepbondi.net> latest: 0.7.3 description-type: haddock description: |- A type for representing polynomials, several functions for manipulating and evaluating them, and several interesting polynomial sequences. license-name: LicenseRef-PublicDomain
Update from Hackage at 2019-05-06T09:04:10Z
Update from Hackage at 2019-05-06T09:04:10Z
YAML
mit
commercialhaskell/all-cabal-metadata
54d091efb693f647b9a1232c0e106aca9ef7ed35
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.2 gemfile: - gemfiles/jekyll_2.gemfile - gemfiles/jekyll_3.gemfile
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.2 gemfile: - gemfiles/jekyll_2.gemfile - gemfiles/jekyll_3.gemfile matrix: exclude: - rvm: 1.9.3 gemfile: gemfiles/jekyll_3.gemfile
Exclude ruby 1.9.3 from Jekyll 3
Exclude ruby 1.9.3 from Jekyll 3
YAML
mit
jeremy/jekyll-assets,jekyll/jekyll-assets,jekyll/jekyll-assets,mattbeedle/jekyll-assets,jekyll-assets/jekyll-assets,jekyll/jekyll-assets,jeremy/jekyll-assets,zhelezko/jekyll-assets,zhelezko/jekyll-assets,mattbeedle/jekyll-assets,mattbeedle/jekyll-assets,jeremy/jekyll-assets,jekyll-assets/jekyll-assets,mattbeedle/jekyll-assets,jekyll/jekyll-assets,jekyll-assets/jekyll-assets,jeremy/jekyll-assets,zhelezko/jekyll-assets
00ec0acdef24019576e845c8e125aa537dcb18b0
.travis.yml
.travis.yml
sudo: required language: python python: - '3.8' - '3.7' - '3.6' services: - docker before_install: - docker version - docker pull rocket.chat:latest - pip install docker-compose - pip install codecov pytest-cov pytest-flakes pytest-pep8 - docker-compose -f docker-compose-test-server.yml up -d script: - docker ps - until curl http://localhost:3000/api/v1/info; do sleep 5; echo "waiting for Rocket.Chat server to start"; done - pytest tests rocketchat_API -x --cov=./ --pep8 --flakes - codecov deploy: provider: pypi username: "__token__" password: "${PYPI_TOKEN}" on: tags: true distributions: "bdist_wheel" skip_existing: true
sudo: required language: python python: - '3.8' - '3.7' - '3.6' services: - docker before_install: - docker version - docker pull rocket.chat:latest - pip install docker-compose - pip install codecov pytest-cov pytest-flakes pytest-pep8 - docker-compose -f docker-compose-test-server.yml up -d script: - docker ps - until curl http://localhost:3000/api/v1/info; do sleep 5; echo "waiting for Rocket.Chat server to start"; done - pytest tests rocketchat_API -x --cov=./ --pep8 --flakes - codecov deploy: provider: pypi username: "__token__" password: "${PYPI_TOKEN}" distributions: "bdist_wheel" skip_existing: true
Remove the need for a tagged commit to deploy It won't deploy a new version unless setup.py is updated
Remove the need for a tagged commit to deploy It won't deploy a new version unless setup.py is updated
YAML
mit
jadolg/rocketchat_API
1a5118956a938e339f5b3558c98fb78985cc083c
.travis.yml
.travis.yml
language: "node_js" node_js: - "5" - "4" - "3" # io.js - "2" # io.js - "1" # io.js - "0.12" - "0.10" # - "0.8" # - "0.6" # - "0.4" before_install: - "npm install istanbul -g" - "npm install coveralls -g" script: "make ci-travis" after_success: - "make submit-cov-to-coveralls"
language: "node_js" node_js: - "5" - "4" - "3" # io.js - "2" # io.js - "1" # io.js - "0.12" - "0.10" # - "0.8" # - "0.6" # - "0.4" before_install: - "npm install istanbul -g" - "npm install coveralls -g" script: "make ci-travis" after_success: - "make submit-cov-to-coveralls" sudo: false
Migrate to container-based infrastructure on Travis CI.
Migrate to container-based infrastructure on Travis CI.
YAML
mit
jaredhanson/node-tokens
0ca985dcbac9d04f20fcfc556210071760496974
.travis.yml
.travis.yml
language: objective-c osx_image: xcode8 env: - XAMARIN_DEVICES_ID_PR=9f82ba1c - XAMARIN_DEVICES_ID_CRON=67582786 before_script: "./scripts/add-keys.sh" after_script: "./scripts/remove-key.sh" script: - "./scripts/buildPrebidMobile.sh" - "./scripts/testPrebidMobile.sh"
language: objective-c osx_image: xcode8 env: - XAMARIN_DEVICES_ID_PR=9f82ba1c XAMARIN_DEVICES_ID_CRON=67582786 before_script: "./scripts/add-keys.sh" after_script: "./scripts/remove-key.sh" script: - "./scripts/buildPrebidMobile.sh" - "./scripts/testPrebidMobile.sh"
Put env variables on the same line
Put env variables on the same line
YAML
apache-2.0
prebid/prebid-mobile-ios,prebid/prebid-mobile-ios,prebid/prebid-mobile-ios,prebid/prebid-mobile-ios,prebid/prebid-mobile-ios,prebid/prebid-mobile-ios,prebid/prebid-mobile-ios
add20257233c7743599de7f294c0989e8ced4154
.travis.yml
.travis.yml
rvm: - 2.2.9 - 2.3.8 - 2.4.5 - 2.5.3 - ruby-head addons: firefox: latest # whitelist branches: only: - master gemfile: - gemfiles/rails_5_2.gemfile - gemfiles/rails_5_1.gemfile - gemfiles/rails_5_0.gemfile - gemfiles/rails_4_2.gemfile matrix: fast_finish: true allow_failures: - rvm: ruby-head exclude: - rvm: ruby-head gemfile: gemfiles/rails_4_2.gemfile before_install: - gem update --system - gem update --remote bundler - bin/install_geckodriver.sh before_script: geckodriver -V
rvm: - 2.2.9 - 2.3.8 - 2.4.5 - 2.5.3 - ruby-head addons: firefox: latest # whitelist branches: only: - master gemfile: - gemfiles/rails_5_2.gemfile - gemfiles/rails_5_1.gemfile - gemfiles/rails_5_0.gemfile - gemfiles/rails_4_2.gemfile matrix: fast_finish: true allow_failures: - rvm: ruby-head exclude: - rvm: ruby-head gemfile: gemfiles/rails_4_2.gemfile before_install: - gem update --remote bundler - bin/install_geckodriver.sh before_script: geckodriver -V
Fix a build error for Ruby 2.2 matrix on Travis CI
Fix a build error for Ruby 2.2 matrix on Travis CI ## Summary Fix a build error for Ruby 2.2 matrix on Travis CI. ## Details This PR fixes the following build error. ```console $ gem update --system Updating rubygems-update Fetching: rubygems-update-3.0.1.gem (100%) ERROR: Error installing rubygems-update: rubygems-update requires Ruby version >= 2.3.0. ERROR: While executing gem ... (NoMethodError) undefined method `version' for nil:NilClass The command "gem update --system" failed and exited with 1 during . ``` https://travis-ci.org/cucumber/cucumber-rails/jobs/471780986#L480-L487 ## Motivation and Context RubyGems 3.0.1 requires Ruby 2.3.0 or higher. https://github.com/rubygems/rubygems/blob/v3.0.1/rubygems-update.gemspec#L32
YAML
mit
cucumber/cucumber-rails,cucumber/cucumber-rails,cucumber/cucumber-rails
65f7376a213e8887b09c3f57df7ff3ba64359842
.travis.yml
.travis.yml
language: python python: - pypy - pypy3 - 3.5 - 2.7 - 3.4 - 3.3 - 3.2 - 2.6 sudo: false # whitelist # gh-pages is otherwise ignored by Travis CI # Use a regex to whitelist gh-pages and all branches branches: only: - /.*/ install: - if [[ $TRAVIS_PYTHON_VERSION == 2* || $TRAVIS_PYTHON_VERSION == "pypy" ]]; then pip install -r requirements/python2.txt; fi - if [[ $TRAVIS_PYTHON_VERSION == 3* || $TRAVIS_PYTHON_VERSION == "pypy3" ]]; then pip install -r requirements/python3.txt; fi - wget https://raw.githubusercontent.com/hugovk/word-tools/master/word_tools.py - pip install pep8 pyflakes - if [ "$TRAVIS_PYTHON_VERSION" == "2.6" ]; then pip install unittest2; fi script: - nosetests - pep8 --statistics --count . - pyflakes . | tee >(wc -l) matrix: fast_finish: true allow_failures: - python: 2.6 - python: 3.2
language: python python: - pypy - pypy3 - 3.5 - 2.7 - 3.4 - 3.3 - 3.2 - 2.6 sudo: false # whitelist # gh-pages is otherwise ignored by Travis CI # Use a regex to whitelist gh-pages and all branches branches: only: - /.*/ install: - if [[ $TRAVIS_PYTHON_VERSION == 2* || $TRAVIS_PYTHON_VERSION == "pypy" ]]; then pip install -r requirements/python2.txt; fi - if [[ $TRAVIS_PYTHON_VERSION == 3* || $TRAVIS_PYTHON_VERSION == "pypy3" ]]; then pip install -r requirements/python3.txt; fi - wget https://raw.githubusercontent.com/hugovk/word-tools/master/word_tools.py - pip install pep8 pyflakes - if [ "$TRAVIS_PYTHON_VERSION" == "2.6" ]; then pip install unittest2; fi script: - nosetests - pyflakes . - pep8 --statistics --count . matrix: fast_finish: true allow_failures: - python: 2.6 - python: 3.2
Allow pyflakes to return error and fail build
Allow pyflakes to return error and fail build
YAML
mit
hugovk/wordnik-tools,hugovk/wordnik-tools
bc84bb62c95657396a4ba337816a06f5352af812
.travis.yml
.travis.yml
language: ruby gemfile: - Gemfile script: - bundle exec rspec rvm: - ruby-head - 2.1.0 - 2.0.0
language: ruby gemfile: - Gemfile script: - bundle exec rspec rvm: - ruby-head - 2.3.1 - 2.2.5 - 2.1.10 - 2.0.0
Make Travis use latest versions of Ruby
Make Travis use latest versions of Ruby
YAML
mit
mwoods79/rippersnapper
851b5cd7c63cba3dbf1bd1dc9175c7757d498d01
.travis.yml
.travis.yml
language: python sudo: required python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch # command to install dependencies install: - pip install -r requirements.txt - pip install pep8 # command to run tests script: - pep8 appknox
language: python sudo: false python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch # command to install dependencies install: - pip install -r requirements.txt - pip install pep8 # command to run tests script: - pep8 appknox before_install: - echo -e "Host *\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config - echo -e "$travis_pull_private_key" > ~/.ssh/id_rsa - chmod 600 ~/.ssh/id_rsa - eval `ssh-agent -s` - ssh-add ~/.ssh/id_rsa
Remove sudo and add ways to build
Remove sudo and add ways to build
YAML
mit
appknox/appknox-python,appknox/appknox-python
afacd15d1271ca31638ddc241f3e49ab2bdc94bb
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '12' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc script: - nyc npm test
sudo: false language: node_js node_js: - '12' - '14' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc script: - nyc npm test
Build with Node.js 14 at Travis CI.
Build with Node.js 14 at Travis CI. See #31.
YAML
mit
bigeasy/cliffhanger
89347b02f78699511b087699cd3daf6790ad5026
.travis.yml
.travis.yml
language: go go: - 1.7beta2 install: - go get -u golang.org/x/tools/cmd/goimports script: - go get -d -t ./... - go test ./... - > goimports -d -e ./ | grep '.*' && { echo; echo "Aborting due to non-empty goimports output."; exit 1; } || :
language: go go: - 1.7rc1 install: - go get -u golang.org/x/tools/cmd/goimports script: - go get -d -t ./... - go test ./... - > goimports -d -e ./ | grep '.*' && { echo; echo "Aborting due to non-empty goimports output."; exit 1; } || :
Update Travis to go 1.7rc1
Update Travis to go 1.7rc1
YAML
mit
pressly/chi,go-chi/chi
a6383ae61d4dd963afa6d6492cf3c9ebc2d7b619
.travis.yml
.travis.yml
language: java sudo: true before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ services: - docker jdk: - oraclejdk7 - openjdk7 - oraclejdk8 before_install: # We have to change the hostname to work around a bug in openjdk7 that crashes when the hostname is # too long. - export OLD_HOSTNAME=`hostname` && sudo sed -i -e "s/$OLD_HOSTNAME/test/g" /etc/hosts && sudo hostname test # Don't run eval ./gradlew assemble" install: - ./gradlew examples:geoserverData script: - ./gradlew build after_failure: - cat core/build/reports/checkstyleReports/main.xml - cat core/build/reports/findbugsReports/main.xml - cat core/build/reports/tests/index.html - sh travis/print-examples-test-output.sh deploy: - provider: script script: travis/publish.sh skip_cleanup: true on: repo: mapfish/mapfish-print java: oraclejdk7
language: java sudo: true before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ services: - docker jdk: - oraclejdk7 - openjdk7 - oraclejdk8 before_install: # We have to change the hostname to work around a bug in openjdk7 that crashes when the hostname is # too long. - export OLD_HOSTNAME=`hostname` && sudo sed -i -e "s/$OLD_HOSTNAME/test/g" /etc/hosts && sudo hostname test # Don't run eval ./gradlew assemble" install: - ./gradlew examples:geoserverData script: - git --no-pager diff --check `git log --oneline | tail -1 | cut --fields=1 --delimiter=' '` - ./gradlew build after_failure: - cat core/build/reports/checkstyleReports/main.xml - cat core/build/reports/findbugsReports/main.xml - cat core/build/reports/tests/index.html - sh travis/print-examples-test-output.sh deploy: - provider: script script: travis/publish.sh skip_cleanup: true on: repo: mapfish/mapfish-print java: oraclejdk7
Add git attribute check on Travis
Add git attribute check on Travis
YAML
bsd-2-clause
marcjansen/mapfish-print,marcjansen/mapfish-print,mapfish/mapfish-print,mapfish/mapfish-print,marcjansen/mapfish-print,mapfish/mapfish-print,mapfish/mapfish-print,marcjansen/mapfish-print,mapfish/mapfish-print
fb4fcd61d543707a52acfcea5a98d53cf137c4ec
example_proxy.yaml
example_proxy.yaml
--- debug: true enable_profiling: false http_address: "localhost:8127" # How often to refresh from Consul's healthy nodes consul_refresh_interval: "30s" # This field is deprecated - use ssf_destination_address instead! stats_address: "localhost:8125" # The address to which to send SSF spans and metrics - this is the # same format as on the veneur server's `ssf_listen_addresses`. ssf_destination_address: "udp://localhost:8200" ### FORWARDING # Use a static host for forwarding forward_address: "http://veneur.example.com" # Or use a consul service for consistent forwarding. consul_forward_service_name: "forwardServiceName" # Maximum time that forwarding each batch of metrics can take; # note that forwarding to multiple global veneur servers happens in # parallel, so every forwarding operation is expected to complete # within this time. forward_timeout: 10s ### TRACING # The address on which we will listen for trace data trace_address: "127.0.0.1:8128" # Use a static host to send traces to trace_api_address: "http://localhost:7777" # Ose us a consul service for sending all spans belonging to the same parent # trace to a consistent host consul_trace_service_name: "traceServiceName" sentry_dsn: ""
--- debug: true enable_profiling: false http_address: "localhost:8127" # How often to refresh from Consul's healthy nodes consul_refresh_interval: "30s" # This field is deprecated - use ssf_destination_address instead! stats_address: "localhost:8125" # The address to which to send SSF spans and metrics - this is the # same format as on the veneur server's `ssf_listen_addresses`. ssf_destination_address: "udp://localhost:8126" ### FORWARDING # Use a static host for forwarding forward_address: "http://veneur.example.com" # Or use a consul service for consistent forwarding. consul_forward_service_name: "forwardServiceName" # Maximum time that forwarding each batch of metrics can take; # note that forwarding to multiple global veneur servers happens in # parallel, so every forwarding operation is expected to complete # within this time. forward_timeout: 10s ### TRACING # The address on which we will listen for trace data trace_address: "127.0.0.1:8128" # Use a static host to send traces to trace_api_address: "http://localhost:7777" # Ose us a consul service for sending all spans belonging to the same parent # trace to a consistent host consul_trace_service_name: "traceServiceName" sentry_dsn: ""
Use the default SSF port
Use the default SSF port
YAML
mit
gphat/veneur,stripe/veneur,gphat/veneur,evanj/veneur,evanj/veneur,gphat/veneur,stripe/veneur,evanj/veneur
7cb211c87439cfc6aeba91a1c525167777111e33
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode script: bundle exec rake
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode script: bundle exec rake
Drop support for ruby 1.9.2
Drop support for ruby 1.9.2
YAML
mit
zuzmo/vega_server_ruby,vega-webrtc/vega_server_ruby
19d6bebf8e4ea48e763ef7066cd9420c24b2cb75
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "6" - "8" - "9" script: "npm run-script travis"
language: node_js node_js: - '4' - '6' - '8' - '10' script: 'npm run-script travis'
Test with node.js 10 instead of 9
Travis: Test with node.js 10 instead of 9
YAML
bsd-3-clause
papandreou/node-pngcrush
3b11722adba197d564c6268eb79e3a58f1a1a57e
.travis.yml
.travis.yml
language: objective-c before_install: - gem install ios_ci - gem install cocoapods --no-document --quiet - brew install ios-sim - cd Example script: ios_ci cedar --source-root $TRAVIS_BUILD_DIR/Example --workspace DTCollectionViewManagerExample.xcworkspace --scheme CedarUnitTests --build-path Build/Products
language: objective-c before_install: - gem install ios_ci --no-document --quiet - gem install cocoapods --no-document --quiet - brew install ios-sim - cd Example script: ios_ci cedar --source-root $TRAVIS_BUILD_DIR/Example --workspace DTCollectionViewManagerExample.xcworkspace --scheme CedarUnitTests --build-path Build/Products
Add silent install to test runner
Add silent install to test runner
YAML
mit
DenHeadless/DTCollectionViewManager,KimBin/DTCollectionViewManager,DenHeadless/DTCollectionViewManager,KimBin/DTCollectionViewManager,KimBin/DTCollectionViewManager,DenHeadless/DTCollectionViewManager
5d661cf877397155f5573c577d3d94f21ae5923c
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode matrix: allow_failures: - rvm: 2.0.0
Add Ruby2.0.0 build in Travis-ci, and allowed to fail
Add Ruby2.0.0 build in Travis-ci, and allowed to fail
YAML
mit
stitchfix/resque,delectable/resque,lileeyao/resque,fmitech/resque,l4u/resque,begriffs/resque,ktheory/resque,rutikasb/resque,l4u/resque,redhotpenguin/resque,delectable/resque,lukeasrodgers/resque,ducthanh/resque,igorjancic/resque,lukeasrodgers/resque,lileeyao/resque,bhighley/resque,igorjancic/resque,timo-p/resque,bonekost/resque,stitchfix/resque,ktheory/resque,timo-p/resque,paran0ids0ul/resque,partap/resque,kangkot/resque,begriffs/resque,AlexVPopov/resque,tylerdooling/resque,jonatas/resque,fmitech/resque,ngpestelos/resque,paran0ids0ul/resque,sideci-sample/sideci-sample-resque,vladimirich/resque,jacknguyen/resque,vladimirich/resque,sufery/resque,tylerdooling/resque,m0dd3r/resque,jacknguyen/resque,vietnt/resque,sufery/resque,eileencodes/resque,m0dd3r/resque,ychaim/resque,hoffmanc/resque,hoffmanc/resque,sideci-sample/sideci-sample-resque,ryan-drake-stoker/resque
622f1796665a936a62d5600421ac0686d7de0156
.travis.yml
.travis.yml
language: python cache: pip sudo: false install: - pip install tox script: tox matrix: include: - python: 2.7 env: TOXENV=py27 - python: 3.3 env: TOXENV=py33 - python: 3.4 env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 - python: 3.6 env: TOXENV=py36 - python: pypy env: TOXENV=pypy notifications: email: - lhinds@protonmail.com irc: channels: - "irc.freenode.org##python-code-quality" use_notice: true skip_join: true
language: python cache: pip sudo: false install: - pip install tox script: tox matrix: include: - python: 2.7 env: TOXENV=py27 - python: 3.5 env: TOXENV=py35 - python: 3.6 env: TOXENV=py36 - python: pypy env: TOXENV=pypy notifications: email: - lhinds@protonmail.com irc: channels: - "irc.freenode.org##python-code-quality" use_notice: true skip_join: true
Align with tox.ini python versions
Align with tox.ini python versions
YAML
apache-2.0
chair6/bandit
fa6136f3224b85fd767b1bd98427e1e4eab21419
metadata/io.github.phora.aeondroid.yml
metadata/io.github.phora.aeondroid.yml
Categories: - Time License: GPL-3.0-only SourceCode: https://github.com/phora/AeonDroid IssueTracker: https://github.com/phora/AeonDroid/issues AutoName: AeonDroid Description: |- Planetary hours and astrological transit app. Also keeps track of Void of Course moons and moon phases. RepoType: git Repo: https://github.com/phora/AeonDroid Builds: - versionName: '1.0' versionCode: 1 commit: '1.0' subdir: app gradle: - yes - versionName: 1.0.1 versionCode: 2 commit: 1.0.1 subdir: app gradle: - yes - versionName: 1.0.2 versionCode: 3 commit: 1.0.2 subdir: app gradle: - yes - versionName: 1.0.3 versionCode: 4 commit: 1.0.3 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags ^[0-9\.]+$ CurrentVersion: 1.0.2 CurrentVersionCode: 3
Categories: - Time License: GPL-3.0-only SourceCode: https://github.com/phora/AeonDroid IssueTracker: https://github.com/phora/AeonDroid/issues AutoName: AeonDroid Description: |- Planetary hours and astrological transit app. Also keeps track of Void of Course moons and moon phases. RepoType: git Repo: https://github.com/phora/AeonDroid Builds: - versionName: '1.0' versionCode: 1 commit: '1.0' subdir: app gradle: - yes - versionName: 1.0.1 versionCode: 2 commit: 1.0.1 subdir: app gradle: - yes - versionName: 1.0.2 versionCode: 3 commit: 1.0.2 subdir: app gradle: - yes - versionName: 1.0.3 versionCode: 4 commit: 1.0.3 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags ^[0-9\.]+$ CurrentVersion: 1.0.3 CurrentVersionCode: 4
Update CV of AeonDroid to 1.0.3 (4)
Update CV of AeonDroid to 1.0.3 (4)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
30acb1ad7fa8dccd48d9301a1eeda60c3a4da83a
.travis.yml
.travis.yml
language: cpp compiler: - gcc - clang before_install: - sudo apt-get install libpoco-dev notifications: email: false irc: channels: - "irc.badnik.net#pso2" on_success: change on_failure: always script: cmake . && make
language: cpp compiler: - gcc - clang before_install: - if [ "$CXX" == "g++" ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi - sudo apt-get update -qq install: - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8"; fi - sudo apt-get install libpoco-dev notifications: email: false irc: channels: - "irc.badnik.net#pso2" on_success: change on_failure: always script: cmake . && make
Install a gcc that actually works with C++11
Travis: Install a gcc that actually works with C++11
YAML
agpl-3.0
PolarisTeam/PolarisLegacy,PolarisTeam/PolarisLegacy
dcc35afcf3086b8ca741dddb61f47664f16f05e8
.travis.yml
.travis.yml
language: python python: - '2.7' - '3.3' - '3.4' before_install: - sudo add-apt-repository ppa:texlive-backports/ppa -y - sudo apt-get update install: - wget https://launchpad.net/awkwardduet/1.1/1.1a4/+download/awkwardduet-1.1a4.tar.gz - tar -xzvf awkwardduet-1.1a4.tar.gz - cd awkwardduet-1.1a4 - sudo apt-get install python3 - sudo python3 setup.py install - cd .. - ./convert_to_py2.sh - pip install . - sudo apt-get install texlive-latex-extra texlive-pictures script: ./testall.sh
language: python python: - '2.7' - '3.3' - '3.4' before_install: - sudo add-apt-repository ppa:texlive-backports/ppa -y - sudo apt-get update install: - wget https://launchpad.net/awkwardduet/1.1/1.1a4/+download/awkwardduet-1.1a4.tar.gz - tar -xzvf awkwardduet-1.1a4.tar.gz - cd awkwardduet-1.1a4 - sudo apt-get install python3 python3-setuptools - sudo python3 setup.py install - cd .. - ./convert_to_py2.sh - pip install . - sudo apt-get install texlive-latex-extra texlive-pictures script: ./testall.sh
Add python3 setuptools to install
Travis: Add python3 setuptools to install
YAML
mit
votti/PyLaTeX,JelteF/PyLaTeX,sebastianhaas/PyLaTeX,sebastianhaas/PyLaTeX,jendas1/PyLaTeX,JelteF/PyLaTeX,jendas1/PyLaTeX,bjodah/PyLaTeX,ovaskevich/PyLaTeX,bjodah/PyLaTeX,ovaskevich/PyLaTeX,votti/PyLaTeX
8abda32f8b75c442846fe9ea454bf9feea3ec05c
.travis.yml
.travis.yml
language: python python: - "3.4" sudo: false # command to install dependencies install: - "pip install -r requirements.txt" - "pip install -r dev-requirements.txt" - "curl -L https://github.com/coreos/etcd/releases/download/v0.4.6/etcd-v0.4.6-linux-amd64.tar.gz -o etcd-v0.4.6-linux-amd64.tar.gz" - "tar xzvf etcd-v0.4.6-linux-amd64.tar.gz" - "./etcd-v0.4.6-linux-amd64/etcd &" # commands to run tests and style check script: - flake8 . - nosetests -A 'not s3 and not github' --with-coverage --cover-erase --cover-branches --cover-package=configservice after_success: - coveralls notifications: webhooks: - https://orchestrator.elb.us-west-1.cu.melt.sh/external/hooks/travis
language: python python: - "3.4" sudo: false # command to install dependencies install: - "pip install -r requirements.txt" - "pip install -r dev-requirements.txt" - "curl -L https://github.com/coreos/etcd/releases/download/v0.4.6/etcd-v0.4.6-linux-amd64.tar.gz -o etcd-v0.4.6-linux-amd64.tar.gz" - "tar xzvf etcd-v0.4.6-linux-amd64.tar.gz" - "./etcd-v0.4.6-linux-amd64/etcd &" # commands to run tests and style check script: - flake8 . - nosetests -A 'not s3 and not github' --with-coverage --cover-erase --cover-branches --cover-package=configservice after_success: - coveralls notifications: webhooks: - https://orchestrator.elb.us-west-1.th.melt.sh/external/hooks/travis
Send notification to development orchestrator
Send notification to development orchestrator
YAML
mit
totem/config,totem/config
ad4548fbf7c054844c11a20b12e30706e0c5d4e7
.travis.yml
.travis.yml
language: elixir elixir: - 1.0.4 - 1.4 otp_release: - 17.4 - 18.3 - 19.3 - 20.0 env: - WEBDRIVER=phantomjs matrix: exclude: - elixir: 1.0.4 otp_release: 18.3 - elixir: 1.0.4 otp_release: 19.3 - elixir: 1.0.4 otp_release: 20.0 - elixir: 1.4 otp_release: 17.4 - elixir: 1.4 otp_release: 18.3 before_script: - "export DISPLAY=:99.0" - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16" - bash $TRAVIS_BUILD_DIR/test/tools/start_webdriver.sh script: mix test
language: elixir elixir: - 1.0.4 - 1.4 - 1.5 - 1.6 otp_release: - 17.4 - 18.3 - 19.3 - 20.3 - 21.0 env: - WEBDRIVER=phantomjs matrix: exclude: - elixir: 1.0.4 otp_release: 18.3 - elixir: 1.0.4 otp_release: 19.3 - elixir: 1.0.4 otp_release: 20.3 - elixir: 1.0.4 otp_release: 21.0 - elixir: 1.4 otp_release: 17.4 - elixir: 1.4 otp_release: 21.0 - elixir: 1.5 otp_release: 17.4 - elixir: 1.5 otp_release: 21.0 - elixir: 1.6 otp_release: 17.4 - elixir: 1.6 otp_release: 18.3 before_script: - "export DISPLAY=:99.0" - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16" - bash $TRAVIS_BUILD_DIR/test/tools/start_webdriver.sh script: mix test
Add Travis for Elixir 1.5, 1.6 and OTP 21
Add Travis for Elixir 1.5, 1.6 and OTP 21
YAML
mit
HashNuke/hound,HashNuke/hound
374e29307e3a3c9035fb58cea67c09c7af61defa
.travis.yml
.travis.yml
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c osx_image: xcode9 # cache: cocoapods # podfile: Example/Podfile before_install: - gem install cocoapods # Since Travis is not always on latest version # - pod install --project-directory=Example script: - set -o pipefail && xcodebuild test -project Eventitic/Eventitic.xcodeproj -scheme Eventitic_iOS -destination 'platform=iOS Simulator,name=iPhone 7' ONLY_ACTIVE_ARCH=NO | xcpretty - pod lib lint --allow-warnings
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c osx_image: xcode10 # cache: cocoapods # podfile: Example/Podfile before_install: - gem install cocoapods # Since Travis is not always on latest version # - pod install --project-directory=Example script: - set -o pipefail && xcodebuild test -project Eventitic/Eventitic.xcodeproj -scheme Eventitic_iOS -destination 'platform=iOS Simulator,name=iPhone XS' ONLY_ACTIVE_ARCH=NO | xcpretty - pod lib lint --allow-warnings
Update Travis CI setting to use xcode10 image
Update Travis CI setting to use xcode10 image
YAML
mit
hironytic/Eventitic,hironytic/Eventitic
a81d717b36d3768d37ea18a3864b1c76cad28402
.travis.yml
.travis.yml
os: - linux services: - docker language: node_js node_js: - "8.11.1" jdk: - oraclejdk8 cache: directories: - $HOME/.m2 - $HOME/.gradle - $HOME/.yarn-cache env: global: - SPRING_OUTPUT_ANSI_ENABLED=ALWAYS before_install: - java -version - sudo /etc/init.d/mysql stop - sudo /etc/init.d/postgresql stop - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - npm install -g npm - npm install -g yarn - yarn global add yo install: - yarn install - yarn link - gulp eslint - gulp test script: # - git clone https://github.com/jhipster/jhipster-sample-app-ng2.git # - cd jhipster-sample-app-ng2 - git clone https://github.com/pascalgrimaud/jhipster-5-sample-app.git - cd jhipster-5-sample-app - yarn install - yarn link generator-jhipster-primeng-charts - yo jhipster-primeng-charts --default --force # need to re-activate for next version of JHipster # - yarn lint - ./mvnw & - sleep 40 - yarn e2e
os: - linux services: - docker language: node_js node_js: - "8.11.1" jdk: - oraclejdk8 addons: apt: sources: - google-chrome packages: - google-chrome-stable cache: directories: - $HOME/.m2 - $HOME/.gradle env: global: - SPRING_OUTPUT_ANSI_ENABLED=ALWAYS before_install: - java -version - sudo /etc/init.d/mysql stop - sudo /etc/init.d/postgresql stop # Use this for Protractor - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start # Install Yarn - curl -o- -L https://yarnpkg.com/install.sh | bash - export PATH=$HOME/.yarn/bin:$PATH - yarn -v - yarn global add yo install: - yarn install - yarn link - gulp eslint - gulp test script: # - git clone https://github.com/jhipster/jhipster-sample-app-ng2.git # - cd jhipster-sample-app-ng2 - git clone https://github.com/pascalgrimaud/jhipster-5-sample-app.git - cd jhipster-5-sample-app - yarn install - yarn link generator-jhipster-primeng-charts - yo jhipster-primeng-charts --default --force # need to re-activate for next version of JHipster # - yarn lint - ./mvnw package - ./mvnw & - sleep 60 - yarn e2e
Fix Travis by installing Google Chrome and compile the project before e2e
Fix Travis by installing Google Chrome and compile the project before e2e
YAML
apache-2.0
pascalgrimaud/generator-jhipster-primeng-charts,pascalgrimaud/generator-jhipster-primeng-charts,pascalgrimaud/generator-jhipster-primeng-charts
5acedf39771881baf0ca0d2ed3a195e99b3b0307
.travis.yml
.travis.yml
sudo: required language: php dist: trusty php: - 7.4 install: - pecl install zip - cp .env.example .env - travis_retry composer install --no-interaction - php artisan dusk:chrome-driver 71 before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - ./vendor/laravel/dusk/bin/chromedriver-linux & - php artisan key:generate - touch database/database.sqlite - php artisan serve & - chmod -R 0755 vendor/laravel/dusk/bin/ script: - vendor/bin/phpunit # - php artisan dusk
language: php php: - 7.3 addons: chrome: stable install: - cp .env.example .env - travis_retry composer install --no-interaction --prefer-dist --no-suggest - php artisan key:generate - php artisan dusk:chrome-driver before_script: - google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost & - touch database/database.sqlite - php artisan serve & script: - vendor/bin/phpunit # - php artisan dusk
Upgrade to Laravel 7: Refactoring Travis CI according for the Laravel version 7
Upgrade to Laravel 7: Refactoring Travis CI according for the Laravel version 7
YAML
mit
mchekin/rpg,mchekin/rpg
2a556c277c5d009143c76209732fefb1a7180ea4
.travis.yml
.travis.yml
language: go go: - 1.3.3 - 1.4.3 - 1.5.3 - 1.6 - tip matrix: allow_failures: - go: tip before_install: - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover - openssl aes-256-cbc -K $encrypted_b096a1fd8e8f_key -iv $encrypted_b096a1fd8e8f_iv -in client_secret.json.enc -out client_secret.json -d
language: go go: - 1.3.3 - 1.4.3 - 1.5.3 - 1.6 - tip matrix: allow_failures: - go: tip before_install: - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover - openssl aes-256-cbc -K $encrypted_b096a1fd8e8f_key -iv $encrypted_b096a1fd8e8f_iv -in client_secret.json.enc -out client_secret.json -d script: - $HOME/gopath/bin/goveralls -service=travis-ci
Add script to run goveralls
Add script to run goveralls
YAML
mit
Iwark/spreadsheet
6d67a6fce9d639ccb12435ae799462bcdabcbce5
.travis.yml
.travis.yml
language: node_js node_js: - '0.12.7' - '4.2.2' - '5.1.0'
language: node_js node_js: - '0.12.7' - '4.2.2' - '5.1.0' - '6.10.0' - '7.7.3'
Validate on node v6 and v7
Validate on node v6 and v7
YAML
mit
JiriChara/kindergarten,JiriChara/kindergarten
1c800a19a6e5a8ccd522dd3d820705943d83d842
.travis.yml
.travis.yml
language: ruby before_install: "gem install bones" install: "rake gem:install_dependencies" script: "rake" rvm: - 1.9.3 - 2.0.0 - 2.1.5 - 2.2.1 - 2.3.0 - jruby-9.0.4.0
language: ruby before_install: "gem install bones" install: "rake gem:install_dependencies" script: "rake" rvm: - 1.9.3-p551 - 2.0.0-p648 - 2.1.10 - 2.2.10 - 2.3.1 - jruby-9.1.6.0
Use latest stable Ruby, JRuby
Travis: Use latest stable Ruby, JRuby
YAML
mit
TwP/logging,TwP/logging
503b01826c5fa55ffd485418d146d4b63d07a1e0
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.2 - 2.1.1 - 2.1.0 - 2.0.0 - 1.9.3 - rbx-2 - jruby-19mode env: - DB=mysql - DB=postgres gemfile: - Gemfile - ci/gemfiles/rspec2_14_rails4_0.gemfile - ci/gemfiles/rspec2_14_rails3_2.gemfile before_script: - ci/script/create_db.sh - bundle exec rake db:test:reset --trace script: bundle exec rspec -b
language: ruby rvm: - 2.1.2 - 2.1.1 - 2.1.0 - 2.0.0 - 1.9.3 - rbx-2 - jruby-19mode env: - DB=mysql - DB=postgres gemfile: - Gemfile - ci/gemfiles/rspec2_14_rails4_0.gemfile - ci/gemfiles/rspec2_14_rails3_2.gemfile - ci/gemfiles/rspec3_0_rails4_0.gemfile - ci/gemfiles/rspec3_0_rails3_2.gemfile before_script: - ci/script/create_db.sh - bundle exec rake db:test:reset --trace script: bundle exec rspec -b
Enable builds for RSpec 3.0
Enable builds for RSpec 3.0
YAML
mit
yellow5/foreigner-matcher,yellow5/foreigner-matcher
215a1fd5d3e1d2bfc5529c681bbce9a21d60e171
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 before_install: - chmod +x gradlew script: - ./gradlew check --stacktrace after_success: - bash <(curl -s https://codecov.io/bash)
language: java jdk: - oraclejdk8 before_install: - chmod +x gradlew script: - ./gradlew build jacocoRootReport --stacktrace after_success: - bash <(curl -s https://codecov.io/bash)
Use `build` in Travis config
Use `build` in Travis config
YAML
apache-2.0
SpineEventEngine/todo-list,SpineEventEngine/todo-list,SpineEventEngine/todo-list,SpineEventEngine/todo-list,SpineEventEngine/todo-list,SpineEventEngine/todo-list
2ede96c3f0352dd3e8491b0f33487229f50c37a1
.travis.yml
.travis.yml
language: java jdk: - oraclejdk7 before_install: - chmod +x gradlew script: - ./gradlew build --debug after_success: - chmod +x ./script/publish_artifacts.sh - ./script/publish_artifacts.sh
language: java jdk: - oraclejdk7 before_install: - chmod +x gradlew script: - ./gradlew build --debug after_success: - bash <(curl -s https://codecov.io/bash) - chmod +x ./script/publish_artifacts.sh - ./script/publish_artifacts.sh
Add codecov reporting after CI successful build.
Add codecov reporting after CI successful build.
YAML
apache-2.0
SpineEventEngine/gae-java,SpineEventEngine/gae-java
905ceb04638edf016b69c57b4617dc8b555807ea
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.4 cache: - bundler - apt env: - BERKSHELF_PATH=/tmp/ before_install: - sudo apt-get update -qq - curl -L https://www.chef.io/chef/install.sh | sudo bash - rm -Rf .bundle install: - bundle install - bundle exec berks vendor /tmp/cookbooks - cp dummy-validation.pem /tmp/validation.pem - cp dna.json /tmp/dna.json script: - bundle exec foodcritic -f any . - bundle exec tailor - chef-client -z -c client.rb -j dna.json
language: ruby rvm: - 2.1.4 cache: - bundler - apt env: - BERKSHELF_PATH=/tmp/ before_install: - sudo apt-get update -qq - curl -L https://www.chef.io/chef/install.sh | sudo bash - rm -Rf .bundle install: - bundle install - bundle exec berks vendor /tmp/cookbooks - cp dummy-validation.pem /tmp/validation.pem - cp dna.json /tmp/dna.json script: - bundle exec foodcritic -f any . - bundle exec tailor - sudo chef-client -z -c client.rb -j dna.json
Switch to root mode for chef client
Switch to root mode for chef client
YAML
apache-2.0
stonevil/nexus-cookbook,stonevil/nexus-cookbook,stonevil/nexus-cookbook
089b866597ccd2fb33a365984c766de47da0f029
.travis.yml
.travis.yml
language: node_js node_js: - 0.10 - 0.12 - 5.5 before_script: - install-engine-dependencies - npm install -g bower - bower install - npm dedupe before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" sudo: false script: - grunt jshint - grunt test:browser - npm run coverage:upload
language: node_js node_js: - 0.12 - 5.5 before_script: - install-engine-dependencies - npm install -g bower - bower install - npm dedupe before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" sudo: false script: - grunt jshint - grunt test:browser - npm run coverage:upload
Remove Node version from Travis testing
Remove Node version from Travis testing Removing 0.10, will be replaced by 6 in #455
YAML
mit
stealjs/steal-tools,stealjs/steal-tools
2edf355b5fe0e094534dab25fcf849c8fd944dd0
.travis.yml
.travis.yml
sudo: required services: - docker script: # The following 2 lines are from https://graysonkoonce.com/getting-the-current-branch-name-during-a-pull-request-in-travis-ci/ - export PR=https://api.github.com/repos/$TRAVIS_REPO_SLUG/pulls/$TRAVIS_PULL_REQUEST - export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo `curl -s $PR | jq -r .head.ref`; fi) - export REPO="dangmai/website:latest" - export CONTAINER_NAME="website" - if [ "$BRANCH" == "master" ]; then bash ./deploy/deploy.sh; fi
sudo: required services: - docker script: # The following 2 lines are from https://graysonkoonce.com/getting-the-current-branch-name-during-a-pull-request-in-travis-ci/ - export PR=https://api.github.com/repos/$TRAVIS_REPO_SLUG/pulls/$TRAVIS_PULL_REQUEST - export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo `curl -s $PR | jq -r .head.ref`; fi) - export REPO="dangmai/website:latest" - export CONTAINER_NAME="website" - bash ./deploy/build.sh - if [ "$BRANCH" == "master" ]; then bash ./deploy/deploy.sh -e HOST=$HOST -e EMAIL=$EMAIL; fi
Build the image first before pushing to DockerHub
Build the image first before pushing to DockerHub
YAML
mit
dangmai/website
287d403a8caa32c6f299beb468ce39da30a88ce2
cloudbuild.yaml
cloudbuild.yaml
steps: - name: golang:1.19 dir: 'grpcgcp' env: - 'GCP_PROJECT_ID=grpc-gcp-testing' entrypoint: go args: ['test', '-v', '-timeout', '600s']
steps: - name: golang:1.19 dir: 'grpcgcp' env: - 'GCP_PROJECT_ID=grpc-gcp-testing' entrypoint: go args: ['test', '-v', '-timeout', '600s'] - name: golang:1.19 dir: 'grpcgcp' entrypoint: go args: ['test', '-v', '-timeout', '600s', 'github.com/GoogleCloudPlatform/grpc-gcp-go/grpcgcp/test_grpc']
Add test_grpc to Cloud Build
Add test_grpc to Cloud Build
YAML
apache-2.0
GoogleCloudPlatform/grpc-gcp-go,GoogleCloudPlatform/grpc-gcp-go
fc58497ca20d0ad03d2af781f3af6be160029a13
.travis.yml
.travis.yml
language: python env: - DJANGO_VERSION=1.4.10 - DJANGO_VERSION=1.5.5 - DJANGO_VERSION=1.6.2 python: - "2.6" - "2.7" - "3.3" - "3.4" - "pypy" matrix: exclude: - python: "3.3" env: DJANGO_VERSION=1.4.10 - python: "3.4" env: DJANGO_VERSION=1.4.10 allow_failures: - python: "3.4" install: - pip install django==$DJANGO_VERSION nose --use-mirrors - pip install . --use-mirrors script: - nosetests tests/tests.py
language: python env: - DJANGO_VERSION=1.4.12 - DJANGO_VERSION=1.5.7 - DJANGO_VERSION=1.6.4 python: - "2.6" - "2.7" - "3.3" - "3.4" - "pypy" matrix: exclude: - python: "3.3" env: DJANGO_VERSION=1.4.12 - python: "3.4" env: DJANGO_VERSION=1.4.12 install: - pip install django==$DJANGO_VERSION nose --use-mirrors - pip install . --use-mirrors script: - nosetests tests/tests.py
Update Django versions and enable Python 3.4
Update Django versions and enable Python 3.4
YAML
bsd-3-clause
AlexHill/djpj,AlexHill/djpj
161627ea4ad6017e6cf507aabb6f444b22cbcbbf
.travis.yml
.travis.yml
language: ruby rvm: - 2.3.1 - 2.4.0 - 2.5.0 - ruby-head cache: bundler before_install: - gem install bundler script: - bundle exec rake - bundle exec codeclimate-test-reporter matrix: allow_failures: - rvm: ruby-head notifications: email: false
language: ruby rvm: - 2.3.1 - 2.4.0 - 2.5.0 - 2.6.0 - ruby-head cache: bundler before_install: - gem install bundler script: - bundle exec rake - bundle exec codeclimate-test-reporter matrix: allow_failures: - rvm: ruby-head notifications: email: false
Add ruby 2.6 to supported ruby versions
Add ruby 2.6 to supported ruby versions
YAML
mit
satoryu/google_suggest,satoryu/google_suggest
6e5cfd6ba8eb23a83dbd27df5f7010a62c66c4c5
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" - "0.9" - "0.8" - "0.6" - "0.4" before_install: - 'npm install -g npm@~1.4.6 && npm install -g npm' matrix: fast_finish: true allow_failures: - node_js: "0.9" - node_js: "0.6" - node_js: "0.4" sudo: false
language: node_js node_js: - "0.11" - "0.10" - "0.9" - "0.8" before_install: - 'npm install -g npm' matrix: fast_finish: true allow_failures: - node_js: "0.9" sudo: false
Stop running tests on node prior to 0.8.
Stop running tests on node prior to 0.8. Note: still supporting node 0.4 and higher stables.
YAML
mit
es-shims/es7-shim,ljharb/es7-shim
0a637b5cd8d310b179fb544da57a9cf3d712b187
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 before_script: - composer install --dev script: bin/travis_build.sh
language: php php: - 5.3 - 5.4 before_script: - composer install --dev --prefer-source script: bin/travis_build.sh
Update composer to prefer source to avoid github rate limitting
Update composer to prefer source to avoid github rate limitting
YAML
mit
SCLInternet/SclContact,SCLInternet/SclContact
73cfd7903b95bff4b74a93c5382627a2826c9859
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode matrix: allow_failures: - rvm: jruby-19mode script: bundle exec rake
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.2 - jruby-19mode - rbx-19mode matrix: allow_failures: - rvm: jruby-19mode script: bundle exec rake
Add Ruby 2.1.2 to the build matrix
Add Ruby 2.1.2 to the build matrix
YAML
mit
bkeepers/ruby-net-ldap,javanthropus/ruby-net-ldap,cloudvolumes/ruby-net-ldap,javanthropus/ruby-net-ldap,astockwell/ruby-net-ldap,bkeepers/ruby-net-ldap,astockwell/ruby-net-ldap,cloudvolumes/ruby-net-ldap
93ef1e8abc98b8bdea1948fc8999b52d4164aa8b
.travis.yml
.travis.yml
sudo: required language: python services: - docker before_install: - docker pull mihaelacr/pydeeplearn-labeled - docker run -d -p 127.0.0.1:80:4567 mihaelacr/pydeeplearn-labeled /bin/sh -c "cd pydeeplearn/code; python MNISTdigits.py --trainSize 100 --testSize 10 --db --train --rbmnesterov test.p --validation --save --save_best_weights --preTrainEpochs 0;" - docker ps -a - docker run mihaelacr/pydeeplearn-labeled /bin/sh -c "cd pydeeplearn/code; python MNISTdigits.py --trainSize 100 --testSize 10 --db --train --rbmnesterov test.p --validation --save --save_best_weights --preTrainEpochs 0;" script: - python MNISTdigits.py --trainSize 100 --testSize 10 --db --train --rbmnesterov test.p --validation --save --save_best_weights --preTrainEpochs 0
sudo: required language: python services: - docker before_install: - docker pull mihaelacr/pydeeplearn-labeled - docker run -d -p 127.0.0.1:80:4567 mihaelacr/pydeeplearn-labeled /bin/sh -c "cd pydeeplearn/code; python MNISTdigits.py --trainSize 100 --testSize 10 --db --train --rbmnesterov test.p --validation --save --save_best_weights --preTrainEpochs 0;" - docker ps -a - docker run mihaelacr/pydeeplearn-labeled /bin/sh -c "cd pydeeplearn/code; python MNISTdigits.py --trainSize 100 --testSize 10 --db --train --rbmnesterov test.p --validation --save --save_best_weights --preTrainEpochs 0;" script: - cd pydeeplearn/code - python MNISTdigits.py --trainSize 100 --testSize 10 --db --train --rbmnesterov test.p --validation --save --save_best_weights --preTrainEpochs 0
Add cd pydeeplearn/code in the scripts section of .travil.yml
Add cd pydeeplearn/code in the scripts section of .travil.yml
YAML
bsd-3-clause
mihaelacr/pydeeplearn
e0fea97b5b4dc911dc479ad7393c33e9419c6c51
.travis.yml
.travis.yml
language: c dist: xenial addons: apt: sources: - sourceline: 'ppa:neovim-ppa/stable' packages: - libev-dev - libpcre3-dev - libmsgpack-dev os: - linux - osx compiler: - gcc - clang matrix: exclude: - os: osx compiler: gcc allow_failures: - os: osx compiler: clang before_install: - if test "$TRAVIS_OS_NAME" = "osx" ; then brew install libev ; fi - if test "$TRAVIS_OS_NAME" = "osx" ; then brew install pcre ; fi - if test "$TRAVIS_OS_NAME" = "osx" ; then brew install msgpack ; fi script: - ./autogen.sh - ./configure - make sudo: false
language: c dist: xenial addons: apt: sources: - sourceline: 'ppa:neovim-ppa/stable' packages: - libev-dev - libpcre3-dev - libmsgpack-dev os: - linux - osx compiler: - gcc - clang matrix: exclude: - os: osx compiler: gcc allow_failures: - os: osx compiler: clang before_install: - if test "$TRAVIS_OS_NAME" = "osx" ; then brew install libev || true ; fi - if test "$TRAVIS_OS_NAME" = "osx" ; then brew install pcre || true ; fi - if test "$TRAVIS_OS_NAME" = "osx" ; then brew install msgpack || true ; fi script: - ./autogen.sh - ./configure - make sudo: false
Fix issue that fails on macOS
Fix issue that fails on macOS
YAML
mit
pandax381/rlogd,pandax381/rlogd
c43cebb5e750b9321b24ab3ea8e2ebda726e09b3
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.6 - 2.2.3 env: - RAILS_VERSION=4.1.14 - RAILS_VERSION=4.2.5 - RAILS_VERSION=master addons: code_climate: repo_token: 22819b10ef9110a7fef884ab105239fc16fd0562ac79ae54c2204b5e07343919
language: ruby rvm: - 2.1.6 - 2.2.3 env: - RAILS_VERSION=4.1.14 - RAILS_VERSION=4.2.5 #- RAILS_VERSION=master addons: code_climate: repo_token: 22819b10ef9110a7fef884ab105239fc16fd0562ac79ae54c2204b5e07343919
Move rails master testing support to later moment
Move rails master testing support to later moment
YAML
mit
bterkuile/record_collection,bterkuile/record_collection
797eb8e87ce0ca91dc30b88afb9dab67b083c8fb
.travis.yml
.travis.yml
language: ruby rvm: 2.1 install: - gem install jekyll - gem install yui-compressor script: - jekyll build
language: ruby rvm: 2.1 install: - gem install jekyll - gem install yui-compressor - gem install htmlcompressor script: - jekyll build
Install HTMLCompressor Dependency for Travis CI Build
Install HTMLCompressor Dependency for Travis CI Build
YAML
mit
pfolta/peterfolta.net,pfolta/peterfolta.net,pfolta/peterfolta.net
adc9a7a51e2169aa163d279f65954169f0eda7c1
.travis.yml
.travis.yml
bundler_args: "--without debug" rvm: - jruby-19mode - 1.8.7 - 1.9.3 env: - "CI_ORM=active_record CI_DB_ADAPTER=sqlite3" - "CI_ORM=active_record CI_DB_ADAPTER=postgresql CI_DB_USERNAME=postgres" - "CI_ORM=active_record CI_DB_ADAPTER=mysql" - "CI_ORM=mongoid" - "CI_ORM=mongoid CI_ORM_VERSION=head" language: ruby matrix: exclude: - rvm: jruby-19mode env: "CI_ORM=active_record CI_DB_ADAPTER=postgresql CI_DB_USERNAME=postgres" - rvm: jruby-19mode env: "CI_ORM=active_record CI_DB_ADAPTER=mysql" - rvm: jruby-19mode env: "CI_ORM=mongoid CI_ORM_VERSION=head" - rvm: 1.8.7 env: "CI_ORM=mongoid CI_ORM_VERSION=head" notifications: irc: "irc.freenode.org#railsadmin" script: spec/ci.sh
bundler_args: "--without debug" rvm: - jruby-19mode - 1.8.7 - 1.9.3 env: - "CI_ORM=active_record CI_DB_ADAPTER=sqlite3" - "CI_ORM=active_record CI_DB_ADAPTER=postgresql CI_DB_USERNAME=postgres" - "CI_ORM=active_record CI_DB_ADAPTER=mysql" - "CI_ORM=mongoid" - "CI_ORM=mongoid CI_ORM_VERSION=head" language: ruby matrix: exclude: - rvm: jruby-19mode env: "CI_ORM=active_record CI_DB_ADAPTER=postgresql CI_DB_USERNAME=postgres" - rvm: jruby-19mode env: "CI_ORM=active_record CI_DB_ADAPTER=mysql" - rvm: jruby-19mode env: "CI_ORM=mongoid CI_ORM_VERSION=head" - rvm: 1.8.7 env: "CI_ORM=mongoid CI_ORM_VERSION=head" allow_failures: - env: "CI_ORM=mongoid CI_ORM_VERSION=head" notifications: irc: "irc.freenode.org#railsadmin" script: spec/ci.sh
Allow failure in CI of Mongoid 3.0.0 because things change too rapidly
Allow failure in CI of Mongoid 3.0.0 because things change too rapidly
YAML
mit
rubiety/rails_admin,GeorgeZhukov/rails_admin,aravindgd/rails_admin,CPInc/rails_admin,aquajach/rails_admin,meghaarora42/rails_admin,sogilis/rails_admin,dmilisic/rails_admin,zambot/rails_admin,jcoleman/rails_admin,vincentwoo/rails_admin,corbt/rails_admin,GeorgeZhukov/rails_admin,igorkasyanchuk/rails_admin,dmilisic/rails_admin,aravindgd/rails_admin,soupmatt/rails_admin,zambot/rails_admin,DonCuponesInternet/rails_admin,aliada-mx/rails_admin,ombulabs/rails_admin,rayzhng/rails_admin,sortlist/rails_admin,kimquy/rails_admin_062,johanneskrtek/rails_admin,josedonizetti/rails_admin,rayzhng/rails_admin,allori/rails_admin,kimquy/rails_admin_062,Vinagility/rails_admin_old,swipesense/rails_admin,arturbrasil/rails_admin,jcoleman/rails_admin,msobocin/rails_admin,markprzepiora-forks/rails_admin,igorkasyanchuk/rails_admin,ipmobiletech/rails_admin,msobocin/rails_admin,sideci-sample/sideci-sample-rails_admin,markprzepiora-forks/rails_admin,dwbutler/rails_admin,impurist/rails_admin,dmitrypol/rails_admin,impurist/rails_admin,yakovenkodenis/rails_admin,LevoLeague/rails_admin,dalpo/rails_admin,Furi/rails_admin,jasnow/rails_admin,aravindgd/rails_admin,sferik/rails_admin,coorasse/rails_admin,soupmatt/rails_admin,jasnow/rails_admin,dalpo/rails_admin,CPInc/rails_admin,zapnap/rails_admin,JailtonSampaio/annotations_clone_rails_admin,wkirschbaum/rails_admin,olegantonyan/rails_admin,sortlist/rails_admin,soupmatt/rails_admin,quarkstudio/rails_admin,engel/rails_admin,Furi/rails_admin,jemcode/rails_admin,msobocin/rails_admin,CodingZeal/rails_admin,junglefunkyman/rails_admin,patleb/admineer,CodingZeal/rails_admin,amankatoch/rails_admin,junglefunkyman/rails_admin,hut8/rails_admin,patleb/admineer,cob3/rails_admin,bf4/rails_admin,Balaraju/rails_admin,diowa/rails_admin,Vinagility/rails_admin_old,laurelandwolf/rails_admin,JailtonSampaio/annotations_clone_rails_admin,react2media/rails_admin,lokalebasen/rails_admin,sumitag/rails_admin,LevoLeague/rails_admin,voyera/rails_admin,PhilipCastiglione/rails_admin,aliada-mx/rails_admin,meghaarora42/rails_admin,react2media/rails_admin,onursarikaya/rails_admin,zapnap/rails_admin,VoroninNick/rails_admin_sigma,vincentwoo/rails_admin,onursarikaya/rails_admin,johanneskrtek/rails_admin,quarkstudio/rails_admin,olegantonyan/rails_admin,sferik/rails_admin,amankatoch/rails_admin,iangels/rails_admin,rubiety/rails_admin,VoroninNick/rails_admin_sigma,iangels/rails_admin,dmitrypol/rails_admin,ipmobiletech/rails_admin,Balaraju/rails_admin,inaka/rails_admin,Exygy/rails_admin,ernestoe/rails_admin,goodinc/rails_admin_for_mag,patleb/admineer,bf4/rails_admin,aquajach/rails_admin,dwbutler/rails_admin,ernestoe/rails_admin,lvexiao/magic_admin,Vinagility/rails_admin_old,dmilisic/rails_admin,DonCuponesInternet/rails_admin,allori/rails_admin,sideci-sample/sideci-sample-rails_admin,DonCuponesInternet/rails_admin,cheerfulstoic/rails_admin,JailtonSampaio/annotations_clone_rails_admin,vanbumi/rails_admin,sortlist/rails_admin,inaka/rails_admin,WindStill/rails_admin,meghaarora42/rails_admin,kimquy/rails_admin_062,engel/rails_admin,dalpo/rails_admin,diowa/rails_admin,GeorgeZhukov/rails_admin,react2media/rails_admin,glooko/rails_admin,hut8/rails_admin,josedonizetti/rails_admin,allori/rails_admin,cob3/rails_admin,vincentwoo/rails_admin,zapnap/rails_admin,cheerfulstoic/rails_admin,arturbrasil/rails_admin,rubiety/rails_admin,Exygy/rails_admin,hut8/rails_admin,crashlytics/rails_admin,laurelandwolf/rails_admin,sferik/rails_admin,corbt/rails_admin,dmitrypol/rails_admin,LevoLeague/rails_admin,aquajach/rails_admin,onursarikaya/rails_admin,ombulabs/rails_admin,dinjas/rails_admin,Balaraju/rails_admin,glooko/rails_admin,PhilipCastiglione/rails_admin,laurelandwolf/rails_admin,goodinc/rails_admin_for_mag,widgetworks/rails_admin,widgetworks/rails_admin,widgetworks/rails_admin,WindStill/rails_admin,goodinc/rails_admin_for_mag,diowa/rails_admin,junglefunkyman/rails_admin,sumitag/rails_admin,cheerfulstoic/rails_admin,ipmobiletech/rails_admin,yakovenkodenis/rails_admin,wkirschbaum/rails_admin,jemcode/rails_admin,jasnow/rails_admin,josedonizetti/rails_admin,jemcode/rails_admin,ombulabs/rails_admin,dinjas/rails_admin,Exygy/rails_admin,wkirschbaum/rails_admin,Versanity/ruby,bf4/rails_admin,Furi/rails_admin,vanbumi/rails_admin,markprzepiora-forks/rails_admin,swipesense/rails_admin,ernestoe/rails_admin,lokalebasen/rails_admin,zambot/rails_admin,arturbrasil/rails_admin,olegantonyan/rails_admin,VoroninNick/rails_admin_sigma,sogilis/rails_admin,voyera/rails_admin,CodingZeal/rails_admin,Versanity/ruby,yakovenkodenis/rails_admin,engel/rails_admin,crashlytics/rails_admin,viewthespace/rails_admin,dinjas/rails_admin,quarkstudio/rails_admin,lokalebasen/rails_admin,igorkasyanchuk/rails_admin,dinjas/rails_admin,viewthespace/rails_admin,rayzhng/rails_admin,corbt/rails_admin,glooko/rails_admin,lvexiao/magic_admin,PhilipCastiglione/rails_admin,amankatoch/rails_admin,Versanity/ruby,cob3/rails_admin,coorasse/rails_admin,sogilis/rails_admin,CPInc/rails_admin,viewthespace/rails_admin,jcoleman/rails_admin,dwbutler/rails_admin,lvexiao/magic_admin,voyera/rails_admin,aliada-mx/rails_admin,johanneskrtek/rails_admin,coorasse/rails_admin,iangels/rails_admin,vanbumi/rails_admin,impurist/rails_admin
1287b04754284cbea42403dce52ca68ca268d7a5
.travis.yml
.travis.yml
sudo: false dist: trustry language: python matrix: include: - python: 3.5 env: TOXENV=py35 - python: 3.6 env: TOXENV=py36,flake8,mypy,pydocstyle,docs,codecov addons: chrome: stable before_script: - wget https://chromedriver.storage.googleapis.com/2.35/chromedriver_linux64.zip - unzip chromedriver_linux64.zip -d ${TRAVIS_BUILD_DIR} install: - pip install tox script: - tox
sudo: false dist: trustry language: python matrix: include: - python: 3.5 env: TOXENV=py35 - python: 3.6 env: TOXENV=py36,flake8,mypy,pydocstyle,docs,codecov addons: chrome: stable before_script: - wget https://chromedriver.storage.googleapis.com/2.37/chromedriver_linux64.zip - unzip chromedriver_linux64.zip -d ${TRAVIS_BUILD_DIR} install: - pip install tox script: - tox
Update chromedriver to use in Travis
Update chromedriver to use in Travis
YAML
mit
miyakogi/wdom,miyakogi/wdom,miyakogi/wdom
85353c58440bd4ba1a4e156a5d1adff6314445da
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 before_script: composer install --dev script: phpunit
language: php php: - 5.3 - 5.4 - 5.5 before_script: composer install --dev script: phpunit
Test in PHP 5.5 too
Test in PHP 5.5 too
YAML
mit
starJammer/oauth2-server,benito103e/oauth2-server,fabik/oauth2-server,steveathon/oauth2-server,lookyman/oauth2-server,jorycn/oauth2-server,juliangut/oauth2-server,mijndomein/deprecated-league-oauth2-server,marcteyssier/oauth2-server-1,josegonzalez/oauth2-server,nordsoftware/oauth2-server,Symplicity/oauth2-server,mromarreyes/oauth2-server,cesutherland/oauth2-server,gencer/oauth2-server,neconest/oauth2-server,marcaube/oauth2-server,ionux/oauth2-server,0x0all/oauth2-server,thephpleague/oauth2-server,jahanzaibbahadur/oauth2-server,michaelhogg/oauth2-server
e17ba2468877632ef70a276399342f2bd358d8ef
.travis.yml
.travis.yml
language: c env: global: - LUAROCKS=2.2.0beta1 matrix: - LUA=lua5.1 - LUA=lua5.2 - LUA=luajit branches: only: - master before_install: - bash .travis/setup_lua.sh - sudo luarocks install luafilesystem - if [ $LUA = "luajit" ]; then sudo luarocks install https://raw.github.com/justincormack/ljsyscall/master/rockspec/ljsyscall-scm-1.rockspec; fi install: - sudo luarocks make rockspecs/lua-path-scm-0.rockspec - sudo luarocks install luacov-coveralls --server=http://rocks.moonscript.org/dev - sudo luarocks install https://raw.github.com/moteus/lunit/moteus-skip/rockspecs/lunitx-scm.mot.skip-0.rockspec script: - cd test - lunit.sh run.lua - lua -lluacov test_lfs.lua after_success: - luacov-coveralls notifications: email: on_success: change on_failure: always
language: c env: global: - LUAROCKS=2.2.0beta1 matrix: - LUA=lua5.1 - LUA=lua5.2 - LUA=luajit branches: only: - master before_install: - bash .travis/setup_lua.sh - sudo luarocks install luafilesystem - if [ $LUA = "luajit" ]; then sudo luarocks install ljsyscall; fi install: - sudo luarocks make rockspecs/lua-path-scm-0.rockspec - sudo luarocks install luacov-coveralls --server=http://rocks.moonscript.org/dev - sudo luarocks install https://raw.github.com/moteus/lunit/moteus-skip/rockspecs/lunitx-scm.mot.skip-0.rockspec script: - cd test - lunit.sh run.lua - lua -lluacov test_lfs.lua after_success: - luacov-coveralls notifications: email: on_success: change on_failure: always
Use stable release of ljsyscall on Travis
Use stable release of ljsyscall on Travis
YAML
mit
kidaa/lua-path,mpeterv/lua-path
b49963759451be8891d2a2b467d5c8201b743f31
.travis.yml
.travis.yml
language: go go: - 1.8.x before_install: - go get -u github.com/kardianos/govendor && govendor install script: - govendor test -v ./... -race -coverprofile=coverage.txt -covermode=atomic after_success: - bash <(curl -s https://codecov.io/bash)
language: go go: - 1.8.x before_install: - go get -u github.com/kardianos/govendor && govendor install script: - govendor test -v ./... -coverprofile=coverage.txt -covermode=atomic after_success: - bash <(curl -s https://codecov.io/bash)
Remove race flag in script
Remove race flag in script Removed the race flag in the script to run the tests
YAML
mit
gsingharoy/onecache
049de5d6310c2eb466c266c2fca1c23f8230f7b8
.travis.yml
.travis.yml
language: csharp sudo: required dist: trusty addons: apt: packages: - gettext - libcurl4-openssl-dev - libicu-dev - libssl-dev - libunwind8 - zlib1g env: global: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - DOTNET_CLI_TELEMETRY_OPTOUT: 1 mono: none os: - linux - osx branches: only: - master - release - dev - /^(.*\/)?ci-.*$/ before_install: - if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi script: - ./build.sh
language: csharp sudo: false dist: trusty env: global: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - DOTNET_CLI_TELEMETRY_OPTOUT: 1 mono: none os: - linux - osx osx_image: xcode8.2 branches: only: - master - release - dev - /^(.*\/)?ci-.*$/ before_install: - if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi script: - ./build.sh
Update Travis to macOS Sierra
Update Travis to macOS Sierra [skip appveyor]
YAML
apache-2.0
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
0f5b737b95eff35803c4cc6bbdfe760e72562bc1
.travis.yml
.travis.yml
rvm: - 1.9.3 - 2.0.0 - 2.1.1 script: - bundle exec rspec - bundle exec rubocop matrix: allow_failures: - rvm: 2.1.0
rvm: - 1.9.3 - 2.0.0 - 2.1.0 - 2.1.1 script: - bundle exec rspec - bundle exec rubocop matrix: allow_failures: - rvm: 2.1.0
Add Ruby 2.1.0 to Travis build matrix
Add Ruby 2.1.0 to Travis build matrix Change-Id: I89c3a5d825e42195c901e15c6b1c150df4689601 Reviewed-on: http://gerrit.causes.com/38458 Reviewed-by: Shane da Silva <6f6e68d1df92f30cb4b3ce35260ddf94a402f33d@causes.com> Tested-by: jenkins <d95b56ce41a2e1ac4cecdd398defd7414407cc08@causes.com>
YAML
mit
artemartemov/scss-lint-hdm
24c2d8e644a075377abeb959088bb2794a6d64ce
.travis.yml
.travis.yml
language: rust dist: trusty sudo: false script: - cargo update - cargo build --no-default-features --features=$FEATURE - cargo test --no-default-features --features=$FEATURE addons: apt: packages: - make - cmake - gcc - gfortran - binutils-dev # for kcov (following packages) - libcurl4-openssl-dev - libelf-dev - libdw-dev - libiberty-dev env: global: - RUST_BACKTRACE=1 jobs: include: - env: FEATURE=source - env: FEATURE=system addons: apt: packages: - make - cmake - gcc - gfortran - libfftw3-dev - binutils-dev # for kcov (following packages) - libcurl4-openssl-dev - libelf-dev - libdw-dev - libiberty-dev - env: FEATURE=intel-mkl cache: cargo: [] directory: - kcov-master - kcov-build before_script: - wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz - tar xzf master.tar.gz - cd kcov-master - mkdir build - cd build - cmake .. - make - make install DESTDIR=${TRAVIS_BUILD_DIR}/kcov-build after_success: ./coverage.sh
language: rust dist: trusty sudo: false script: - cargo update - cargo build --no-default-features --features=$FEATURE - cargo test --no-default-features --features=$FEATURE - ./coverage.sh addons: apt: packages: - make - cmake - gcc - gfortran - binutils-dev # for kcov (following packages) - libcurl4-openssl-dev - libelf-dev - libdw-dev - libiberty-dev env: global: - RUST_BACKTRACE=1 jobs: include: - env: FEATURE=source - env: FEATURE=system addons: apt: packages: - make - cmake - gcc - gfortran - libfftw3-dev - binutils-dev # for kcov (following packages) - libcurl4-openssl-dev - libelf-dev - libdw-dev - libiberty-dev - env: FEATURE=intel-mkl cache: cargo: [] directory: - kcov-master - kcov-build before_script: - wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz - tar xzf master.tar.gz - cd kcov-master - mkdir build - cd build - cmake .. - make - make install DESTDIR=${TRAVIS_BUILD_DIR}/kcov-build
Use coverage.sh as script (not as after_success)
Use coverage.sh as script (not as after_success)
YAML
mit
termoshtt/rust-fftw3
64dff682650f4f4ccd946cb45bea6ead060c1d81
.travis.yml
.travis.yml
language: c compiler: - clang - gcc install: - sudo apt-get update -qq - sudo apt-get install -y -qq curl script: - cmake . - make - make test
language: c compiler: - clang - gcc install: - sudo apt-get update -qq - sudo apt-get install -y -qq curl - | if [[ -z "$(ls -A ${DEPS_DIR}/cmake/bin)" ]]; then CMAKE_URL="https://cmake.org/files/v3.6/cmake-3.6.2-Linux-x86_64.tar.gz" mkdir -p cmake && travis_retry wget --no-check-certificate --quiet -O - "${CMAKE_URL}" | tar --strip-components=1 -xz -C cmake fi export PATH="${DEPS_DIR}/cmake/bin:${PATH}" script: - cmake . - make - make test
Use a modern version of cmake
Use a modern version of cmake
YAML
bsd-3-clause
tbartelmess/libvault,tbartelmess/libvault,tbartelmess/libvault
37b8dda31f189d8a1aca37a80a5639ca7985e069
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 after_success: - bash <(curl -s https://codecov.io/bash) deploy: provider: releases api_key: "0871e0112c8b576cf660895775e82366f61b52dc" file: "build/distributions/JTerm.zip" skip_cleanup: true on: tags: true
language: java jdk: - oraclejdk8 after_success: - bash <(curl -s https://codecov.io/bash)
Revert "deploy to github releases on tags"
Revert "deploy to github releases on tags" This reverts commit 2740f9e33ce0175f133215e676021888bbb7235c.
YAML
mit
Deletescape-Media/JTerm
8df363e803eab5a46ca6f7e522dcef59c84ea16f
.travis.yml
.travis.yml
--- language: node_js node_js: - '4' - node sudo: false cache: directories: - node_modules script: - npm test - npm run lint
--- language: node_js node_js: - '4' - node sudo: false script: - npm test - npm run lint
Configure Travis CI not to cache node_modules
Configure Travis CI not to cache node_modules
YAML
apache-2.0
commonform/commonform-markup-parse
7a27d04415d519ff73d5cf20a9360c62f9bce23b
.travis.yml
.travis.yml
sudo: false language: python python: - 3.5 - 3.6 install: - pip install -r contrib/requirements/requirements-travis.txt cache: - pip: true - directories: - /tmp/electrum-build script: - tox after_success: - if [ "$TRAVIS_BRANCH" = "master" ]; then pip install pycurl requests && contrib/make_locale; fi - coveralls jobs: include: - stage: binary builds sudo: true python: 3.5 install: - sudo dpkg --add-architecture i386 - wget -nc https://dl.winehq.org/wine-builds/Release.key - sudo apt-key add Release.key - sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/ - sudo apt-get update -qq - sudo apt-get install -qq winehq-stable dirmngr gnupg2 p7zip-full before_script: ls -lah /tmp/electrum-build script: ./contrib/build-wine/build.sh after_success: true - os: osx language: c python: false install: true script: ./contrib/build-osx/make_osx after_script: ls -lah dist && md5 dist/* after_success: true
sudo: false language: python python: - 3.5 - 3.6 install: - pip install -r contrib/requirements/requirements-travis.txt cache: - pip: true - directories: - /tmp/electrum-build script: - tox after_success: - if [ "$TRAVIS_BRANCH" = "master" ]; then pip install pycurl requests && contrib/make_locale; fi - coveralls jobs: include: - stage: binary builds sudo: true env: - TARGET_OS=Windows python: 3.6 install: - sudo dpkg --add-architecture i386 - wget -nc https://dl.winehq.org/wine-builds/Release.key - sudo apt-key add Release.key - sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/ - sudo apt-get update -qq - sudo apt-get install -qq winehq-stable dirmngr gnupg2 p7zip-full before_script: ls -lah /tmp/electrum-build script: ./contrib/build-wine/build.sh after_success: true - os: osx language: c env: - TARGET_OS=macOS python: false install: - git fetch origin script: ./contrib/build-osx/make_osx after_script: ls -lah dist && md5 dist/* after_success: true
Fix 'No names found, cannot describe anything.' in OS X build
Travis: Fix 'No names found, cannot describe anything.' in OS X build
YAML
mit
vialectrum/vialectrum,neocogent/electrum,wakiyamap/electrum-mona,pooler/electrum-ltc,neocogent/electrum,wakiyamap/electrum-mona,fujicoin/electrum-fjc,wakiyamap/electrum-mona,wakiyamap/electrum-mona,kyuupichan/electrum,vialectrum/vialectrum,fujicoin/electrum-fjc,vialectrum/vialectrum,pooler/electrum-ltc,kyuupichan/electrum,asfin/electrum,pooler/electrum-ltc,spesmilo/electrum,cryptapus/electrum,pooler/electrum-ltc,spesmilo/electrum,kyuupichan/electrum,spesmilo/electrum,cryptapus/electrum,spesmilo/electrum,fujicoin/electrum-fjc,neocogent/electrum,asfin/electrum,cryptapus/electrum,asfin/electrum
b061729afc07e77a8aa4fad0a2fd840958f1942a
.travis.yml
.travis.yml
language: go sudo: false go: - 1.2 - 1.3 - 1.4 - 1.5 - 1.6 - 1.7 - tip before_install: - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover script: - $HOME/gopath/bin/goveralls -service=travis-ci notifications: email: false
language: go sudo: false go: - 1.2 - 1.3 - 1.4 - 1.5 - 1.6 - 1.7 - tip matrix: allow_failures: - go: tip fast_finish: true before_install: - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover script: - $HOME/gopath/bin/goveralls -service=travis-ci notifications: email: false
Make Go tip a fast-finish allowed feature for CI.
Make Go tip a fast-finish allowed feature for CI.
YAML
mit
DramaFever/go.uuid,nanjj/uuid,gofrs/uuid,eurie-inc/go.uuid,satori/go.uuid
2ae3264d338d03bbab9e74f5060674a716c5e75d
.travis.yml
.travis.yml
language: ruby before_install: - gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true - gem install bundler -v '< 2' services: - mongodb rvm: - "2.4.6" - "2.5.5" - "2.6.3" gemfile: - gemfiles/rails4.2.gemfile - gemfiles/rails5.2.gemfile - gemfiles/rails6.0.gemfile env: - BACKEND=mongoid - BACKEND=active_record
language: ruby before_install: - gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true - gem install bundler -v '< 2' services: - mongodb rvm: - "2.4.6" - "2.5.5" - "2.6.3" gemfile: - gemfiles/rails4.2.gemfile - gemfiles/rails5.2.gemfile - gemfiles/rails6.0.gemfile env: - BACKEND=mongoid - BACKEND=active_record jobs: exclude: - rvm: "2.4.6" gemfile: gemfiles/rails6.0.gemfile
Exclude Rails 6 + Ruby 2.4
Exclude Rails 6 + Ruby 2.4
YAML
mit
adamniedzielski/tiddle
2d3e5acff8772b0e8f883205167f6f5ea9796f98
.travis.yml
.travis.yml
language: ruby matrix: include: - os: osx osx_image: xcode8.2 before_install: - brew update - brew outdated carthage || brew upgrade carthage swiftlint - gem install fastlane after_success: - bash <(curl -s https://codecov.io/bash) -t $CODECOV_TOKEN branches: only: - release - dev script: - fastlane beta
language: ruby matrix: include: - os: osx osx_image: xcode8.3 after_success: - bash <(curl -s https://codecov.io/bash) -t $CODECOV_TOKEN branches: only: - release - dev script: - fastlane beta
Update Xcode version to 8.3, move to Swift 3.1
CI: Update Xcode version to 8.3, move to Swift 3.1
YAML
mit
3DprintFIT/octoprint-ios-client,3DprintFIT/octoprint-ios-client,3DprintFIT/octoprint-ios-client,3DprintFIT/octoprint-ios-client,3DprintFIT/octoprint-ios-client
0d8ac8b1e19c8cec2e99762511f2a1c2ce4946a0
.travis.yml
.travis.yml
language: node_js node_js: - '8' - '6' cache: directories: - node_modules script: - 'yarn test:coverage' - 'yarn lint' after_success: 'yarn test:report'
language: node_js node_js: - '8' cache: directories: - node_modules script: - 'yarn test:coverage' - 'yarn lint' after_success: 'yarn test:report'
Remove node 6 from running in CI
Remove node 6 from running in CI
YAML
mit
mattphillips/jest-extended
84e0687df60bf9f03d00704653ca94c8c2bd8a4a
.travis.yml
.travis.yml
dist: trusty sudo: false language: c matrix: include: - env: CABALVER="1.24" GHCVER="8.0.2" compiler: ": #GHC 8.0.2" addons: {apt: {packages: [cabal-install-1.24,ghc-8.0.2], sources: [hvr-ghc]}} - os: osx env: CABALVER="1.24" GHCVER="8.0.2" compiler: ": #GHC 8.0.2" before_install: - if [[ $TRAVIS_OS_NAME == 'linux' ]]; then export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$HOME/.cabal/b in:$PATH; fi - if [[ $TRAVIS_OS_NAME == 'osx' ]]; then brew install ghc cabal-install export PATH=$HOME/.cabal/bin:$PATH; fi - env install: - cabal update - cabal sandbox init - cabal install Cabal - make script: - make test notifications: email: false
dist: trusty sudo: false language: c matrix: include: - env: CABALVER="1.24" GHCVER="8.0.2" compiler: ": #GHC 8.0.2" addons: {apt: {packages: [cabal-install-1.24,ghc-8.0.2], sources: [hvr-ghc]}} - os: osx env: CABALVER="1.24" GHCVER="8.0.2" compiler: ": #GHC 8.0.2" before_install: - if [[ $TRAVIS_OS_NAME == 'linux' ]]; then export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$HOME/.cabal/bin:$PATH; fi - if [[ $TRAVIS_OS_NAME == 'osx' ]]; then brew install ghc cabal-install export PATH=$HOME/.cabal/bin:$PATH; fi - env install: - cabal update - cabal sandbox init - cabal install Cabal - make script: - make test notifications: email: false
Fix typo in Travis config
Fix typo in Travis config
YAML
bsd-3-clause
GaloisInc/cryptol,GaloisInc/cryptol,GaloisInc/cryptol
824bde3e5383de3521a4a324b5e24df83d81be8a
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '4' - '6' - '8' branches: only: - master - travis-ci install: - npm install -g npm - npm install --no-package-lock --no-save - npm install -g istanbul coveralls
sudo: false language: node_js node_js: - '4' - '6' - '8' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g istanbul coveralls
Use the NPM on tap.
Use the NPM on tap.
YAML
mit
bigeasy/turnstile
aeb4f8e31f466701cba3ada743e2e176f6b9431a
.travis.yml
.travis.yml
language: go sudo: false matrix: include: - go: 1.4 - go: 1.5 - go: 1.6 install: - go get golang.org/x/tools/cmd/vet script: - go get -t -v ./... - diff -u <(echo -n) <(gofmt -d .) - go tool vet . - go test -v -race ./...
language: go sudo: false matrix: include: - go: 1.4 - go: 1.5 - go: 1.6 - go: tip allow_failures: - go: tip script: - go get -t -v ./... - diff -u <(echo -n) <(gofmt -d .) - go vet $(go list ./... | grep -v /vendor/) - go test -v -race ./...
Allow CI failures on tip.
[ci] Allow CI failures on tip.
YAML
bsd-2-clause
gorilla/handlers
2862dee3d259245e19318a5d4475d3b05e657da8
.travis.yml
.travis.yml
language: php php: - 5.6 - 7.0 - 7.1 - 7.2 - nightly sudo: required dist: trusty group: edge env: - NODE_VERSION=8.x cache: yarn: true directories: - node_modules - $HOME/.composer/cache/files matrix: allow_failures: - php: hhvm before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.27.5 - export PATH="$HOME/.yarn/bin:$PATH" - composer self-update - npm install grunt-cli yarn -g install: - travis_retry composer install --no-interaction --prefer-source - npm install - grunt build script: ./bin/phpunit --configuration phpunit.xml
language: php php: - 5.6 - 7.0 - 7.1 - 7.2 - nightly node_js: - '8' sudo: required dist: trusty group: edge env: - NODE_VERSION=8.x cache: yarn: true directories: - node_modules - $HOME/.composer/cache/files matrix: allow_failures: - php: hhvm before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.27.5 - export PATH="$HOME/.yarn/bin:$PATH" - composer self-update - npm install grunt-cli yarn -g install: - travis_retry composer install --no-interaction --prefer-source - npm install - grunt build script: ./bin/phpunit --configuration phpunit.xml
Use Node v8 in Travis
Use Node v8 in Travis
YAML
mpl-2.0
thorsten/phpMyFAQ,thorsten/phpMyFAQ,thorsten/phpMyFAQ,thorsten/phpMyFAQ
184ceb8daada5d39b77d056212127acb830db236
.travis.yml
.travis.yml
language: python python: "3.5" # command to install dependencies install: pip install 'Nikola[extras]' # command to run tests script: nikola build after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && virtualenv -p python2.7 /tmp/venv && . /tmp/venv/bin/activate && pip install ghp-import && ghp-import -n output && git push -qf https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages >/dev/null 2>&1
language: python python: "3.5" # command to install dependencies install: pip install 'Nikola[extras]' # command to run tests script: | nikola build && if [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ]; then virtualenv -p python2.7 /tmp/venv && . /tmp/venv/bin/activate && pip install ghp-import && ghp-import -n output && git push -qf https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages >/dev/null 2>&1 fi
Make build fail if upload fails
Make build fail if upload fails
YAML
mit
VickySteeves/personal-website,VickySteeves/personal-website,VickySteeves/personal-website
25abef89235b7f62dc057502c48d0ea899f8a1da
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 - openjdk11 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/
language: java jdk: - openjdk8 - openjdk11 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/
Use just OpenJDK in Travis CI
Use just OpenJDK in Travis CI Replace OracleJDK with OpenJDK, the former is no longer included by default in newer dists (Xenial). Signed-off-by: thc202 <43af82ef30812a20fbcf38b99a6f72cdd3a89ac1@gmail.com>
YAML
apache-2.0
zaproxy/zap-api-java
cdc147ba9b2e0a736e60807fb571833d62402160
.travis.yml
.travis.yml
language: haskell ghc: - 7.8 - 7.6 before_script: - curl -sS -o roundup https://raw.githubusercontent.com/bmizerany/roundup/f526c39ee293adcb4d41f353f2cfd71054db3242/roundup.sh - chmod +x roundup script: cabal configure && cabal build && make test -e ROUNDUP=./roundup
language: haskell ghc: - 7.8 - 7.6 before_script: - curl -sS -o roundup https://raw.githubusercontent.com/bmizerany/roundup/v0.0.5/roundup.sh script: cabal configure && cabal build && make test -e ROUNDUP='/bin/bash roundup'
Fix "ERR: bad trap" on CI
Fix "ERR: bad trap" on CI
YAML
mit
wildlyinaccurate/lishp
ac45868edd96d19e0e651a74d56135e748e8a1e3
.travis.yml
.travis.yml
language: ruby rvm: - 2.2 - 2.3 - 2.4 - 2.5 script: gem install bundler && bundle && bundle exec rake spec gemfile: - gemfiles/rails4.gemfile - gemfiles/rails5.gemfile notifications: email: - support@travellink.com.au sudo: false cache: bundler
language: ruby rvm: - 2.2 - 2.3 - 2.4 - 2.5 script: bundle && bundle exec rake spec gemfile: - gemfiles/rails4.gemfile - gemfiles/rails5.gemfile notifications: email: - support@travellink.com.au sudo: false cache: bundler
Revert "attempt to fix CI checks"
Revert "attempt to fix CI checks" This reverts commit 2f54c765592bfcad0e875199172fe071dc1e1a60.
YAML
mit
sealink/quicktravel_client