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
597df25bdffec96a40bf4966f56ddffdfb509027
.travis.yml
.travis.yml
language: generic os: - linux - osx dist: bionic env: global: - APM_TEST_PACKAGES="" - ATOM_LINT_WITH_BUNDLED_NODE="true" matrix: - ATOM_CHANNEL=stable - ATOM_CHANNEL=beta addons: apt: packages: - libgconf-2-4 script: - curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh - chmod u+x build-package.sh - ./build-package.sh notifications: email: on_success: never on_failure: change branches: only: - master git: depth: 10
language: generic os: - linux - osx dist: bionic env: global: - APM_TEST_PACKAGES="" - ATOM_LINT_WITH_BUNDLED_NODE="true" jobs: - ATOM_CHANNEL=stable - ATOM_CHANNEL=beta addons: apt: packages: - libgconf-2-4 script: - curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh - chmod u+x build-package.sh - ./build-package.sh notifications: email: on_success: never on_failure: change branches: only: - master git: depth: 10
Replace matrix with jobs in the Travis CI config file
Replace matrix with jobs in the Travis CI config file
YAML
mit
matthesjh/autocomplete-curry
2b3267e6aa27819ed87f14e1a411ffe0fdf4bd39
.travis.yml
.travis.yml
language: python python: - "3.4" install: - pip install -r requirements/test.txt env: matrix: - TARGET=test - TARGET=lint script: make $TARGET after_success: - bash <(curl -s https://codecov.io/bash)
language: python sudo: required python: - "3.4" install: - pip install -r requirements/test.txt - sudo apt-get install poppler-utils env: matrix: - TARGET=test - TARGET=lint script: make $TARGET after_success: - bash <(curl -s https://codecov.io/bash)
Install `pdftotext` for Travis CI
Install `pdftotext` for Travis CI
YAML
mit
uppsaladatavetare/foobar-api,uppsaladatavetare/foobar-api,uppsaladatavetare/foobar-api
da96c21661ef7604c4a78c29d9fc97c316f8d234
.travis.yml
.travis.yml
language: go go: - "1.10" - master matrix: allow_failures: - go: master fast_finish: true branches: only: - develop - master install: - go get github.com/urfave/cli - go get github.com/naoina/toml - go get github.com/keltia/ripe-atlas
language: go go: - "1.10.x" - master matrix: allow_failures: - go: master fast_finish: true branches: only: - develop - master install: - go get github.com/urfave/cli - go get github.com/naoina/toml - go get github.com/keltia/ripe-atlas
Use the .x notation now.
Use the .x notation now.
YAML
mit
keltia/ripe-atlas
1bcdd881a1d160b689930560e316b213cb1a6b57
.travis.yml
.travis.yml
language: php addons: apt: packages: - ant php: - 7.2 - 7.3 - 7.4 matrix: allow_failures: - php: 7.3 - php: 7.4 cache: directories: - ~/.composer/cache/files before_script: - phpenv config-add travis.php.ini - composer self-update --1 - composer install --no-interaction - curl -o- -L https://yarnpkg.com/install.sh | bash - export PATH="$HOME/.yarn/bin:$PATH" - yarn install - yarn encore production after_failure: - cat /home/travis/build/SURFnet/sp-dashboard/var/logs/test.log script: - ant branches: only: - develop - master - /^feature\/(.*)$/ - /^bugfix\/(.*)$/ - /^release\/(.*)$/
language: php addons: apt: packages: - ant php: - 7.2 - 7.3 - 7.4 matrix: allow_failures: - php: 7.3 - php: 7.4 cache: directories: - ~/.composer/cache/files before_install: - sudo rm -rf ~/.nvm - curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - - sudo apt-get install -y nodejs before_script: - phpenv config-add travis.php.ini - composer self-update --1 - composer install --no-interaction - curl -o- -L https://yarnpkg.com/install.sh | bash - export PATH="$HOME/.yarn/bin:$PATH" - nvm install --lts - yarn install - yarn encore production after_failure: - cat /home/travis/build/SURFnet/sp-dashboard/var/logs/test.log script: - ant branches: only: - develop - master - /^feature\/(.*)$/ - /^bugfix\/(.*)$/ - /^release\/(.*)$/
Update nodejs version to lts on Travis
Update nodejs version to lts on Travis
YAML
apache-2.0
SURFnet/sp-dashboard,SURFnet/sp-dashboard,SURFnet/sp-dashboard,SURFnet/sp-dashboard,SURFnet/sp-dashboard
13c22dbc99e22627091bf13a144d64fa6b721e57
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" env: - DJANGO_VERSION=1.8.17 - DJANGO_VERSION=1.9.12 - DJANGO_VERSION=1.10.0 - DJANGO_VERSION=1.10.1 - DJANGO_VERSION=1.10.2 - DJANGO_VERSION=1.10.3 - DJANGO_VERSION=1.10.4 - DJANGO_VERSION=1.10.5 branches: except: - media install: - pip install -q django==$DJANGO_VERSION - pip install -q -e . - pip install -q selenium - pip install -q coveralls script: - coverage run --source publications_bootstrap --omit publications_bootstrap/six.py publications_bootstrap/tests/__main__.py after_success: - coveralls
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" env: - DJANGO_VERSION=1.8.17 - DJANGO_VERSION=1.9.12 - DJANGO_VERSION=1.10.0 - DJANGO_VERSION=1.10.1 - DJANGO_VERSION=1.10.2 - DJANGO_VERSION=1.10.3 - DJANGO_VERSION=1.10.4 - DJANGO_VERSION=1.10.5 # https://docs.djangoproject.com/en/1.9/faq/install/#what-python-version-can-i-use-with-django matrix: exclude: - env: DJANGO_VERSION=1.9.12 python: 3.3 - env: DJANGO_VERSION=1.10.0 python: 3.3 - env: DJANGO_VERSION=1.10.1 python: 3.3 - env: DJANGO_VERSION=1.10.2 python: 3.3 - env: DJANGO_VERSION=1.10.3 python: 3.3 - env: DJANGO_VERSION=1.10.4 python: 3.3 - env: DJANGO_VERSION=1.10.5 python: 3.3 branches: except: - media install: - pip install -q django==$DJANGO_VERSION - pip install -q -e . - pip install -q selenium - pip install -q coveralls script: - coverage run --source publications_bootstrap --omit publications_bootstrap/six.py publications_bootstrap/tests/__main__.py after_success: - coveralls
Exclude incompatible python and django versions from CI
Exclude incompatible python and django versions from CI
YAML
mit
mbourqui/django-publications-bootstrap,mbourqui/django-publications-bootstrap,mbourqui/django-publications-bootstrap
0e219684c41f3792db2ffc497e0ab0a5c50e71e5
.travis.yml
.travis.yml
sudo: false language: node_js script: npm run test:travis node_js: - 'lts/*'
sudo: required addons: chrome: stable language: node_js node_js: - '10' cache: directories: - ~/.npm - node_modules install: - npm install script: npm run test:travis
Update Travis config for chrome
Update Travis config for chrome
YAML
mit
jhwohlgemuth/voxelcss,jhwohlgemuth/voxelcss
dd2d94881f4749f7c49c5ad4b81c85419fbe63b4
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - ree - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.1 - ree - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode
Add ruby 2.1.1 to Travis
Add ruby 2.1.1 to Travis
YAML
mit
juno/rack-heroku_env
0213730ef001c2d036390cbb2c53fa538b548114
.travis.yml
.travis.yml
language: ruby rvm: - "2.0.0" - "1.9.3" before_install: - gem update --system - gem --version script: bundle exec rake test notifications: webhooks: urls: - https://webhooks.gitter.im/e/f8a813b3063636aa18f1 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
language: ruby rvm: - "2.1.0" - "2.0.0" - "1.9.3" before_install: - gem update --system - gem --version script: bundle exec rake test notifications: webhooks: urls: - https://webhooks.gitter.im/e/f8a813b3063636aa18f1 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
Add Travis testing with Ruby 2.1.0
Add Travis testing with Ruby 2.1.0
YAML
bsd-3-clause
WebBlocks/WebBlocks,ebollens/WebBlocks
fac9819fcf8283f3fce5324c0ee63ae21865e649
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 gemfile: - gemfiles/rails3.gemfile - gemfiles/rails4_0.gemfile - gemfiles/rails4_1.gemfile - gemfiles/rails4_2.gemfile notifications: email: false
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 gemfile: - gemfiles/rails3.gemfile - gemfiles/rails4_0.gemfile - gemfiles/rails4_1.gemfile - gemfiles/rails4_2.gemfile before_install: - gem update --system - gem install bundler install: bundle install script: bundle exec rake build env: global: secure: 0dc92adb26454f7a8fcf0639f9f85150fd82b08cabfe8a66e0c5dc85a9cdddbc83b38468f863048af3e7dec3dd3e354e0a50c1b327a1a9f556357897e13e8bc6 notifications: email: false
Use latest bundler version in CI
Use latest bundler version in CI
YAML
mit
przbadu/has_secure_token
1446e5f0463690055f5a0491184eac8a5bf1f239
.travis.yml
.travis.yml
language: ruby jdk: - oraclejdk8 sudo: false rvm: - 2.3.1 install: - rvm use 2.3.1 - gem install bundler - bundle install script: buildr clean package git: depth: 10
language: ruby jdk: - oraclejdk8 rvm: - 2.3.1 install: - rvm use 2.3.1 - gem install bundler - bundle install script: buildr clean package git: depth: 10
Remove unrecognized sudo configuration section
Remove unrecognized sudo configuration section
YAML
apache-2.0
realityforge/gwt-cache-filter-example,realityforge/gwt-cache-filter-example,realityforge/gwt-cache-filter-example
b8fe6c3df5c9443f51488eab0a0a2015bc43429e
.travis.yml
.travis.yml
rvm: - 2.0 - 2.1 - 2.2 script: - bundle exec foodcritic -f any . - bundle exec rspec --color --format progress - bundle exec rubocop
sudo: false cache: bundler language: ruby bundler_args: --without kitchen_common kitchen_vagrant rvm: - 2.0 - 2.1 - 2.2 script: - bundle exec foodcritic -f any . - bundle exec rspec --color --format progress - bundle exec rubocop
Use containers and cache bundler
Use containers and cache bundler
YAML
apache-2.0
chef-cookbooks/xml,opscode-cookbooks/xml
0c8b3911a70eef7b07d64d731965fcbeb02fce6b
.travis.yml
.travis.yml
sudo: false # use new container language: c branches: except: /^(gh-pages|v[0-9]\..*)/ compiler: - clang - gcc addons: apt: packages: # xrdp - libpam0g-dev - libjpeg-dev - libfuse-dev - libmp3lame-dev - libx11-dev - libxrandr-dev - libpixman-dev - nasm # x11rdp #- flex #- bison #- libxml2-dev #- intltool #- xsltproc #- xutils-dev #- python-libxml2 #- g++ #- xutils script: # disable librfxcodec as no remotefx for v0.9.1 release #- (cd librfxcodec && ./bootstrap && ./configure && make) - (./bootstrap && ./configure --enable-ipv6 --enable-jpeg --enable-fuse --enable-mp3lame --enable-pixman && make && make distcheck) # disable x11rdp build as it takes long time and it is to be deprecated #- (cd xorg/X11R7.6 && ./buildx.sh default)
sudo: false # use new container language: c branches: except: /^(gh-pages|v[0-9]\..*)/ compiler: - clang - gcc - g++ addons: apt: packages: # xrdp - libpam0g-dev - libjpeg-dev - libfuse-dev - libmp3lame-dev - libx11-dev - libxrandr-dev - libpixman-dev - nasm # x11rdp #- flex #- bison #- libxml2-dev #- intltool #- xsltproc #- xutils-dev #- python-libxml2 #- g++ #- xutils script: # disable librfxcodec as no remotefx for v0.9.1 release #- (cd librfxcodec && ./bootstrap && ./configure && make) - (./bootstrap && ./configure --enable-ipv6 --enable-jpeg --enable-fuse --enable-mp3lame --enable-pixman && make && make distcheck) # disable x11rdp build as it takes long time and it is to be deprecated #- (cd xorg/X11R7.6 && ./buildx.sh default)
Add g++ to the list of compilers for Travis CI
Add g++ to the list of compilers for Travis CI
YAML
apache-2.0
jsorg71/xrdp,jsorg71/xrdp,moobyfr/xrdp,PKRoma/xrdp,ubuntu-xrdp/xrdp,cocoon/xrdp,PKRoma/xrdp,neutrinolabs/xrdp,moobyfr/xrdp,proski/xrdp,metalefty/xrdp,cocoon/xrdp,moobyfr/xrdp,neutrinolabs/xrdp,metalefty/xrdp,neutrinolabs/xrdp,proski/xrdp,cocoon/xrdp,proski/xrdp,ubuntu-xrdp/xrdp,PKRoma/xrdp,ubuntu-xrdp/xrdp,jsorg71/xrdp,metalefty/xrdp
5c615b57ecc3b12100de53f812ab79fecb62d290
.travis.yml
.travis.yml
# For more information about the configurations used # in this file, please see the Travis CI documentation: # https://docs.travis-ci.com before_install: - ./test/customize_environment.sh install: - ./src/os/setup.sh -y language: generic script: - ./test/main.sh matrix: include: - os: osx osx_image: xcode7.3 env: - INSTALL_APPLICATION_IF_READABLE_NAME_MATCH_REGEX="^([a-jA-J0-9]|Bash|Java).*$" - os: osx osx_image: xcode7.3 env: - INSTALL_APPLICATION_IF_READABLE_NAME_MATCH_REGEX="^([h-zH-Z]|Bash|Java).*$"
# For more information about the configurations used # in this file, please see the Travis CI documentation: # https://docs.travis-ci.com before_install: - ./test/customize_environment.sh install: - ./src/os/setup.sh -y language: generic matrix: include: - os: osx osx_image: xcode8 env: - INSTALL_APPLICATION_IF_READABLE_NAME_MATCH_REGEX="^([a-jA-J0-9]|Bash|Java).*$" - os: osx osx_image: xcode8 env: - INSTALL_APPLICATION_IF_READABLE_NAME_MATCH_REGEX="^([h-zH-Z]|Bash|Java).*$" script: - ./test/main.sh sudo: required
Use xcode8 image to test macOS related code
[test] Use xcode8 image to test macOS related code
YAML
mit
wingy3181/dotfiles,wingy3181/dotfiles,wingy3181/dotfiles
a334ea432d99338b06a44c9bd0ef079e2539eb8a
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 - openjdk11 notifications: email: false
language: java jdk: - openjdk8 - openjdk11 notifications: email: false
Switch from Oracle JDK 8 to OpenJDK 8
Switch from Oracle JDK 8 to OpenJDK 8
YAML
apache-2.0
pmcs/parity,pmcs/parity,paritytrading/parity,paritytrading/parity
86309a19f2915b677b39aafd26b9dc379683ab31
.travis.yml
.travis.yml
language: ruby rvm: - 2.4.1
language: ruby rvm: - 2.4.1 after_success: - if [ "$TRAVIS_BRANCH" == "master" ]; then docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; docker push brianknight10/quimby; fi
Add Docker Hub push to Travis build
Add Docker Hub push to Travis build
YAML
mit
brianknight10/quimby,brianknight10/quimby,brianknight10/quimby,brianknight10/quimby
3db4640f5dc1de9d5c65c350f7bf9d568567dc7b
.travis.yml
.travis.yml
language: objective-c cache: directories: - Lib/vendor/bundle before_install: - sudo easy_install cpp-coveralls install: - (cd Lib && bundle install --path=vendor/bundle --binstubs=vendor/bin) script: - (cd Lib && bundle exec rake test:ios test:osx) env: global: - LANG=en_US.UTF-8 - LC_ALL=en_US.UTF-8
language: objective-c cache: directories: - Lib/vendor/bundle install: - (cd Lib && bundle install --path=vendor/bundle --binstubs=vendor/bin) script: - (cd Lib && bundle exec rake test:ios test:osx) env: global: - LANG=en_US.UTF-8 - LC_ALL=en_US.UTF-8
Remove installing cpp-coveralls because not support code coverage in Swift
Remove installing cpp-coveralls because not support code coverage in Swift
YAML
mit
pengleelove/KeychainAccess,BellAppLab/KeychainAccess,Kingside/KeychainAccess,ikesyo/KeychainAccess,AnthonyMDev/KeychainAccess,kishikawakatsumi/KeychainAccess,colemancda/KeychainAccess,yzpniceboy/KeychainAccess,wimirwan/KeychainAccess,ishkawa/KeychainAccess,mspasov/KeychainAccess,mspasov/KeychainAccess,xingyuniu/KeychainAccess,ishkawa/KeychainAccess,AnthonyMDev/KeychainAccess,wimirwan/KeychainAccess,tokorom/KeychainAccess,pengleelove/KeychainAccess,ikesyo/KeychainAccess,ikesyo/KeychainAccess,Kingside/KeychainAccess,sonsongithub/KeychainAccess,colemancda/KeychainAccess,kishikawakatsumi/KeychainAccess,sonsongithub/KeychainAccess,usami-k/KeychainAccess,tokorom/KeychainAccess,abunur/KeychainAccess,msdgwzhy6/KeychainAccess,sonsongithub/KeychainAccess,colemancda/KeychainAccess,kishikawakatsumi/KeychainAccess,xingyuniu/KeychainAccess,msdgwzhy6/KeychainAccess,yzpniceboy/KeychainAccess,BellAppLab/KeychainAccess,usami-k/KeychainAccess,abunur/KeychainAccess
2f71c578aa8f754b1e17cd171f9429f21b9bc2a4
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.0.0 - 2.1.10 - 2.2.8 - 2.3.5 - 2.4.2 before_install: - gem update --system - gem install bundler -v 1.13.6
sudo: false language: ruby rvm: - 2.0.0 - 2.1.10 - 2.2.9 - 2.3.6 - 2.4.3 before_install: - gem update --system - gem install bundler -v 1.13.6
Update Ruby version on Travis CI
Update Ruby version on Travis CI
YAML
mit
emsk/resas_kit,emsk/resas_kit
93d9c4bdb0cb16edeb7d8cc454744be31f9dd34e
.travis.yml
.travis.yml
language: cpp sudo: required dist: trusty os: linux compiler: gcc group: stable before_install: - sudo apt-get install libsdl2-dev libopenal-dev - sudo apt-get install wildmidi install: - wget https://github.com/Mindwerks/wildmidi/archive/wildmidi-0.4.0.tar.gz - tar -xzvf wildmidi-0.4.0.tar.gz - pushd wildmidi-wildmidi-0.4.0 && mkdir build && pushd build && cmake .. && make && sudo make install && popd && popd script: - mkdir build - cd build - cmake .. - make -j4
language: cpp sudo: required dist: trusty os: linux compiler: gcc group: stable before_install: - sudo apt-get install libegl1-mesa-dev libgles2-mesa-dev libsdl2-dev libopenal-dev wildmidi install: - wget https://github.com/Mindwerks/wildmidi/archive/wildmidi-0.4.0.tar.gz - tar -xzvf wildmidi-0.4.0.tar.gz - pushd wildmidi-wildmidi-0.4.0 && mkdir build && pushd build && cmake .. && make && sudo make install && popd && popd script: - mkdir build - cd build - cmake .. - make -j4
Fix failing Travis CI build
Fix failing Travis CI build
YAML
mit
afritz1/OpenTESArena
7884d2bca2dbe50d0917ad6fba21fc95ae499ef5
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - 2.0.0 - 2.1.8 - 2.2.4 - 2.3.0 - jruby-9.0.4.0 matrix: fast_finish: true before_install: gem install bundler -v 1.11.2
language: ruby sudo: false before_script: - | curl -s https://static.rust-lang.org/rustup.sh | sh -s -- --prefix=$HOME/.local export PATH=$HOME/.local/bin:$PATH rvm: - 2.0.0 - 2.1.8 - 2.2.4 - 2.3.0 - jruby-9.0.4.0 matrix: fast_finish: true before_install: gem install bundler -v 1.11.2
Install Rust on Travis with before_script
Install Rust on Travis with before_script
YAML
mit
cryptosphere/ruby-ring,cryptosphere/ruby-ring
01a56f5bbee7d2172549107b90286f82c6b71ca8
.travis.yml
.travis.yml
language: bash services: docker env: - PACKAGE=php IMAGE=php-7.1-fpm - PACKAGE=php IMAGE=php-7.2-fpm - PACKAGE=php IMAGE=php-7.3-fpm - PACKAGE=php IMAGE=php-7.3-swoole before_script: - env | sort - cd "$PACKAGE" script: - | ( set -Eeuo pipefail set -x docker build -t "$IMAGE" -f "$IMAGE" . docker run -ti --rm "$IMAGE" php --version docker run -ti --rm "$IMAGE" php --ini docker run -ti --rm "$IMAGE" php -m )
language: bash services: docker env: - PACKAGE=php VERSION=php-7.1-fpm - PACKAGE=php VERSION=php-7.2-fpm - PACKAGE=php VERSION=php-7.3-fpm - PACKAGE=php VERSION=php-7.3-swoole before_script: - env | sort - cd "$PACKAGE" script: - | ( set -Eeuo pipefail set -x docker build --quiet -t "$VERSION" -f "$VERSION" . docker run -ti --rm "$VERSION" php --version docker run -ti --rm "$VERSION" php --ini docker run -ti --rm "$VERSION" php -m docker run --rm "$VERSION" php -m | grep bcmath docker run --rm "$VERSION" php -m | grep exif docker run --rm "$VERSION" php -m | grep gd docker run --rm "$VERSION" php -m | grep intl docker run --rm "$VERSION" php -m | grep mbstring docker run --rm "$VERSION" php -m | grep mysqli docker run --rm "$VERSION" php -m | grep mysqlnd docker run --rm "$VERSION" php -m | grep pcntl docker run --rm "$VERSION" php -m | grep pdo_mysql docker run --rm "$VERSION" php -m | grep redis docker run --rm "$VERSION" php -m | grep OPcache )
Check php extensions are installed
CI: Check php extensions are installed
YAML
mit
xtreamwayz/dckr-stack,xtreamwayz/dckr-stack
05435e9e51bbc58554e646239a5fe05525b4094e
.travis.yml
.travis.yml
language: java script: ./gradlew build sudo: false jdk: - oraclejdk8
language: android android: components: # Uncomment the lines below if you want to # use the latest revision of Android SDK Tools - platform-tools - tools # The BuildTools version used by your project - build-tools-25.0.0 # The SDK version used to compile your project - android-24 # Additional components - extra-google-google_play_services - extra-google-m2repository - extra-android-m2repository - addon-google_apis-google-19 # Specify at least one system image, # if you need to run emulator(s) during your tests - sys-img-armeabi-v7a-android-22 - sys-img-x86-android-17
Test new Travis CI script
Test new Travis CI script
YAML
mit
Date-a-Dog/Date-a-Dog,Date-a-Dog/Date-a-Dog,Date-a-Dog/Date-a-Dog,jammua/dog-dating-app
8305575fa5c6f6d56a5e21cac1d50e995bfdc6a9
.travis.yml
.travis.yml
language: python cache: pip before_script: - pip uninstall numpy -y - pip install -I numpy==1.17.0 python: - 3.5 - 3.6 - 3.7 install: - travis_retry pip install --ignore-installed -r requirements.txt script: py.test
language: python cache: pip before_script: - pip3 uninstall numpy -y python: - 3.5 - 3.6 - 3.7 install: - travis_retry pip install --ignore-installed -r requirements.txt script: py.test
Use 'pip3' to uninstall numpy
Travis: Use 'pip3' to uninstall numpy
YAML
mit
marguslt/openmoves,bwaldvogel/openmoves,bwaldvogel/openmoves,bwaldvogel/openmoves,marguslt/openmoves,marguslt/openmoves
03cc94f3d689c6460e2bb0a5c101bb742a4b8437
.travis.yml
.travis.yml
language: scala scala: - 2.11.8 - 2.12.0 jdk: - oraclejdk8 before_install: - if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then bash scripts/decrypt-keys.sh; fi - export PATH=${PATH}:./vendor/bundle install: - rvm use 2.2.3 --install --fuzzy - gem update --system - gem install sass - gem install jekyll -v 3.2.1 script: - sbt ++$TRAVIS_SCALA_VERSION clean coverage test coverageReport - sbt ++$TRAVIS_SCALA_VERSION "docs/tut" after_success: - if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then sbt ++$TRAVIS_SCALA_VERSION publishSnapshot; bash scripts/publishMicrosite.sh; fi - bash <(curl -s https://codecov.io/bash)
language: scala scala: - 2.11.8 - 2.12.1 jdk: - oraclejdk8 before_install: - if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then bash scripts/decrypt-keys.sh; fi - export PATH=${PATH}:./vendor/bundle install: - rvm use 2.2.3 --install --fuzzy - gem update --system - gem install sass - gem install jekyll -v 3.2.1 script: - sbt ++$TRAVIS_SCALA_VERSION clean coverage test coverageReport - sbt ++$TRAVIS_SCALA_VERSION "docs/tut" after_success: - if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then sbt ++$TRAVIS_SCALA_VERSION publishSnapshot; bash scripts/publishMicrosite.sh; fi - bash <(curl -s https://codecov.io/bash)
Set Travis version to 2.12.1
Set Travis version to 2.12.1
YAML
apache-2.0
frees-io/freestyle,pepegar/freestyle,pepegar/freestyle
bf0c0486ed502f8937a0b9baf70911368ce10bc1
.travis.yml
.travis.yml
language: node_js node_js: - "0.10"
language: node_js node_js: - "0.10" install: - npm install - bower install
Install bower dependencies in Travis CI
Install bower dependencies in Travis CI By default Travis CI would perform `npm install` for node environments. We need `bower install` as well for `jQuery` and `QUnit` dependencies. We don't need to track them in the repo, are we?
YAML
bsd-2-clause
OpenBuildings/infinite
6abe9214666efd3173c9cb28ce89c5c94bff528a
.travis.yml
.travis.yml
language: php php: - 5.4 # - 5.5 env: - SYMFONY_VERSION="2.3.*" - SYMFONY_VERSION="2.4.*" - SYMFONY_VERSION="2.5.*" - SYMFONY_VERSION="2.6.*" # - SYMFONY_VERSION="2.6.*@dev" # - SYMFONY_VERSION="2.7.*@dev" # - SYMFONY_VERSION="3.0.*@dev" before_script: # - composer install --prefer-source --dev - composer require symfony/symfony:${SYMFONY_VERSION} script: # - phpunit -c phpunit.dist.xml - php ./vendor/phpunit/phpunit/phpunit -c phpunit.dist.xml notifications: email: - dev@dankempster.co.uk
language: php php: - 5.4 # - 5.5 env: - SYMFONY_VERSION="2.3.*" - SYMFONY_VERSION="2.4.*" - SYMFONY_VERSION="2.5.*" - SYMFONY_VERSION="2.6.*" - SYMFONY_VERSION="2.7.*@dev" - SYMFONY_VERSION="3.0.*@dev" before_script: # - composer install --prefer-source --dev - composer require symfony/symfony:${SYMFONY_VERSION} script: # - phpunit -c phpunit.dist.xml - php ./vendor/phpunit/phpunit/phpunit -c phpunit.dist.xml matrix: allow_failures: - env: SYMFONY_VERSION="2.7.*@dev" - env: SYMFONY_VERSION="3.0.*@dev" notifications: email: - dev@dankempster.co.uk
Add dev versions of Symfony and allow their Travis-CI builds to fail
Add dev versions of Symfony and allow their Travis-CI builds to fail
YAML
mit
dankempster/axstrad-filesystem
c94d5c4689075a84fc4c6ae3fb91dfb26811b82f
.travis.yml
.travis.yml
language: nodejs node_js: - "4.1" before_install: - sudo add-apt-repository ppa:ubuntu-wine/ppa -y - sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF - echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list - echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main" | sudo tee -a /etc/apt/sources.list.d/mono-xamarin.list - sudo apt-get -qq update - sudo apt-get -qq install wine mono-devel -y notifications: email: on_success: never on_failure: change
language: node_js node_js: - "4.1" before_install: - sudo add-apt-repository ppa:ubuntu-wine/ppa -y - sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF - echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list - echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main" | sudo tee -a /etc/apt/sources.list.d/mono-xamarin.list - sudo apt-get -qq update - sudo apt-get -qq install wine mono-devel -y notifications: email: on_success: never on_failure: change
Add missing _ in language
Add missing _ in language
YAML
apache-2.0
mongodb-js/electron-installer-squirrel-windows,electronjs/windows-installer
d79e70845922edfdbc1d94e885b7bb695d0fa66c
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - 2.2.10 - 2.3.8 - 2.4.5 - 2.5.4 - 2.6.2 cache: bundler bundler_args: --jobs 3 --retry 3 before_install: - "rm ${BUNDLE_GEMFILE}.lock"
language: ruby rvm: - 2.2.10 - 2.3.8 - 2.4.5 - 2.5.4 - 2.6.2 cache: bundler bundler_args: --jobs 3 --retry 3 before_install: - "rm ${BUNDLE_GEMFILE}.lock"
Drop unused Travis sudo: false directive
Drop unused Travis sudo: false directive
YAML
mit
rails/record_tag_helper
9f609d2ede27cf238a6eb3a4c44e43338404e06d
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "7" - "8" script: - npm test
language: node_js node_js: - "6" - "7" - "8" - "9" script: - npm test
Add nodejs v9.0.0 to CI
Add nodejs v9.0.0 to CI PR-URL: https://github.com/metarhia/metasync/pull/253
YAML
mit
DzyubSpirit/MetaSync,metarhia/MetaSync,DzyubSpirit/MetaSync
28a1ffde5bcdc91a4afb4544eed589275c869c9e
.travis.yml
.travis.yml
sudo: required dist: trusty language: node_js node_js: - '4.2' before_script: - npm install script: npm test
sudo: required dist: trusty language: node_js node_js: - '4.2' before_install: if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi install: - npm install before_script: script: npm test
Install npm v3 if needed
Install npm v3 if needed
YAML
mit
DavidLevayer/countable,DavidLevayer/countable,DavidLevayer/countable
afcaa2ea51b12629ccadc60ab849021f6ec4cf84
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "4" cache: directories: - node_modules env: - DISPLAY=:99.0 before_install: - "npm prune" before_script: - "rm src/ol/renderer/webgl/*shader.js" - "sh -e /etc/init.d/xvfb start" - "npm ls" script: "make ci" after_success: - "make test-coverage" - "cat coverage/lcov.info | ./node_modules/.bin/coveralls" branches: only: - master
sudo: false language: node_js node_js: - "6" cache: directories: - node_modules env: - DISPLAY=:99.0 before_install: - "npm prune" before_script: - "rm src/ol/renderer/webgl/*shader.js" - "sh -e /etc/init.d/xvfb start" - "npm ls" script: "make ci" after_success: - "make test-coverage" - "cat coverage/lcov.info | ./node_modules/.bin/coveralls" branches: only: - master
Use Node 6 on Travis
Use Node 6 on Travis
YAML
bsd-2-clause
stweil/ol3,mzur/ol3,kjelderg/ol3,fperucic/ol3,ahocevar/openlayers,geekdenz/ol3,planetlabs/ol3,Distem/ol3,stweil/openlayers,ahocevar/ol3,ahocevar/ol3,thhomas/ol3,mzur/ol3,itayod/ol3,fblackburn/ol3,tschaub/ol3,thomasmoelhave/ol3,thomasmoelhave/ol3,geekdenz/ol3,fredj/ol3,kjelderg/ol3,tamarmot/ol3,tamarmot/ol3,klokantech/ol3,bjornharrtell/ol3,gingerik/ol3,bjornharrtell/ol3,oterral/ol3,fredj/ol3,oterral/ol3,openlayers/openlayers,stweil/openlayers,openlayers/openlayers,gingerik/ol3,planetlabs/ol3,fredj/ol3,tschaub/ol3,stweil/openlayers,planetlabs/ol3,ahocevar/ol3,mzur/ol3,klokantech/ol3,fblackburn/ol3,thomasmoelhave/ol3,Distem/ol3,ahocevar/ol3,itayod/ol3,bjornharrtell/ol3,tschaub/ol3,geekdenz/ol3,stweil/ol3,ahocevar/openlayers,tschaub/ol3,thhomas/ol3,oterral/ol3,thhomas/ol3,fredj/ol3,stweil/ol3,fblackburn/ol3,tamarmot/ol3,adube/ol3,thhomas/ol3,kjelderg/ol3,ahocevar/openlayers,itayod/ol3,adube/ol3,Distem/ol3,mzur/ol3,itayod/ol3,geekdenz/openlayers,kjelderg/ol3,tamarmot/ol3,klokantech/ol3,adube/ol3,fblackburn/ol3,openlayers/openlayers,geekdenz/openlayers,fperucic/ol3,geekdenz/ol3,geekdenz/openlayers,stweil/ol3,fperucic/ol3,gingerik/ol3,gingerik/ol3,klokantech/ol3,planetlabs/ol3,thomasmoelhave/ol3,fperucic/ol3,Distem/ol3
8cd5f8fc35fb3587f1b4cb56ad85cbfff9bcd364
.travis.yml
.travis.yml
rvm: - 1.9.3 - 1.9.2 - jruby - rbx script: "bundle exec rake"
rvm: - 1.9.3 - 1.9.2 script: "bundle exec rake"
Remove support for jruby and rbx
Remove support for jruby and rbx
YAML
mit
Nedomas/securities
ed00930c4229692cff65f7d90c89b94780f54986
.travis.yml
.travis.yml
language: node_js services: - mongodb node_js: - '0.10' before_script: - npm install -g istanbul - npm install coveralls - npm install mocha-lcov-reporter after_script: - NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
language: node_js services: - mongodb node_js: - '0.10' - '0.12' - 'iojs' before_script: - npm install -g istanbul - npm install coveralls - npm install mocha-lcov-reporter after_script: - NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
Add node 0.12 and iojs as build targets
Add node 0.12 and iojs as build targets
YAML
bsd-2-clause
saintedlama/restify-mongoose,pierredavidbelanger/restify-mongoose,mancvso/restify-mongoose,pierredavidbelanger/restify-mongoose,mancvso/restify-mongoose
b91bce371686fef6f158c21e1b4ba19c4897a472
.travis.yml
.travis.yml
sudo: false language: python python: - "3.3" - "3.4" - "3.5" - "3.6" - "3.7-dev" install: pip install tox-travis codecov script: - tox - python setup.py install && s4 version after_success: - codecov cache: pip
sudo: false language: python python: - "3.3" - "3.4" - "3.5" - "3.6" - "3.7-dev" install: pip install tox-travis codecov script: - tox - pip install . && s4 version after_success: - codecov cache: pip
Use "pip install ." instead of using setup.py directly
Use "pip install ." instead of using setup.py directly
YAML
mit
MichaelAquilina/s3backup,MichaelAquilina/s3backup
33130e78840f4215223a573f22d06043c737d130
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "nightly" # currently points to 3.7-dev before_install: - "pip install Cython" - "pip install numpy" install: - "pip install -r requirements-test.txt" script: PYTHONPATH=. py.test --cov after_success: coveralls
language: python matrix: include: - python: "2.7" - python: "3.4" - python: "3.5" - python: "3.6" - python: "3.7" dist: xenial sudo: true before_install: - "pip install Cython" - "pip install numpy" install: - "pip install -r requirements-test.txt" script: PYTHONPATH=. py.test --cov after_success: coveralls
Add a 3.7 test runner
Add a 3.7 test runner
YAML
bsd-2-clause
cjrh/misu
29ff1e565f860c27a70393fb49722f6728d46fc4
.travis.yml
.travis.yml
language: scala scala: - 2.11.6 jdk: - openjdk6 - openjdk7 - oraclejdk7 - oraclejdk8
language: scala scala: - 2.11.7 jdk: - openjdk6 - openjdk7 - oraclejdk7 - oraclejdk8
Upgrade Travis scala version to 2.11.7.
Upgrade Travis scala version to 2.11.7.
YAML
mit
nrinaudo/tabulate,nrinaudo/scala-csv
d738a77c9bc84694a376a9503ba5466f2c13a385
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 gemfile: - gemfiles/activemodel_3_2_x.gemfile - gemfiles/activemodel_4_0_x.gemfile # - gemfiles/activemodel_4_1_x.gemfile
language: ruby rvm: - 1.9.3 - 2.0.0 # - 2.1.0 gemfile: - gemfiles/activemodel_3_2_x.gemfile - gemfiles/activemodel_4_0_x.gemfile # - gemfiles/activemodel_4_1_x.gemfile
Comment out ruby 2.1.0 for testing
Comment out ruby 2.1.0 for testing
YAML
mit
pinzolo/detox
0551ea06739bc1c5527868e0fa57aa57d98761e6
.travis.yml
.travis.yml
language: java dist: trusty jobs: include: - name: Development build with JDK 9 jdk: openjdk9 install: true script: - mvn clean install -P dev -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn - name: Release build with JDK 8 + 11 jdk: openjdk8 install: - ln -s ${JAVA_HOME} /home/travis/jdk8 - wget https://github.com/sormuras/bach/raw/master/install-jdk.sh - source ./install-jdk.sh --feature 11 --target /home/travis/jdk11 script: - mvn clean install -P release -t .travis-toolchains.xml -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn after_success: - bash <(curl -s https://codecov.io/bash) before_cache: rm -rf $HOME/.m2/repository/org/tinylog cache: directories: - $HOME/.m2
language: java dist: trusty jobs: include: - name: Development build with JDK 9 jdk: openjdk9 install: true script: - mvn clean install -P dev -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn - name: Release build with JDK 8 + 11 jdk: openjdk8 install: - ln -s ${JAVA_HOME} /home/travis/jdk8 - wget https://github.com/sormuras/bach/raw/master/install-jdk.sh - source ./install-jdk.sh --feature 11 --target /home/travis/jdk11 script: - mvn clean install -P release -t .travis-toolchains.xml -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn after_success: - bash <(curl -s https://codecov.io/bash) before_cache: - rm -rf $HOME/.m2/repository/org/tinylog cache: directories: - $HOME/.m2
Fix indentations in Travis configuration
Fix indentations in Travis configuration
YAML
apache-2.0
pmwmedia/tinylog,pmwmedia/tinylog
b2c9de634b160eb8a8026eb93eb97bdf8eb1f5a9
.travis.yml
.travis.yml
language: scala jdk: - oraclejdk7 - oraclejdk8 - oraclejdk9 - oraclejdk10 - oraclejdk11 - oraclejdk-ea - openjdk6 - openjdk7 - openjdk8 - openjdk9 - openjdk10 - openjdk11 - openjdk-ea branches: only: master matrix: allow_failures: - jdk: oraclejdk11 - jdk: oraclejdk-ea - jdk: openjdk7 - jdk: openjdk11 - jdk: openjdk-ea script: sbt clean coverage +test deploy: - provider: script skip_cleanup: true script: sbt updateImpactSubmit coverageReport coverageAggregate codacyCoverage makeSite +publish - provider: pages skip_cleanup: true github-token: $GITHUB_TOKEN local-dir: target/site verbose: true on: jdk: oraclejdk8 - provider: script skip_cleanup: true script: curl -s https://codecov.io/bash | bash on: jdk: oraclejdk8 cache: directories: - $HOME/.sbt - $HOME/.ivy2/cache
language: scala jdk: - oraclejdk7 - oraclejdk8 - oraclejdk9 - oraclejdk10 - oraclejdk11 - oraclejdk-ea - openjdk6 - openjdk7 - openjdk8 - openjdk9 - openjdk10 - openjdk11 - openjdk-ea scala: - 2.10.7 - 2.11.12 - 2.12.6 - 2.13.0-M4 matrix: allow_failures: - scala: 2.10.7 - scala: 2.13.0-M4 - jdk: openjdk7 - jdk: oraclejdk11 - jdk: oraclejdk-ea - jdk: openjdk11 - jdk: openjdk-ea branches: only: master script: sbt ++$TRAVIS_SCALA_VERSION clean coverage test deploy: - provider: script skip_cleanup: true script: sbt updateImpactSubmit coverageReport coverageAggregate codacyCoverage makeSite +publish on: jdk: oraclejdk8 scala: 2.12.6 - provider: pages skip_cleanup: true github-token: $GITHUB_TOKEN local-dir: target/site verbose: true on: jdk: oraclejdk8 scala: 2.12.6 - provider: script skip_cleanup: true script: curl -s https://codecov.io/bash | bash on: jdk: oraclejdk8 scala: 2.12.6 cache: directories: - $HOME/.sbt - $HOME/.ivy2/cache
Build with Scala 2.13 milestones
Build with Scala 2.13 milestones
YAML
mit
pathikrit/better-files,pathikrit/better-files,pathikrit/better-files
42fd6060d19ca6bb7005b12c9511d6cde4ecf296
.travis.yml
.travis.yml
os: linux dist: trusty language: java matrix: include: - jdk: oraclejdk9 dist: trusty - jdk: oraclejdk8 - jdk: oraclejdk7 dist: precise - jdk: openjdk7 dist: precise - os: osx addons: hosts: - asciidoctorj-builder hostname: asciidoctorj-builder apt: packages: - graphviz before_install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install graphviz; fi install: ./gradlew -S -Pskip.signing assemble before_script: unset GEM_PATH GEM_HOME JRUBY_OPTS script: ./gradlew -S -Pskip.signing check && bash test-asciidoctor-upstream.sh
os: linux dist: trusty language: java matrix: include: - jdk: oraclejdk8 - jdk: oraclejdk9 dist: trusty - jdk: oraclejdk7 dist: precise - jdk: openjdk7 dist: precise - os: osx addons: hosts: - asciidoctorj-builder hostname: asciidoctorj-builder apt: packages: - graphviz before_install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install graphviz; fi install: ./gradlew -S -Pskip.signing assemble before_script: unset GEM_PATH GEM_HOME JRUBY_OPTS script: ./gradlew -S -Pskip.signing check && bash test-asciidoctor-upstream.sh
Set Java 8 as first build
Set Java 8 as first build
YAML
apache-2.0
lefou/asciidoctorj,ysb33r/asciidoctorj,ysb33r/asciidoctorj,abelsromero/asciidoctorj,ysb33r/asciidoctorj,robertpanzer/asciidoctorj,asciidoctor/asciidoctorj,lefou/asciidoctorj,asciidoctor/asciidoctorj,robertpanzer/asciidoctorj,lefou/asciidoctorj,abelsromero/asciidoctorj,robertpanzer/asciidoctorj,lefou/asciidoctorj,ysb33r/asciidoctorj,abelsromero/asciidoctorj,asciidoctor/asciidoctorj
e8690be9168ffbeb6b1493ba0d3924d9563113d1
.travis.yml
.travis.yml
--- dist: trusty sudo: required services: docker addons: apt: sources: - chef-stable-trusty packages: - chefdk cache: apt: true env: global: - KITCHEN_LOCAL_YAML=.kitchen.dokken.yml matrix: - INSTANCE=centos-7 - INSTANCE=ubuntu-1604 matrix: fast_finish: true allow_failures: - env: INSTANCE=ubuntu-1604 before_install: - eval "$(/opt/chefdk/bin/chef shell-init bash)" - chef --version - docker --version # We are using ChefDK so no gem install required. # https://docs.travis-ci.com/user/customizing-the-build#Skipping-the-Installation-Step install: true script: - kitchen verify ${INSTANCE} # TODO: add rubocop/cookstyle and foocritic checks
--- dist: trusty sudo: required services: docker addons: apt: sources: - chef-stable-trusty packages: - chefdk cache: apt: true env: global: - KITCHEN_LOCAL_YAML=.kitchen.dokken.yml matrix: - INSTANCE=centos-7 - INSTANCE=ubuntu-1604 matrix: fast_finish: true allow_failures: - env: INSTANCE=ubuntu-1604 before_install: - eval "$(/opt/chefdk/bin/chef shell-init bash)" - chef --version # We are using ChefDK so no gem install required. # https://docs.travis-ci.com/user/customizing-the-build#Skipping-the-Installation-Step install: true script: - kitchen verify ${INSTANCE} # TODO: add rubocop/cookstyle and foocritic checks
Drop unnecessary docker version output
Drop unnecessary docker version output This is already output as part of the services: docker bit
YAML
apache-2.0
schubergphilis/letsencrypt
5d114309352eece5eb7f09c45c14198578514edd
.travis.yml
.travis.yml
language: node_js node_js: - 0.10 before_script: - npm install -g grunt-cli
language: node_js sudo: false node_js: - 0.10 - 0.12 before_script: - npm install -g grunt-cli
Add tests for node 0.12.
Add tests for node 0.12.
YAML
mit
readmeio/apidoc,readmeio/apidoc,vherilier/apidoc,vherilier/apidoc
4c8badd8584c4a2edfb1d234cbb1b60432066d8e
.travis.yml
.travis.yml
# https://docs.haskellstack.org/en/stable/travis_ci/ dist: bionic language: generic cache: directories: - $HOME/.local/bin - $HOME/.stack - $TRAVIS_BUILD_DIR/.stack-work addons: apt: update: true packages: - libgmp-dev - llvm-9-tools - llvm-9-dev - python3-numpy - python3-pip - haskell-stack jobs: include: - stage: Upgrade Stack script: - export DIR=~/.local/bin - if [ ! -d "$DIR" ]; then mkdir -p ~/.local/bin; fi - export PATH=$HOME/.local/bin:$PATH - stack upgrade - hash -r - stack setup - stage: Install Python dependencies script: - pip install --upgrade jax jaxlib - stage: Build dependencies script: - export PATH=$HOME/.local/bin:/usr/lib/llvm-9/bin:$PATH - stack build --only-dependencies - stage: Build script: - export PATH=$HOME/.local/bin:/usr/lib/llvm-9/bin:$PATH - make - stage: Test script: - export PATH=$HOME/.local/bin:/usr/lib/llvm-9/bin:$PATH - make tests
# https://docs.haskellstack.org/en/stable/travis_ci/ dist: bionic language: generic cache: directories: - $HOME/.local/bin - $HOME/.stack - $TRAVIS_BUILD_DIR/.stack-work addons: apt: update: true packages: - libgmp-dev - llvm-9-tools - llvm-9-dev - python3-numpy - python3-pip - haskell-stack jobs: include: - stage: Install and build dependencies script: - export DIR=~/.local/bin - export PATH=$HOME/.local/bin:/usr/lib/llvm-9/bin:$PATH - if [ ! -d "$DIR" ]; then mkdir -p ~/.local/bin; fi - stack upgrade - hash -r - stack setup - pip install --upgrade jax jaxlib - stack build --only-dependencies - stage: Build and test script: - export PATH=$HOME/.local/bin:/usr/lib/llvm-9/bin:$PATH - make tests
Use fewer build stages to speed up CI
Use fewer build stages to speed up CI
YAML
bsd-3-clause
google-research/dex-lang,google-research/dex-lang,google-research/dex-lang,google-research/dex-lang,google-research/dex-lang,google-research/dex-lang
eefd43a72817f32eb1dcc7fe9012119e937edeab
.travis.yml
.travis.yml
language: python python: - "3.4" - "3.3" - "3.2" - "2.7" - "2.6" install: - sudo apt-get update # You may want to periodically update this, although the conda update # conda line below will keep everything up-to-date. We do this # conditionally because it saves us some downloading if the version is # the same. - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget http://repo.continuum.io/miniconda/Miniconda-3.4.2-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-3.4.2-Linux-x86_64.sh -O miniconda.sh; fi - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda # Useful for debugging any issues with conda - conda info -a - deps='pip numpy scipy pyproj gdal' - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION $deps - source activate test-environment - python setup.py install script: python -m unittest discover test/
language: python python: - "3.4" - "3.3" - "3.2" - "2.7" - "2.6" install: - sudo apt-get update # You may want to periodically update this, although the conda update # conda line below will keep everything up-to-date. We do this # conditionally because it saves us some downloading if the version is # the same. - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget http://repo.continuum.io/miniconda/Miniconda-3.4.2-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-3.4.2-Linux-x86_64.sh -O miniconda.sh; fi - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda # Useful for debugging any issues with conda - conda info -a - deps='pip numpy scipy gdal' - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION $deps - source activate test-environment - python setup.py install script: python -m unittest discover test/
Remove pyproj from Travis install list
Remove pyproj from Travis install list
YAML
mit
Ariki/guessproj
f04891cc5a52fd72af8e7d762e990583f6bbcd7d
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 addons: code_climate: repo_token: 9d6a84f7ca4f0a4a7db8d015908d8c9267fb04802a9f9d8a64531d46ff501564 before_script: - sed -i '/phpdoc/d' composer.json - composer install script: phpunit --configuration tests/phpunit.xml tests after_script: - vendor/bin/test-reporter
language: php php: - 5.5 - 5.6 - 7.0 addons: code_climate: repo_token: 9d6a84f7ca4f0a4a7db8d015908d8c9267fb04802a9f9d8a64531d46ff501564 before_script: - sed -i '/phpdoc/d' composer.json - composer install script: phpunit --configuration tests/phpunit.xml tests after_script: - vendor/bin/test-reporter
Remove PHP 5.4 from tested versions.
Remove PHP 5.4 from tested versions.
YAML
mit
UWEnrollmentManagement/Encryption
32a878423f0200fe7b752156df166f88077b84ed
.travis.yml
.travis.yml
sudo: false language: go os: - linux - osx go: - 1.5 install: - script/bootstrap script: - script/build - script/test deploy: provider: heroku buildpack: https://github.com/kr/heroku-buildpack-go.git api_key: secure: LVlrZSSqKzdlbiv3sWoHfW1ed+rmN6Q+O1CWE6nEsxztPI9hIock0TxMWUrOWghDKgN8UKefMvHgXs8HusyX/3K4qSoeZ77CFvN0rZ/k2mZ0xWxu4xYu2/fUupwuA+N6H6DTXqV7w+4syrgrxJG8fv/17GARl2fnYL3qWljTX2E= app: master: jqplay skip_cleanup: true
sudo: false language: go os: - linux - osx go: - 1.5 install: - script/bootstrap script: - script/build - script/test deploy: provider: heroku buildpack: https://github.com/heroku/heroku-buildpack-go.git api_key: secure: LVlrZSSqKzdlbiv3sWoHfW1ed+rmN6Q+O1CWE6nEsxztPI9hIock0TxMWUrOWghDKgN8UKefMvHgXs8HusyX/3K4qSoeZ77CFvN0rZ/k2mZ0xWxu4xYu2/fUupwuA+N6H6DTXqV7w+4syrgrxJG8fv/17GARl2fnYL3qWljTX2E= app: master: jqplay skip_cleanup: true
Upgrade Go buildpack in Travis build
Upgrade Go buildpack in Travis build
YAML
mit
jingweno/jqplay,jingweno/jqplay,jingweno/jqplay
ca8e6f89b9b1117b2d150f48cb9ff90aecdfd1b1
.travis.yml
.travis.yml
sudo: false language: ruby before_install: - gem install bundler notifications: email: - john.crepezzi@gmail.com - andrew@avit.ca branches: only: - master rvm: - 1.9.3 - 2.0 - 2.1.10 - 2.2.6 - 2.3.3 - 2.4.0 - ruby-head env: - RAILS_VERSION='~> 3.2' - RAILS_VERSION='~> 4.2' - RAILS_VERSION='~> 5.0' matrix: exclude: - rvm: 1.9.3 env: RAILS_VERSION='~> 5.0' - rvm: 2.0 env: RAILS_VERSION='~> 5.0' - rvm: 2.1.10 env: RAILS_VERSION='~> 5.0' - rvm: 2.2.6 env: RAILS_VERSION='~> 5.0'
sudo: false language: ruby before_install: - gem install bundler notifications: email: - john.crepezzi@gmail.com - andrew@avit.ca branches: only: - master rvm: - 1.9.3 - 2.0 - 2.1.10 - 2.2.6 - 2.3.3 - 2.4.0 - ruby-head env: - RAILS_VERSION='~> 3.2' - RAILS_VERSION='~> 4.2' - RAILS_VERSION='~> 5.0' matrix: exclude: # Rails 5 only runs on ruby 2.3 and up - rvm: 1.9.3 env: RAILS_VERSION='~> 5.0' - rvm: 2.0 env: RAILS_VERSION='~> 5.0' - rvm: 2.1.10 env: RAILS_VERSION='~> 5.0' - rvm: 2.2.6 env: RAILS_VERSION='~> 5.0' # Rails 3 no longer runs on ruby 2.4 and up - rvm: 2.4.0 env: RAILS_VERSION='~> 3.2' - rvm: ruby-head env: RAILS_VERSION='~> 3.2'
Exclude unsupported Rails/Ruby combinations from test matrix
Exclude unsupported Rails/Ruby combinations from test matrix #384
YAML
mit
avit/ice_cube,seejohnrun/ice_cube
2d55714a975389fc934943c68bb55c839fc76dc1
.travis.yml
.travis.yml
language: rust matrix: include: - rust: 1.13.0 - rust: stable - rust: stable os: osx - rust: beta - rust: nightly env: TEST_FLAGS="--features nightly" script: - eval "cargo test $TEST_FLAGS"
language: rust matrix: include: - rust: 1.13.0 - rust: stable - rust: stable os: osx - rust: beta - rust: nightly env: TEST_FLAGS="--features nightly" script: - cargo test $TEST_FLAGS
Remove 'eval' in script phase
[Travis] Remove 'eval' in script phase
YAML
apache-2.0
nvzqz/static-assertions-rs
6770c30f367d7a94e9a23f93c8031a20d94ca9ac
.travis.yml
.travis.yml
language: clojure lein: lein2 script: lein2 do clean, javac, all test jdk: - openjdk6 - openjdk7 - oraclejdk7 matrix: allow_failures: - oraclejdk7
language: clojure lein: lein2 script: lein2 do clean, javac, all test jdk: - openjdk7 - openjdk8
Update set of Travis CI test JDKs.
Update set of Travis CI test JDKs.
YAML
apache-2.0
petr-tichy/parkour,damballa/parkour,damballa/parkour,damballa/parkour,petr-tichy/parkour,petr-tichy/parkour
6ba5ac2b4daef7bbbc337a7581bd49802295e70f
.travis.yml
.travis.yml
language: ruby rvm: - 2.0 - 2.1 - 2.2 - ruby-head - jruby-19mode - jruby-head - rbx-19mode env: global: - JRUBY_OPTS="$JRUBY_OPTS --2.0 -J-Xmx1g --debug" matrix: - "ADAPTER=in_memory" - "ADAPTER=yaml" - "ADAPTER=sqlite" - "ADAPTER=mysql DM_DB_USER=root DM_DB_PASSWORD=''" - "ADAPTER=postgres DM_DB_USER=postgres DM_DB_PASSWORD=''" cache: bundler sudo: true services: - mysql - postgresql before_install: - travis_retry sudo apt-get update -qq - sudo apt-get install -qq postgresql-server-dev-all bundler_args: --without yard guard metrics benchmarks --retry 3 before_script: - mysql -e "create database datamapper_alternate_tests;" - mysql -e "create database datamapper_default_tests;" - psql -c "create database datamapper_default_tests;" -U postgres - psql -c "create database datamapper_alternate_tests;" -U postgres script: "bundle exec rake spec" matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head notifications: irc: "irc.freenode.org#datamapper"
language: ruby rvm: - 2.0 - 2.1 - 2.2 - ruby-head - jruby-19mode - jruby-head - rbx-19mode env: global: - JRUBY_OPTS="$JRUBY_OPTS -J-Xmx1g --debug" matrix: - "ADAPTER=in_memory" - "ADAPTER=yaml" - "ADAPTER=sqlite" - "ADAPTER=mysql DM_DB_USER=root DM_DB_PASSWORD=''" - "ADAPTER=postgres DM_DB_USER=postgres DM_DB_PASSWORD=''" cache: bundler sudo: true services: - mysql - postgresql before_install: - travis_retry sudo apt-get update -qq - sudo apt-get install -qq postgresql-server-dev-all bundler_args: --without yard guard metrics benchmarks --retry 3 before_script: - mysql -e "create database datamapper_alternate_tests;" - mysql -e "create database datamapper_default_tests;" - psql -c "create database datamapper_default_tests;" -U postgres - psql -c "create database datamapper_alternate_tests;" -U postgres script: "bundle exec rake spec" matrix: allow_failures: - rvm: ruby-head - rvm: jruby-19mode - rvm: jruby-head notifications: irc: "irc.freenode.org#datamapper"
Add jruby-19mode to allowed failures
Add jruby-19mode to allowed failures * Remove unused JRUBY_OPTS switch
YAML
mit
troygnichols/dm-types,datamapper/dm-types
3f6bd1852c9055b3e8d00e45d86d0e5b65612162
.travis.yml
.travis.yml
language: haskell script: wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --quiet | sh
env: - GHCVER=7.2.2 - GHCVER=7.4.2 - GHCVER=7.6.3 - GHCVER=7.8.3 - GHCVER=head matrix: allow_failures: - env: GHCVER=head script: - wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --quiet | sh
Upgrade to the new set of tests
Upgrade to the new set of tests
YAML
bsd-3-clause
copland/cmdargs,ozgurakgun/cmdargs,ndmitchell/cmdargs
e50555aaec85734217724efd96bf3e3f625c30c8
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7 before_install: - brew update - brew install carthage || brew outdated carthage || brew upgrade carthage install: - gem install xcpretty - carthage bootstrap --verbose script: - set -o pipefail && xcodebuild -scheme 'Cartography-Mac' test | xcpretty -c - set -o pipefail && xcodebuild -scheme 'Cartography-iOS' test | xcpretty -c env: global: secure: odPR+Uvp5Enxc8qlFxuUo+aYVf1zS9xF7t2at4IXAJtP0wegwmG8dYOZ5IiMZP/gbBtAWWYc2en4NVnqS9K9wPFIrKdShMwBGnRcsYPj3b6kH/vQM/OLwzYFit2oSqhR3n4RP5UM+lc4jJnfqrK7StMY6ZxCkvLdZkMbFGqVJ20=
language: objective-c osx_image: xcode7 before_install: - brew update - brew install carthage || brew outdated carthage || brew upgrade carthage install: - gem install xcpretty - carthage bootstrap --verbose --configuration DEBUG script: - set -o pipefail && xcodebuild -scheme 'Cartography-Mac' test | xcpretty -c - set -o pipefail && xcodebuild -scheme 'Cartography-iOS' test | xcpretty -c env: global: secure: odPR+Uvp5Enxc8qlFxuUo+aYVf1zS9xF7t2at4IXAJtP0wegwmG8dYOZ5IiMZP/gbBtAWWYc2en4NVnqS9K9wPFIrKdShMwBGnRcsYPj3b6kH/vQM/OLwzYFit2oSqhR3n4RP5UM+lc4jJnfqrK7StMY6ZxCkvLdZkMbFGqVJ20=
Build dependencies with Debug configuration
Build dependencies with Debug configuration so we don't need to bother with codesigning
YAML
mit
ken0nek/Cartography,ppamorim/Cartography,tonyli508/Cartography,rankun203/Cartography,petester42/Cartography,u10int/Cartography,gaurav1981/Cartography,dougbeal/Cartography,petester42/Cartography,ppamorim/Cartography,bzmario/Cartography,ernestopino/Cartography,PiersonBro/Cartography,TimothyChilvers/Cartography,u10int/Cartography,Khan/Cartography,ernestopino/Cartography,kliu/Cartography,zilaiyedaren/Cartography,tonyli508/Cartography-IOS7,gaurav1981/Cartography,bzmario/Cartography,tonyli508/Cartography-IOS7,Khan/Cartography,TimothyChilvers/Cartography,noluyo/Cartography,tonyli508/Cartography,noluyo/Cartography,ken0nek/Cartography,PiersonBro/Cartography,dougbeal/Cartography,kliu/Cartography,xBrux/Cartography,zilaiyedaren/Cartography,rankun203/Cartography,xBrux/Cartography
7a9a24881d593151bc65b9a851a00672a8e8060e
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "5" - "6" sudo: false cache: - apt addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; AR="gcc-ar-4.8"; RANLIB="gcc-ranlib-4.8"; NM="gcc-nm-4.8"; fi script: - ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec after_success: - ./node_modules/coveralls/bin/coveralls.js < coverage/lcov.info
language: node_js node_js: - "4" - "6" - "8" sudo: false cache: - apt addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; AR="gcc-ar-4.8"; RANLIB="gcc-ranlib-4.8"; NM="gcc-nm-4.8"; fi script: - ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec after_success: - ./node_modules/coveralls/bin/coveralls.js < coverage/lcov.info
Add Node 8 to CI matrix
Add Node 8 to CI matrix
YAML
mit
addaleax/remarkup
de51b3f69a3f79ff55186c11eadfce51439331a3
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - nightly - hhvm matrix: allow_failures: - php: nightly - php: hhvm before_script: - composer install --dev --prefer-source script: - phpunit --coverage-text
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - nightly - hhvm matrix: allow_failures: - php: nightly - php: hhvm before_script: - composer install --dev --prefer-source script: - phpunit --coverage-text
Add PHP 7.1 in Travis tests
Add PHP 7.1 in Travis tests Add PHP 7.1 since it was released and nightly will be PHP 7.2
YAML
mit
reactphp/http-client
8001761c0891019758846e9f7bffe5a42a6fabbd
.travis.yml
.travis.yml
# Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-stable-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" # We have to install chef-sugar for ChefSpec - /opt/chefdk/embedded/bin/chef gem install chef-sugar script: - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/rubocop --version - /opt/chefdk/embedded/bin/rubocop - /opt/chefdk/embedded/bin/foodcritic --version - /opt/chefdk/embedded/bin/foodcritic . --exclude spec - /opt/chefdk/embedded/bin/rspec spec
# Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-current-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" # We have to install chef-sugar for ChefSpec - /opt/chefdk/embedded/bin/chef gem install chef-sugar script: - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/rubocop --version - /opt/chefdk/embedded/bin/rubocop - /opt/chefdk/embedded/bin/foodcritic --version - /opt/chefdk/embedded/bin/foodcritic . --exclude spec - /opt/chefdk/embedded/bin/rspec spec
Use the pre-release builds of chefdk
Use the pre-release builds of chefdk
YAML
apache-2.0
chef-cookbooks/memcached,opscode-cookbooks/memcached,opscode-cookbooks/memcached,chef-cookbooks/memcached,chef-cookbooks/memcached,opscode-cookbooks/memcached
a59634aed42595a8e3c930715803b65af7ce979e
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "6" - "4" - "0.12" install: - npm install script: npm test
sudo: false language: node_js node_js: - "6" - "4" install: - npm install script: npm test
Remove node v0.12.x from Travis CI
Remove node v0.12.x from Travis CI
YAML
mit
mercadolibre/chico,mercadolibre/chico
5b122da496ba7d516c3f56220d9c7f668479d9ef
.travis.yml
.travis.yml
language: ruby rvm: - 2.3.8 - 2.4.9 - 2.5.7 - 2.6.5 before_install: - gem install bundler
language: ruby rvm: - 2.3.8 - 2.4.9 - 2.5.7 - 2.6.5 - 2.7.0 before_install: - gem install bundler
Add Ruby 2.7 to Travis CI config
Add Ruby 2.7 to Travis CI config
YAML
apache-2.0
bbcrd/audio_waveform-ruby
0165f6f12401d7d71b87002fff524ba4ecc0db51
.travis.yml
.travis.yml
language: android android: components: - build-tools-19.1.0 - android-19 - sysimg-19 - extra-android-support licenses: - android-sdk-license-bcbbd656 - android-sdk-license-5be876d5 - '.*intel.+'
language: android env: matrix: - ANDROID_SDKS=android-19,sysimg-19 ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a android: components: - build-tools-19.1.0 - android-19 - sysimg-19 - extra-android-support licenses: - android-sdk-license-bcbbd656 - android-sdk-license-5be876d5 - '.*intel.+' before_install: - echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI - emulator -avd test -no-skin -no-audio -no-window &
Create AVD before install to it
Create AVD before install to it
YAML
mpl-2.0
spacecowboy/NoNonsense-FilePicker,stari4ek/NoNonsense-FilePicker,stari4ek/NoNonsense-FilePicker,michaelroland/nna-filepicker,spacecowboy/NoNonsense-FilePicker
6210322d7213511001ea37503745bd459756c0bb
.travis.yml
.travis.yml
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 env: - DJANGO=1.4 - DJANGO=1.5 - DJANGO=1.6 - DJANGO=1.7 matrix: exclude: - python: 2.6 env: DJANGO=1.7 - python: 3.2 env: DJANGO=1.4 - python: 3.3 env: DJANGO=1.4 - python: 3.4 env: DJANGO=1.4 - python: 3.4 env: DJANGO=1.5 - python: 3.4 env: DJANGO=1.6 allow_failures: - python: 3.2 - python: 3.3 - python: 3.4 install: - pip install tox coveralls before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" script: - tox -e `python -c 'import sys,os;print("py%d%d-"%sys.version_info[0:2]+os.environ["DJANGO"])'` after_success: - coverage report -m - coveralls
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 env: - DJANGO=1.4 - DJANGO=1.5 - DJANGO=1.6 - DJANGO=1.7 matrix: exclude: - python: 2.6 env: DJANGO=1.7 - python: 3.2 env: DJANGO=1.4 - python: 3.3 env: DJANGO=1.4 - python: 3.4 env: DJANGO=1.4 - python: 3.4 env: DJANGO=1.5 - python: 3.4 env: DJANGO=1.6 allow_failures: - python: 3.2 - python: 3.3 - python: 3.4 install: - pip install tox coveralls script: - xvfb-run tox -e `python -c 'import sys,os;print("py%d%d-"%sys.version_info[0:2]+os.environ["DJANGO"])'` after_success: - coverage report -m - coveralls
Use xvfb-run for CI testing.
Use xvfb-run for CI testing.
YAML
mit
DjangoAdminHackers/django-admin-enhancer,DjangoAdminHackers/django-admin-enhancer,DjangoAdminHackers/django-admin-enhancer,charettes/django-admin-enhancer,charettes/django-admin-enhancer,charettes/django-admin-enhancer
b34e8f8ef989e26e8046054661793494ce63ce6f
.travis.yml
.travis.yml
dist: xenial language: node_js node_js: - "lts/*" cache: yarn: true services: - xvfb script: - yarn lint - yarn flow - yarn test --coverage - yarn build:prod - yarn build:dist --publish "never" - yarn test-e2e - yarn codecov branches: except: - experimental
dist: xenial env: - NODE_ENV=production language: node_js node_js: - "lts/*" cache: yarn: true services: - xvfb script: - yarn lint - yarn flow - yarn test --coverage - yarn build:prod - yarn build:dist --publish "never" - yarn test-e2e - yarn codecov branches: except: - experimental
Set NODE_ENV to production for CI
Set NODE_ENV to production for CI
YAML
mit
psychobolt/electron-boilerplate,psychobolt/electron-boilerplate
a0f424f3cea7892f01e1474341fc36744512763a
.travis.yml
.travis.yml
language: go before_install: - sudo apt-get install bzr >/dev/null 2>&1 install: - hg clone -u release https://code.google.com/p/go "${HOME}/go" >/dev/null 2>&1 - cd "${HOME}/go/src" && ./make.bash >/dev/null 2>&1 - mkdir -p "${HOME}/src" || true - mkdir -p "${HOME}/bin" || true - mkdir -p "${HOME}/pkg" || true - export GOPATH="${HOME}" - export PATH=${PATH}:${HOME}/go/bin - ln -s "${HOME}/builds/matttproud/golang_instrumentation" "${HOME}/src/golang_instrumentation" - go get -v launchpad.net/gocheck >/dev/null 2>&1 - go get -v github.com/matttproud/golang_instrumentation script: - go build -a -v github.com/matttproud/golang_instrumentation/... - go test -v github.com/matttproud/golang_instrumentation/...
language: erlang before_install: - sudo apt-get install bzr >/dev/null 2>&1 install: - hg clone -u release https://code.google.com/p/go "${HOME}/go" >/dev/null 2>&1 - cd "${HOME}/go/src" && ./make.bash >/dev/null 2>&1 - mkdir -p "${HOME}/src" || true - mkdir -p "${HOME}/bin" || true - mkdir -p "${HOME}/pkg" || true - export GOPATH="${HOME}" - export PATH=${PATH}:${HOME}/go/bin - ln -s "${HOME}/builds/matttproud/golang_instrumentation" "${HOME}/src/golang_instrumentation" - go get -v launchpad.net/gocheck >/dev/null 2>&1 - go get -v github.com/matttproud/golang_instrumentation script: - go build -a -v github.com/matttproud/golang_instrumentation/... - go test -v github.com/matttproud/golang_instrumentation/...
Revert "Trial an experiment of the Travis CI language."
Revert "Trial an experiment of the Travis CI language." This reverts commit b98b2c806b699c1e95e8679992986d7101a8471c. The re-build failed on Travis.
YAML
apache-2.0
stapelberg/client_golang,prometheus/client_golang,KevinPike/client_golang,telendt/client_golang,m3db/prometheus_client_golang,mattkanwisher/client_golang,jimmidyson/prometheus-client_golang,fabxc/client_golang,asbjornenge/client_golang
1c666e12e17c58086b8fe0644c342c5b2818101a
.travis.yml
.travis.yml
language: java addons: hosts: - test-bucket.localhost env: - PATH=$PATH:$HOME/.s3cmd SECOR_LOCAL_S3=true S3CMD=1.0.1 jdk: - openjdk7 - oraclejdk7 - oraclejdk8 before_install: - wget https://github.com/s3tools/s3cmd/archive/v$S3CMD.tar.gz -O /tmp/s3cmd.tar.gz - tar -xzf /tmp/s3cmd.tar.gz -C $HOME - mv $HOME/s3cmd-$S3CMD $HOME/.s3cmd - cd $HOME/.s3cmd && python setup.py install --user && cd - - gem install fakes3 -v 0.1.7 script: - make unit - make integration
language: java addons: hosts: - test-bucket.localhost env: - PATH=$PATH:$HOME/.s3cmd SECOR_LOCAL_S3=true S3CMD=1.0.1 jdk: - oraclejdk7 - oraclejdk8 before_install: - wget https://github.com/s3tools/s3cmd/archive/v$S3CMD.tar.gz -O /tmp/s3cmd.tar.gz - tar -xzf /tmp/s3cmd.tar.gz -C $HOME - mv $HOME/s3cmd-$S3CMD $HOME/.s3cmd - cd $HOME/.s3cmd && python setup.py install --user && cd - - gem install fakes3 -v 0.1.7 script: - make unit - make integration
Remove openjdk7 since it constantsly causing core dumps on starting zookeeper:
Remove openjdk7 since it constantsly causing core dumps on starting zookeeper: running ./scripts/run_kafka_class.sh org.apache.zookeeper.server.quorum.QuorumPeerMain ./scripts/../zookeeper.test.properties > /tmp/secor_dev/logs/zookeeper.log 2>&1 & *** buffer overflow detected ***: /usr/lib/jvm/java-7-openjdk-amd64/bin/java terminated ======= Backtrace: ========= /lib/x86_64-linux-gnu/libc.so.6(__fortify_fail+0x37)[0x2b029fa7ae57]
YAML
apache-2.0
TiVo/secor,Smartling/secor,Smartling/secor,TiVo/secor,nguyenvanthan/secor,liamstewart/secor,strava/secor,shawnsnguyen/secor,pinterest/secor,morrifeldman/secor,FundingCircle/secor,morrifeldman/secor,FundingCircle/secor,liamstewart/secor,shawnsnguyen/secor,HenryCaiHaiying/secor,strava/secor,pinterest/secor,HenryCaiHaiying/secor,nguyenvanthan/secor
288f50dab90700a8407383dc59d5361b2cb2c8c5
.travis.yml
.travis.yml
sudo: required dist: trusty # install the pre-release chef-dk. Use chef-stable-trusty to install the stable release addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=default-centos-6 - INSTANCE=default-centos-7 - INSTANCE=default-ubuntu-1204 - INSTANCE=default-ubuntu-1404 - INSTANCE=default-ubuntu-1604 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(/opt/chefdk/bin/chef shell-init bash)" script: KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE} matrix: include: - before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/cookstyle --version - /opt/chefdk/embedded/bin/foodcritic --version - script: - /opt/chefdk/bin/chef exec rake env: UNIT_AND_LINT=1
sudo: required dist: trusty # install the pre-release chef-dk. Use chef-stable-trusty to install the stable release addons: apt: sources: - chef-stable-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=default-centos-6 - INSTANCE=default-centos-7 - INSTANCE=default-ubuntu-1204 - INSTANCE=default-ubuntu-1404 - INSTANCE=default-ubuntu-1604 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(/opt/chefdk/bin/chef shell-init bash)" script: KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE} matrix: include: - before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/cookstyle --version - /opt/chefdk/embedded/bin/foodcritic --version - script: - /opt/chefdk/bin/chef exec rake env: UNIT_AND_LINT=1
Switch back to stable ChefDK builds for testing
Switch back to stable ChefDK builds for testing
YAML
apache-2.0
chef-cookbooks/keepalived,opscode-cookbooks/keepalived,opscode-cookbooks/keepalived
404f147aa750a6cc5be1d3cdabc5356e1f1caba3
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7 - hhvm script: phpunit --coverage-text tests
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm - nightly script: phpunit --coverage-text tests
Add PHP 7.1 and nightly
Add PHP 7.1 and nightly
YAML
mit
RobThree/TwoFactorAuth,pskuza/TwoFactorAuth
5009b0f58b4233416fa16c40795101af10de2acb
.travis.yml
.travis.yml
language: ruby rvm: - 2.3.0 - 2.2 - 2.1 - 2.0.0 sudo: false services: mongodb before_script: - mysql -e 'CREATE DATABASE statesman_test;' - psql -c 'CREATE DATABASE statesman_test;' -U postgres script: - bundle exec rubocop - bundle exec rake env: - "RAILS_VERSION=3.2.21" - "RAILS_VERSION=4.0.13" - "RAILS_VERSION=4.1.10" - "RAILS_VERSION=4.2.2" - "RAILS_VERSION=4.2.2 DATABASE_URL=mysql2://root@localhost/statesman_test" - "RAILS_VERSION=4.2.2 DATABASE_URL=postgres://postgres@localhost/statesman_test"
language: ruby rvm: - 2.3.0 - 2.2 - 2.1 - 2.0.0 sudo: false services: mongodb before_script: - mysql -e 'CREATE DATABASE statesman_test;' - psql -c 'CREATE DATABASE statesman_test;' -U postgres script: - bundle exec rubocop - bundle exec rake env: - "RAILS_VERSION=3.2.21" - "RAILS_VERSION=4.0.13" - "RAILS_VERSION=4.1.14" - "RAILS_VERSION=4.2.5" - "RAILS_VERSION=4.2.5 DATABASE_URL=mysql2://root@localhost/statesman_test" - "RAILS_VERSION=4.2.5 DATABASE_URL=postgres://postgres@localhost/statesman_test" - "RAILS_VERSION=5.0.0.beta3" matrix: exclude: - rvm: 2.1 env: "RAILS_VERSION=5.0.0.beta3" - rvm: 2.0.0 env: "RAILS_VERSION=5.0.0.beta3"
Add Rails 5.0.0.beta3 to Travis
Add Rails 5.0.0.beta3 to Travis
YAML
mit
timothyp/statesman,mkcode/statesmin,timothyp/statesman,gocardless/statesman,gocardless/statesman
c4d06d8f6e25698f5ecba24822e8f892707d9609
.travis.yml
.travis.yml
language: python python: - "2.7" before_install: - "export DISPLAY=:99.0" # Required for graphics - "sh -e /etc/init.d/xvfb start" # Required for graphics install: - pip install pandas numpy matplotlib - pip install coveralls before_script: - export PYTHONPATH="$PYTHONPATH:/home/travis/build/codles/UpDownMethods" script: - coverage run -m unittest discover -s tests -v after_success: - coveralls
language: python python: - "2.7" before_install: - "export DISPLAY=:99.0" # Required for graphics - "sh -e /etc/init.d/xvfb start" # Required for graphics install: - pip install pandas numpy matplotlib - pip install coveralls before_script: - export PYTHONPATH="$PYTHONPATH:/home/travis/build/codles/UpDownMethods" script: - coverage run --source=UpDownMethods -m unittest discover -s tests -v after_success: - coveralls
Remove extra modules coveralls coverage
Remove extra modules coveralls coverage
YAML
mit
codles/UpDownMethods
10e92169ec26eea9b4e7bd2625276a3f50f10c54
.travis.yml
.travis.yml
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" before_install: - 'gem update --system --conservative || (gem i "rubygems-update:~>2.7" --no-document && update_rubygems)' - 'gem update bundler --conservative' env: - CI=true rvm: - 2.2.2 - 2.3 - 2.4 - 2.5 - jruby-9 - rbx-3 matrix: allow_failures: - rvm: jruby-9 - rvm: rbx-3 addons: apt: packages: - raptor2-utils cache: bundler sudo: false
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" before_install: - 'gem update --system --conservative || (gem i "rubygems-update:~>2.7" --no-document && update_rubygems)' - 'gem update bundler --conservative' env: - CI=true rvm: - 2.2.2 - 2.3 - 2.4 - 2.5 - 2.6 - jruby-9 - rbx-3 matrix: allow_failures: - rvm: jruby-9 - rvm: rbx-3 addons: apt: packages: - raptor2-utils cache: bundler sudo: false
Add 2.6 to Travis RVM matrix.
Add 2.6 to Travis RVM matrix.
YAML
unlicense
ruby-rdf/rdf-raptor,ruby-rdf/rdf-raptor
7280c09f456bfe5d292aa75320b68a591e562d4e
.travis.yml
.travis.yml
# Disabling sudo moves build to the Container Based Infrastructure on Travis CI sudo: false language: android jdk: oraclejdk8 android: components: - platform-tools - tools - android-23 - build-tools-23.0.3 - extra-android-m2repository - extra-android-support - sys-img-armeabi-v7a-android-18 before_script: - echo no | android create avd --force -n test -t android-18 --abi armeabi-v7a - emulator -avd test -no-skin -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 notifications: email: true cache: directories: - $HOME/.gradle
# Disabling sudo moves build to the Container Based Infrastructure on Travis CI sudo: false language: android jdk: oraclejdk8 android: components: - platform-tools - tools - android-23 - build-tools-23.0.3 - extra-android-m2repository - extra-android-support - sys-img-armeabi-v7a-android-18 before_script: - echo no | android create avd --force -n test -t android-18 --abi armeabi-v7a - emulator -avd test -no-skin -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 notifications: email: true
Remove caching from the script
Remove caching from the script
YAML
mit
PSPDFKit-labs/VanGogh
a696d1eb220bf818986ff140f4ea92985b5fca99
.travis.yml
.travis.yml
sudo: required language: c env: matrix: - OS_TYPE=fedora - OS_TYPE=centos:7 - OS_TYPE=centos:6 - OS_TYPE=debian:testing - OS_TYPE=ubuntu:latest - OS_TYPE=ubuntu:16.04 services: - docker before_install: - docker pull $OS_TYPE script: - travis_wait 30 docker run --privileged --rm=true --tty=true -v `pwd`:/libstoragemgmt-code:rw $OS_TYPE /bin/bash -c /libstoragemgmt-code/test/docker_travis_test.sh
sudo: required language: c env: matrix: - OS_TYPE=fedora:28 - OS_TYPE=centos:7 - OS_TYPE=centos:6 - OS_TYPE=debian:testing - OS_TYPE=ubuntu:latest - OS_TYPE=ubuntu:16.04 services: - docker before_install: - docker pull $OS_TYPE script: - travis_wait 30 docker run --privileged --rm=true --tty=true -v `pwd`:/libstoragemgmt-code:rw $OS_TYPE /bin/bash -c /libstoragemgmt-code/test/docker_travis_test.sh
Set Fedora docker to F28
Set Fedora docker to F28 F29 fails as python2-pywbem isn't available, will need to modify tests for fedora. Signed-off-by: Tony Asleson <1ef2d381aa56d512126ddaacc29e68136e4fdf55@redhat.com>
YAML
lgpl-2.1
cathay4t/libstoragemgmt,libstorage/libstoragemgmt,cathay4t/libstoragemgmt,libstorage/libstoragemgmt,libstorage/libstoragemgmt,tasleson/libstoragemgmt,libstorage/libstoragemgmt,cathay4t/libstoragemgmt,tasleson/libstoragemgmt,tasleson/libstoragemgmt,libstorage/libstoragemgmt,cathay4t/libstoragemgmt,tasleson/libstoragemgmt,cathay4t/libstoragemgmt,tasleson/libstoragemgmt
984868e3fe27b509cb8b77f00aa9c91e7d00bda9
.travis.yml
.travis.yml
language: go sudo: required services: - mysql - postgresql addons: postgresql: 9.5 go: - tip install: - go get -v github.com/lib/pq - go get -v github.com/go-sql-driver/mysql - go get -v github.com/mattn/go-sqlite3 - go get -t -v ./... script: - go test -v -covermode=count -coverprofile=coverage.out - go test -v -covermode=count -coverprofile=sqlite.out ./dialects/sqlite - go test -v -covermode=count -coverprofile=postgres.out ./dialects/postgres - go test -v -covermode=count -coverprofile=mysql.out ./dialects/mysql - tail --lines +2 sqlite.out >> coverage.out - tail --lines +2 postgres.out >> coverage.out - tail --lines +2 mysql.out >> coverage.out - $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken 0yIEy3NVX2lXn3KxYzHjkla7EWGjvmLAp before_script: - mysql -e 'create database IF NOT EXISTS qb_test;' - psql -U postgres -c 'CREATE DATABASE qb_test;'
language: go sudo: required services: - mysql - postgresql addons: postgresql: 9.5 go: - tip before_install: - go get github.com/mattn/goveralls install: - go get -v github.com/lib/pq - go get -v github.com/go-sql-driver/mysql - go get -v github.com/mattn/go-sqlite3 - go get -t -v ./... script: - go test -v -covermode=count -coverprofile=coverage.out - go test -v -covermode=count -coverprofile=sqlite.out ./dialects/sqlite - go test -v -covermode=count -coverprofile=postgres.out ./dialects/postgres - go test -v -covermode=count -coverprofile=mysql.out ./dialects/mysql - tail --lines +2 sqlite.out >> coverage.out - tail --lines +2 postgres.out >> coverage.out - tail --lines +2 mysql.out >> coverage.out - $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken 0yIEy3NVX2lXn3KxYzHjkla7EWGjvmLAp before_script: - mysql -e 'create database IF NOT EXISTS qb_test;' - psql -U postgres -c 'CREATE DATABASE qb_test;'
Add goveralls to before installation
Add goveralls to before installation
YAML
lgpl-2.1
aacanakin/qb,slicebit/qb
5e359ed85356d39639da0bbc1e1a4f050a9ac88e
.travis.yml
.travis.yml
language: java script: mvn clean package -P strict after_success: - mvn jacoco:report coveralls:report - bash ./deploy.sh jdk: - oraclejdk8 sudo: false cache: directories: - $HOME/.m2 env: global: - GH_REF: github.com/vbauer/herald.git - secure: "DZWksxGbfxAgSBfq5ecKuPtwdpG8d5Lav5UuaMq8N/IeW+pIzvJOjHBn1FiMO6xQZaEfaoKJCWPQs2kNymhC4Pgl+Ni8mipNf3GsCKlRq87jsBDV7FChI3kTSPo7b+JFeCA8fUVlemN/T3eyEY6lyU/5RwG2r4vAtsAE0SXMI/8="
language: java script: mvn clean package -P strict after_success: - mvn jacoco:report coveralls:report - bash ./deploy.sh jdk: - oraclejdk8 - oraclejdk9 - oraclejdk10 sudo: false cache: directories: - $HOME/.m2 env: global: - GH_REF: github.com/vbauer/herald.git - secure: "DZWksxGbfxAgSBfq5ecKuPtwdpG8d5Lav5UuaMq8N/IeW+pIzvJOjHBn1FiMO6xQZaEfaoKJCWPQs2kNymhC4Pgl+Ni8mipNf3GsCKlRq87jsBDV7FChI3kTSPo7b+JFeCA8fUVlemN/T3eyEY6lyU/5RwG2r4vAtsAE0SXMI/8="
Update Travis CI config (add new JDKs)
Update Travis CI config (add new JDKs)
YAML
apache-2.0
vbauer/herald,vbauer/herald
8302ba13373d0cfe77b9dfd6d4602398ca2523f0
.travis.yml
.travis.yml
language: php # Run on container environment (needed for trais caching feature) sudo: false matrix: fast_finish: true include: - php: 5.3 env: DEPENDENCIES='low' - php: 5.3 - php: 5.4 - php: 5.5 - php: 5.6 - php: 7.0 - php: hhvm allow_failures: - php: 7.0 - php: hhvm # Cache composer files for faster test times cache: directories: - vendor - $HOME/.composer/cache before_install: # Remove xdebug module as it is not required but slows down composer and phpunit - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then phpenv config-rm xdebug.ini; fi; # Attempt to use Github oAuth token, if available, to avoid their public ratelimit - if [ -n "$GH_ACCESS_TOKEN" ]; then git config --global github.accesstoken $GH_ACCESS_TOKEN; fi; # Composer only updated in TravisCI containers when they build their images every month or so - composer self-update install: - if [ -z "$DEPENDENCIES" ]; then composer install --no-interaction --prefer-dist; fi; - if [ "$DEPENDENCIES" == "low" ]; then composer update --no-interaction --prefer-dist --prefer-lowest; fi; script: - phpunit
language: php # Run on container environment (needed for trais caching feature) sudo: false matrix: fast_finish: true include: - php: 5.3 env: DEPENDENCIES='low' - php: 5.3 - php: 5.4 - php: 5.5 - php: 5.6 - php: 7.0 - php: hhvm allow_failures: - php: 7.0 - php: hhvm # Cache composer files for faster test times cache: directories: - vendor - $HOME/.composer/cache before_install: # Remove xdebug module as it is not required but slows down composer and phpunit - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then phpenv config-rm xdebug.ini; fi; # Attempt to use Github oAuth token, if available, to avoid their public ratelimit - if [ -n "$GH_ACCESS_TOKEN" ]; then git config --global github.accesstoken $GH_ACCESS_TOKEN; fi; - if [ -n "$GH_ACCESS_TOKEN" ]; then composer config github-oauth.github.com $GH_ACCESS_TOKEN; fi; # Composer only updated in TravisCI containers when they build their images every month or so - composer self-update install: - if [ -z "$DEPENDENCIES" ]; then composer install --no-interaction --prefer-dist; fi; - if [ "$DEPENDENCIES" == "low" ]; then composer update --no-interaction --prefer-dist --prefer-lowest; fi; script: - phpunit
Allow composer to use Github token for HTTP downloads
Allow composer to use Github token for HTTP downloads
YAML
mit
afrihost/BaseCommandBundle,afrihost/BaseCommandBundle
7031b263d98dd10211462f987c2187b3c443c611
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.6" install: - pip install coveralls - pip install -r requirements.txt script: coverage run --source=cantools setup.py test after_success: coveralls
language: python python: - "2.7" - "3.6" - "pypy" - "pypy3" install: - pip install coveralls - pip install -r requirements.txt script: coverage run --source=cantools setup.py test after_success: coveralls
Test with pypy on TravisCI.
Test with pypy on TravisCI.
YAML
mit
cantools/cantools,eerimoq/cantools
56a2ecd1eb963471e1a951e60f40f4079fa78c0b
.travis.yml
.travis.yml
language: python install: - python bootstrap-buildout.py - ./bin/buildout script: - ./bin/nosetests -sv - ./bin/sphinx-build -b doctest doc sphinx - ./bin/sphinx-build -b html doc sphinx
language: python before_install: - sudo apt-get update -qq - sudo apt-get install -qq --force-yes libatlas-dev libatlas-base-dev liblapack-dev - pip install --find-links https://www.idiap.ch/software/bob/wheels/travis/ --use-wheel sphinx nose numpy scipy install: - python bootstrap-buildout.py - ./bin/buildout script: - ./bin/nosetests -sv - ./bin/sphinx-build -b doctest doc sphinx - ./bin/sphinx-build -b html doc sphinx
Install a few required packages
Install a few required packages
YAML
bsd-3-clause
anjos/rrpack,anjos/rrbob
2fe25cd00cf2f3f2e835653038dafe1eda7c6d63
.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 whatever NPM they're serving.
Use whatever NPM they're serving.
YAML
mit
bigeasy/kibitz,bigeasy/kibitz
d5d6b9f7b5dd967098553c4b3fe52104d11ca8da
.travis.yml
.travis.yml
sudo: false language: java jdk: - oraclejdk11 cache: directories: - $HOME/.m2 before_install: - echo 'Asia/Ho_Chi_Minh' | sudo tee /etc/timezone - sudo dpkg-reconfigure --frontend noninteractive tzdata - mysql -u root -e 'CREATE DATABASE test;' - psql -c 'CREATE DATABASE test;' -U postgres after_script: services: - mysql - postgresql script: - mvn test -DskipTests=false -Dmysql.hostAndPort=localhost -Dmysql.user=root -Dmysql.pwd="" - mvn test -DskipTests=false -Dpgsql.hostAndPort=localhost -Dpgsql.user=postgres -Dpgsql.pwd=""
sudo: false language: java jdk: - oraclejdk8 cache: directories: - $HOME/.m2 before_install: - echo 'Asia/Ho_Chi_Minh' | sudo tee /etc/timezone - sudo dpkg-reconfigure --frontend noninteractive tzdata - mysql -u root -e 'CREATE DATABASE test;' - psql -c 'CREATE DATABASE test;' -U postgres after_script: services: - mysql - postgresql script: - mvn test -DskipTests=false -Dmysql.hostAndPort=localhost -Dmysql.user=root -Dmysql.pwd="" - mvn test -DskipTests=false -Dpgsql.hostAndPort=localhost -Dpgsql.user=postgres -Dpgsql.pwd=""
Switch backto OpenJDK8 on Travis
Switch backto OpenJDK8 on Travis
YAML
mit
DDTH/ddth-dao
542977e22fe661a7a86bcc2ea49ddc5968ebe70e
.travis.yml
.travis.yml
--- dist: trusty language: node_js node_js: - "6" sudo: required services: - redis-server addons: chrome: stable cache: directories: - $HOME/.npm env: global: # See https://git.io/vdao3 for details. - JOBS=1 before_install: - npm config set spin false - npm install -g bower - bower --version install: - npm install - npm install sockethub before_script: - ./node_modules/sockethub/bin/sockethub 2> /dev/null & script: - npm run lint:js - npm test
--- dist: trusty language: node_js node_js: - "6" sudo: required services: - redis-server addons: chrome: stable cache: directories: - $HOME/.npm - $HOME/sockethub env: global: # See https://git.io/vdao3 for details. - JOBS=1 before_install: - npm config set spin false - npm install -g bower - bower --version install: - mkdir -p $HOME/sockethub - cd $HOME/sockethub - npm install sockethub - cd node_modules/sockethub - npm install - cd $TRAVIS_BUILD_DIR - npm install before_script: - $HOME/sockethub/node_modules/sockethub/bin/sockethub 2> /dev/null & script: - npm run lint:js - npm test
Fix installing and running Sockethub on Travis
Fix installing and running Sockethub on Travis
YAML
mpl-2.0
67P/hyperchannel,67P/hyperchannel
15b225f7574e56a832f2f53c06083d7b79974392
.travis.yml
.travis.yml
language: scala jdk: oraclejdk8 sbt_args: "-J-Xmx2G" script: - sbt +test # Taken from https://github.com/typelevel/cats/blob/master/.travis.yml cache: directories: - "travis_phantomjs" - $HOME/.sbt/0.13/dependency - $HOME/.sbt/boot/scala* - $HOME/.sbt/launchers - $HOME/.ivy2/cache - $HOME/.nvm before_cache: - du -h -d 1 $HOME/.ivy2/cache - du -h -d 2 $HOME/.sbt/ - find $HOME/.sbt -name "*.lock" -type f -delete - find $HOME/.ivy2/cache -name "ivydata-*.properties" -type f -delete after_success: - "./bin/ci-publish.sh"
language: scala jdk: oraclejdk8 sbt_args: "-J-Xmx2G" script: - sbt +test # Taken from https://github.com/typelevel/cats/blob/master/.travis.yml cache: directories: - "travis_phantomjs" - $HOME/.sbt/0.13/dependency - $HOME/.sbt/boot/scala* - $HOME/.sbt/launchers - $HOME/.ivy2/cache - $HOME/.coursier - $HOME/.nvm before_cache: - du -h -d 1 $HOME/.ivy2/cache - du -h -d 2 $HOME/.sbt/ - find $HOME/.sbt -name "*.lock" -type f -delete - find $HOME/.ivy2/cache -name "ivydata-*.properties" -type f -delete after_success: - "./bin/ci-publish.sh"
Add coursier to Travis cache
Add coursier to Travis cache
YAML
apache-2.0
olafurpg/metaconfig
679057d3bed60b320dd13619c40008990435c2fa
.travis.yml
.travis.yml
language: python matrix: include: - python: "2.7" - python: "pypy" env: PYPY_VERSION="4.0.1" cache: directories: - $HOME/.cache/pip before_install: # If necessary, set up an appropriate version of pypy. - if [ ! -z "$PYPY_VERSION" ]; then source utils/setup-pypy-travis.sh; fi - if [ ! -z "$PYPY_VERSION" ]; then python --version 2>&1 | fgrep "PyPy $PYPY_VERSION"; fi install: - pip install 'pip>=7.1.2' - pip install coveralls - pip install -r requirements-dev.txt - pip install -e . script: - flake8 sideloader - py.test --cov=sideloader --cov-report=term after_success: - coveralls
language: python matrix: include: - python: "2.7" # Disable coverage tests for pypy as they'll always be the same as CPython - python: "pypy" env: PYPY_VERSION="4.0.1" NO_COVERAGE=1 cache: directories: - $HOME/.cache/pip before_install: # If necessary, set up an appropriate version of pypy. - if [ ! -z "$PYPY_VERSION" ]; then source utils/setup-pypy-travis.sh; fi - if [ ! -z "$PYPY_VERSION" ]; then python --version 2>&1 | fgrep "PyPy $PYPY_VERSION"; fi install: - pip install 'pip>=7.1.2' - pip install coveralls - pip install -r requirements-dev.txt - pip install -e . script: - flake8 sideloader - if [ -z "$NO_COVERAGE" ]; then COVERAGE_OPTS="--cov=sideloader --cov-report=term"; else COVERAGE_OPTS=""; fi - py.test $COVERAGE_OPTS sideloader after_success: - if [ -z "$NO_COVERAGE" ]; then coveralls; fi
Disable coverage tests for pypy
Travis: Disable coverage tests for pypy
YAML
mit
praekeltfoundation/sideloader.build,praekeltfoundation/sideloader.build
a9b3b7aeb773eb6f22c0447697d5c09788fbcfcc
.travis.yml
.travis.yml
language: node_js node_js: - "0.8" - "0.10" before_script: - sudo npm install -g grunt - grunt build script: grunt test --verbose --force
language: node_js node_js: - "0.8" - "0.10" before_script: - npm install -g grunt-cli - grunt build script: grunt test --verbose --force
Correct installation of Grunt CLI
Correct installation of Grunt CLI
YAML
mit
gardejo/js-kancolle-logistics-visualizer,gardejo/js-kancolle-logistics-visualizer
fb29e80b3b1a6488e70ab7809ed0b62ed368f7ed
.travis.yml
.travis.yml
language: python sudo: false cache: pip python: - "2.6" - "2.7" - "3.3" - "3.4" - "pypy" - "pypy3" install: - pip install --use-mirrors -r requirements/package.txt -r requirements/qa.txt script: - py.test - flake8 notifications: email: - nineseconds@yandex.ru
language: python sudo: false cache: pip python: - "2.6" - "2.7" - "3.3" - "3.4" - "pypy" install: - pip install --use-mirrors -r requirements/package.txt -r requirements/qa.txt script: - py.test - flake8 notifications: email: - nineseconds@yandex.ru
Remove PyPy3 from the list of Pythons in Travis
Remove PyPy3 from the list of Pythons in Travis
YAML
mit
reclosedev/surveyor,9seconds/surveyor
9b591650ea5f0498dcdad8b54bd3eafc5eaf8aba
.travis.yml
.travis.yml
language: node_js node_js: - 0.10 addons: firefox: "41.0" before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" after_script: "npm install coveralls@2.10.0 && cat ./coverage/**/lcov.info | coveralls"
language: node_js node_js: - "4" addons: firefox: "41.0" before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" after_script: "npm install coveralls@2.10.0 && cat ./coverage/**/lcov.info | coveralls"
Use Node 4 LTS on CI.
Use Node 4 LTS on CI.
YAML
mit
omichelsen/clipboard-button,omichelsen/clipboard-button
fe43a15d7e0e40308e04a29f73fc27384c96c286
.travis.yml
.travis.yml
language: rust rust: - stable - beta - nightly services: - elasticsearch before_install: - sudo apt-get update -qq - sudo apt-get install -y ruby - curl -O https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-2.0.0.deb && sudo dpkg -i --force-confnew elasticsearch-2.0.0.deb # As recommended here: http://docs.travis-ci.com/user/database-setup/#ElasticSearch before_script: - sleep 10
language: rust rust: - stable - beta - nightly services: - elasticsearch before_install: - sudo apt-get update -qq - sudo apt-get install -y ruby - curl -O https://download.elasticsearch.org/elasticsearch/release/org/elasticsearch/distribution/deb/elasticsearch/2.0.2/elasticsearch-2.0.2.deb && sudo dpkg -i --force-confnew elasticsearch-2.0.0.deb # As recommended here: http://docs.travis-ci.com/user/database-setup/#ElasticSearch before_script: - sleep 10
Correct URL for the ES 2.0 DEB
Correct URL for the ES 2.0 DEB
YAML
apache-2.0
benashford/rs-es
55726ad3cb83d228f35aa41887d2ccf20782a21f
.travis.yml
.travis.yml
sudo: required language: php php: - 5.6 - 7.0 - 7.1 env: global: - setup=basic services: - docker matrix: fast_finish: true include: - php: 5.6 env: setup=lowest - php: 5.6 env: setup=stable cache: directories: - $HOME/.composer/cache before_install: - docker pull centrifugo/centrifugo - docker run -d --net=host --ulimit nofile=65536:65536 -v $TRAVIS_BUILD_DIR/tests:/centrifugo -p 8000:8000 centrifugo/centrifugo centrifugo -c config.json - docker ps -a - travis_retry composer self-update install: - if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction --no-suggest; fi - if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --no-suggest --prefer-stable; fi - if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --no-suggest --prefer-stable --prefer-lowest; fi script: vendor/bin/phpunit
sudo: required language: php php: - 5.6 - 7.0 - 7.1 env: global: - setup=basic services: - docker matrix: fast_finish: true include: - php: 5.6 services: - docker env: setup=lowest - php: 5.6 services: - docker env: setup=stable cache: directories: - $HOME/.composer/cache before_install: - docker pull centrifugo/centrifugo - docker run -d --net=host --ulimit nofile=65536:65536 -v $TRAVIS_BUILD_DIR/tests:/centrifugo -p 8000:8000 centrifugo/centrifugo centrifugo -c config.json - docker ps -a - travis_retry composer self-update install: - if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction --no-suggest; fi - if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --no-suggest --prefer-stable; fi - if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --no-suggest --prefer-stable --prefer-lowest; fi script: vendor/bin/phpunit
Add docker service for php5.6
Add docker service for php5.6
YAML
mit
LaraComponents/centrifuge-broadcaster
b462541b7e886d77fa62bbc8b9729dd724b54999
.travis.yml
.travis.yml
language: python python: - "3.5.1" addons: apt: packages: - xvfb before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 install: - pip install tornado aiohttp syncer - pip install pytest pytest-cov selenium - pip install codecov coveralls script: - py.test --cov wdom after_success: - codecov - coveralls
language: python python: - "3.5.1" addons: apt: packages: - xvfb before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 install: - pip install tornado aiohttp syncer - pip install pytest pytest-cov selenium - pip install codecov coveralls script: - py.test --cov wdom after_success: - codecov -b dev - coveralls
Send branch name to codecov
Send branch name to codecov
YAML
mit
miyakogi/wdom,miyakogi/wdom,miyakogi/wdom
d0e4712eaa696ff13470b719cb6842260a3ada11
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "pypy" - "pypy3" matrix: fast_finish: true install: - pip install -r requirements-dev.txt script: - make test_coverage - make flake8 after_success: - coveralls
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "pypy" - "pypy3.3-5.2-alpha1" matrix: fast_finish: true install: - pip install -r requirements-dev.txt script: - make test_coverage - make flake8 after_success: - coveralls
Use more recent PyPy3 on Travis CI
Use more recent PyPy3 on Travis CI The default PyPy3 is really old (implements Python 3.2) and some packages won't cooperate with it anymore.
YAML
lgpl-2.1
jstasiak/python-zeroconf
ef53c15feca6df9223dd1c2d6f93b7ecdc836258
.travis.yml
.travis.yml
language: ruby dist: trusty rvm: 2.4.2 import: - travis-ci/build-configs:db-setup.yml cache: bundler: true services: - redis - rabbitmq env: matrix: - RAKE_TASK=spec global: secure: BdVC3OHqYcgePLrkKIk28Ewn/dxCYFf3Cx+Q8P+BCDj6UPJyRSbKmILBzuX96H5xhKmUFo0A/upUhJI9UUP9aXHO7MzRe04/c88QdO4wGacVUaIyB20S0pr262zbc/nA50K9cVgpmWc64n6uQR1tgM6ZyyBnBeXkLzCAOHPq99I= before_install: gem install bundler jobs: include: - stage: "testing time" script: bundle exec rspec spec - stage: ":ship: it to quay.io" ruby: services: addons: before_install: skip install: skip script: make ship if: type = cron OR commit_message =~ /ship:docker/ OR env(SHIP_DOCKER) = true
language: ruby dist: trusty rvm: 2.4.2 import: - travis-ci/build-configs:db-setup.yml@postgres-9.6 cache: bundler: true services: - redis - rabbitmq env: matrix: - RAKE_TASK=spec global: secure: BdVC3OHqYcgePLrkKIk28Ewn/dxCYFf3Cx+Q8P+BCDj6UPJyRSbKmILBzuX96H5xhKmUFo0A/upUhJI9UUP9aXHO7MzRe04/c88QdO4wGacVUaIyB20S0pr262zbc/nA50K9cVgpmWc64n6uQR1tgM6ZyyBnBeXkLzCAOHPq99I= before_install: gem install bundler jobs: include: - stage: "testing time" script: bundle exec rspec spec - stage: ":ship: it to quay.io" ruby: services: addons: before_install: skip install: skip script: make ship if: type = cron OR commit_message =~ /ship:docker/ OR env(SHIP_DOCKER) = true
Use Postgres 9.6 for now
Use Postgres 9.6 for now
YAML
mit
travis-ci/travis-scheduler,travis-ci/travis-scheduler
b7c40b4dcbb4bc119f48c8c6abc700939cb111a4
.travis.yml
.travis.yml
sudo: false language: java jdk: - oraclejdk8 env: global: - DITA_OT_VERSION=3.1.3 install: - ".travis/install.sh" script: - ".travis/publish.sh" after_success: - ".travis/deploy.sh"
sudo: false language: java jdk: - oraclejdk8 env: global: - DITA_OT_VERSION=3.2 install: - ".travis/install.sh" script: - ".travis/publish.sh" after_success: - ".travis/deploy.sh"
Use latest DITA-OT version (3.2) for CI builds
Use latest DITA-OT version (3.2) for CI builds Signed-off-by: Roger Sheen <a61a1add71dadc74037ae5e44ee30713db9a7451@infotexture.net>
YAML
apache-2.0
dita-ot/docs,infotexture/docs,infotexture/docs
1a3ca382d66f9255b6cffb84c685f88788983726
.travis.yml
.travis.yml
language: go go: - 1.3 - 1.4 install: - go get golang.org/x/tools/cmd/vet - go get -t -v ./... script: - diff -u <(echo -n) <(gofmt -d ./) - go tool vet ./ - go test -v -race ./...
language: go go: - 1.3 - 1.4 install: - go get code.google.com/p/go.tools/cmd/vet || go get golang.org/x/tools/cmd/vet - go get -t -v ./... script: - diff -u <(echo -n) <(gofmt -d ./) - go tool vet ./ - go test -v -race ./...
Fix Travis for Go 1.3 and 1.4.
Fix Travis for Go 1.3 and 1.4.
YAML
mit
shurcooL/go
f1eb7a6510861bd99bb36724adfabfd889148dc5
.travis.yml
.travis.yml
language: go go: - tip install: - go get github.com/gorilla/mux - go get github.com/gorilla/handlers - go get github.com/fzzy/radix/redis
language: go go: - tip install: - go get github.com/gorilla/mux - go get github.com/gorilla/handlers - go get github.com/fzzy/radix/redis - go get github.com/abh/geoip
Add geoip to ci installer
Add geoip to ci installer
YAML
apache-2.0
repsheet/visualizer,repsheet/visualizer,repsheet/visualizer
94b40cd0f09a912ccc4de530e69834c095df5650
.travis.yml
.travis.yml
language: java sudo: false env: - MAVEN_VERSION=3.2.5 - MAVEN_VERSION=3.3.3 jdk: - openjdk7 - oraclejdk8 install: - "mvn -N io.takari:maven:wrapper -Dmaven=${MAVEN_VERSION}" - "./mvnw --show-version --errors --batch-mode -P foss-parent-verification test-compile dependency:go-offline" script: "./mvnw --show-version --errors --batch-mode -P foss-parent-verification clean verify" cache: directories: - $HOME/.m2 branches: except: - gh-pages notifications: email: - mfriedenhagen@gmail.com
language: java sudo: false env: - MAVEN_VERSION=3.3.9 - MAVEN_VERSION=3.5.0 - MAVEN_VERSION=3.5.2 jdk: - openjdk7 - oraclejdk8 install: - "mvn -N io.takari:maven:wrapper -Dmaven=${MAVEN_VERSION}" - "./mvnw --show-version --errors --batch-mode -P foss-parent-verification test-compile dependency:go-offline" script: "./mvnw --show-version --errors --batch-mode -P foss-parent-verification clean verify" cache: directories: - $HOME/.m2 branches: except: - gh-pages notifications: email: - mfriedenhagen@gmail.com
Use current versions of Maven
Use current versions of Maven
YAML
apache-2.0
1and1/ono-maven-shared
a3bb950d54f0f5e0ed4d85f46b4d09183ea7c658
.travis.yml
.travis.yml
# Use docker-based build environment (instead of openvz) sudo: false # Select JDKs >= Java 6 for testing language: java jdk: # - openjdk6 # - openjdk7 # - oraclejdk7 - oraclejdk8 # Test execution install: true script: "mvn -e -q clean compile test > /dev/null"
# Use docker-based build environment (instead of openvz) sudo: false # Select JDKs >= Java 6 for testing language: java jdk: - openjdk6 - openjdk7 - oraclejdk7 - oraclejdk8 # Test execution install: true script: "mvn -e -q clean compile test > /dev/null"
Enable Java versions < 8 again
Enable Java versions < 8 again
YAML
apache-2.0
thymeleaf/thymeleaf-tests,thymeleaf/thymeleaf-tests,thymeleaf/thymeleaf-tests
8e68b1d05ab5a71fab947349bf1004e84cc3fd3b
.travis.yml
.travis.yml
# Config file for automatic testing at travis-ci.org language: python python: - "3.4" # - "pypy" notifications: email: - ctunnell@nikhef.nl - jaalbers@nikhef.nl - bartp@nikhef.nl install: - sudo apt-get update # You may want to periodically update this, although the conda update # conda line below will keep everything up-to-date. We do this # conditionally because it saves us some downloading if the version is # the same. - wget http://repo.continuum.io/miniconda/Miniconda3-3.4.2-Linux-x86_64.sh -O miniconda.sh; - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda # Useful for debugging any issues with conda - conda info -a # Replace dep1 dep2 ... with your dependencies - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib pandas pytables - source activate test-environment - python setup.py install # command to run tests, e.g. python setup.py test script: python setup.py test
# Config file for automatic testing at travis-ci.org language: python python: - "3.4" # - "pypy" notifications: email: - ctunnell@nikhef.nl - jaalbers@nikhef.nl - bartp@nikhef.nl install: - sudo apt-get update # You may want to periodically update this, although the conda update # conda line below will keep everything up-to-date. We do this # conditionally because it saves us some downloading if the version is # the same. - wget http://repo.continuum.io/miniconda/Miniconda3-3.4.2-Linux-x86_64.sh -O miniconda.sh; - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda # Useful for debugging any issues with conda - conda info -a # Replace dep1 dep2 ... with your dependencies - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib pandas pytables - source activate test-environment - python setup.py install # command to run tests, e.g. python setup.py test script: make test #python setup.py test
Update test script in Travis
Update test script in Travis
YAML
bsd-3-clause
XENON1T/pax,XENON1T/pax
78553d452fbbe7a4366cad735ac6ef7996c5d291
.travis.yml
.travis.yml
osx_image: xcode8 language: objective-c before_install: 'brew update || brew update' install: - brew install carthage; true - carthage bootstrap --verbose --platform osx,ios script: rake ci
osx_image: xcode8.3 language: objective-c before_install: 'brew update || brew update' install: - brew install carthage; true - carthage bootstrap --verbose --platform osx,ios script: rake ci
Update Travis Xcode to 8.3
Update Travis Xcode to 8.3
YAML
mit
jeffh/JKVValue,jeffh/JKVValue
90e28e5254e9c2df12abd1d66a7c70cfe4cefa42
.travis.yml
.travis.yml
rvm: - 2.0.0 - 2.1.0 - 1.9.3 - jruby-19mode - rbx
rvm: - 2.5 - 2.4 - 2.3 - 2.0.0 - 2.1.0 - 1.9.3 - jruby-19mode
Remove rbx and add support for 2.3,2.4,2.5
Remove rbx and add support for 2.3,2.4,2.5
YAML
mit
hexgnu/linkedin
c3c6bc60dce2adb2fef364f664b28ab7bcba30c0
.travis.yml
.travis.yml
sudo: false language: python python: # - "2.7" # - "3.3" - "3.4" # - "3.5" # - "pypy" cache: apt: true pip: true directories: - $HOME/download-cache addons: apt_packages: - default-jdk install: - "pip install 'tornado>=4.0,<5'" - "pip install ." script: - python run-tests.py
sudo: false language: python python: # - "2.7" - "3.3" - "3.4" - "3.5" # - "pypy" cache: apt: true pip: true directories: - $HOME/download-cache addons: apt_packages: - default-jdk install: - "pip install 'tornado>=4.0,<5'" - "pip install ." script: - python run-tests.py
Enable Py3.3, .4, .5 in TravisCI
Enable Py3.3, .4, .5 in TravisCI
YAML
bsd-3-clause
CANTUS-Project/pysolr-tornado,CANTUS-Project/pysolr-tornado
8bdcc84406902d1989d12a9fa1a1af659539c1da
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.2" - "3.3" - "3.4" - "nightly" install: - pip install coveralls script: - coverage run --source=fnvhash setup.py test after_success: - coveralls
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "nightly" install: - pip install coveralls script: - coverage run --source=fnvhash setup.py test after_success: - coveralls
Drop support for Python 3.2 (not supported by coveralls)
Drop support for Python 3.2 (not supported by coveralls)
YAML
mit
znerol/py-fnvhash
f0b0dbc79578c804a204a82718e0e77a8580469d
.travis.yml
.travis.yml
language: python python: - 3.6 sudo: required services: - docker before_install: - gem install package_cloud before_script: - sudo chown root:root */* script: - make all - if [[ "$RPM_GPG_KEY_SECRET" != "" ]]; then openssl aes-256-cbc -k "$RPM_GPG_KEY_SECRET" -in secret.asc.enc -out secret.asc -d; fi - if [[ "$RPM_GPG_KEY_PASSPHRASE" != "" ]]; then echo "$RPM_GPG_KEY_PASSPHRASE" > .passphrase; fi - if [[ "$TRAVIS_REPO_SLUG" == "lest/prometheus-rpm" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]]; then make publish; fi
language: python python: - 3.6 sudo: required services: - docker before_install: - gem install package_cloud before_script: - sudo chown root:root */* script: - make $BUILD_TARGET - if [[ "$RPM_GPG_KEY_SECRET" != "" ]]; then openssl aes-256-cbc -k "$RPM_GPG_KEY_SECRET" -in secret.asc.enc -out secret.asc -d; fi - if [[ "$RPM_GPG_KEY_PASSPHRASE" != "" ]]; then echo "$RPM_GPG_KEY_PASSPHRASE" > .passphrase; fi - if [[ "$TRAVIS_REPO_SLUG" == "lest/prometheus-rpm" && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]]; then make $PUBLISH_TARGET; fi jobs: include: - env: BUILD_TARGET=auto8 PUBLISH_TARGET=publish8 - env: BUILD_TARGET=auto7 PUBLISH_TARGET=publish7 - env: BUILD_TARGET=auto6 PUBLISH_TARGET=publish6 - env: BUILD_TARGET=7 PUBLISH_TARGET=publish7
Use build matrix on Travis CI
Use build matrix on Travis CI
YAML
apache-2.0
lest/prometheus-rpm,lest/prometheus-rpm
2dbfc155973e8d8c81445b79c86bcafcc9034cb2
.travis.yml
.travis.yml
language: node_js notifications: email: on_success: never on_failure: change node_js: - "0.10" after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
language: node_js notifications: email: on_success: never on_failure: change node_js: - "0.10" - "4.0" - "4.1" after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
Add node.js versions for Travis-ci
Add node.js versions for Travis-ci
YAML
mit
blakeembrey/array-flatten,blakeembrey/array-flatten
d8eb977f0fb4f046678aac8ec64fc2552ab4829c
.travis.yml
.travis.yml
sudo: false dist: trusty language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.5-dev" matrix: allow_failures: - python: "3.5-dev" install: - pip install . - pip install -r test-requirements.txt cache: pip script: - flake8 - bash basic_tests.sh
sudo: false dist: trusty language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "3.6-dev" matrix: allow_failures: - python: "3.6-dev" install: - pip install . - pip install -r test-requirements.txt cache: pip script: - flake8 - bash basic_tests.sh
Add python 3.6 to test matrix
Add python 3.6 to test matrix
YAML
apache-2.0
globus/globus-cli,globus/globus-cli
5ebf4cebdffbf10d654d84ca875eb3951cc71a90
.travis.yml
.travis.yml
language: go install: - go get github.com/kardianos/govendor - govendor status go: - 1.8 - 1.9 os: - linux - osx
language: go install: - go get github.com/kardianos/govendor - govendor status go: - 1.9 os: - linux - osx
Drop golang 1.8 test target to get tests passing
Drop golang 1.8 test target to get tests passing
YAML
mit
99designs/keyring,99designs/keyring