commit
stringlengths
40
40
old_file
stringlengths
4
264
new_file
stringlengths
4
264
old_contents
stringlengths
0
4.24k
new_contents
stringlengths
1
5.44k
subject
stringlengths
14
778
message
stringlengths
15
9.92k
lang
stringclasses
277 values
license
stringclasses
13 values
repos
stringlengths
5
127k
1f66c7724a6f1ad4886ce1713237b6f89ac68350
.travis.yml
.travis.yml
language: rust script: - cargo clean - cargo build --verbose - cargo test
language: rust before_install: - yes | sudo add-apt-repository ppa:cmrx64/cargo - sudo apt-get update -qq - sudo apt-get install -y libglfw-dev install: sudo apt-get install libXxf86vm-dev script: - cargo clean - cargo build --verbose - cargo test
Add depedencies for Travis-CI build
Add depedencies for Travis-CI build
YAML
mit
murphm8/zaty
8a5b69f984b0730c54550f6896e74b279db40a2d
.travis.yml
.travis.yml
language: python python: - "3.3" install: - pip install flake8 - pip install pep257 script: - flake8 . --max-line-length=80 --ignore=F403 - pep257 . --ignore=D202 notifications: email: false
language: python python: - "3.3.5" install: - pip install flake8 - pip install pep257 script: - flake8 . --max-line-length=80 --ignore=F403 - pep257 . --ignore=D202 notifications: email: false
Set python 3.3.5 in Travis.
Set python 3.3.5 in Travis.
YAML
mit
albertosantini/python-fluid
8fdcae87c7f132176211f315c0aa1d8ff8134339
.circleci/config.yml
.circleci/config.yml
# Python CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-python/ for more details # version: 2 jobs: build: docker: # specify the version you desire here # use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers` - image: circleci/python:3.6.1 # Sp...
# Python CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-python/ for more details # version: 2 jobs: build: docker: # specify the version you desire here # use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers` - image: circleci/python:3.6.1 # Sp...
Include errbot in virtual environment for testing.
Include errbot in virtual environment for testing.
YAML
apache-2.0
nzlosh/err-stackstorm,nzlosh/err-stackstorm,nzlosh/err-stackstorm
6a223aa4535122dfec2c814efaf4fe0dcbfca521
.travis.yml
.travis.yml
sudo: required dist: trusty language: java #skips default install - see script bellow install: true cache: directories: - $HOME/.m2 before_install: #- wget http://ftp.wayne.edu/apache/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip - wget https://archive.apache.org/dist/maven/maven-3/3.5.0/binaries...
sudo: required dist: trusty language: java #skips default install - see script bellow install: true cache: directories: - $HOME/.m2 before_install: #- wget http://ftp.wayne.edu/apache/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip - wget https://archive.apache.org/dist/maven/maven-3/3.5.0/binaries...
Make Travis happier with MALLOC_ARENA_MAX and higher Xmx
Make Travis happier with MALLOC_ARENA_MAX and higher Xmx
YAML
apache-2.0
arnost-starosta/midpoint,arnost-starosta/midpoint,arnost-starosta/midpoint,arnost-starosta/midpoint,arnost-starosta/midpoint
b18071af46f890862fdf85eb7abc430fb4978019
.travis.yml
.travis.yml
language: c install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh script: bash -ex .travis-opam.sh sudo: required env: global: - TESTS=false - PINS="lwt.dev:https://github.com/mirage/lwt.git#tracing mirage-profile:https://github.com/mirage/mirage-profile.git" ...
language: c install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh script: bash -ex .travis-opam.sh sudo: required env: global: - EXTRA_REMOTES="https://github.com/mirage/mirage-dev.git" - TESTS=false - PINS="lwt.dev:https://github.com/mirage/lwt.git#tracing m...
Use mirage-dev in Travis scripts
Use mirage-dev in Travis scripts (cherry-picked and edited by @yallop, @hannesm)
YAML
unlicense
djs55/mirage-skeleton,djs55/mirage-skeleton,Drup/mirage-skeleton,Drup/mirage-skeleton,mirage/mirage-skeleton,mor1/mirage-skeleton,mirage/mirage-skeleton,mor1/mirage-skeleton
16b0116ab9e28bcba52e96cce0c2fd3fd3fb2d28
.circleci/config.yml
.circleci/config.yml
version: 2.1 commands: prepare: steps: - checkout - run: sudo composer self-update - restore_cache: keys: - composer-v1-{{ .Environment.CIRCLE_JOB }}-{{ checksum "composer.lock" }} - composer-v1-{{ .Environment.CIRCLE_JOB }} - run: composer install --no-i...
version: 2.1 commands: prepare: steps: - checkout - run: sudo composer self-update - restore_cache: keys: - composer-v1-{{ .Environment.CIRCLE_JOB }}-{{ checksum "composer.lock" }} - composer-v1-{{ .Environment.CIRCLE_JOB }} - run: composer install --no-i...
Update codecov during CI tests
fix: Update codecov during CI tests
YAML
mit
auth0/jwt-auth-bundle
34c0629b092c06e5e046154774cb9c0b778b6195
.travis.yml
.travis.yml
language: python python: - 2.7 - 3.4 notifications: email: on_success: change on_failure: always # whitelist branches: only: - master sudo: false # Setup anaconda before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh ...
language: python python: - 2.7 - 3.4 notifications: email: on_success: change on_failure: always # whitelist branches: only: - master sudo: false # Setup anaconda before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh ...
Install ARCH on Travis through conda
Install ARCH on Travis through conda
YAML
mit
khrapovs/multivol
1db3f382771cdb617075b513ce185584bd91ac03
.travis.yml
.travis.yml
sudo: false language: java jdk: - openjdk6 - openjdk7 - oraclejdk7 - oraclejdk8 git: submodules: false before_install: git submodule update --init --recursive env: GRADLE_OPTS="-Xms1g -Xmx3g" install: ./gradlew setupCIWorkspace script: ./gradlew build notifications: email: false
sudo: false language: java jdk: - oraclejdk8 git: submodules: false before_install: git submodule update --init --recursive env: GRADLE_OPTS="-Xms1g -Xmx3g" install: ./gradlew setupCIWorkspace script: ./gradlew build notifications: email: false
Disable non-JDK8 builds on Travis
Disable non-JDK8 builds on Travis
YAML
mit
kenzierocks/Sponge,SpongePowered/SpongeForge,SpongePowered/SpongeForge,kenzierocks/SpongeForge,DDoS/Sponge,DDoS/SpongeForge,kenzierocks/SpongeForge,kenzierocks/Sponge,DDoS/SpongeForge,DDoS/Sponge
5534329ca91bb0a0d4bf9110e3e98c12dd117a77
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: circleci/node:8@sha256:0f95ad042f0099e737b59c3873795b9fb427ddf5fac675e47b1d44d58616c1bd - image: circleci/mongo:3@sha256:2d9bd2912958ebb1b22c707d826d32d410012f1edf55681773cdbf076f54840b steps: - checkout - run: yarn install --frozen-lockfile ...
version: 2 jobs: build: docker: - image: circleci/node:8@sha256:0f95ad042f0099e737b59c3873795b9fb427ddf5fac675e47b1d44d58616c1bd - image: circleci/mongo:3@sha256:75dd30ed98bd9d4717bc5862a6e011b427d6618a83e8b6697bbb366ebd303dfa steps: - checkout - run: yarn install --frozen-lockfile ...
Update circleci/mongo:3 Docker digest to 75dd30
Update circleci/mongo:3 Docker digest to 75dd30
YAML
mit
js-accounts/accounts
d65d1560d0adb93af07f11582aa09cdf56db77f8
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: working_directory: ~/libx docker: - image: openjdk:8 environment: LEIN_ROOT=nbd steps: - checkout - restore_cache: key: {{ checksum "project.clj" }} - run: bin/lein deps - save_cache: paths: - $HOME/.m2 ...
version: 2 jobs: build: working_directory: ~/libx docker: - image: openjdk:8 environment: LEIN_ROOT=nbd steps: - checkout - restore_cache: key: << checksum "project.clj" >> - run: bin/lein deps - save_cache: paths: - $HOME/.m2 ...
Use << >> for checksum circleci
Use << >> for checksum circleci
YAML
mit
CoNarrative/precept,CoNarrative/precept
1ae0d9a62e881fd12ae0c281db1507de644ba164
.circleci/config.yml
.circleci/config.yml
# Python CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-python/ for more details # version: 2 jobs: build: docker: - image: circleci/python:3.7.3@sha256:44b1339fa4110af1ea53fd29ce755817b369058a04e187a62bb159ed9dcd245d working_directory: ~/repo steps: - checko...
# Python CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-python/ for more details # version: 2 jobs: build: docker: - image: circleci/python:3.7.3@sha256:ddc07e5133e1063c9222909a8f3b6376bb1d29eebc9d7366074eebeb3267b4b1 working_directory: ~/repo steps: - checko...
Update circleci/python:3.7.3 Docker digest to ddc07e5
Update circleci/python:3.7.3 Docker digest to ddc07e5
YAML
bsd-3-clause
kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler
f6d18d65445589b0e2d0aad634430c1e15b3dc5c
.travis.yml
.travis.yml
sudo: required dist: trusty language: go go: - 1.3 - 1.4 - 1.5 - 1.6 - 1.7 - tip os: - linux - osx services: - rabbitmq before_script: ./bin/ci/before_build.sh script: make matrix: allow_failures: - go: tip notifications: email: - michael@rabbitmq.com
sudo: required dist: trusty language: go go: - 1.3 - 1.4 - 1.5 - 1.6 - 1.7 - tip services: - rabbitmq before_script: ./bin/ci/before_build.sh script: make matrix: allow_failures: - go: tip notifications: email: - michael@rabbitmq.com
Fix Travis builds, run only on Linux
Fix Travis builds, run only on Linux
YAML
bsd-2-clause
michaelklishin/rabbit-hole,michaelklishin/rabbit-hole
6c6fee2d1cea646f0cf2308dcd27b667a836d110
.travis.yml
.travis.yml
language: php dist: trusty sudo: required php: - 5.4 - 5.5 - 5.6 - 7.0 install: - git clone --branch trusty --depth=1 https://github.com/rezzza/travis-ci.git ~/.rezzza.travis-ci - ~/.rezzza.travis-ci/php/bootstrap.sh apcu - phpenv rehash - ~/.rezzza.travis-ci/mariadb/bootstrap.sh ...
language: php dist: trusty sudo: required php: - 5.4 - 5.5 - 5.6 - 7.0 install: - composer self-update - git clone --branch trusty --depth=1 https://github.com/rezzza/travis-ci.git ~/.rezzza.travis-ci - ~/.rezzza.travis-ci/php/bootstrap.sh apcu - phpenv rehash - ~/.rezzza.travis-c...
Add composer self-update in Travis
Add composer self-update in Travis
YAML
mit
rezzza/alice-extension
98bf35e3a5f172554d0d10c39fc39848ece591c2
.travis.yml
.travis.yml
language: java sudo: required os: - linux dist: trusty install: - sudo pip install mkdocs - sudo pip install mkdocs-material script: - ./gradlew buildJar buildWar buildCli buildDoc -PbuildNumber=${TRAVIS_JOB_NUMBER} && ./e2e/integration_tests.sh - ./gradlew jacocoTestReport after_success: - bash <...
language: java sudo: required os: - linux dist: trusty install: - sudo pip install mkdocs - sudo pip install mkdocs-material script: - [[ $TRAVIS_BRANCH == "develop" ]] && CLIENT_PATH="-PclientPath=/ngb-dev" - ./gradlew buildJar buildWar buildCli buildDoc -PbuildNumber=${TRAVIS_JOB_NUMBER} ${CLIENT_...
Build "develop" branch with "/ngb-dev" clientPath.
Build "develop" branch with "/ngb-dev" clientPath.
YAML
mit
epam/NGB,epam/NGB,epam/NGB,epam/NGB
15160c2f0c45b611df08b36c89a399dc71ace850
.travis.yml
.travis.yml
cache: bundler language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - jruby-19mode - jruby-9.0.0.0 - jruby-head - ruby-head script: bundle exec rspec sudo: false before_install: gem install bundler -v 1.10.6 bundler_args: --without development matrix: allow_failures: - rvm: jruby-head - rvm: ruby...
cache: bundler language: ruby rvm: - 2.2 - 2.3 - 2.4 - 2.5 - jruby-19mode - jruby-9.0.0.0 - jruby-head - ruby-head script: bundle exec rspec sudo: false before_install: gem install bundler bundler_args: --without development matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head fast_f...
Update testing setup for new gem versions
Update testing setup for new gem versions
YAML
mit
michaelherold/module_builder,michaelherold/module_builder
f5f6c185193903a2168c5633ab98c53d189b0e33
.travis.yml
.travis.yml
language: python env: - 'UBUNTU_RELEASE=trusty' python: - 2.7 install: - sudo pip install cffi six - sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ ${UBUNTU_RELEASE} main universe" - sudo apt-get update - sudo apt-get install python-ceilometer - sudo apt-get install libglib2.0-dev ...
language: python env: - 'UBUNTU_RELEASE=trusty' python: - 2.7 install: - sudo pip install cffi six - sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ ${UBUNTU_RELEASE} main universe" - sudo apt-get update - sudo apt-get install python-ceilometer - sudo apt-get install libglib2.0-dev ...
Revert "Ubuntu puts glib.h somewhere weird"
Revert "Ubuntu puts glib.h somewhere weird" This reverts commit 7734fda92220653b3ab88c6eab42a0cf621d8ee4.
YAML
apache-2.0
anchor/ceilometer-publisher-vaultaire
4026087ca711dd0104f94edf46728b272f87bc9a
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - hhvm sudo: false env: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" install: - composer self-update - composer update $COMPOSER_OPTS script: - phpunit - ./tests/lint.sh git: depth: 5
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm sudo: false env: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" install: - composer self-update - composer update $COMPOSER_OPTS script: - phpunit - ./tests/lint.sh git: depth: 5
Add support for php 7.0 using Travis
Add support for php 7.0 using Travis
YAML
apache-2.0
duncan3dc/serial,duncan3dc/serial
3715a4e1d003636dd7f46123decb2fca46d0ba98
.travis.yml
.travis.yml
# Use Travis's cointainer based infrastructure sudo: false dist: trusty 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 # Ensure we make ChefDK's Ruby the defau...
services: - docker install: - docker pull chef/chefdk branches: only: - master script: - docker run -t chef/chefdk chef -v - docker run -v $PWD:/cookbook -w /cookbook -t chef/chefdk delivery local all
Switch testing to use the docker ChefDK container
Switch testing to use the docker ChefDK container This avoids the need to install the packages from the chef apt repo. Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
YAML
apache-2.0
chef-cookbooks/drbd,opscode-cookbooks/drbd,opscode-cookbooks/drbd,chef-cookbooks/drbd
bbcf3ca51e9697f2657f54fc40f97d8a7f2d8545
.travis.yml
.travis.yml
language: node_js node_js: - "4.1" - "4.0" - "0.12" - "0.10" - "node" before_install: - npm install -g babel-cli - npm install -g jasmine - npm install -g eslint
language: node_js node_js: - "4" - "6" - "node" before_install: - npm install -g babel-cli - npm install -g jasmine - npm install -g eslint
Remove old node versions for updated eslint
Remove old node versions for updated eslint
YAML
mit
joeattardi/promise-poller
1ef6751adea6661b7c6e14b0731a983bc6653bea
.travis.yml
.travis.yml
language: nix matrix: include: - os: linux dist: trusty script: #- ./support/utils/nix-build-travis-fold.sh tests - ./support/utils/nix-build-travis-fold.sh -A pkgs.fractalide - os: linux dist: xenial script: #- ./support/utils/nix-build-travis-fold.sh tests ...
language: nix script: - ./support/utils/nix-build-travis-fold.sh -I fractalide=. -A fractalide release.nix matrix: include: - os: linux dist: trusty - os: linux dist: xenial - os: linux dist: bionic - os: osx
Test definitions are repeating themselves
Problem: Test definitions are repeating themselves Solution: Define the test set entirely in release.nix. Any exceptions to be made for e.g. darwin or certain Linux dists should be done through nix, and with args to release.nix if necessary.
YAML
mpl-2.0
fractalide/fractalide,sjmackenzie/fractalide,fractalide/fractalide,fractalide/fractalide,sjmackenzie/fractalide,dmichiels/fractalide,dmichiels/fractalide,dmichiels/fractalide,sjmackenzie/fractalide
3a6c90c0e7f368ca6efa9ef75e72639f75137b50
.travis.yml
.travis.yml
language: java jdk: - openjdk7 sudo: required services: - docker install: - wget --no-check-certificate https://protobuf.googlecode.com/files/protobuf-2.5.0.tar.gz - tar -xzvf protobuf-2.5.0.tar.gz - cd protobuf-2.5.0 && ./configure --prefix=/usr && make && sudo make install && cd - script: - gradle bui...
language: java jdk: - openjdk7 sudo: required services: - docker install: - wget --no-check-certificate https://protobuf.googlecode.com/files/protobuf-2.5.0.tar.gz - tar -xzvf protobuf-2.5.0.tar.gz - cd protobuf-2.5.0 && ./configure --prefix=/usr && make && sudo make install && cd - script: - gradle bui...
Remove gradle idea from CI
Remove gradle idea from CI Signed-off-by: Sumit Rangwala <931e3e606ef2f7c31e204c9df8d3e55944e82f4f@gmail.com>
YAML
bsd-3-clause
srangwal/griffin,srangwal/griffin,turn/griffin,turn/griffin
f6a0f9d6d89986677ec14e9bebabb08fdf703fef
.travis.yml
.travis.yml
language: go go: - 1.3 - 1.x install: - go get -v ./... script: - go test ./...
language: go go: - 1.3 - 1.x install: - go get -t -v ./... script: - go test ./...
Use go get -t on Travis
Use go get -t on Travis
YAML
mit
naoina/toml,naoina/toml
707258d66f307bedf4e792503c943077bb06056b
.travis.yml
.travis.yml
language: c sudo: false env: global: - RACKET_DIR=~/racket matrix: - RACKET_VERSION=6.2 - RACKET_VERSION=HEAD before_install: - git clone https://github.com/greghendershott/travis-racket.git - cat travis-racket/install-racket.sh | bash - export PATH="${RACKET_DIR}/bin:${PATH}" install: - rac...
language: c sudo: false env: global: - RACKET_DIR=~/racket matrix: - RACKET_VERSION=HEAD before_install: - git clone https://github.com/greghendershott/travis-racket.git - cat travis-racket/install-racket.sh | bash - export PATH="${RACKET_DIR}/bin:${PATH}" install: - raco pkg install --deps sear...
Drop 6.2 support on master
Drop 6.2 support on master
YAML
isc
lexi-lambda/racket-collections
7160c71e96360cac657ab4959afe744c8525b1d1
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - ree
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode - ree
Add back JRuby and rbx
Add back JRuby and rbx
YAML
mit
hybridgroup/taskmapper
01118c957967f3f771899ad495221f2fc844b2c0
.travis.yml
.travis.yml
language: haskell ghc: 7.8 addons: postgresql: "9.3" before_install: - createuser --superuser --no-password dbapi_test - createdb -O dbapi_test -U postgres dbapi_test - travis_retry sudo add-apt-repository -y ppa:hvr/ghc - travis_retry sudo apt-get update - travis_retry sudo apt-get install --force-yes happ...
language: haskell ghc: 7.8 addons: postgresql: "9.3" before_install: - createuser --superuser --no-password dbapi_test - createdb -O dbapi_test -U postgres dbapi_test - travis_retry sudo add-apt-repository -y ppa:hvr/ghc - travis_retry sudo apt-get update - travis_retry sudo apt-get install --force-yes happ...
Use cached cabal sandbox and add a linting step
Use cached cabal sandbox and add a linting step
YAML
mit
janusnic/postgrest,alihalabyah/postgrest,NikolayS/postgrest,gtallen1187/postgrest,elitallman/postgrest,tml/postgrest,steve-chavez/postgrest,jmealo/postgrest,begriffs/postgrest,NotBrianZach/postgrest,acrispin/postgrest,ruslantalpa/postgrest,Skyfold/postgrest,nayosx/postgrest,w4ngyi/postgrest,steve-chavez/postgrest,johan...
b97a3dd8ef0894d7bc912d9bb19d1779f2aaa31d
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: hhvm - php: 7.0 sudo: false env: - TESTBENCH_VERSION="~3.0.0" - TESTBENCH_VERSION="~3.1.0" before_install: - sed -i s/~3.0.0\|\|~3.1.0/${TESTBENCH_VERSION}/ composer.json - composer up...
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 5.4 # Allow PHP 5.4 failures because Laravel 5.1 requires PHP >= 5.5 - php: hhvm - php: 7.0 sudo: false env: - TESTBENCH_VERSION="~3.0.0" - TESTBENCH_VERSION="~3.1.0" before_install: ...
Fix Travis CI builds with Laravel 5.1, because it doesn't support PHP 5.4
Fix Travis CI builds with Laravel 5.1, because it doesn't support PHP 5.4
YAML
mit
efficiently/authority-controller
cb364a07fa4f84929b654fc0a93929bb60c2bd7b
.travis.yml
.travis.yml
language: cpp compiler: - gcc - clang env: - CMAKE_BUILD_TYPE=Debug - CMAKE_BUILD_TYPE=Release before_install: # CMake 3.x - sudo dpkg -r cmake cmake-data - sudo add-apt-repository -y ppa:dcthomp/smtk # gcc-4.9 - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test # clang 3.4 - if [ "$CC" ...
language: cpp sudo: false compiler: - gcc - clang env: - CMAKE_BUILD_TYPE=Debug - CMAKE_BUILD_TYPE=Release addons: apt: sources: # CMake 3.x - george-edison55-precise-backports # gcc-4.9 - ubuntu-toolchain-r-test # clang 3.4 - llvm-toolchain-precise packages: - cmake ...
Switch to Travis container based infrastructure
Switch to Travis container based infrastructure
YAML
bsd-2-clause
emil-e/rapidcheck,unapiedra/rapidfuzz,emil-e/rapidcheck,unapiedra/rapidfuzz,unapiedra/rapidfuzz,emil-e/rapidcheck
3f7ed4c3dd2fb8a37a31e6355241803999000bd0
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - 1.9.3 - jruby - 2.0.0 - 2.1 - 2.2 env: JRUBY_OPTS=--2.0 script: bundle exec rake test
language: ruby sudo: false rvm: - jruby - 2.0.0 - 2.1 - 2.2 - 2.3.0 - 2.3.1 env: JRUBY_OPTS=--2.0 script: bundle exec rake test
Remove support for Ruby 1.9.3 and add support for 2.3
feat(ruby-version): Remove support for Ruby 1.9.3 and add support for 2.3
YAML
mit
lob/lob-ruby
93635253ddc98989503c48a0ea2ba10df71b0fb0
.travis.yml
.travis.yml
language: go sudo: true go: - 1.4 - 1.5 - 1.6 - tip env: - TURBO_VER="" - TURBO_VER="1.3.1" CGO_LDFLAGS="-L/opt/libjpeg-turbo/lib64" CGO_CFLAGS="-I/opt/libjpeg-turbo/include" LD_LIBRARY_PATH="/opt/libjpeg-turbo/lib64" before_install: - ./travis-install-libjpeg-turbo.sh "$TURBO_VER" - cd $HOME/gopath...
language: go sudo: true go: - 1.6 - 1.7 - tip env: - TURBO_VER="" - TURBO_VER="1.3.1" CGO_LDFLAGS="-L/opt/libjpeg-turbo/lib64" CGO_CFLAGS="-I/opt/libjpeg-turbo/include" LD_LIBRARY_PATH="/opt/libjpeg-turbo/lib64" before_install: - ./travis-install-libjpeg-turbo.sh "$TURBO_VER" - cd $HOME/gopath/src/git...
Test with golang 1.7 and remove 1.5 and 1.6.
Test with golang 1.7 and remove 1.5 and 1.6.
YAML
bsd-3-clause
pixiv/go-libjpeg,pixiv/go-libjpeg,pixiv/go-libjpeg
b97dda1e9267e3c5ef6fc2686cf6c712e1875178
.travis.yml
.travis.yml
language: ruby script: bundle exec rake test sudo: false rvm: - "2.0" - "2.1" - "2.2" gemfile: - Gemfile.activesupport32 - Gemfile.activesupport40 - Gemfile.activesupport41 - Gemfile.activesupport42 env: global: - ACTIVESHIPPING_NEW_ZEALAND_POST_KEY=4d9dc0f0-dda0-012e-066f-000c29b44ac0 - ACTIVESHIPPING_CANADA_...
language: ruby script: bundle exec rake test sudo: false rvm: - "2.0" - "2.1" - "2.2" gemfile: - Gemfile.activesupport32 - Gemfile.activesupport40 - Gemfile.activesupport41 - Gemfile.activesupport42 env: global: - ACTIVESHIPPING_NEW_ZEALAND_POST_KEY=4d9dc0f0-dda0-012e-066f-000c29b44ac0 - ACTIVESHIPPING_CANADA_...
Disable Canada Post PWS integration tests on Travis CI, because they are failing
Disable Canada Post PWS integration tests on Travis CI, because they are failing
YAML
mit
johannboutet/active_shipping,Shopify/active_shipping,Goldbely/active_shipping
748ee149aa6c4ace4ec750be4c13311470128209
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - '0.10' - '0.11' - '0.12' - 'iojs' - '4' - '5' script: npm test after_script: npm install coveralls && cat ./coverage/lcov.info | coveralls
language: node_js sudo: false node_js: - '4' - '5' - '6' script: npm test after_script: npm install coveralls && cat ./coverage/lcov.info | coveralls
Remove older versions of Node.
Remove older versions of Node.
YAML
mit
DavidTPate/rfc-3986
5fbd3bf9d1c3435b9c64c9774ef4c87d2ecc5de9
.travis.yml
.travis.yml
language: php sudo: required php: - 5.3.3 - 5.4 - 5.5 - 5.6 - 7.0 env: PREFER_LOWEST="" matrix: fast_finish: true include: - php: 5.3.3 env: PREFER_LOWEST="--prefer-lowest" before_script: - sudo apt-get install bsdtar zip - npm install connect serve-static - composer update --prefer...
language: php sudo: required php: - 5.3.3 - 5.4 - 5.5 - 5.6 - 7.0 env: PREFER_LOWEST="" matrix: fast_finish: true include: - php: 5.3.3 env: PREFER_LOWEST="--prefer-lowest" before_script: - sudo apt-get install bsdtar zip - npm install connect serve-static - composer update --prefer...
Add dependencies to phpunit with testing with low-deps
Add dependencies to phpunit with testing with low-deps
YAML
mit
bburnichon/Zippy,bburnichon/Zippy,bburnichon/Zippy
d792857926168faa69fc76f2908851c5a07113b4
.travis.yml
.travis.yml
language: python python: - "2.7" # - "3.3" - "3.4" env: - DJANGO=1.7.7 - DJANGO=1.8 install: - pip install -q Django==$DJANGO - pip install -e .[testing] - start_cms_project.py testing testing_dir/ --with-people --with-faqs --with-jobs --skip-frontend script: coverage run --source=cms --omit='*migrations*...
language: python python: - "2.7" - "3.2" - "3.3" - "3.4" env: - DJANGO=1.7.7 - DJANGO=1.8 install: - pip install -q Django==$DJANGO - pip install -e .[testing] - start_cms_project.py testing testing_dir/ --with-people --with-faqs --with-jobs --skip-frontend script: coverage run --source=cms --omit='*migra...
Add Python 3.2 and 3.3 to the build matrix.
Add Python 3.2 and 3.3 to the build matrix.
YAML
bsd-3-clause
jamesfoley/cms,danielsamuels/cms,danielsamuels/cms,jamesfoley/cms,dan-gamble/cms,danielsamuels/cms,jamesfoley/cms,jamesfoley/cms,lewiscollard/cms,dan-gamble/cms,lewiscollard/cms,lewiscollard/cms,dan-gamble/cms
966986731e7b939ed6666467b31b2edfb883e8a3
.travis.yml
.travis.yml
language: php php: - 5.5 before_install: - travis_retry composer self-update install: - travis_retry composer install --no-interaction --prefer-source script: - phpunit --verbose
language: php php: - 5.6 before_install: - travis_retry composer self-update install: - travis_retry composer install --no-interaction --prefer-source script: - phpunit --verbose
Change minimal PHP version for Travis-CI to 5.6
Change minimal PHP version for Travis-CI to 5.6
YAML
bsd-3-clause
PreSQL/PreSQL-PDO
9f99cca008c9f30e7e021d32f3131e4c12de9309
.travis.yml
.travis.yml
# force run: 1 language: c compiler: - clang - gcc python: - "2.7" sudo: required before_install: - which ${CC} - sudo -H pip install -r requirements.txt - sudo -H DEBIAN_FRONTEND=noninteractive apt-get update script: sh -x ./scripts/do-test.sh
# force run: 1 language: c compiler: - clang - gcc python: - "2.7" sudo: required before_install: - whereis clang - whereis gcc - sudo -H pip install -r requirements.txt - sudo -H DEBIAN_FRONTEND=noninteractive apt-get update script: sh -x ./scripts/do-test.sh
Use whereis instead of which.
Use whereis instead of which.
YAML
bsd-2-clause
synety-jdebp/rtpproxy,dsanders11/rtpproxy,dsanders11/rtpproxy,dsanders11/rtpproxy,sippy/rtpproxy,sippy/rtpproxy,synety-jdebp/rtpproxy,sippy/rtpproxy,synety-jdebp/rtpproxy,jevonearth/rtpproxy,synety-jdebp/rtpproxy,jevonearth/rtpproxy,jevonearth/rtpproxy,jevonearth/rtpproxy
de2901bbde0b8f7f08b57928c73fa12f1a72aaa4
.travis.yml
.travis.yml
language: go go: - 1.0 - 1.1 branches: only: - master install: false before_script: - sudo apt-get update - sudo apt-get install --force-yes -y libmagic1 libmagic-dev - go get -v -x github.com/kwilczynski/magic script: go test -v -x ./... -run '^Test.*'
language: go go: - 1.0 - 1.1 branches: only: - master install: false before_install: - sudo apt-get update - sudo apt-get install --force-yes -y libmagic1 libmagic-dev before_script: - go get -v -x github.com/kwilczynski/magic script: go test -v -x ./... -run '^Test.*'
Move installing dependencies into the "before_install" stage.
Move installing dependencies into the "before_install" stage. Signed-off-by: Krzysztof Wilczynski <9bf091559fc98493329f7d619638c79e91ccf029@linux.com>
YAML
apache-2.0
kwilczynski/go-magic,kwilczynski/go-magic,kwilczynski/go-magic
375771ed904671e5f37d1fe627bba178e0b75cd2
.travis.yml
.travis.yml
language: node_js node_js: - "0.8" - "0.10" before_install: - git submodule update --init --recursive before_script: - npm install -g grunt-cli
language: node_js node_js: - "0.10" before_install: - git submodule update --init --recursive before_script: - npm install -g grunt-cli
Remove testing for version 0.8 of Node.
Remove testing for version 0.8 of Node.
YAML
apache-2.0
gkatsev/vtt.js,gkatsev/vtt.js,mozilla/vtt.js,mozilla/vtt.js
a6ec64c384fe83c96c0803eb6b3d925eec703dba
.travis.yml
.travis.yml
--- language: "node_js" node_js: [ "6", "7", "8", "9", "10", "node" ] script: - "npm run test" - "npm run style" sudo: false
--- language: "node_js" node_js: [ "4", "5", "6", "7", "8", "9", "10", "node" ] script: - "npm run test" - "npm run style" sudo: false
Revert "Stop testing on Node.js 4 and 5"
Revert "Stop testing on Node.js 4 and 5" This reverts commit 62ee5f712db293dc388f94f6ab7d4fb53a68cfab.
YAML
apache-2.0
jslicense/licensee.js
26da6a0dac5eb73128f3123ec76bb88a55350531
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm matrix: allow_failures: - php: hhvm before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction --prefer-source --dev script: - phpunit --coverage-text --coverage-clover=coverage.clover after_script: -...
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm matrix: fast_finish: true allow_failures: - php: hhvm before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction --prefer-source --dev script: - phpunit --coverage-text --coverage-clover=coverage.clove...
Allow the build to finish early
Fix: Allow the build to finish early
YAML
mit
thephpleague/plates,localheinz/plates
aeb71104b80e74bb18516acb18b2401e5e0b19ef
.travis.yml
.travis.yml
language: "node_js" node_js: - 0.4 - 0.6 - 0.8
language: "node_js" node_js: - 0.4 - 0.6 - 0.8 - 0.10
Test with node 0.10 as well
Test with node 0.10 as well
YAML
mit
timshadel/passport-oauth2-public-client
0cc434aaccaa24ac1df0ded264751044f36e104e
.travis.yml
.travis.yml
language: python env: global: - GITHUB_REPO: plugin.video.altv - ZIP_FILENAME: plugin.video.altv-${TRAVIS_TAG}.zip before_script: - sed -i 's/VERSION/${TRAVIS_TAG}/g' addon.xml # Dynamically set verison number in `addon.xml` - cd .. # Change directory one level up in order to compress the folder to publ...
language: python env: global: - GITHUB_REPO: plugin.video.altv - ZIP_FILENAME: plugin.video.altv-${TRAVIS_TAG}.zip before_script: - sed -i "s/@VERSION@/${TRAVIS_TAG}/g" addon.xml # Dynamically set verison number in `addon.xml` - cd .. # Change directory one level up in order to compress the folder to pu...
Use double quotes for variable substitution
Use double quotes for variable substitution
YAML
mit
hadynz/plugin.video.altv
5d7fc55b27bab19c95af3fafb78b76e8156fabb8
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 install: - mvn test jacoco:report coveralls:report -B -V before_install: - echo $GPG_SECRET_KEYS | base64 --decode | $GPG_EXECUTABLE --import - echo $GPG_OWNERTRUST | base64 --decode | $GPG_EXECUTABLE --import-ownertrust deploy: - provider: script script: .travis/deplo...
language: java jdk: - oraclejdk8 install: - mvn test jacoco:report coveralls:report -B -V before_install: - echo $GPG_SECRET_KEYS | base64 --decode | $GPG_EXECUTABLE --import - echo $GPG_OWNERTRUST | base64 --decode | $GPG_EXECUTABLE --import-ownertrust deploy: - provider: script script: .travis/deplo...
Fix problems with Travis-CI deploy.
Fix problems with Travis-CI deploy.
YAML
apache-2.0
corbel-platform/lib-mongodb,corbel-platform/lib-mongodb
5867ff3e5771fca1b10c845ea03aed222e763fb2
.travis.yml
.travis.yml
language: java jdk: oraclejdk8 script: - mvn verify notifications: hipchat: rooms: secure: OcnZTYXPm0YxnEyz0w/8/QsRQpdO0flYOpxae7VxhMxf28Uxai3d7whC7pHDDrKJ25iw4OaVWHpaua3wdU17oLlzpPK2fsNyrUekoJEYhoErYb4YhU2+3/glV3Gk9Zr5New3KMEm/NZ24MP8hrt6e4v38Npk0hYhJPsFh/8hhuk= slack: secure: TKZfAB5V7KEuCz/ruHowtsn...
language: java jdk: - oraclejdk8 - openjdk11 script: - mvn verify notifications: hipchat: rooms: secure: OcnZTYXPm0YxnEyz0w/8/QsRQpdO0flYOpxae7VxhMxf28Uxai3d7whC7pHDDrKJ25iw4OaVWHpaua3wdU17oLlzpPK2fsNyrUekoJEYhoErYb4YhU2+3/glV3Gk9Zr5New3KMEm/NZ24MP8hrt6e4v38Npk0hYhJPsFh/8hhuk= slack: secure: TKZfAB5V...
Add openjdk11 to build config
Add openjdk11 to build config
YAML
apache-2.0
finn-no/unleash-client-java
3805962da5055a3f557bd05a105643d28806845a
.travis.yml
.travis.yml
language: groovy jdk: - openjdk7 - oraclejdk8 addons: postgresql: "9.4" before_script: - psql -d template1 -c 'create extension hstore;' -U postgres - psql -c 'create database pg_extensions_test;' -U postgres - psql -c "create user pg_extensions with password 'pg_extensions';" -U postgres - psql -c "gra...
language: groovy jdk: - openjdk7 - oraclejdk8 addons: postgresql: "9.4" sudo: false before_script: - psql -d template1 -c 'create extension hstore;' -U postgres - psql -c 'create database pg_extensions_test;' -U postgres - psql -c "create user pg_extensions with password 'pg_extensions';" -U postgres -...
Migrate to new Travis infrastructure
Migrate to new Travis infrastructure
YAML
apache-2.0
lmivan/grails-postgresql-extensions,PIWEEK/grails-postgresql-extensions,kaleidos/grails-postgresql-extensions,kaleidos/grails-postgresql-extensions,ilopmar/grails-postgresql-extensions
7cf433ec448508ff84636d0cbc49a336fb804471
.travis.yml
.travis.yml
language: python python: - "3.4" # command to install dependencies # install: "pip install -r requirements.txt" # command to run tests script: bash ./test.sh env: global: - TESTMODULE: hellofriend.py - GH_REPO: github.com/HHS-IntroProgramming/tests.git
language: python python: - "3.7" # command to install dependencies # install: "pip install -r requirements.txt" # command to run tests script: bash ./test.sh env: global: - TESTMODULE: hellofriend.py - GH_REPO: github.com/Runpython-IntroProgramming/tests.git
Update python version, organization name.
Update python version, organization name.
YAML
mit
HHS-IntroProgramming/Hello-friend,HHS-IntroProgramming/Hello-friend
fc9bb596d5d4bd17b05a04b09d0d0ac8ad4701b4
.travis.yml
.travis.yml
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/maste...
language: generic os: - linux - osx dist: focal 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...
Use the latest build environment for Linux on Travis CI
Use the latest build environment for Linux on Travis CI
YAML
mit
matthesjh/autocomplete-curry
278401917c574f7026ecc317f7e6a1216d6c3184
.travis.yml
.travis.yml
language: php php: - 5.6 - '7' mysql: database: activecollab_jobs_queue_test username: root encoding: utf8mb4 install: composer install --dev before_script: # create the database - mysql -e 'create database if not exists activecollab_jobs_queue_test;' script: phpunit -c test/phpunit.xml
dist: trusty sudo: required language: php php: - 5.6 - '7' addons: apt: packages: - mysql-server-5.6 - mysql-client-core-5.6 - mysql-client-5.6 mysql: database: activecollab_jobs_queue_test username: root encoding: utf8mb4 install: composer install --dev before_script: # create the databas...
Switch Travis-CI to MySQL 5.6
Switch Travis-CI to MySQL 5.6
YAML
mit
activecollab/jobsqueue
0189ebb5875ca7c7b040edfc19261c6f9f9d4f1a
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.6.1 - 2.5.3 gemfile: - gemfiles/rails_5.1.gemfile - gemfiles/rails_5.2.gemfile before_install: gem install bundler -v 1.17.1
sudo: false language: ruby rvm: - 2.6.1 - 2.5.3 gemfile: - gemfiles/rails_5.1.gemfile - gemfiles/rails_5.2.gemfile
Use bundled version of bundler
Use bundled version of bundler
YAML
mit
nowlinuxing/kushojin,nowlinuxing/kushojin
53b6329f26f83295e552e54f8052578310c2fb5a
.travis.yml
.travis.yml
language: node_js node_js: - 0.10 - 0.11
language: node_js node_js: - "0.11" - "0.10"
Use " to wrap node versions
[FIX] Use " to wrap node versions
YAML
mit
benelsen/spacetrack
a0f0886f8bcb5a1340de5738e94867b6a7f1be36
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - 2.3.7 - 2.4.4 - 2.5.1 - jruby-9.1.17.0 - jruby-9.2.0.0 branches: only: - master cache: bundler
language: ruby sudo: false rvm: - 2.3.8 - 2.4.5 - 2.5.3 - jruby-9.1.17.0 - jruby-9.2.0.0 branches: only: - master cache: bundler
Update Ruby builds to the latest patch versions
Update Ruby builds to the latest patch versions
YAML
mit
activeadmin/arbre,activeadmin/arbre
29f91cd776d88acb270d1ae031b57f6927d1bc3c
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode - ruby-head matrix: allow_failures: - rvm: 1.9.2 - rvm: rbx-19mode - rvm: ruby-head
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode - rbx-19mode - ruby-head matrix: allow_failures: - rvm: 1.9.2 - rvm: rbx-19mode - rvm: ruby-head
Test on recent Ruby releases
Test on recent Ruby releases
YAML
mit
adhearsion/matrioska
7f925fb458a099a2a9f76673daa6c69c4d98dab9
.travis.yml
.travis.yml
jdk: - oraclejdk7 - oraclejdk8 - openjdk7 install: mvn install -DskipTests=true script: - cd cdm && mvn test -DskipTests=false -DfailIfNoTests=false - cd ../udunits && mvn test -DskipTests=false -DfailIfNoTests=false - cd ../waterml && mvn test -DskipTests=false -DfailIfNoTests=false cache: direc...
jdk: - oraclejdk7 - oraclejdk8 - openjdk7 env: global: - MAVEN_OPTS="-Djna.library.path=/usr/local/lib -DskipTests=false -DfailIfNoTests=false" - NCVERSION=4.3.2 before_install: - sudo apt-get install libhdf5-serial-dev - wget ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-${NCVERSION}.tar.gz - ta...
Refactor settings a bit and add more tests.
Refactor settings a bit and add more tests. This also includes now building NetCDF so we can (at least) do the DAP4 tests.
YAML
bsd-3-clause
Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java
492a57c4ccf0188f726ca0a2694c79c5ad299111
.travis.yml
.travis.yml
language: python python: - 2.7 - 3.3 - 3.4 - 3.5 - pypy install: - pip install -r requirements.txt - pip install coveralls script: - coverage run --source=antfs_cli setup.py test - python setup.py install - antfs-cli --help after_success: - coveralls
language: python python: - 2.7 - 3.3 - 3.4 - 3.5 - 3.5-dev # 3.5 development branch - 3.6-dev # 3.6 development branch - nightly # currently points to 3.7-dev - pypy install: - pip install -r requirements.txt - pip install coveralls script: - coverage run --source=antfs_cli setup.py test - pytho...
Add test support for pre-release CPython
Add test support for pre-release CPython Despite allowing failures on these CPython platforms, test each with continuous integration to surface potential issues. Based upon https://docs.travis-ci.com/user/languages/python/
YAML
mit
1200wd/antfs-cli,Tigge/antfs-cli
e06c9489d870dedb5b1013bd740e79ee857e3c0c
.travis.yml
.travis.yml
language: python sudo: false python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 - 3.5 - 3.6 - 3.7 - "pypy" install: - pip install pep8 script: - pep8 - py.test notifications: email: false
language: python sudo: false python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 - 3.5 - 3.6 - 3.7 - "pypy" install: - pip install pep8 script: # Guard against invalid escapes in strings, like '\s'. If this fails, a # string or docstring somewhere needs to be a raw string. - if [ "$TRAVIS_PYTHON_VERSION" = ...
Test for invalid escapes in Travis
Test for invalid escapes in Travis
YAML
bsd-3-clause
fredrik-johansson/mpmath,JensGrabner/mpmath,JensGrabner/mpmath
0118b85bf082fe0c2ecb787055c94444bed55fbb
.travis.yml
.travis.yml
sudo: required language: bash services: - docker install: - docker pull swipl:stable script: - docker run -it --name test --entrypoint=/bin/bash -v ${PWD}:/logtalk3 library/swipl -c "/logtalk3/scripts/install.sh && logtalk_user_setup && cd ~/logtalk/tests/logtalk && logtalk_tester && cd ~/logtalk/tools && logtalk_t...
sudo: required language: bash services: - docker install: - docker pull swipl:stable script: - docker run -it --name test --entrypoint=/bin/bash -v ${PWD}:/logtalk3 library/swipl -c "/logtalk3/scripts/install.sh && logtalk_user_setup && cd ~/logtalk/tests/logtalk && logtalk_tester && cd ~/logtalk/tools && logtalk_t...
Fix TravisCI integration to also run the library tests
Fix TravisCI integration to also run the library tests
YAML
apache-2.0
LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3
2413dfc18f1cd7fbdb99a6b429e3596371788442
.travis.yml
.travis.yml
language: go sudo: false go: - 1.8.x - 1.x - tip go_import_path: pack.ag/amqp matrix: allow_failures: - go: tip before_install: - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover - go get -t -v -d -tags "integration gofuzz" ./... script: - make coverage - goveralls -coverprofile=c...
language: go sudo: false go: - 1.9.x - 1.x - tip go_import_path: pack.ag/amqp matrix: allow_failures: - go: tip before_install: - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover - go get -t -v -d -tags "integration gofuzz" ./... script: - make coverage - goveralls -coverprofile=c...
Test on Go 1.9.x, latest stable, and tip
Test on Go 1.9.x, latest stable, and tip
YAML
mit
vcabbage/amqp
90ce7ad3cb0b76808a6a9969e84a5dd3e40be030
.travis.yml
.travis.yml
language: c sudo: true dist: trusty addons: apt: packages: - luajit - gcc - build-essential - libluajit-5.1-dev - python - luarocks #install: # - wget http://mirrors.kernel.org/ubuntu/pool/universe/l/luasocket/luasocket_2.0.2-6_all.deb # - sudo dpkg -i luasocket_2.0.2-6_all.d...
language: c sudo: true dist: trusty addons: apt: packages: - luajit - gcc - build-essential - libluajit-5.1-dev - python - luarocks install: - wget http://mirrors.kernel.org/ubuntu/pool/universe/l/luasocket/luasocket_2.0.2-6_all.deb - sudo dpkg -i luasocket_2.0.2-6_all.deb ...
Install luasocket package from ubuntu archives
Install luasocket package from ubuntu archives
YAML
mit
wolfy1339/WolfyBot,wolfy1339/WolfyBot,wolfy1339/WolfyBot
ae990c7f5eec9f1eca9418a788f44f0370c97dd0
.travis.yml
.travis.yml
language: node_js node_js: - "4.1" - "4.0" before_script: - npm install -g gulp - gulp build script: gulp spec services: - mongodb sudo: required
language: node_js node_js: - "6.4" before_script: - npm install -g gulp - gulp build script: gulp spec services: - mongodb sudo: required
Update Travis to use latest version
Update Travis to use latest version
YAML
mit
RandomAPI/Randomuser.me-Node
2bb9c1f74eadd1ee1cafec66815b0a8f4e60db86
.travis.yml
.travis.yml
language: node_js dist: trusty sudo: false node_js: - '8.0' - '7.10' - '6.10' - '5.12' deploy: - provider: releases api_key: secure: >- BD1yFmcWFvJ1p8K7+CytJOAaOYEQmM2+GjLKKBlrHwwGvIHsqvNtvf05BXUrd2xb/Sy49wBWOdkxV5XOuS0kCWTOGEuQl1AsiktBmkSWFkPoX03axC2xWlmdNlK18B6/I3qnR9jcfxpKBjoVaPcv3g9U1h4E...
language: node_js dist: trusty sudo: false node_js: - '8.0' - '7.10' - '6.10' deploy: - provider: releases api_key: secure: >- BD1yFmcWFvJ1p8K7+CytJOAaOYEQmM2+GjLKKBlrHwwGvIHsqvNtvf05BXUrd2xb/Sy49wBWOdkxV5XOuS0kCWTOGEuQl1AsiktBmkSWFkPoX03axC2xWlmdNlK18B6/I3qnR9jcfxpKBjoVaPcv3g9U1h4EFWy5oY6gcno...
Remove 5.x as a testing target
Remove 5.x as a testing target The latest changes break execution on 5.x. While it would be an easy fix, 5.x was not an LTS release and is past its maintenance period, so dropping instead.
YAML
mit
any-json/any-json,any-json/any-json,laktak/any-json
1536185c6119e6bae9ceeb4baa7916f48f5a163b
.travis.yml
.travis.yml
language: ruby rvm: - 2.1 - 2.2 - rbx-2 - jruby-9 - jruby-head before_install: gem install bundler -v 1.10.6 script: bundle exec rspec
language: ruby rvm: - 2.1 - 2.2 - 2.3.0 - rbx-2 - jruby-9 - jruby-head before_install: gem install bundler -v 1.10.6 script: bundle exec rspec
Switch on 2.3.0 in Travis tests
Switch on 2.3.0 in Travis tests
YAML
mit
maetl/calyx
ac1d41350ae9e3d0124cea4a969aaacdabf6f515
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" script: "python setup.py test"
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" script: "python setup.py test" before_install: - pip install --upgrade pytest
Update Travis-CI config for pytest 2.8.0
Update Travis-CI config for pytest 2.8.0
YAML
mit
delph-in/pydelphin,goodmami/pydelphin
4d5f1066fc2a16e476359646cf01e983d860d69f
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 before_install: - chmod +x gradlew - chmod +x android-app/gradlew script: - ./gradlew build --stacktrace - ./gradlew codeCoverageReport - ./gradlew publishToMavenLocal - cd android-app - ./gradlew build after_success: - bash <(curl -s https://codecov.io/bash)
language: java jdk: - oraclejdk8 before_install: - chmod +x gradlew script: - ./gradlew build --stacktrace - ./gradlew codeCoverageReport after_success: - bash <(curl -s https://codecov.io/bash)
Exclude Android build from the Travis script.
Exclude Android build from the Travis script.
YAML
apache-2.0
SpineEventEngine/todo-list,SpineEventEngine/todo-list,SpineEventEngine/todo-list,SpineEventEngine/todo-list,SpineEventEngine/todo-list,SpineEventEngine/todo-list
d0764cb4976608ce8b2364cdd576345ec45cbde0
.travis.yml
.travis.yml
# # This build script is provided by: https://github.com/svparijs/TravisCi.Example # Author: Sebastiaan van Parijs # # For any issues of feedback report it at Github # # The TYPO3 project - inspiring people to share! # # see http://about.travis-ci.org/docs/user/languages/php/ for more hints language: php # list any P...
language: php php: - 7.2 - 5.4 script: - chmod +x build-libs/phing-2.4.9/bin/phing - chmod +x ./build.sh - "./build.sh" branches: only: - master deploy: provider: releases api_key: secure: DcY686RvBLGCljgeXw5phlTUFCQUlVNz+8H23OuDJGxVXL0VduVKD4eFBDTNrBn2uwbf4uBt6Me+nGJHZ/CJ2IsIq3nxul6W3T8s5ueHNViG54gdSjLf/+P...
Move generated artifacts to GitHub releases
Move generated artifacts to GitHub releases
YAML
mit
aparraga/phal,aparraga/phal,aparraga/phal,aparraga/phal,aparraga/phal,aparraga/phal,aparraga/phal
efcd59e0972e2957d70c23ac3d071d82bfa4d88d
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" install: python setup.py build script: python setup.py test -q
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" install: python setup.py build script: python setup.py -q test
Put -q earlier so Travis generates fewer messages.
Put -q earlier so Travis generates fewer messages.
YAML
mit
yuvipanda/mwparserfromhell,kumasento/mwparserfromhell,gencer/mwparserfromhell,SunghanKim/mwparserfromhell,jayvdb/mwparserfromhell,wikimedia/operations-debs-python-mwparserfromhell,kumasento/mwparserfromhell,earwig/mwparserfromhell,wikimedia/operations-debs-python-mwparserfromhell,kumasento/mwparserfromhell,gencer/mwpar...
bc0fe041a1d62b9f2574e08bc04c7d5ed10233f0
.travis.yml
.travis.yml
language: android env: global: - ADB_INSTALL_TIMEOUT=8 android: components: - platform-tools - build-tools-23.0.1 - android-23 - extra-android-support - extra-android-m2repository - sys-img-armeabi-v7a-android-21 before_script: - chmod +x gradlew - echo no | android create avd --forc...
language: android env: global: - ADB_INSTALL_TIMEOUT=8 android: components: - platform-tools - build-tools-23.0.1 - android-23 - extra-android-support - extra-android-m2repository - sys-img-armeabi-v7a-android-21 before_script: - chmod +x gradlew - echo no | android create avd --forc...
Rearrange Travis script to test espresso lastly
Rearrange Travis script to test espresso lastly
YAML
apache-2.0
nectec-wisru/android-ThaiWidget,nectec-opensource/thai-widget
b0548e33b8e8d447ed5b2c15e847e7af15e13153
.travis.yml
.travis.yml
language: python sudo: false python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 - 3.5 - 3.6 install: - if [[ $TRAVIS_PYTHON_VERSION == 2.6 || $TRAVIS_PYTHON_VERSION == 3.2 || $TRAVIS_PYTHON_VERSION == 3.3 ]]; then pip install flake8==2.6.0; else pip install flake8; fi - pip install cover...
language: python sudo: false python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 - 3.5 - 3.6 install: - if [[ $TRAVIS_PYTHON_VERSION == 2.6 || $TRAVIS_PYTHON_VERSION == 3.2 || $TRAVIS_PYTHON_VERSION == 3.3 ]]; then pip install flake8==2.6.0; else pip install flake8; fi - pip install cover...
Change flake8 command to fix errors
Change flake8 command to fix errors
YAML
bsd-3-clause
Remolten/galena
9075ab4a92f892cd5a0744b49816c44b00007ac5
.travis.yml
.travis.yml
language: python python: - "3.5" - "3.6" - "3.7" env: - NODE_VERSION="10.3.0" - NODE_VERSION="11" - NODE_VERSION="12" install: - nvm install $NODE_VERSION - nvm use $NODE_VERSION - npm install - pip install pytest script: - npm test after_success: - bash <(curl -s https://codecov.io/bash)
dist: xenial language: python python: - "3.5" - "3.6" - "3.7" env: - NODE_VERSION="10.3.0" - NODE_VERSION="11" - NODE_VERSION="12" install: - nvm install $NODE_VERSION - nvm use $NODE_VERSION - npm install - pip install pytest script: - npm test after_success: - bash <(curl -s https://codecov.io...
Add dist: xenial to the Travis settings to use Python 3.7
Add dist: xenial to the Travis settings to use Python 3.7
YAML
mit
thinkulum/generator-python-cmd,thinkulum/generator-python-cmd
ee2d55ed748851e3cc18adcf8d3461d0599e0cb4
.travis.yml
.travis.yml
language: ruby before_script: - cp config/database.yml.travis config/database.yml - psql -c 'create database travis_ci_test;' -U postgres env: - CODECLIMATE_REPO_TOKEN=a5f82768a217627e46bef3c9ca1b0f35670f74e95decee1cd04ecd8df8249509
language: ruby before_script: - cp config/database.yml.travis config/database.yml - psql -c 'create database travis_ci_test;' -U postgres env: - CODECLIMATE_REPO_TOKEN=a5f82768a217627e46bef3c9ca1b0f35670f74e95decee1cd04ecd8df8249509 bundler_args: --without development
Exclude development gems from Travis CI
Exclude development gems from Travis CI
YAML
mit
mxhold/essentials,mxhold/essentials
c135b20e59b0cfb581bed9c58133e091f72d041a
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.4.1 before_install: gem install bundler -v 1.16.0.pre.2
sudo: false language: ruby rvm: - 2.3.6 - 2.4.3 - 2.5.0 before_install: gem install bundler -v 1.16.0
Update TravisCI config to run specs on all supported rubies
Update TravisCI config to run specs on all supported rubies
YAML
mit
buren/metrojobb,buren/metrojobb
af421966a759a8a263be8264f06c8942b224c6e0
.travis.yml
.travis.yml
bundler_args: "--without development" script: "bundle exec rake spec" rvm: - 1.8.7-p334 - 1.9.2 - 1.9.3 - ruby-head - ree - jruby gemfile: - gemfiles/actionpack-3.0.x.gemfile - gemfiles/actionpack-3.1.x.gemfile
# bundler_args: "--without development" script: "bundle exec rake spec" rvm: - 1.8.7 - 1.9.2 - 1.9.3 - ruby-head - ree - jruby gemfile: - gemfiles/actionpack-3.0.x.gemfile - gemfiles/actionpack-3.1.x.gemfile
Test to fix Travis with development dependencies
Test to fix Travis with development dependencies
YAML
mit
ZenCocoon/routing_filter_locale_unless_api
d6b9977e5fa18a9eae0155a83dd1afccb37f0032
.travis.yml
.travis.yml
language: python python: - "2.7" install: - pip install . - pip install -r requirements.txt script: - python -m unittest testAll
language: python python: - "2.7" install: - pip install codecov - pip install . - pip install -r requirements.txt script: - python -m unittest testAll after_success: codecov
Add codecov and cached builds
Add codecov and cached builds
YAML
mit
dancingcactus/python-omniture,dancingcactus/python-omniture,kristofvanmoffaert/python-omniture,kristofvanmoffaert/python-omniture,kristofvanmoffaert/python-omniture,dancingcactus/python-omniture
842ba0262524f33dfd51fd4e398ed6abea1838fa
.travis.yml
.travis.yml
# https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options language: "ruby" script: "bundle exec rake --trace" rvm: - 1.9.2 - 1.9.3 - 2.0 - jruby-head - rbx notifications: irc: "irc.freenode.org#savon"
# https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options language: "ruby" script: "bundle exec rake --trace" rvm: - 1.9.2 - 1.9.3 - 2.0 - jruby-head - rbx notifications: irc: "irc.freenode.org#savon" matrix: allow_failures: - rvm: jruby-head
Mark jruby as an allowed failure
Mark jruby as an allowed failure Until this actually is passing, I'd like to ignore these jruby failures. Perhaps a better choice is to drop jruby for the time being?
YAML
mit
savonrb/sekken,mbrung/sekken,YACFirm/sekken
ac0b07e690572e2c7bdf7f336f1090f50fc6b959
.travis.yml
.travis.yml
language: ruby os: - osx osx_image: xcode7.1 rvm: - 2.3.1 - 2.2.5 - 2.1.9 - 2.0.0-p648 before_install: - if [[ "$TRAVIS_OS_NAME" == "osx" && "$TRAVIS_RUBY_VERSION" == "2.0.0-p648" ]]; then rvm reinstall 2.0.0-p643 --disable-binary; fi script: - bundle exec rake travis:build notifications: slack: secure: Ksji5MDNO...
language: ruby os: - osx osx_image: xcode8.2 rvm: - 2.3.1 - 2.2.5 - 2.1.9 - 2.0.0-p648 script: - bundle exec rake travis:build notifications: slack: secure: Ksji5MDNOWnuzuyu9Hblbxse6kGLdH4kXyYkF98C+wawIGLSONWWkuA65wpdqSLtBN/79RCLMWoBzKAGX4xy9BL6Rxb3rLjAMT+FVur6II2yaApzyJ0dmTVeTXnkchPcrO27FK5taPb0Ghr86DUiG3OViY/q1...
Update RVM on OS X builds
Update RVM on OS X builds
YAML
apache-2.0
dazuma/google-cloud-ruby,qingling128/google-cloud-ruby,CloudVLab/google-cloud-ruby,landrito/google-cloud-ruby,swcloud/google-cloud-ruby,swcloud/google-cloud-ruby,swcloud/google-cloud-ruby,hxiong388/google-cloud-ruby,landrito/google-cloud-ruby,dazuma/google-cloud-ruby,dazuma/google-cloud-ruby,quartzmo/google-cloud-ruby,...
74c6616fee913ddd7929eda275d727b134e11850
.travis.yml
.travis.yml
language: python sudo: false env: global: - REQUIREMENTS=requirements.txt - TEST_REQUIREMENTS=social/tests/requirements.txt python: - "2.6" - "2.7" - "pypy" matrix: include: - python: "pypy" env: - TEST_REQUIREMENTS=social/tests/requirements-pypy.txt - python: "3.3" env: ...
language: python sudo: false env: global: - REQUIREMENTS=requirements.txt - TEST_REQUIREMENTS=social/tests/requirements.txt python: - "2.6" - "2.7" matrix: include: - python: "pypy" env: - TEST_REQUIREMENTS=social/tests/requirements-pypy.txt - python: "3.3" env: - REQ...
Remove duplicated pypy entry, add python 3.5
Remove duplicated pypy entry, add python 3.5
YAML
bsd-3-clause
lneoe/python-social-auth,falcon1kr/python-social-auth,cjltsod/python-social-auth,mathspace/python-social-auth,lneoe/python-social-auth,fearlessspider/python-social-auth,python-social-auth/social-core,tkajtoch/python-social-auth,python-social-auth/social-storage-sqlalchemy,muhammad-ammar/python-social-auth,tobias47n9e/s...
75e0161cd32b012ca63d8475dc27892009db7b45
.travis.yml
.travis.yml
language: php matrix: fast_finish: true include: - php: 5.3.3 - php: 5.3 - php: 5.4 - php: 5.5 - php: 5.6 env: CHECK_LINKS=true - php: 7 - php: hhvm allow_failures: - php: 7 before_install: - composer selfupdate install: - if [[ "$CHECK_LINKS" == "true" ]]; then sudo a...
language: php matrix: fast_finish: true include: - php: 5.3.3 - php: 5.3 - php: 5.4 - php: 5.5 - php: 5.6 env: CHECK_LINKS=true BUILD_DOCS=true - php: 7 - php: hhvm allow_failures: - php: 7 before_install: - composer selfupdate install: - if [[ "$CHECK_LINKS" == "true"...
Build docs on PHP 5.6 only
Enhancement: Build docs on PHP 5.6 only
YAML
bsd-3-clause
ChrisTitos/json-schema,localheinz/json-schema,erayd/json-schema,richgarrod/json-schema,JustTSK/json-schema,siad007/json-schema,samokspv/json-schema,edisonthk/json-schema,robotdance/json-schema,jojo1981/json-schema,Targoniy/-json-schema-for-trip-api,justinrainbow/json-schema,araines/json-schema,sam002/json-schema
a95f415c0ccf83cb3b6e5e7b6a6adf6eeb86dd65
.travis.yml
.travis.yml
dist: trusty sudo: true git: depth: 1 branches: only: - master cache: directories: - $HOME/.m2 language: java jdk: oraclejdk8 # Because Travis-CI is special and invokes gradle assemble by default. WTF. install: - true before_install: - sudo dpkg --add-architecture i386 - sudo apt-get -qq update - ...
dist: trusty sudo: true git: depth: 1 branches: only: - master cache: directories: - $HOME/.m2 language: android jdk: oraclejdk8 android: components: - tools - platform-tools - build-tools-23.0.2 - android-23 - extra-google-m2repository - extra-android-m2repository # Because Trav...
Add Android to the mix
Add Android to the mix
YAML
apache-2.0
cypherdare/libgdx,libgdx/libgdx,libgdx/libgdx,cypherdare/libgdx,Zomby2D/libgdx,stinsonga/libgdx,Zomby2D/libgdx,alex-dorokhov/libgdx,MikkelTAndersen/libgdx,MikkelTAndersen/libgdx,cypherdare/libgdx,alex-dorokhov/libgdx,bladecoder/libgdx,MikkelTAndersen/libgdx,MikkelTAndersen/libgdx,alex-dorokhov/libgdx,cypherdare/libgdx,...
c9647f7dc8ecd73177fce61316e1632ea95b973c
.travis.yml
.travis.yml
language: cpp compiler: - gcc - clang addons: apt: packages: - cmake - libboost-dev - libboost-filesystem-dev - libboost-program-options-dev - libboost-regex-dev - libcrypto++-dev - libboost-date-time-dev script: ...
language: cpp compiler: - gcc - clang addons: apt: packages: - cmake - libboost-dev - libboost-filesystem-dev - libboost-program-options-dev - libboost-regex-dev - libcrypto++-dev - libboost-date-time-dev script: ...
Update Travis CI build (script)
Update Travis CI build (script)
YAML
bsd-3-clause
majestrate/kovri,majestrate/kovri,majestrate/kovri,majestrate/kovri
d65367a82a0fd6d1401107f1c33f5c5266a981e7
.travis.yml
.travis.yml
language: scala scala: - 2.10.4 env: - SBT_OPTS="-XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -XX:PermSize=256M -XX:MaxPermSize=512M"
language: scala scala: - 2.10.4 - 2.11.7 env: - SBT_OPTS="-XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -XX:PermSize=256M -XX:MaxPermSize=512M"
Add scala 2.11.7 to Travis
Add scala 2.11.7 to Travis
YAML
apache-2.0
0asa/spark-notebook,deanwampler/spark-notebook,0asa/spark-notebook,maasg/spark-notebook,meh-ninja/spark-notebook,andypetrella/spark-notebook,radek1st/spark-notebook,radek1st/spark-notebook,deanwampler/spark-notebook,spark-notebook/spark-notebook,andypetrella/spark-notebook,antonkulaga/spark-notebook,radek1st/spark-note...
4dbe5cfab0709682874e331e68e46193e51cf785
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" cache: apt addons: apt: packages: - libatlas-dev - libatlas-base-dev - liblapack-dev - gfortran before_install: - wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda ...
sudo: false language: python python: - "2.7" cache: apt addons: apt: packages: - libatlas-dev - libatlas-base-dev - liblapack-dev - gfortran before_install: - wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda ...
Use Travis CI environment variable to correctly run test script by full path now that numpy/scipy are functioning.
Use Travis CI environment variable to correctly run test script by full path now that numpy/scipy are functioning.
YAML
mit
aschlosberg/BNoL,aschlosberg/BNoL
760d4240bddca652c51352142f4c5a9eb4eeb496
.travis.yml
.travis.yml
language: node_js node_js: - "0.8" - "0.10" before_install: - npm update npm -g before_script: - npm install -g grunt-cli
language: node_js node_js: - "0.8" - "0.10" before_install: - npm update npm@1.4 -g before_script: - npm install -g grunt-cli
Set test NPM to 1.4
Set test NPM to 1.4
YAML
mit
paladox/grunt-contrib-qunit,labertasch/grunt-contrib-qunit,paladox/grunt-contrib-qunit,gruntjs/grunt-contrib-qunit,gruntjs/grunt-contrib-qunit,labertasch/grunt-contrib-qunit
5bc2616b7fb2a64aa48dbdff8f9098ca7cfa3bb6
.travis.yml
.travis.yml
language: elixir otp_release: - 20.0 elixir: - 1.6.1 env: global: - MIX_ENV=test cache: directories: - _build - deps script: - mix credo --strict # - mix dialyzer --halt-exit-status - mix do compile --warnings-as-errors, coveralls.json after_success: - bash <(curl -s https://codecov.io/ba...
language: elixir otp_release: - 20.0 elixir: - 1.6.1 env: global: - MIX_ENV=test cache: directories: - _build - deps script: - mix credo --strict # - mix dialyzer --halt-exit-status - mix do compile --warnings-as-errors, coveralls.json - mix format --check-formatted after_success: - bas...
Check the codes was formatted in CI.
chore(ci): Check the codes was formatted in CI.
YAML
mit
cedretaber/bibliotheca,cedretaber/bibliotheca
a1fa612c706fd6c3b1c0bca04fa0adf3622150dd
.travis.yml
.travis.yml
language: java matrix: include: - jdk: oraclejdk8 - jdk: openjdk8 - jdk: oraclejdk9 - jdk: openjdk9 - jdk: oraclejdk10 - jdk: openjdk10 - jdk: oraclejdk11 - jdk: openjdk11 - jdk: oraclejdk12 - jdk: openjdk12 allow_failures: - jdk: oraclejdk9 - jdk: oraclejdk10 script: mvn clean install a...
language: java matrix: include: - jdk: oraclejdk8 - jdk: openjdk8 - jdk: oraclejdk9 - jdk: openjdk9 - jdk: oraclejdk10 - jdk: openjdk10 - jdk: oraclejdk11 - jdk: openjdk11 - jdk: oraclejdk12 - jdk: openjdk12 allow_failures: - jdk: oraclejdk9 - jdk: oraclejdk10 - jdk: oraclejdk12 script:...
Add support for Java 12
Add support for Java 12
YAML
mit
CurrencyCloud/currencycloud-java,CurrencyCloud/currencycloud-java
78f207ce18ec1f40626eeda373bbe3783bcbe3ef
.travis.yml
.travis.yml
language: node_js matrix: include: - node_js: "node" - node_js: "12" - node_js: "14" sudo: false cache: directories: - node_modules dist: trusty addons: apt: packages: - dpkg chrome: stable before_script: # dump the current versions - google-chrome-stable --version # start a fres...
os: linux language: node_js jobs: include: - node_js: "node" - node_js: "12" - node_js: "14" cache: directories: - node_modules dist: trusty addons: apt: packages: - dpkg chrome: stable before_script: # dump the current versions - google-chrome-stable --version # start a fresh ne...
Address Travis CI warnings and suggestions
Address Travis CI warnings and suggestions
YAML
mit
cyrus-and/chrome-remote-interface,cyrus-and/chrome-remote-interface
198da0437286e7017ffe6869861615db42102e5d
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 after_success: - mvn clean verify coveralls:report
language: java jdk: - openjdk11 after_success: - mvn clean verify coveralls:report
Use openjdk11 for Travis CI
Use openjdk11 for Travis CI
YAML
agpl-3.0
xlate/property-inject,xlate/property-inject
9d13c2408c677ec17991d109e94eb22092f18de4
.travis.yml
.travis.yml
sudo: required language: c compiler: - clang before_install: - sudo apt-get -qq update - sudo apt-get install -qqy iputils-arping script: - sudo mknod /dev/net/tap c 10 200 - sudo chmod 0666 /dev/net/tap - sudo setcap cap_net_admin+eip "$(which ip)" - make test
sudo: required language: c compiler: - clang before_install: - sudo apt-get -qq update - sudo apt-get install -qqy iputils-arping libcap-dev libcap2-bin script: - sudo mknod /dev/net/tap c 10 200 - sudo chmod 0666 /dev/net/tap - sudo setcap cap_net_admin+eip "$(which ip)" - make test
Install libcap for Ubuntu 12.04 CI system
Install libcap for Ubuntu 12.04 CI system
YAML
mit
saminiir/level-ip,saminiir/level-ip
9ea4571c1d0dc796591ee505fe2addb33e498dac
.travis.yml
.travis.yml
language: go go: - 1.4 - 1.5 - tip
language: go go: - 1.4 - 1.5 - tip branches: only: - develop - master install: - go get github.com/naoina/toml - go get github.com/keltia/flightaware-go/config - go get github.com/keltia/flightaware-go/flightaware
Add my own package to Travis.
Add my own package to Travis.
YAML
bsd-2-clause
keltia/fa-tail
6e20c82ca4ff8a6ff0dc697b62d642f67f5333f7
.travis.yml
.travis.yml
language: csharp sudo: required solution: Snowflake.sln mono: none dotnet: 2.0.0 dist: trusty osx_image: xcode8.3 os: - linux - osx matrix: fast_finish: true allow_failures: - os: osx install: - dotnet restore src/Snowflake.sln script: - dotnet build src/Snowflake.Framework.Tests - dotnet test src...
language: csharp sudo: required solution: Snowflake.sln mono: none dotnet: 2.0.0 dist: trusty group: deprecated-2017Q4 osx_image: xcode8.3 os: - linux - osx matrix: fast_finish: true allow_failures: - os: osx install: - dotnet restore src/Snowflake.sln script: - dotnet build src/Snowflake.Framework....
Build on old trusty image
Travis: Build on old trusty image [skip appveyor]
YAML
mpl-2.0
RonnChyran/snowflake,SnowflakePowered/snowflake,RonnChyran/snowflake,SnowflakePowered/snowflake,RonnChyran/snowflake,SnowflakePowered/snowflake
04a698f442f78255ff9c1c4d2296dbd5c7d1f679
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - rbx-18mode - rbx-19mode - ree
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - rbx - rbx-2.0 - ree
Revert "Test against Rubinius in both Ruby 1.8 and 1.9 mode"
Revert "Test against Rubinius in both Ruby 1.8 and 1.9 mode" This reverts commit 14e872b4b187341ac9635e60ab97c1e36fc7af99.
YAML
mit
avdi/faraday,pvdb/faraday,ru-faraon/Faraday-is-an-HTTP-client,engineyard/faraday,prcongithub/faraday,santiagodoldan/faraday,luvtechno/faraday,customink/faraday,apepper/faraday,O-I/faraday,jrafanie/faraday,O-I/faraday,prcongithub/faraday,stayhero/faraday,daviswahl/faraday,jhass/faraday,nevans/faraday,mehulkar/faraday,jh...
ddaa5693ae25a8bf408735070aa78e65ad8aedfa
.travis.yml
.travis.yml
language: rust addons: apt: sources: - ubuntu-toolchain-r-test packages: - libstdc++-4.9-dev before_install: - sudo apt-get -qq update - sudo apt-get install -y apt-transport-https - wget https://apt.z.cash/pool/main/z/zcash/zcash-1.0.7-1-amd64.deb - sudo dpkg -i zcash-1.0.7-1-am...
language: rust addons: apt: sources: - ubuntu-toolchain-r-test packages: - libstdc++-4.9-dev before_install: - sudo apt-get -qq update - sudo apt-get install -y apt-transport-https - wget https://apt.z.cash/pool/main/z/zcash/zcash-1.0.7-1-amd64.deb - sudo dpkg -i zcash-1.0.7-1-am...
Add zcash-fetch-params to configure the network
Add zcash-fetch-params to configure the network
YAML
unlicense
DurgaMa/rust-zcash
4b02d8cf3b34fe80035732b886975c101b4c8199
.travis.yml
.travis.yml
language: android sudo: false jdk: oraclejdk7 android: components: - build-tools-21.1.2 - android-21 - platform-tools - tools # Additional components - extra-google-m2repository - extra-android-m2repository - extra-android-support notifications: email: false slack: secure: ...
language: android sudo: false jdk: oraclejdk7 android: components: - build-tools-21.1.2 - android-21 - platform-tools - tools - extra-google-m2repository - extra-android-m2repository - extra-android-support notifications: slack: rooms: secure: NVkh+VYIPnEfR7oPbjuWlh+bSJvOUUL6WjKdY5MZ5ejyYjuF...
Add correct key for CI reports in Slack
Add correct key for CI reports in Slack
YAML
mit
elpoisterio/ello-android,ello/ello-android
44a605669faf7286c86ccf74ba3ebf60af150f46
.travis.yml
.travis.yml
notifications: email: false rvm: - 2.1.2 - 2.2.4 - 2.3.1
notifications: email: false rvm: - 2.1.2 - 2.2.4 - 2.3.1 before_install: - gem install bundler # the default version of bundler for ruby 2.1 is out of date.
Update bundler before running the build.
Update bundler before running the build.
YAML
mit
sul-dlss/druid-tools
7e5e6ad08d2b5cfc4d86bbfdc5c0459521f22183
.travis.yml
.travis.yml
language: ruby rvm: - 2.2 env: global: - CC_TEST_REPORTER_ID=ca17436bff753caad1e0ae63a5985c74fcb90ad03ee162e93d7098582af75aed cache: bundler: true before_script: - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporte...
language: ruby rvm: - 2.2 env: global: - CODECLIMATE_REPO_TOKEN=ca17436bff753caad1e0ae63a5985c74fcb90ad03ee162e93d7098582af75aed cache: bundler: true script: - bundle exec rubocop -D - bundle exec rspec - bundle exec brakeman -zA - bundle exec codeclimate-test-reporter
Use gem to notify status
Use gem to notify status
YAML
apache-2.0
smartbox-io/brain,smartbox-io/brain
b4fc8d524a1d44d690c5d3a5187e8b8746694178
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.2 sudo: false addons: code_climate: repo_token: 48aeb1397404fe6079c14bbca8911959d29b44065e305a70b1bc6604d3effe46 deploy: provider: ninefold app_id: '8650' auth_token: secure: AR1iRoszLrZnrQd/h5zP1tAEmXtLt3KndZA4GoCc/I//k07MpUmcDkorgkE7QYE3o6F/1Rh2p3feCYr1S1D9cDMuG+DV9+Z+7Ga+U...
language: ruby rvm: - 2.2.2 sudo: false addons: code_climate: repo_token: 48aeb1397404fe6079c14bbca8911959d29b44065e305a70b1bc6604d3effe46
Remove Ninefold deploy info from Travis config
Remove Ninefold deploy info from Travis config
YAML
mit
ruby-rcade/RubyGameDev.com,ruby-rcade/RubyGameDev.com,RailsGEnthusiasts/RubyGameDev.com,RailsGEnthusiasts/RubyGameDev.com,PowerCodeGirls/RubyGameDev.com,RailsGEnthusiasts/RubyGameDev.com,PowerCodeGirls/RubyGameDev.com,ruby-rcade/RubyGameDev.com,PowerCodeGirls/RubyGameDev.com
f8cf7a96246594d645a0472e54f5f1067cdda1b2
.travis.yml
.travis.yml
language: python python: - "3.4" - "3.5" - "3.6" cache: pip env: - SET="-m logic" - SET="-m live" - SET="-m destructive" install: - pip install --quiet -r requirements.txt -r test_requirements.txt before_script: - mkdir -p $HOME/$DEST - curl -u $KEY $HOST/$FILE > $HOME/$DEST/$FILE script: - cove...
language: python python: - "3.4" - "3.5" - "3.6" cache: pip env: - SET="-m logic" - SET="-m live" - SET="-m destructive" install: - pip install --quiet -r requirements.txt -r test_requirements.txt before_script: - mkdir -p $HOME/$DEST - curl -u $KEY $HOST/$FILE > $HOME/$DEST/$FILE script: - cove...
Use job number for gist names instead of build number
Use job number for gist names instead of build number
YAML
mit
Artanicus/python-cozify,Artanicus/python-cozify
a42f3aab4bb00edb8090524b945763c841a99d90
.travis.yml
.travis.yml
language: python python: - "2.7" before_install: - "sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable" - "sudo add-apt-repository -y ppa:v-launchpad-jochen-sprickerhof-de/pcl" - "sudo apt-get update" - "pip install -U -q cython" - "export DEBIAN_FRONTEND=noninteractive" - "sudo apt-get -qq install libpcl-al...
language: python python: - "2.7" before_install: - "sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable" - "sudo add-apt-repository -y ppa:v-launchpad-jochen-sprickerhof-de/pcl" - "sudo apt-get update" - "pip install -U -q cython" - "export DEBIAN_FRONTEND=noninteractive" - "sudo apt-get -qq install libpcl-al...
Update PYTHONPATH to find liblas
Update PYTHONPATH to find liblas
YAML
apache-2.0
NLeSC/PattyAnalytics
494a4cd55fa2faa4fbad19935028e81c165910d1
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 env: - RAILS_VERSION="~> 3.2.0" - RAILS_VERSION="~> 4.0.0" - RAILS_VERSION="~> 4.1.0.rc1" before_script: - travis_retry gem install rails --version "$RAILS_VERSION"
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 env: - RAILS_VERSION="~> 3.2.0" - RAILS_VERSION="~> 4.0.0" - RAILS_VERSION="~> 4.1.0" before_script: - travis_retry gem install rails --version "$RAILS_VERSION"
Test against rails 4.1 final
Test against rails 4.1 final
YAML
mit
pigoz/spring,rails/spring,ypresto/spring,smathy/spring,maclover7/spring,grosser/spring,universsky/spring-1,slobodankovacevic/spring,mariusbutuc/spring,y-yagi/spring
648d2ef7541b875b3cf8e62a17306c28145c8704
.travis.yml
.travis.yml
dist: bionic language: ruby rvm: 2.6 gemfile: - Gemfile services: - postgresql - redis-server addons: postgresql: 10 script: bundle exec rake test before_install: - createdb searchkick_test || true - ./test/ci/install_elasticsearch.sh cache: directories: - $HOME/elasticsearch env: - ELASTICSEARCH_VE...
dist: bionic language: ruby rvm: 2.6 gemfile: - Gemfile services: - postgresql - redis-server addons: postgresql: 10 script: bundle exec rake test before_install: - createdb searchkick_test || true - ./test/ci/install_elasticsearch.sh cache: directories: - $HOME/elasticsearch env: - ELASTICSEARCH_VE...
Test against latest ES versions
Test against latest ES versions
YAML
mit
johan--/searchkick,ankane/searchkick,johan--/searchkick
39f6ee9ff6eaa62c9f34504749f513acd2eda775
.travis.yml
.travis.yml
language: php php: - 5.3.3 - 5.3 - 5.4 - 5.5 - 5.6 - hhvm - hhvm-nightly before_script: - composer update --prefer-source script: - ./vendor/bin/phpunit - ./vendor/bin/phpcs --standard=PSR2 ./src ./tests notifications: irc: "irc.freenode.org#zftalk.modules"
language: php php: - 5.3.3 - 5.3 - 5.4 - 5.5 - 5.6 - hhvm before_script: - composer update --prefer-source script: - ./vendor/bin/phpunit notifications: irc: "irc.freenode.org#zftalk.modules"
Update Travis config to allow builds to pass
Update Travis config to allow builds to pass
YAML
mit
Ocramius/OcraServiceManager,Ocramius/OcraServiceManager
1d85bc3047842efaceb2e2abab1dc6b64486cf97
.travis.yml
.travis.yml
language: rust sudo: false matrix: include: - rust: 1.29.0 - rust: stable - rust: beta - rust: nightly - rust: nightly env: - FEATURES='nightly' branches: only: - staging - trying - master script: - cargo build --verbose --features "$FEATURES" - cargo test --verbo...
language: rust sudo: false matrix: include: - rust: 1.29.0 - rust: stable - rust: beta - rust: nightly - rust: nightly env: - FEATURES='nightly' branches: only: - staging - trying - master script: - cargo build --verbose --features "$FEATURES" - cargo test --verbo...
Test Serde support on CI
Test Serde support on CI
YAML
apache-2.0
rust-lang/hashbrown,rust-lang/hashbrown
0e12f8b75023ed95c1af286e2928e8575c619521
.travis.yml
.travis.yml
language: node_js node_js: # we recommend testing addons with the same minimum supported node version as Ember CLI # so that your addon works for all apps - "6" - "7" - "8" - "9" sudo: false dist: trusty addons: chrome: stable cache: directories: - $HOME/.npm env: global: # See https://git...
language: node_js node_js: # we recommend testing addons with the same minimum supported node version as Ember CLI # so that your addon works for all apps - "6" - "7" - "8" - "9" addons: chrome: stable cache: directories: - $HOME/.npm env: global: # See https://git.io/vdao3 for details. ...
Remove deprecated `sudo: false` option
TravisCI: Remove deprecated `sudo: false` option see https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration
YAML
mit
billybonks/ember-cli-stylelint,billybonks/ember-cli-stylelint