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
ddb5de0f77efbe8e0c23b3d5552811a1ceb50bb5
.travis.yml
.travis.yml
language: csharp sudo: required dist: trusty addons: apt: packages: - gettext - libcurl4-openssl-dev - libicu-dev - libssl-dev - libunwind8 - zlib1g env: global: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - DOTNET_CLI_TELEMETRY_OPTOUT: 1 mono: none os: - linux - osx branches: only: - master - release - dev - /^(.*\/)?ci-.*$/ before_install: - if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi script: - ./build.sh notifications: webhooks: secure: "wQWIB0w+JTMEcME/A3EkbE/kOEd2Ir6JLouu8GnKxpAYkkfgZTJvB39vDZlddcUX2KUIh1wEb+pymSYdVuY8IqgnOiafyNHMr+hOOmyijgGGDEgwFhc6kVg9QE9in1W6EhFc3Zc4q1lTTX8lI3y/fxv4ry4D6UDs7ddcDpBvpWk=" on_success: always on_failure: always on_start: always
language: csharp sudo: false dist: trusty env: global: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - DOTNET_CLI_TELEMETRY_OPTOUT: 1 mono: none os: - linux - osx osx_image: xcode8.2 branches: only: - master - release - dev - /^(.*\/)?ci-.*$/ before_install: - if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi script: - ./build.sh
Update Travis to macOS Sierra
Update Travis to macOS Sierra [skip appveyor]
YAML
apache-2.0
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
3ece2b7c145d8d80d96df560ba601a1736cc8609
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.3 deploy: skip_cleanup: true provider: script script: ./scripts/deploy.sh
language: objective-c osx_image: xcode7.3 script: set -o pipefail && xcodebuild test -workspace Example/AirRivet.xcworkspace -scheme AirRivet-Example -sdk iphonesimulator9.3 | xcpretty deploy: skip_cleanup: true provider: script script: ./scripts/deploy.sh
Add the build script to Travis.
Add the build script to Travis.
YAML
mit
icapps/ios-faro,icapps/ios-faro,icapps/ios-air-rivet,icapps/ios-air-rivet,icapps/ios-air-rivet,icapps/swiftGenericWebService,icapps/ios-air-rivet,icapps/ios-faro,icapps/ios-air-rivet,icapps/ios-faro
851edc4d042732992cad6ca1ad69d1d0139f1094
.travis.yml
.travis.yml
language: ruby rvm: - 2.3.0 script: "bundle exec rake spec" gemfile: - gemfiles/rails4.gemfile - gemfiles/rails5.gemfile notifications: email: - support@travellink.com.au flowdock: secure: TZTbtSK+LDly7dRu0eYE3oro7fH0dktkyzeRo67ofPqO5Xdor6U6Eh2njeq6vqiL9tI+2V1MLv90I9tcLrbiz609sY6r+4byL8fQoDRjXMYcOr8bOcOSMldmKgf/42XmxgcFl9Xh+lWkdIdL9e4xdtsytbuK/EVGfA/DEW7E7DE= sudo: false cache: bundler
language: ruby rvm: - 2.3 - 2.4 - 2.5 script: "bundle exec rake spec" gemfile: - gemfiles/rails4.gemfile - gemfiles/rails5.gemfile notifications: email: - support@travellink.com.au flowdock: secure: TZTbtSK+LDly7dRu0eYE3oro7fH0dktkyzeRo67ofPqO5Xdor6U6Eh2njeq6vqiL9tI+2V1MLv90I9tcLrbiz609sY6r+4byL8fQoDRjXMYcOr8bOcOSMldmKgf/42XmxgcFl9Xh+lWkdIdL9e4xdtsytbuK/EVGfA/DEW7E7DE= sudo: false cache: bundler
Test against newer ruby versions
Test against newer ruby versions
YAML
mit
sealink/right_on,sealink/right_on
0afd73029a6d84fc9ccadba2775759084d5538e3
.travis.yml
.travis.yml
language: php services: - docker sudo: false cache: directories: - $HOME/.composer/cache addons: apt: packages: - pandoc before_script: - composer install --prefer-dist --no-interaction --no-suggest script: - ./vendor/bin/phpunit jobs: include: # # Tests # - php: 5.6 - php: 7.0 - php: 7.1 - php: 7.2 - php: 7.3 - php: 7.4 # # Quality # - name: Code Coverage php: 7.4 script: - ./vendor/bin/phpunit --coverage-clover=coverage.xml - bash <(curl -s https://codecov.io/bash) - name: Static Analysis php: 7.4 script: - docker pull phpstan/phpstan - docker run --rm -v $TRAVIS_BUILD_DIR:/app phpstan/phpstan analyse --level 5 --no-interaction --no-progress /app/src - name: Coding Standards php: 7.4 script: - wget https://cs.symfony.com/download/php-cs-fixer-v2.phar -O php-cs-fixer - php php-cs-fixer fix --dry-run --diff --using-cache=no -vvv
language: php services: - docker sudo: false cache: directories: - $HOME/.composer/cache addons: apt: packages: - pandoc before_script: - composer install --prefer-dist --no-interaction --no-suggest script: - ./vendor/bin/phpunit jobs: include: # # Tests # - php: 5.6 - php: 7.0 - php: 7.1 - php: 7.2 - php: 7.3 - php: 7.4 # # Quality # - name: Code Coverage php: 7.4 script: - ./vendor/bin/phpunit --coverage-clover=coverage.xml - bash <(curl -s https://codecov.io/bash) - name: Static Analysis php: 7.4 script: - docker pull phpstan/phpstan - docker run --rm -v $TRAVIS_BUILD_DIR:/app phpstan/phpstan analyse --level 5 --no-interaction --no-progress /app/src - name: Coding Standards php: 7.4 before_script: - wget https://cs.symfony.com/download/php-cs-fixer-v2.phar -O php-cs-fixer script: - php php-cs-fixer fix --dry-run --diff --no-interaction --show-progress=none --using-cache=no -vvv
Remove unecessary composer install for cs check step
Remove unecessary composer install for cs check step
YAML
mit
renanbr/bibtex-parser
7fe45779312f846ece7f4e6d633be854a640e294
.travis.yml
.travis.yml
notifications: email: on_success: never on_failure: change script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh' git: depth: 10 sudo: false matrix: include: - os: osx env: ATOM_CHANNEL=stable - os: linux dist: trusty env: ATOM_CHANNEL=stable - os: osx env: ATOM_CHANNEL=beta - os: linux dist: trusty env: ATOM_CHANNEL=beta branches: only: - master addons: apt: packages: - libstdc++6
notifications: email: on_success: never on_failure: change script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh' git: depth: 10 sudo: false matrix: include: - os: osx env: ATOM_CHANNEL=stable # - os: linux # dist: trusty # env: ATOM_CHANNEL=stable - os: osx env: ATOM_CHANNEL=beta # - os: linux # dist: trusty # env: ATOM_CHANNEL=beta branches: only: - master addons: apt: packages: - libstdc++6
Remove Linux from Travis CI
Remove Linux from Travis CI
YAML
mit
gandm/language-babel
1941a0d151eaf50c593683358e9c0a87a06de7f8
.travis.yml
.travis.yml
language: java # sudo-enabled environment has 7.5GB of RAM vs. 4GB of RAM for container-based # env: https://docs.travis-ci.com/user/ci-environment/#Virtualization-environments sudo: required dist: trusty jdk: - oraclejdk7 - oraclejdk8 addons: apt: packages: # Update the pre-installed versions of Oracle JDK 7/8 to latest. - oracle-java7-installer - oracle-java8-installer env: # https://docs.travis-ci.com/user/environment-variables/#Global-Variables global: # Add more RAM; Maven is running out during the build: # https://travis-ci.org/OpenTSDB/asyncbigtable/jobs/203079393 - MAVEN_OPTS="-Xmx4096m -XX:MaxPermSize=4096m" install: - echo $JAVA_HOME - travis_wait mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V script: - travis_wait mvn test -B notifications: email: false
language: java # sudo-enabled environment has 7.5GB of RAM vs. 4GB of RAM for container-based # env: https://docs.travis-ci.com/user/ci-environment/#Virtualization-environments sudo: required dist: trusty jdk: - oraclejdk7 - oraclejdk8 addons: apt: packages: # Update the pre-installed versions of Oracle JDK 7/8 to latest. - oracle-java7-installer - oracle-java8-installer env: # https://docs.travis-ci.com/user/environment-variables/#Global-Variables global: # Add more RAM; Maven is running out during the build: # https://travis-ci.org/OpenTSDB/asyncbigtable/jobs/203079393 - MAVEN_OPTS="-Xms2048m -Xmx4096m -XX:MaxPermSize=4096m -XX:-UseGCOverheadLimit -XX:+UseG1GC" install: - echo $JAVA_HOME - travis_wait mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V script: - travis_wait mvn test -B cache: # https://docs.travis-ci.com/user/caching/#Arbitrary-directories directories: - $HOME/.m2 notifications: email: false
Add higher RAM limits for the RAM-hungry Maven.
Add higher RAM limits for the RAM-hungry Maven. Also add caching for Maven artifacts.
YAML
bsd-3-clause
OpenTSDB/asyncbigtable,manolama/asyncbigtable
c05fe142b14f112df5180e1319878f3a71411f63
.travis.yml
.travis.yml
sudo: required addons: apt: sources: - google-chrome packages: - google-chrome-stable language: java jdk: - openjdk8 env: - NODE_VERSION=8.12.0 DBUS_SESSION_BUS_ADDRESS=/dev/null cache: directories: - node_modules before_install: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start install: - nvm install $NODE_VERSION - nvm use $NODE_VERSION - npm install -g npm@latest - npm install script: - npm test - cat test/unit/coverage/lcov.info | node_modules/.bin/coveralls
dist: trusty sudo: required addons: apt: sources: - google-chrome packages: - google-chrome-stable language: java jdk: - oraclejdk8 env: - NODE_VERSION=8.12.0 DBUS_SESSION_BUS_ADDRESS=/dev/null cache: directories: - node_modules before_install: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 install: - nvm install $NODE_VERSION - nvm use $NODE_VERSION - npm install -g npm@latest - npm install script: - npm test - cat test/unit/coverage/lcov.info | node_modules/.bin/coveralls
Rollback to oracle jdk and fix to trusty dist
ci: Rollback to oracle jdk and fix to trusty dist
YAML
mit
ghettovoice/vuelayers,ghettovoice/vuelayers
4e455045d193f8ee810ab641f95058c4a6a6d608
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 env: global: - MAVEN_OPTS="-Xmx512M" sudo: false cache: directories: - $HOME/.m2 install: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -q script: mvn test -Dair.check.skip-dependency=true
language: java jdk: - oraclejdk8 env: global: - MAVEN_OPTS="-Xmx512M" sudo: false cache: directories: - $HOME/.m2 install: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -q -T 2 script: mvn test -Dair.check.skip-dependency=true
Use parallel build for installation on Travis
Use parallel build for installation on Travis
YAML
apache-2.0
bd-dev-mobileum/presto,bd-dev-mobileum/presto,bd-dev-mobileum/presto,bd-dev-mobileum/presto,bd-dev-mobileum/presto
93bb69334d635a7d2cc14dbb2afc66b2a551813a
.travis.yml
.travis.yml
script: "bundle exec rake neo4j:install[community-latest] neo4j:start default --trace" language: ruby cache: bundler sudo: false rvm: - 2.3 - 2.4 - 2.5 gemfile: travis.gemfile env: global: - TRAVISCI=1 matrix: - NEO4J_VERSION=7.2.3 - NEO4J_VERSION=8.3.4 - NEO4J_VERSION=9.2.2
before_script: - "travis_retry bin/rake neo4j:install[$NEO4J_VERSION] --trace" - "bin/rake neo4j:config[development,7474] --trace" - "if [ -f ./db/neo4j/development/conf/neo4j-wrapper.conf ]; then WRAPPER=-wrapper; fi" - "echo 'dbms.memory.pagecache.size=600m' >> ./db/neo4j/development/conf/neo4j.conf" - "echo 'dbms.memory.heap.max_size=600' >> ./db/neo4j/development/conf/neo4j$WRAPPER.conf" - "echo 'dbms.memory.heap.initial_size=600' >> ./db/neo4j/development/conf/neo4j$WRAPPER.conf" - "bin/rake neo4j:start --trace" - "sleep 20" script: - "travis_retry bin/rake default --trace" language: ruby cache: bundler sudo: false rvm: - 2.3 - 2.4 - 2.5 gemfile: travis.gemfile env: global: - TRAVISCI=1 matrix: - NEO4J_VERSION=7.2.3 - NEO4J_VERSION=8.3.4 - NEO4J_VERSION=9.2.2
Copy neo4j setup from neo4j gem
Copy neo4j setup from neo4j gem
YAML
mit
sineed/neo4j-rspec
c560c9bb5d088832f5fa0443e970c8ec65732b5d
.travis.yml
.travis.yml
language: objective-c osx_image: xcode6.4 script: - xctool -project ObjectiveRocks.xcodeproj -scheme ObjectiveRocks -sdk macosx -configuration Release ONLY_ACTIVE_ARCH=NO - xctool test -project ObjectiveRocks.xcodeproj -scheme ObjectiveRocksTests -sdk macosx ONLY_ACTIVE_ARCH=NO - xctool -project ObjectiveRocks.xcodeproj -scheme ObjectiveRocks-iOS -sdk iphoneos -configuration Release ONLY_ACTIVE_ARCH=NO - xctool test -project ObjectiveRocks.xcodeproj -scheme ObjectiveRocksTests-iOS -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
language: objective-c osx_image: xcode7.1 script: - xctool -project ObjectiveRocks.xcodeproj -scheme ObjectiveRocks -sdk macosx -configuration Release ONLY_ACTIVE_ARCH=NO - xctool test -project ObjectiveRocks.xcodeproj -scheme ObjectiveRocksTests -sdk macosx ONLY_ACTIVE_ARCH=NO - xctool -project ObjectiveRocks.xcodeproj -scheme ObjectiveRocks-iOS -sdk iphoneos -configuration Release ONLY_ACTIVE_ARCH=NO - xctool test -project ObjectiveRocks.xcodeproj -scheme ObjectiveRocksTests-iOS -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
Update Xcode image for TravisCI
Update Xcode image for TravisCI
YAML
mit
iabudiab/ObjectiveRocks,iabudiab/ObjectiveRocks,iabudiab/ObjectiveRocks,iabudiab/ObjectiveRocks
3d5b9d4fccae9fa06b287422a699012744072953
.travis.yml
.travis.yml
language: ruby rvm: - 2.3.0 addons: apt: packages: - libkrb5-3 - libkrb5-26-heimdal cache: - bundler - apt script: bundle exec bash run_tests.sh
language: ruby rvm: - 2.3.0 - 2.2.4 - 2.1.9 addons: apt: packages: - libkrb5-3 - libkrb5-26-heimdal cache: - bundler - apt script: bundle exec bash run_tests.sh
Add stable releases of Ruby
Add stable releases of Ruby
YAML
mit
stupidpupil/kerberos_authenticator,stupidpupil/kerberos_authenticator
3a97cc48ac91a4b7238c8127a1568455e7f0a3ac
.travis.yml
.travis.yml
language: python python: - 2.7 - 3.3 install: - python setup.py dev - pip install coveralls - pip install flake8 script: - nosetests - flake8 after_success: - coveralls
language: python install: - pip install tox coveralls script: - tox after_success: - coveralls env: - TOXENV=py27 - TOXENV=py32 - TOXENV=py33 - TOXENV=py34 - TOXENV=flake8
Make tox take advantage of the Travis build matrix when running on Travis CI
Make tox take advantage of the Travis build matrix when running on Travis CI
YAML
mit
gawel/irc3,mrhanky17/irc3,mrhanky17/irc3
895d9c6251ccbafd3ae9c47b163218a27ac23e01
.travis.yml
.travis.yml
sudo: false language: erlang otp_release: - 21.1 - 20.0 - 19.3 before_install: - ./ci before_install "${PWD:?}"/rebar3 - pip install --user codecov install: - ./ci install "${PWD:?}"/rebar3 script: - ./ci script "${PWD:?}"/rebar3 cache: directories: - .plt after_success: - codecov
sudo: false language: erlang otp_release: - 23.0 - 22.3 - 21.3 - 20.3 - 19.3 before_install: - ./ci before_install "${PWD:?}"/rebar3 - pip install --user codecov install: - ./ci install "${PWD:?}"/rebar3 script: - ./ci script "${PWD:?}"/rebar3 cache: directories: - .plt after_success: - codecov
Update check/test target OTP versions
Update check/test target OTP versions
YAML
apache-2.0
inaka/apns4erl
2f120e5b9ab414c3729b40cb3dfa3e593c72999a
.travis.yml
.travis.yml
language: node_js node_js: - '0.10' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm install - npm install istanbul coveralls
sudo: false language: node_js node_js: - '0.10' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm install - npm install istanbul coveralls
Build on Travis CI without `sudo`.
Build on Travis CI without `sudo`.
YAML
mit
demarius/r-tree,bigeasy/r-tree,bigeasy/r-tree,bigeasy/r-tree,demarius/r-tree
31d048346b7f51fdac67d78e5efcd899600c57b5
.travis.yml
.travis.yml
language: python python: - 2.7 services: - mongodb install: - pip install -r travis.pip --allow-external webassets --allow-unverified webassets - pip install -e . script: - nosetests --with-coverage udata_youckan after_success: - coveralls --rcfile=coverage.rc
language: python python: - 2.7 services: - mongodb install: - pip install -r travis.pip --allow-external webassets --allow-unverified webassets - pip install -e . script: - nosetests --with-coverage after_success: - coveralls --rcfile=coverage.rc
Fix nosetests call for Travis
Fix nosetests call for Travis
YAML
agpl-3.0
opendatateam/udata-youckan,etalab/udata-youckan,opendatateam/udata-youckan
25a736014701e5d34da8c9e1f370ec7b957de27d
.travis.yml
.travis.yml
# Config file for automatic testing at travis-ci.org language: python python: 2.7 cache: apt addons: apt: packages: - libatlas-dev - libatlas-base-dev - liblapack-dev - gfortran before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - conda update --yes conda - conda install --yes --quiet conda-build jinja2 toolz - conda install --yes --quiet pep8 pylint install: - python setup.py install # command to run tests, e.g. python setup.py test script: - pylint --rcfile=pylintrc bcbiovm - pep8 bcbiovm
# Config file for automatic testing at travis-ci.org language: python python: 2.7 cache: apt addons: apt: packages: - git - libatlas-dev - libatlas-base-dev - liblapack-dev - gfortran before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p "$HOME/miniconda" - export PATH="$HOME/miniconda/bin:$PATH" - conda update --yes conda - conda install --yes --quiet conda-build binstar jinja2 toolz - conda install --yes --quiet pep8 pylint - git clone https://github.com/alexandrucoman/bcbio-dev-conda build - if [ "$TRAVIS_BRANCH" == "develop" ]; then python build/build.py --branch "$TRAVIS_BRANCH" --upload --token "$BINSTAR_TOKEN"; else python build/build.py --branch "$TRAVIS_BRANCH"; fi - export PACKAGE=$(conda build --output build/bcbio-nextgen-vm) install: - conda install --yes "$PACKAGE" script: - pylint --rcfile=pylintrc bcbiovm - pep8 bcbiovm
Use bcbio-conda-dev for building packages
Use bcbio-conda-dev for building packages
YAML
mit
alexandrucoman/bcbio-nextgen-vm,alexandrucoman/bcbio-nextgen-vm
b010d2a5b200718eb6b5e2b6e0d3cc97b1b3bd84
.travis.yml
.travis.yml
language: java install: true jdk: oraclejdk8 env: matrix: - TERM=dumb global: secure: LRj23pXG7ikrc/eJ/lcrl+KZ5R7iR1XQVlax7HI/9j6U8abYuIRi0IT34DQwcQSgZB3kXs0bWHxsIR7iz/nCH4S6bDRvImFPKwg20XMdRTbZaREx1eYPy+odXdBf/3BGbmBQ8HLrdxOVTltFWZGvvR49jScQd3z/O8k2FZln43c= before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sudo apt-get update -qq - sudo apt-get install oracle-java8-installer before_script: - ./gradlew --version script: ./gradlew -S -Dscan check test integrationTest functionalTest jacocoTestReport jacocoIntegrationTestReport jacocoFunctionalTestReport jacocoRootReport -x :sample-javafx-groovy:jfxJar -x :sample-javafx-groovy:jfxDeploy -x :sample-javafx-java:jfxJar -x :sample-javafx-java:jfxDeploy -x clirr after_success: - ./update-gh-pages.sh - ./gradlew coveralls - bash <(curl -s https://codecov.io/bash) after_failure: - ./update-gh-pages.sh
language: java install: true jdk: oraclejdk8 cache: directories: - $HOME/.m2 - $HOME/.gradle env: matrix: - TERM=dumb global: secure: LRj23pXG7ikrc/eJ/lcrl+KZ5R7iR1XQVlax7HI/9j6U8abYuIRi0IT34DQwcQSgZB3kXs0bWHxsIR7iz/nCH4S6bDRvImFPKwg20XMdRTbZaREx1eYPy+odXdBf/3BGbmBQ8HLrdxOVTltFWZGvvR49jScQd3z/O8k2FZln43c= before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sudo apt-get update -qq - sudo apt-get install oracle-java8-installer before_script: - ./gradlew --version script: ./gradlew -S -Dscan check test integrationTest functionalTest jacocoTestReport jacocoIntegrationTestReport jacocoFunctionalTestReport jacocoRootReport -x :sample-javafx-groovy:jfxJar -x :sample-javafx-groovy:jfxDeploy -x :sample-javafx-java:jfxJar -x :sample-javafx-java:jfxDeploy -x clirr after_success: - ./update-gh-pages.sh - ./gradlew coveralls - bash <(curl -s https://codecov.io/bash) after_failure: - ./update-gh-pages.sh
Configure Travis to cache mvn/gradle repos
Configure Travis to cache mvn/gradle repos
YAML
apache-2.0
griffon/griffon,griffon/griffon
144622548d34fe775e12bae98030600cf6ca924d
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - hhvm script: - make test
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - hhvm - nightly matrix: allow_failures: - php: hhvm - php: nightly script: - make test
Allow failures for HHVM and nightly builds
Allow failures for HHVM and nightly builds
YAML
mit
heureka/overeno-zakazniky
b680747bf2273a458f8a280d88cf6099a45f7436
.travis.yml
.travis.yml
# Config file for automatic testing at travis-ci.org sudo: false language: python dist: xenial python: - "3.5" - "3.6" - "3.7" - "pypy3" env: - PYTEST=3 - PYTEST=4 - PYTEST=5 - PYTEST=master matrix: include: - python: 'pypy' dist: trusty env: PYTEST=4 - python: 2.7 env: PYTEST=3 - python: 2.7 env: PYTEST=4 - python: 3.4 env: PYTEST=3 - python: 3.4 env: PYTEST=4 jobs: allow_failures: - env: PYTEST=master install: # coveralls-python needs a newer setuptools to install from git - "[[ $TRAVIS_PYTHON_VERSION == pypy ]] || pip install --upgrade setuptools pip" # Using the coveralls-python master until parallel builds support is released # See: https://github.com/coveralls-clients/coveralls-python/commit/7ba3a5 - "[[ $TRAVIS_PYTHON_VERSION == pypy ]] || pip install git+https://github.com/coveralls-clients/coveralls-python" - pip install tox-travis coverage script: - tox -v - coverage combine after_success: - "[[ $TRAVIS_PYTHON_VERSION == pypy ]] || COVERALLS_PARALLEL=true coveralls" before_cache: - rm -rf $HOME/.cache/pip/log cache: directories: - $HOME/.cache/pip
# Config file for automatic testing at travis-ci.org sudo: false language: python dist: xenial python: - "3.5" - "3.6" - "3.7" - "pypy3" env: - PYTEST=3 - PYTEST=4 - PYTEST=5 - PYTEST=master matrix: include: - python: 'pypy' dist: trusty env: PYTEST=4 - python: 2.7 env: PYTEST=3 - python: 2.7 env: PYTEST=4 - python: 3.4 env: PYTEST=3 - python: 3.4 env: PYTEST=4 jobs: allow_failures: - env: PYTEST=master install: - "[[ $TRAVIS_PYTHON_VERSION == pypy ]] || pip install coveralls" - pip install tox-travis coverage script: - tox -v - coverage combine after_success: - "[[ $TRAVIS_PYTHON_VERSION == pypy ]] || COVERALLS_PARALLEL=true coveralls" before_cache: - rm -rf $HOME/.cache/pip/log cache: directories: - $HOME/.cache/pip
Use a released version of coveralls
Use a released version of coveralls
YAML
mit
ktosiek/pytest-vcr
a24852aec92f24f29954ad8a7a79600a97721c53
.travis.yml
.travis.yml
language: bash script: - "echo TRAVIS_COMMIT: $TRAVIS_COMMIT" - "echo Short Commit: ${TRAVIS_COMMIT:0:7}"
language: bash sudo: false before_install: - "while sleep 1; do netstat -i; done | awk '{print \"netstat:\", $0}' &" install: - "echo installing..." script: - "for i in 1 2 3 4 5; do sleep 1; echo $i; done"
Test netstat availability on container
Test netstat availability on container
YAML
mit
joepvd/travis-experiment,joepvd/travis-experiment,joepvd/travis-experiment
a29764d33f7ebdc45e740d7ff08d6e10232d6d29
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" install: - python setup.py -q install - pip install -r requirements.txt --use-mirrors script: - nosetests
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" install: - python setup.py -q install - pip install -r requirements.txt --use-mirrors script: - python setup.py test
Fix Travis config to use setup.py instead of nose for testing.
Fix Travis config to use setup.py instead of nose for testing.
YAML
apache-2.0
loadimpact/loadimpact-sdk-python
c9d5020438243970e0c0afd2d71d94d2e1242885
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.11" - "0.10" before_script: - 'npm install -g bower mocha karma-cli'
sudo: false language: node_js node_js: - "0.11" - "0.10" before_script: - 'npm install -g bower mocha karma-cli && cd public && bower install'
Split public JavaScript and Node.js unit tests
Split public JavaScript and Node.js unit tests
YAML
mit
sergeyshushlyapin/featurebook,sergeyshushlyapin/featurebook,SOFTWARE-CLINIC/featurebook
0eac3f219a5a9fbff33439170a69f556020cbb95
.travis.yml
.travis.yml
language: php git: depth: 2 matrix: include: - php: hhvm - php: nightly - php: 7.2 - php: 7.1 - php: 7.0 env: - LINT=true fast_finish: true allow_failures: - php: nightly - php: hhvm cache: directories: - $HOME/.composer/cache - $HOME/.php-cs-fixer before_script: - phpenv config-rm xdebug.ini || true - travis_retry composer self-update - travis_retry composer install --no-interaction script: # Verify application version and Git tag match on tagged builds - if [[ ! -z "$TRAVIS_TAG" ]]; then composer application-version-guard; fi - if [[ $LINT = true ]]; then composer cs-lint; fi - composer test
language: php git: depth: 2 matrix: include: - php: hhvm - php: nightly - php: 7.3 - php: 7.2 - php: 7.1 - php: 7.0 env: - LINT=true fast_finish: true allow_failures: - php: nightly - php: hhvm - php: 7.3 cache: directories: - $HOME/.composer/cache - $HOME/.php-cs-fixer before_script: - phpenv config-rm xdebug.ini || true - travis_retry composer self-update - travis_retry composer install --no-interaction script: # Verify application version and Git tag match on tagged builds - if [[ ! -z "$TRAVIS_TAG" ]]; then composer application-version-guard; fi - if [[ $LINT = true ]]; then composer cs-lint; fi - composer test
Enable testing against PHP 7.3
Enable testing against PHP 7.3
YAML
mit
raphaelstolt/git-user-bend
d93160039761ef8730147de4c8a5b15c3869d7df
.travis.yml
.travis.yml
language: python sudo: false python: - "2.7" - "3.3" install: - pip install codecov coverage catkin_pkg catkin_tools futures dateutil requests rosdep yaml script: - nosetests --verbose --with-coverage --cover-erase --cover-package=rosrepo test after_success: - codecov
language: python sudo: false python: - "2.7" - "3.3" install: - pip install codecov coverage catkin_pkg catkin_tools futures python-dateutil requests rosdep yaml script: - nosetests --verbose --with-coverage --cover-erase --cover-package=rosrepo test after_success: - codecov
Fix pip install key for dateutil
Fix pip install key for dateutil
YAML
apache-2.0
fkie/rosrepo,fkie/rosrepo
8e331b110e5e9eb43eb99482076eb4fed3a010e6
.travis.yml
.travis.yml
language: python python: - "3.5" - "3.6-dev" install: - pip install -r requirements.txt - pip install codeclimate-test-reporter script: - mkdir -p tmp - coverage run --source=generate.py generate.py -l DEBUG -c conf.yaml tmp after_success: - codeclimate-test-reporter
language: python python: - "3.6" - "3.7" install: - pip install -r requirements.txt - pip install codeclimate-test-reporter script: - mkdir -p tmp - coverage run --source=generate.py generate.py -l DEBUG -c conf.yaml tmp after_success: - codeclimate-test-reporter
Remove python 3.5 from supported python version and add 3.7 instead
Remove python 3.5 from supported python version and add 3.7 instead
YAML
agpl-3.0
andir/ipv6.watch,andir/ipv6.watch
b8db174d08536ec086ed080bcba976fe1a5eef0e
.travis.yml
.travis.yml
language: php sudo: required dist: trusty php: - "7.2" - "master" - "nightly" matrix: fast_finish: true allow_failures: - php: "master" - php: "nightly" os: - windows - linux before_install: - git clone -b stable https://github.com/jedisct1/libsodium.git - cd libsodium && sudo ./configure && sudo make check && sudo make install && cd .. install: - pecl install libsodium - travis_retry composer install --no-interaction - wget -c -nc --retry-connrefused --tries=0 https://github.com/satooshi/php-coveralls/releases/download/v2.0.0/coveralls.phar - chmod +x coveralls.phar - php coveralls.phar --version script: - ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml - ./vendor/bin/psalm after_success: - travis_retry php coveralls.phar -v before_script: - mkdir -p build/logs - ls -al cache: directories: - vendor - $HOME/.cache/composer
language: php sudo: required dist: trusty php: - "7.2" - "master" - "nightly" matrix: fast_finish: true allow_failures: - php: "master" - php: "nightly" os: - windows - linux before_install: - git clone -b stable https://github.com/jedisct1/libsodium.git - cd libsodium && sudo ./configure && sudo make check && sudo make install && cd .. install: - pecl install libsodium - travis_retry composer install --no-interaction - wget -c -nc --retry-connrefused --tries=0 https://github.com/php-coveralls/php-coveralls/releases/download/v2.0.0/php-coveralls.phar - chmod +x coveralls.phar - php coveralls.phar --version script: - ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml - ./vendor/bin/psalm after_success: - travis_retry php coveralls.phar -v before_script: - mkdir -p build/logs - ls -al cache: directories: - vendor - $HOME/.cache/composer
Fix broken link. Should install the coveralls library API now.
Fix broken link. Should install the coveralls library API now.
YAML
mpl-2.0
paragonie/halite,paragonie/halite
c9c66cb003f9b8eac323cb7531bb83628c120efb
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby - rbx - ree
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode
Test in both 1.8 and 1.9 mode on JRuby and Rubinius
Test in both 1.8 and 1.9 mode on JRuby and Rubinius
YAML
mit
cocktail-io/octokit.rb,xantage/octokit.rb,simon0191/octokit.rb,sferik/octokit.rb,benbalter/octokit.rb,stetsenko/octokit.rb,raysrashmi/octokit.rb,hoorayimhelping/octokit.rb,pvdb/octokit.rb,AnNOtis/octokit.rb,byroot/octokit.rb,pezholio/octokit.rb,BreemsEmporiumMensToiletriesFragrances/octokit.rb,pvdb/octokit.rb,BreemsEmporiumMensToiletriesFragrances/octokit.rb,LizzHale/octokit.rb,octokit/octokit.rb,pwz3n0/octokit.rb,Payro93/octokit.rb,stetsenko/octokit.rb,christer155/octokit.rb,benbalter/octokit.rb,synmnstr/octokit.rb,sferik/octokit.rb,r7kamura/octokit.rb,moodyredistribution/octokit.rb,synmnstr/octokit.rb,whip112/octokit.rb,nilbus/octokit.rb,daukantas/octokit.rb,r7kamura/octokit.rb,LizzHale/octokit.rb,daukantas/octokit.rb,Payro93/octokit.rb,iainbeeston/octokit.rb,octokit/octokit.rb,whip112/octokit.rb,tarebyte/octokit.rb,Neo20067/octokit.rb,hoorayimhelping/octokit.rb,moodyredistribution/octokit.rb,Neo20067/octokit.rb,simon0191/octokit.rb,iainbeeston/octokit.rb,christer155/octokit.rb,JuanitoFatas/octokit.rb,pwz3n0/octokit.rb,cocktail-io/octokit.rb,Tadeirro/octokit.rb,Ladiijae/octokit.rb,Tadeirro/octokit.rb,tarebyte/octokit.rb,kv109/octokit.rb,byroot/octokit.rb,pezholio/octokit.rb,Ladiijae/octokit.rb,raysrashmi/octokit.rb,JuanitoFatas/octokit.rb,AnNOtis/octokit.rb,nilbus/octokit.rb,xantage/octokit.rb,kv109/octokit.rb
f7e5585b2b058c73c074119d0e6eb00df7c7822f
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 sudo: false script: mvn clean deploy branches: only: - develop - uat - prod
language: java jdk: - openjdk8 sudo: false script: mvn clean deploy branches: only: - develop - uat - prod
Switch to Open JDK 8
Switch to Open JDK 8
YAML
apache-2.0
Sage-Bionetworks/BridgeUserDataDownloadService
09b4125b74fc2eebefdb980ef18ee82d44f4553b
.travis.yml
.travis.yml
language: node_js node_js: - "8" - "6" - "4" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 # Handle git submodules yourself git: submodules: false # Use sed to replace the SSH URL with the public URL, then initialize submodules before_install: - sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules - git submodule update --init --recursive
language: node_js node_js: - "8" - "6" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 # Handle git submodules yourself git: submodules: false # Use sed to replace the SSH URL with the public URL, then initialize submodules before_install: - sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules - git submodule update --init --recursive
Remove Node 4 from Travis tests
Remove Node 4 from Travis tests
YAML
mit
carbon-io/test-tube,carbon-io/test-tube
f6b4c14a48d1fb2b8ec30d5efaf4933e8be2efa6
.travis.yml
.travis.yml
language: node_js node_js: - "4" before_script: - npm install -g bower - bower install after_success: - cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
language: node_js node_js: - '4' before_script: - npm install -g bower - bower install after_success: - cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js deploy: provider: npm email: jmsmyth@users.noreply.github.com api_key: secure: e9PlsJAxabN0ikS7wwDXC/YdP4tZQDVyJciSb0fhDG0NpnlBhjNvd1TmmMEby3oc4KfmJzYk5svp8bL4+qFyiYGVgOdc+0ypykOlBULHsRy6cbn03RRoXeZNpL30oBIFNeJ79RM2/DU7lfbJANjJJdEUCpXPwgUe84trMLvaOiWUX3kZn3MdO49A0kUqtU8R9uz3bB7OuU5q5R57deU9tSf9DCfZN3Pqt8HlAXLBdpKiOlw1FIjrqXXZGlC0C9MNcexAvOxnvE4qQC/ZxAgCuBg7rwpF/SZnIjd6dJ7dSlpaHwnIO/PrO5+9VSVUMOUsPZJMGveI25f8pjeSPUU7V0VKTfWLj9b1Zn8bND7RJVuvNpcOQTKELjyT/vqMy0uuXC6KWUGNh5UcwzCyiAr0mw6bESm9m7/NHoAyL9JiEvX1NkVs3eE+Yu8PLlmMnynmDlFW9FHKsA8SLoJQPFNjlcoXLpC8KrXUjK9pxq8rvVGWExqUc/6ZYdnIzZcbSZCQIEELRKmsr/WRgslfo9zeyhxVsQ9IIQFtyGBOqO+NVHwjD2yYJtIqdx0wwOML+kU4b89xY431xCwBKS/FuOn39K6Fm4dgNxa6xCxX9TVCq/1R7ySK6x+BW4HgGVlR1QwsDMJtBWqPAu9DF5RCUy3QPs+a+fND4JYnTqu66AKY2/8= on: tags: true repo: jmsmyth/hexagon-react
Set up automatic deployment on tag
Set up automatic deployment on tag
YAML
mit
jmsmyth/hexagon-react,jmsmyth/hexagon-react,jmsmyth/hexagon-react
b4ad2fc47250342de66493a20b61c2846092f878
.travis.yml
.travis.yml
language: php php: # aliased to 5.2.17 - 5.2 # aliased to a recent 5.3.x version - 5.3 # aliased to a recent 5.4.x version - 5.4 script: make test notifications: irc: "tech@tempo-db.com"
language: php php: # aliased to 5.2.17 - 5.2 # aliased to a recent 5.3.x version - 5.3 # aliased to a recent 5.4.x version - 5.4 script: make test notifications: email: "tech@tempo-db.com"
Add tech@tempo-db.com to Travis notifications
Add tech@tempo-db.com to Travis notifications
YAML
mit
tempodb/tempodb-php
702e2b224e5eda70c5c6afdefaf0e455a432b247
.travis.yml
.travis.yml
addons: apt: packages: - graphviz before_cache: - "rm -rf $HOME/.m2/repository/org/ligoj/bootstrap" - "find $HOME/.m2 -name resolver-status.properties -exec rm {} \\;" before_install: - "chmod +x ./travis.sh" - wget https://github.com/sormuras/bach/raw/master/install-jdk.sh cache: directories: - $HOME/.m2/repository - $HOME/.sonar/cache - $HOME/jvm - $HOME/maven env: - TARGET=BUILD JDK='OpenJDK 9' install: . ./install-jdk.sh -F 9 -L GPL branches: only: - master - dev language: java notifications: email: false script: "./travis.sh" sudo: false
addons: apt: packages: - graphviz before_cache: - "rm -rf $HOME/.m2/repository/org/ligoj/bootstrap" - "find $HOME/.m2 -name resolver-status.properties -exec rm {} \\;" before_install: - "chmod +x ./travis.sh" - wget https://github.com/sormuras/bach/raw/master/install-jdk.sh cache: directories: - $HOME/.m2/repository - $HOME/.sonar/cache - $HOME/jvm - $HOME/maven env: - TARGET=BUILD JDK='OpenJDK 10' install: . ./install-jdk.sh -F 10 -L GPL branches: only: - master - dev language: java notifications: email: false script: "./travis.sh" sudo: false
Update to advanced JDK switcher
Update to advanced JDK switcher
YAML
mit
ligoj/bootstrap,ligoj/bootstrap,ligoj/bootstrap
003b11b961cdfc922f984c1fea1b8c3ece7f4e3e
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "6" addons: apt: packages: - gettext before_script: - npm install -g grunt-cli before_install: - chmod +x ./test/build_mo_files.sh - ./test/build_mo_files.sh addons: sauce_connect: true env: global: - secure: GRLxEem43P7BM1kVlu9fi9f5XVZFrTRmvU14Ams/Y8ECMx+WZweYYYmZgJZ10dfMun/KOQgx9BPUwuK0D69I3Iw/h2PrWxrpDrFKlTeSS4EmeUx3XfmLkiNEH1BXZ1n4Mq+mx6drFug5wLW2/0pCK2B0GcE5zgVMWpcm4mPgZ7w= - secure: DAA7sn/qWeHG/2SkYwvyxa9cz7zlNXwGA5aRXK37ZhVcxjQAD/Nzc0arRkyJC1r9UDIQYY9UrrhDvXcDz4aTxxQTQT4DYGnUpSzkdiyghRv1EQVJupgoLqGYX98zq2ycnhhtuh5+sxtY3x4bmaBv0F9BoQPVVcn5g9Zf4/GfW1w=
sudo: false language: node_js node_js: - "12" addons: apt: packages: - gettext before_script: - npm install -g grunt-cli before_install: - chmod +x ./test/build_mo_files.sh - ./test/build_mo_files.sh addons: sauce_connect: true env: global: - secure: GRLxEem43P7BM1kVlu9fi9f5XVZFrTRmvU14Ams/Y8ECMx+WZweYYYmZgJZ10dfMun/KOQgx9BPUwuK0D69I3Iw/h2PrWxrpDrFKlTeSS4EmeUx3XfmLkiNEH1BXZ1n4Mq+mx6drFug5wLW2/0pCK2B0GcE5zgVMWpcm4mPgZ7w= - secure: DAA7sn/qWeHG/2SkYwvyxa9cz7zlNXwGA5aRXK37ZhVcxjQAD/Nzc0arRkyJC1r9UDIQYY9UrrhDvXcDz4aTxxQTQT4DYGnUpSzkdiyghRv1EQVJupgoLqGYX98zq2ycnhhtuh5+sxtY3x4bmaBv0F9BoQPVVcn5g9Zf4/GfW1w=
Update Node.js on Travis to 12
Update Node.js on Travis to 12 It's the current LTS.
YAML
mit
WrinklyNinja/jed-gettext-parser,WrinklyNinja/jed-gettext-parser,WrinklyNinja/jed-gettext-parser
f7b46ce3d531d9f165288f75630b633453cef2e1
.travis.yml
.travis.yml
language: cpp matrix: include: - os: osx osx_image: xcode9.3 env: - TARGET=mac TEST=test - os: osx osx_image: xcode7.3 env: - TARGET=mac TEST=test - os: linux dist: xenial env: - TARGET=linux TEST=test - os: linux services: - docker before_install: - docker run -d --name cosmic -v $(pwd):/libsfz -w /libsfz ubuntu:cosmic sleep infinity - docker ps install: - $SH apt-get update - $SH apt-get install -y --no-install-recommends build-essential clang make python env: - TARGET=linux TEST=test SH="docker exec cosmic" - os: linux services: - docker before_install: - docker run -d --name cosmic -v $(pwd):/libsfz -w /libsfz ubuntu:cosmic sleep infinity - docker ps install: - $SH apt-get update - $SH apt-get install -y --no-install-recommends build-essential clang make python - $SH apt-get install -y --no-install-recommends mingw-w64 xvfb wine env: - TARGET=win TEST=test-wine SH="docker exec cosmic" script: - $SH ./configure -o $TARGET - $SH make - $SH make $TEST
language: cpp matrix: include: - os: osx osx_image: xcode11.5 env: - TARGET=mac TEST=test # - os: osx # osx_image: xcode7.3 # env: # - TARGET=mac TEST=test - os: linux dist: xenial env: - TARGET=linux TEST=test - os: linux services: - docker before_install: - docker run -d --name focal -v $(pwd):/libsfz -w /libsfz ubuntu:focal sleep infinity - docker ps install: - $SH apt-get update - $SH apt-get install -y --no-install-recommends build-essential clang make python env: - TARGET=linux TEST=test SH="docker exec focal" - os: linux services: - docker before_install: - docker run -d --name focal -v $(pwd):/libsfz -w /libsfz ubuntu:focal sleep infinity - docker ps install: - $SH apt-get update - $SH apt-get install -y --no-install-recommends build-essential clang make python - $SH apt-get install -y --no-install-recommends mingw-w64 xvfb wine env: - TARGET=win TEST=test-wine SH="docker exec -e DEBIAN_FRONTEND=noninteractive focal" script: - $SH ./configure -o $TARGET - $SH make - $SH make $TEST
Test on macOS 10.15, Ubuntu 20.04 focal
Test on macOS 10.15, Ubuntu 20.04 focal
YAML
mit
sfiera/libsfz,sfiera/libsfz
38f8e7156c2a2ace29c56c669b31e28deecd588b
.travis.yml
.travis.yml
language: objective-c git: depth: 2 node_js: - "0.10" install: - echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config - cd .. - npm install -g purplecabbage/cordova-paramedic - npm install -g cordova - npm install -g ios-sim script: - cordova-paramedic --platform ios --plugin ../cordova-plugin-media
language: objective-c git: depth: 2 node_js: - "0.10" install: - echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config - cd .. - npm install -g cordova-paramedic - npm install -g cordova - npm install -g ios-sim script: - cordova-paramedic --platform ios --plugin ${TRAVIS_BUILD_DIR}
Use TRAVIS_BUILD_DIR, install paramedic by npm
Use TRAVIS_BUILD_DIR, install paramedic by npm
YAML
apache-2.0
KonstantinNemo/cordova-plugin-media,AlexisCaffa/cordova-plugin-mediaac,corimf/cordova-plugin-media,ergovia-mobile/cordova-plugin-media,fela98/cordova-plugin-media,LAT-Rosie/cordova-plugin-media-with-compression,jinpark/cordova-plugin-media,filfat-Studios-AB/cordova-plugin-media,jhiswin/cordova-plugin-media,ergovia-mobile/cordova-plugin-media,ryanwilliams83/cordova-plugin-media,remoorejr/cordova-plugin-media-with-compression,maic76/cordova-plugin-media,purplecabbage/cordova-plugin-media,AubreyHewes/cordova-plugin-media,gaguirre/cordova-plugin-media,neoassyrian/cordova-plugin-media,johncblandii/cordova-plugin-media,infil00p/cordova-plugin-media,gaguirre/cordova-plugin-media,Radweb/cordova-plugin-media-with-compression,gaguirre/cordova-plugin-media,purplecabbage/cordova-plugin-media,johncblandii/cordova-plugin-media,ergovia-mobile/cordova-plugin-media,johncblandii/cordova-plugin-media,winstef/cordova-plugin-media-ambient,chengluoran/cordova-plugin-media,drbeermann/cordova-plugin-media,reimertz/cordova-plugin-media,mike623/cordova-plugin-media,krishlakshmanan/cordova-plugin-media,Cube4Dev/cordova-plugin-media,mike623/cordova-plugin-media,drbeermann/cordova-plugin-media,sportstech/cordova-plugin-media,AlexisCaffa/cordova-plugin-mediaac,apache/cordova-plugin-media,winstef/cordova-plugin-media-ambient,neoassyrian/cordova-plugin-media,jhiswin/cordova-plugin-media,ghenry22/cordova-plugin-media,filfat-Studios-AB/cordova-plugin-media,gaguirre/cordova-plugin-media,ryanwilliams83/cordova-plugin-media,maic76/cordova-plugin-media,fela98/cordova-plugin-media,jie-nu/cordova-plugin-media,krishlakshmanan/cordova-plugin-media,remoorejr/cordova-plugin-media-with-compression,jinpark/cordova-plugin-media,leonzhang1109/cordova-plugin-media,darthdie/cordova-plugin-media,halkeye/cordova-plugin-media,ryanwilliams83/cordova-plugin-media,leonzhang1109/cordova-plugin-media,neoassyrian/cordova-plugin-media,jinpark/cordova-plugin-media,babbelLab/cordova-plugin-media,ryanwilliams83/cordova-plugin-media,reimertz/cordova-plugin-media,neoassyrian/cordova-plugin-media,dingguijin/cordova-plugin-media,revolunet/cordova-plugin-media,revolunet/cordova-plugin-media,leonzhang1109/cordova-plugin-media,maic76/cordova-plugin-media,sportstech/cordova-plugin-media,sportstech/cordova-plugin-media,LAT-Rosie/cordova-plugin-media-with-compression,jie-nu/cordova-plugin-media,darthdie/cordova-plugin-media,chengluoran/cordova-plugin-media,whitecolor/cordova-plugin-media-playback,whitecolor/cordova-plugin-media-playback,chengluoran/cordova-plugin-media,jinpark/cordova-plugin-media,AlexisCaffa/cordova-plugin-mediaac,PiMaker/cordova-plugin-media,babbelLab/cordova-plugin-media,Chuckv01/cordova-plugin-media,revolunet/cordova-plugin-media,jhiswin/cordova-plugin-media,Cube4Dev/cordova-plugin-media,PiMaker/cordova-plugin-media,AubreyHewes/cordova-plugin-media,jie-nu/cordova-plugin-media,mmig/cordova-plugin-media,ergovia-mobile/cordova-plugin-media,halkeye/cordova-plugin-media,drbeermann/cordova-plugin-media,whitecolor/cordova-plugin-media-playback,dingguijin/cordova-plugin-media,KonstantinNemo/cordova-plugin-media,Chuckv01/cordova-plugin-media,apache/cordova-plugin-media,mike623/cordova-plugin-media,krishlakshmanan/cordova-plugin-media,filfat-Studios-AB/cordova-plugin-media,mmig/cordova-plugin-media,corimf/cordova-plugin-media,halkeye/cordova-plugin-media,corimf/cordova-plugin-media,whitecolor/cordova-plugin-media-playback,ghenry22/cordova-plugin-media,dingguijin/cordova-plugin-media,jie-nu/cordova-plugin-media,maic76/cordova-plugin-media,dingguijin/cordova-plugin-media,leopatras/cordova-plugin-media,PiMaker/cordova-plugin-media,winstef/cordova-plugin-media-ambient,Cube4Dev/cordova-plugin-media,chengluoran/cordova-plugin-media,krishlakshmanan/cordova-plugin-media,LAT-Rosie/cordova-plugin-media-with-compression,johncblandii/cordova-plugin-media,jhiswin/cordova-plugin-media,fela98/cordova-plugin-media,leopatras/cordova-plugin-media,infil00p/cordova-plugin-media,drbeermann/cordova-plugin-media,sportstech/cordova-plugin-media,infil00p/cordova-plugin-media,babbelLab/cordova-plugin-media,corimf/cordova-plugin-media,winstef/cordova-plugin-media-ambient,Radweb/cordova-plugin-media-with-compression,halkeye/cordova-plugin-media,remoorejr/cordova-plugin-media-with-compression,LAT-Rosie/cordova-plugin-media-with-compression,PiMaker/cordova-plugin-media,babbelLab/cordova-plugin-media,darthdie/cordova-plugin-media,mike623/cordova-plugin-media,KonstantinNemo/cordova-plugin-media,reimertz/cordova-plugin-media,leopatras/cordova-plugin-media,fela98/cordova-plugin-media,revolunet/cordova-plugin-media,remoorejr/cordova-plugin-media-with-compression,infil00p/cordova-plugin-media,leopatras/cordova-plugin-media,KonstantinNemo/cordova-plugin-media,Radweb/cordova-plugin-media-with-compression,filfat-Studios-AB/cordova-plugin-media,Cube4Dev/cordova-plugin-media,leonzhang1109/cordova-plugin-media,reimertz/cordova-plugin-media,Radweb/cordova-plugin-media-with-compression
2b62403ec86118caf5602eb66513e69b7ffc2fb1
.travis.yml
.travis.yml
language: php sudo: false php: - 5.6 - 7.0 - 7.1 - 7.2 - nightly matrix: allow_failures: - php: nightly fast_finish: true cache: directories: - $HOME/.composer/cache/files install: - travis_retry composer install --no-interaction script: - ./vendor/bin/phpunit -v --coverage-text --coverage-clover=./build/logs/clover.xml after_script: - if [ -f ./build/logs/clover.xml ]; then wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.1.0/php-coveralls.phar; fi - if [ -f ./build/logs/clover.xml ]; then php ./php-coveralls.phar -v; fi - if [ -f ./build/logs/clover.xml ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [ -f ./build/logs/clover.xml ]; then php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml; fi
language: php sudo: false php: - 5.6 - 7.0 - 7.1 - 7.2 - nightly matrix: allow_failures: - php: nightly fast_finish: true cache: directories: - $HOME/.composer/cache/files install: - travis_retry composer install --no-interaction script: - ./vendor/bin/phpunit -v --coverage-text --coverage-clover=./build/logs/clover.xml after_success: - if [ -f ./build/logs/clover.xml ]; then wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.1.0/php-coveralls.phar; fi - if [ -f ./build/logs/clover.xml ]; then php ./php-coveralls.phar -v; fi - if [ -f ./build/logs/clover.xml ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [ -f ./build/logs/clover.xml ]; then php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml; fi
Use after_success hook for coverage related scripts
Use after_success hook for coverage related scripts
YAML
mit
jsor/http-client-hints
c42298b14f0129fdec77954135771be764862e02
.travis.yml
.travis.yml
language: cpp compiler: - gcc - clang dist: trusty sudo: required before_install: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-get update -qq install: # Install valgrind - sudo apt-get install valgrind - valgrind --version before_script: - cat /proc/cpuinfo script: - make - make test - valgrind --leak-check=full --error-exitcode=1 ./shallowbluetest exclude:[perft]
language: cpp compiler: - gcc - clang dist: trusty sudo: required before_install: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-get update -qq install: - sudo apt-get install valgrind # Use binutils 2.26 if this is a clang build (needed for LTO) - if [ $CXX == "clang++" ]; then sudo apt-get install binutils-2.26; fi - if [ $CXX == "clang++" ]; then export PATH=/usr/lib/binutils-2.26/bin:${PATH}; fi before_script: # Required with clang builds on Travis so that LLVM has access to LLVMgold.so - if [ $CXX == "clang++" ]; then sudo ln -s /usr/lib/llvm-3.4/lib/LLVMgold.so /usr/local/clang-5.0.0/lib/LLVMgold.so; fi script: - make - make test - valgrind --leak-check=full --error-exitcode=1 ./shallowbluetest exclude:[perft]
Make clang builds work on Travis
Make clang builds work on Travis - Install binutils 2.26 when building with clang - Symlink LLVMgold.so to where clang is installed in /usr/local
YAML
mit
GunshipPenguin/shallow-blue,GunshipPenguin/shallow-blue,GunshipPenguin/shallow-blue,GunshipPenguin/shallow-blue
c5740d61f3e9ea329f0b54f488e86b2685272987
.travis.yml
.travis.yml
install: - pip install -r data-analytics/dataflow-python-examples/requirements.txt script: - python data-analytics/dataflow-python-examples/tests/test_parsing_logic.py
language: python install: - pip install -r data-analytics/dataflow-python-examples/requirements.txt script: - python data-analytics/dataflow-python-examples/tests/test_parsing_logic.py
Set the language to python
Set the language to python
YAML
apache-2.0
GoogleCloudPlatform/professional-services,GoogleCloudPlatform/professional-services,GoogleCloudPlatform/professional-services,CloudVLab/professional-services,CloudVLab/professional-services,CloudVLab/professional-services,GoogleCloudPlatform/professional-services,GoogleCloudPlatform/professional-services,GoogleCloudPlatform/professional-services,CloudVLab/professional-services,CloudVLab/professional-services,CloudVLab/professional-services,GoogleCloudPlatform/professional-services,CloudVLab/professional-services,GoogleCloudPlatform/professional-services,GoogleCloudPlatform/professional-services
2f0159b8b435fbee21e28d59b281a9cdc7c862bf
.travis.yml
.travis.yml
language: php php: - 5.6 - 7.0 - 7.1 - 7.2 # This triggers builds to run on the new TravisCI infrastructure. # See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/ sudo: false ## Cache composer cache: directories: - $HOME/.composer/cache env: global: - setup=basic matrix: include: - php: 5.6 env: setup=lowest install: - if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi - if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi script: vendor/bin/phpcs --standard=PSR2 src && vendor/bin/phpunit --coverage-text
language: php php: - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - 7.4snapshot ## Cache composer cache: directories: - $HOME/.composer/cache env: global: - setup=basic matrix: include: - php: 5.6 env: setup=lowest install: - if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi - if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi script: vendor/bin/phpcs --standard=PSR2 src && vendor/bin/phpunit --coverage-text
Add PHP 7.3/7.4 to Travis
Add PHP 7.3/7.4 to Travis
YAML
mit
thephpleague/omnipay-worldpay
a559bb491a063926f5f8f542e02f7ade89127646
.travis.yml
.travis.yml
language: go go: - 1.2 - 1.3 - 1.4 - tip install: - make updatedeps - go build -o winrm-cli before_install: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover - go get github.com/modocache/gover - go get gopkg.in/check.v1 script: - make ci after_script: - $HOME/gopath/bin/goveralls -service="travis-ci" -coverprofile=profile.cov -repotoken $COVERALLS_TOKEN matrix: allow_failures: - go: tip env: global: secure: "GTrEtbp3sq14Jjz34pgIO0/Zv19YaDOOUJay4qnzGxs527HkW7YdsWENz0/yGHet+0jMOPatfP3uLaQHVFCNFZLfMYVmD5apMl7hPFrCaDZVvI9+ZwngIZ8gHzcf2Q+L6LxUT523ypjmRR+T1qYfbOy4UXlfGCyHFBbRB7AbMDk="
language: go go: - 1.2 - 1.3 - 1.4 - tip install: - make updatedeps - go build -o winrm-cli before_install: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover - go get github.com/modocache/gover - go get gopkg.in/check.v1 script: - make ci after_script: - $HOME/gopath/bin/goveralls -service="travis-ci" -coverprofile=profile.cov -repotoken $COVERALLS_TOKEN matrix: allow_failures: - go: tip - go: 1.4 env: global: secure: "GTrEtbp3sq14Jjz34pgIO0/Zv19YaDOOUJay4qnzGxs527HkW7YdsWENz0/yGHet+0jMOPatfP3uLaQHVFCNFZLfMYVmD5apMl7hPFrCaDZVvI9+ZwngIZ8gHzcf2Q+L6LxUT523ypjmRR+T1qYfbOy4UXlfGCyHFBbRB7AbMDk="
Allow temporarily to fail on go 1.4
Allow temporarily to fail on go 1.4 This is to understand what is wrong under go tip and 1.4. Apparently the issue is how Travis is cloning the repository (with git:// instead of https://) which later creates trouble when updating the dependencies.
YAML
apache-2.0
pecigonzalo/winrm,sneal/winrm,gonkulator/winrm,sneal/winrm,bogdanteleaga/winrm,masterzen/winrm,bogdanteleaga/winrm,gonkulator/winrm,pecigonzalo/winrm,bogdanteleaga/winrm,masterzen/winrm,gonkulator/winrm,sneal/winrm
5cb5f7bcb92afd518967a724a10fdd72c6a15965
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "6.1" cache: directories: - node_modules addons: apt: sources: - ubuntu-toolchain-r-test - google-chrome packages: - g++-4.8 - openjdk-7-jdk - lib32stdc++6 - lib32z1 env: CXX=g++-4.8 install: - npm install -g cordova ionic - npm install before_script: - wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz - tar -xvf android-sdk_r24.2-linux.tgz - echo y | ./android-sdk-linux/tools/android update sdk --no-ui --all --filter android-23,build-tools-23.0.1 - export ANDROID_HOME=$PWD/android-sdk-linux - export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$ANDROID_HOME/build-tools/23.0.2 script: - ionic platform remove android - ionic platform add android - ionic build android
sudo: required dist: trusty cache: directories: - node_modules addons: apt: sources: - ubuntu-toolchain-r-test - google-chrome packages: - lib32stdc++6 - lib32z1 before_install: - nvm install node - nvm use node - npm install -g cordova ionic install: - npm install before_script: - wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz - tar -xvf android-sdk_r24.2-linux.tgz - echo y | ./android-sdk-linux/tools/android update sdk --no-ui --all --filter android-23,build-tools-23.0.1 - export ANDROID_HOME=$PWD/android-sdk-linux - export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$ANDROID_HOME/build-tools/23.0.2 script: - ionic platform remove android - ionic platform add android - ionic build android
Switch to use latest version nodejs
Switch to use latest version nodejs
YAML
mit
beeminder-capstone/Nectar-Frontend,beeminder-capstone/Nectar-Frontend,beeminder-capstone/Nectar-Frontend
46bb8c4004154c05137fe49f23cde6e4611cd67a
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - "4" - "6" - "7" addons: apt: sources: - ubuntu-toolchain-r-test packages: - libcairo2-dev - libjpeg8-dev - libpango1.0-dev - libgif-dev - g++-4.9 env: - CXX=g++-4.9
language: node_js sudo: false node_js: - "6" - "7" addons: apt: sources: - ubuntu-toolchain-r-test packages: - libcairo2-dev - libjpeg8-dev - libpango1.0-dev - libgif-dev - g++-4.9 env: - CXX=g++-4.9
Drop node 4 from Travis CI.
Drop node 4 from Travis CI.
YAML
bsd-3-clause
nyurik/vega,nyurik/vega,lgrammel/vega,vega/vega,vega/vega,vega/vega,vega/vega,nyurik/vega
6c68e0437e9dadadbc4f80391705720eead85337
.travis.yml
.travis.yml
language: java jdk: - openjdk8 - oraclejdk8 - openjdk11 # LTS - oraclejdk11 - openjdk-ea # Early access # - oraclejdk-ea sudo: true # https://github.com/travis-ci/travis-ci/issues/6593 cache: directories: - $HOME/.m2
language: java jdk: - openjdk8 # - oraclejdk8 - openjdk11 # LTS # - oraclejdk11 - openjdk-ea # Early access # - oraclejdk-ea sudo: true # https://github.com/travis-ci/travis-ci/issues/6593 cache: directories: - $HOME/.m2
Disable Oracle JDK releases (they break on Travis with each new release)
Disable Oracle JDK releases (they break on Travis with each new release)
YAML
mit
classgraph/classgraph,lukehutch/fast-classpath-scanner,lukehutch/fast-classpath-scanner
32c4dc0b20831b412dc9cf62101f82f54fdfe35c
.travis.yml
.travis.yml
before_install: - gem install bundler rvm: - 2.2.9 - 2.3.6 - 2.4.3 - 2.5.0 env: - RAILS_VERSION="~> 4.2" - RAILS_VERSION="~> 5.0"
before_install: - gem install bundler rvm: - 2.3.6 - 2.4.6 - 2.5.4 - 2.6.2 env: - RAILS_VERSION="~> 4.2" - RAILS_VERSION="~> 5.0"
Update ruby versions to test against
Update ruby versions to test against
YAML
mit
ianfleeton/paypal-express
f408d2cffc0556a27119e29fc4659f43ad77d96f
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm cache: directories: - vendor before_script: - composer install - wget https://github.com/cbednarski/pharcc/releases/download/v0.2.3/pharcc.phar script: - make check - make test - make phar - php build/output/projectlint.phar
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm cache: directories: - vendor before_script: - composer install - wget https://github.com/cbednarski/pharcc/releases/download/v0.2.3/pharcc.phar script: - make check - make test - make phar
Disable projectlint.phar run in CI
Disable projectlint.phar run in CI The phar works fine locally but fails on Travis CI. Since I can't access the generated file I could not debug. So disabling this for now.
YAML
bsd-3-clause
jmfontaine/projectlint
d948bb23c144def8cde7762581c8627025e80b84
.travis.yml
.travis.yml
language: php sudo: false cache: directories: - $HOME/.composer/cache addons: apt: packages: - parallel php: - 5.6 - 7.0 - 7.1 - 7.2 before_script: - composer install script: - ./vendor/bin/phpunit git: depth: 5
language: php sudo: false cache: directories: - $HOME/.composer/cache addons: apt: packages: - parallel php: - 7.1 - 7.2 before_script: - composer install script: - ./vendor/bin/phpunit git: depth: 5
Support PHP 7.1 and 7.2
Support PHP 7.1 and 7.2
YAML
apache-2.0
priotas/twig-qrcode-extension
1c7c6c4d2a7674354eafac583226002fe1c6b96c
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - 0.12 - 0.10 - 4.2 cache: directories: - node_modules script: - npm test after_success: - npm run coverage-report
sudo: false language: node_js node_js: - 0.12 - 0.10 - 4.2 cache: directories: - node_modules branches: only: - master script: - npm test after_success: - npm run coverage-report
Whitelist to Travis CI: only branch master
Whitelist to Travis CI: only branch master See https://egghead.io/lessons/javascript-how-to-write-a-javascript-library-limit-built-branches-on-travis
YAML
mit
parmentf/node-concept-network,parmentf/node-concept-network
3ee811d84b1eae84677f5dd6df564d4822d3f76d
.travis.yml
.travis.yml
language: node_js node_js: - "0.12" - "iojs"
language: node_js node_js: - "4.1" - "4.0" - "0.12" - "iojs"
Add node 4.0 and 4.1 to CI builds
Add node 4.0 and 4.1 to CI builds
YAML
apache-2.0
zosconnect/zosconnect-node,crshnburn/zosconnect-node
c81b96ddb070cdaf991d9f395cbfab876b413948
.travis.yml
.travis.yml
rvm: - 1.9.3 - 2.0.0 script: bundle exec rspec --color --format progress
rvm: - 1.9.3 - 2.0.0 - 2.1.0 - 2.2.0 script: bundle exec rspec --color --format progress
Add recent ruby releases to Travis
Add recent ruby releases to Travis
YAML
apache-2.0
paperlesspost/knife-ec2,MsysTechnologiesllc/knife-ec2,chef/knife-ec2,cloudant/knife-ec2,tas50/knife-ec2,4current/knife-ec2,TheNeatCompany/knife-ec2,juliandunn/knife-ec2,chef/knife-ec2,MsysTechnologiesllc/knife-ec2,evertrue/knife-ec2,ClogenyTechnologies/knife-ec2
4152763beb710ad0710bba2aaabdd6dbf5cefc6f
.travis.yml
.travis.yml
language: ruby os: - linux - osx rvm: - 2.6.0 - 2.5.3 - 2.4.5 - jruby-9.2.5.0 matrix: fast_finish: true allow_failures: - os: osx - rvm: jruby-9.2.5.0 notifications: email: false env: global: - JRUBY_OPTS="--debug" - NO_IPV6_TESTS=1 script: - bundle exec rake build - bundle exec rake coveralls
language: ruby os: - linux - osx rvm: - 2.6.0 - 2.5.3 - 2.4.5 - jruby-9.2.5.0 matrix: fast_finish: true allow_failures: - rvm: jruby-9.2.5.0 notifications: email: false env: global: - JRUBY_OPTS="--debug" - NO_IPV6_TESTS=1 script: - bundle exec rake build - bundle exec rake coveralls
Remove osx from allow_failures in the matrix
CI: Remove osx from allow_failures in the matrix
YAML
mit
nning/coap
b51e0841c68fbc149683e142c38384b1269bfc74
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" virtualenv: system_site_packages: true # command to prepare the system to install prerequisites or dependencies before_install: - sudo apt-get -qq update - sudo apt-get install -qq libhdf5-serial-dev - sudo apt-get install -qq libatlas-dev libatlas-base-dev gfortran - sudo apt-get install -qq python-numpy python-scipy - sudo apt-get install -qq python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly # command to install dependencies #install: # - "pip install -r requirements.txt --use-mirrors" - python setup.py install # command to run tests script: - py.test tests --ignore tests/sandbox # - "python setup.py test"
language: python python: - "2.6" - "2.7" virtualenv: system_site_packages: true # command to prepare the system to install prerequisites or dependencies before_install: - sudo apt-get -qq update - sudo apt-get install -qq libhdf5-serial-dev python-h5py - sudo apt-get install -qq libatlas-dev libatlas-base-dev gfortran - sudo apt-get install -qq python-numpy python-scipy - sudo apt-get install -qq python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly # command to install dependencies #install: # - "pip install -r requirements.txt --use-mirrors" - python setup.py install # command to run tests script: - py.test tests --ignore tests/sandbox # - "python setup.py test"
Add h5py dependency in Travis
Add h5py dependency in Travis
YAML
agpl-3.0
Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide
5afb020ef7088ab60cf49f423e63abb629961e9a
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" install: - python setup.py install - pip install collective.checkdocs script: - py.test - python setup.py checkdocs
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" install: - pip install -U setuptools # Fix for https://travis-ci.org/scriptotek/otsrdflib/jobs/152446727 - python setup.py install - pip install Pygments collective.checkdocs script: - py.test - python setup.py checkdocs
Fix for old setuptools on Travis
Fix for old setuptools on Travis
YAML
mit
scriptotek/otsrdflib
32591979eeca25fabd42b540b9d8703a604cee08
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "7"
language: node_js node_js: - "6" - "7" install: - npm install - npm install react react-dom
Install peer deps on Travis
Install peer deps on Travis
YAML
mit
idyll-lang/idyll,idyll-lang/idyll,idyll-lang/idyll-default-components
812e3c51b92ab93c0ab7738c0dcf17554d680d09
.travis.yml
.travis.yml
language: ruby rvm: - 2.1 - 2.2 - ruby-head - jruby-head # - rbx-2 sudo: false addons: apt: packages: - libgmp3-dev matrix: allow_failures: - rvm: jruby-head script: "bundle exec rake" notifications: disable: true
language: ruby rvm: - 2.1 - 2.2 - 2.3.3 - ruby-head - jruby-head # - rbx-2 sudo: false addons: apt: packages: - libgmp3-dev matrix: allow_failures: - rvm: jruby-head script: "bundle exec rake" notifications: disable: true
Add ruby 2.3.3 to CI
test: Add ruby 2.3.3 to CI Travis doesn't have a ruby 2.3 alias, so the latest 2.3.x version is specified instead.
YAML
mit
knu/liquid,locomotivecms/liquid,mrmanc/liquid,Shopify/liquid
8557250363d297292066b81b892331a070a8d11e
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" before_script: # Travis versions of these are really outdated - pip install -U mock nose pytest # Only used in production for python3.4- but required for tests - pip install cryptography # Enable sending Coverage data - pip install codecov script: - python setup.py validate after_success: - codecov
language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" before_script: # Travis versions of these are really outdated - pip install -U mock nose pytest # Only used in production for python3.4- but required for tests - pip install cryptography # Enable sending Coverage data - pip install codecov script: - python setup.py validate after_success: - codecov
Drop python 3.3 support add 3.7
Drop python 3.3 support add 3.7
YAML
mit
mcrute/pydora
b2a6ef86feefb4ae9f8489cd66225aa29d322553
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 script: - composer self-update - composer update -n --prefer-source - ./bin/phpspec run -f progress
language: php matrix: include: - php: 5.3 env: DEPENDENCIES='low' - php: 5.3 - php: 5.4 - php: 5.5 - php: 5.6 - php: hhvm - php: hhvm-nightly allow_failures: - php: hhvm-nightly - env: DEPENDENCIES='low' before_install: - composer self-update install: - export COMPOSER_ROOT_VERSION=dev-master - if [ "$DEPENDENCIES" != "low" ]; then composer update; fi; - if [ "$DEPENDENCIES" == "low" ]; then composer update --prefer-lowest; fi; script: - ./bin/phpspec run --format=pretty
Test lowest version of dependencies
Test lowest version of dependencies
YAML
mit
coduo/php-humanizer,tommarshall/php-humanizer,marcaube/php-humanizer,isnani/php-humanizer
15548331c421b6e2455fec5202bcf3382d0711a9
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.0.0 - 2.1.10 - 2.2.9 - 2.3.6 - 2.4.3 - 2.5.0 - ruby-head before_install: - gem update --system - gem update bundler
sudo: false language: ruby rvm: - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.7 - 2.4.4 - 2.5.1 - ruby-head before_install: - gem update --system - gem update bundler
Update Ruby versions on Travis CI
Update Ruby versions on Travis CI
YAML
mit
emsk/bundle_outdated_formatter,emsk/bundle_outdated_formatter
aff3727e4d7f10db0f7e871e3e04f4de58e12325
.travis.yml
.travis.yml
# After changing this file, check it on: # http://lint.travis-ci.org/ language: python sudo: false cache: pip matrix: fast_finish: true include: - python: "2.7" addons: apt: packages: - libatlas-dev - libatlas-base-dev - liblapack-dev - gfortran - libgmp-dev - libmpfr-dev before_install: - git submodule update --init --recursive install: - pip install -r requirements.txt - pip install coveralls script: - cd tt - python setup.py build - python -m unittest discover 'tests/' notifications: email: false
# After changing this file, check it on: # http://lint.travis-ci.org/ language: python sudo: false cache: pip matrix: fast_finish: true include: - python: "2.7" addons: apt: packages: - libatlas-dev - libatlas-base-dev - liblapack-dev - gfortran - libgmp-dev - libmpfr-dev before_install: - git submodule update --init --recursive install: - pip install -r requirements.txt - pip install coveralls script: - cd tt - python setup.py install - python -m unittest discover 'tests/' notifications: email: false
Install tt before running tests
Install tt before running tests
YAML
mit
uranix/ttpy,oseledets/ttpy,uranix/ttpy,oseledets/ttpy
212b240aaac9c464029ce6f526b33b94933ae8af
.travis.yml
.travis.yml
language: php dist: precise php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm before_install: - sudo apt-get update -qq - sudo apt-get install -qq beanstalkd - sudo beanstalkd -l 127.0.0.1 -p 11300 & before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction --prefer-source --dev script: - phpunit --configuration phpunit.xml.dist
language: php dist: trusty matrix: include: - php: 5.3 dist: precise php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - hhvm before_install: - sudo apt-get update -qq - sudo apt-get install -qq beanstalkd - sudo beanstalkd -l 127.0.0.1 -p 11300 & before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction --prefer-source --dev script: - vendor/bin/phpunit --configuration phpunit.xml.dist
Use version of phpunit installed via composer.
Use version of phpunit installed via composer.
YAML
mit
pda/pheanstalk
b060b44143e7e10902f93989f30e079be69978b9
.travis.yml
.travis.yml
language: java jdk: - openjdk7 - oraclejdk7 rvm: - 1.9.3 install: - rvm use 1.9.3 - gem install bundler - bundle install - echo "yes" | sudo apt-add-repository ppa:sharpie/for-science - echo "yes" | sudo apt-add-repository ppa:sharpie/postgis-stable - echo "yes" | sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable - sudo apt-get update - sudo apt-get install python-software-properties postgresql-9.1-postgis2 script: buildr clean package
language: java jdk: - openjdk7 - oraclejdk7 rvm: - 1.9.3 install: - rvm use 1.9.3 - gem install bundler - bundle install - sudo apt-get update - sudo apt-get install -qq libgeos++-dev libproj-dev build-essential liblzo2-dev liblzma-dev zlib1g-dev libprotobuf-c0-dev postgresql-contrib-9.3 postgresql-9.3-postgis-2.1-scripts script: buildr clean package
Rework the way we install postgis
Rework the way we install postgis
YAML
apache-2.0
realityforge/geolatte-geom-jpa,realityforge/geolatte-geom-jpa
242bb4a85328416636bd6a16bedef4ca7c734f99
.travis.yml
.travis.yml
language: ruby before_script: - ./copy_repos.sh - ./changing_old_files.sh rvm: - 2.0.0 - 2.1.2 - 2.2.1 script: - script/ci/travis/install-gem-ci.rb - bundle exec rake unit notifications: email: recipients: - joshua.moody@xamarin.com - tobias.roikjer@xamarin.com on_success: change on_failure: always
language: ruby before_script: - ./copy_repos.sh - ./changing_old_files.sh rvm: - 2.0.0 - 2.1.2 - 2.2.1 script: - script/ci/travis/install-gem-ci.rb - bundle exec rake unit notifications: email: recipients: - joshua.moody@xamarin.com on_success: change on_failure: always
Remove Tobias from email notifications
Travis: Remove Tobias from email notifications Signed-off-by: Tobias Røikjer <cbf4de1dc17b657ebb10265e5e61c5cf21b59123@xamarin.com>
YAML
epl-1.0
tejasv02/calabash,calabash/calabash,tejasv02/calabash,calabash/calabash,tejasv02/calabash,calabash/calabash
5563b4d1ecae62b50bbf9bfd6b83ffee1d0caf4e
.travis.yml
.travis.yml
language: go env: - PATH=$GOPATH/bin:$PATH script: - go get github.com/alecthomas/gometalinter - go get github.com/jteeuwen/go-bindata - ./build.sh go: - "tip" - "1.6" - "1.7" - "1.8"
language: go env: - PATH=$GOPATH/bin:$PATH script: - go get github.com/alecthomas/gometalinter - go get github.com/jteeuwen/go-bindata/go-bindata - gometalinter --install - ./build.sh go: - "tip" - "1.6" - "1.7" - "1.8"
Use gometalinter --install to install vendered linter
Use gometalinter --install to install vendered linter
YAML
mit
omise/omise-go,omise/omise-go
15d30aca0928278f2b8d579c06a3874849b6a0da
.travis.yml
.travis.yml
matrix: include: - os: linux dist: trusty # don't actually need sudo, but I *do* want to test with bazel sandboxing sudo: required language: java addons: apt: packages: - pkg-config - zip - g++ - zlib1g-dev - unzip before_script: - wget "https://github.com/bazelbuild/bazel/releases/download/0.3.2/bazel-0.3.2-installer-linux-x86_64.sh" - chmod +x "bazel-0.3.2-installer-linux-x86_64.sh" - ./bazel-0.3.2-installer-linux-x86_64.sh --user - os: osx osx_image: xcode7.3 before_script: - wget "https://github.com/bazelbuild/bazel/releases/download/0.3.2/bazel-0.3.2-installer-darwin-x86_64.sh" - chmod +x "bazel-0.3.2-installer-darwin-x86_64.sh" - ./bazel-0.3.2-installer-darwin-x86_64.sh --user cache: directories: - $HOME/.bazel/outbase script: - bazel --batch --output_base=${HOME}/.bazel/outbase test //...
language: java env: - BAZEL_VERSION=0.3.2 - BAZEL_VERSION=0.4.0 os: - linux - osx matrix: allow_failures: - os: osx env: BAZEL_VERSION=0.4.0 # Only affects os=linux dist: trusty # Only affects os=osx osx_image: xcode7.3 # Necessary to test with sandboxing (we don't need root, just need a real VM) sudo: required addons: apt: # Only affects os=linux packages: - pkg-config - zip - g++ - zlib1g-dev - unzip before_script: - case "$TRAVIS_OS_NAME" in linux) BAZEL_OS=linux ;; osx) BAZEL_OS=darwin ;; *) exit 1 ;; esac; wget -O bazel-installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-${BAZEL_OS}-x86_64.sh" - chmod +x bazel-installer.sh - ./bazel-installer.sh --user cache: directories: - $HOME/.bazel/outbase script: - bazel --batch --output_base="${HOME}/.bazel/outbase" test //...
Test with bazel 0.3.2 and 0.4.0
Test with bazel 0.3.2 and 0.4.0
YAML
apache-2.0
benley/bazel_rules_pex,benley/bazel_rules_pex
7810693b8f4641c7b1890e5805b5ba1a5f2f87e3
.travis.yml
.travis.yml
dist: trusty language: - cpp - python compiler: gcc python: "2.7" addons: apt: sources: - ubuntu-toolchain-r-test packages: - wget - pkg-config - g++-6.3 before_install: - wget https://github.com/bazelbuild/bazel/releases/download/0.8.0/bazel_0.8.0-linux-x86_64.deb - sudo dpkg -i bazel_0.8.0-linux-x86_64.deb script: - tools/buildall.sh
dist: trusty language: - cpp - python compiler: gcc python: "2.7" addons: apt: sources: - ubuntu-toolchain-r-test packages: - wget - pkg-config - g++-4.8 before_install: - wget https://github.com/bazelbuild/bazel/releases/download/0.8.0/bazel_0.8.0-linux-x86_64.deb - sudo dpkg -i bazel_0.8.0-linux-x86_64.deb script: - tools/buildall.sh
Revert back to GCC 4.8 for Travis builds
Revert back to GCC 4.8 for Travis builds
YAML
apache-2.0
google/sling,google/sling,google/sling,google/sling,google/sling,google/sling
b4f5a53a59022a0d1350fcbf0d736fcfd34dd8dc
.travis.yml
.travis.yml
rvm: - "2.0.0" - "1.9.3" - "1.8.7" - "ree"
rvm: - "2.0.0" - "2.1.0" - "2.2.0" - "1.9.3"
Test new rubies with Travis
Test new rubies with Travis
YAML
mit
dawid-sklodowski/chupacabra
998e93b29067f41093310bb47da4f63a1a884fba
.travis.yml
.travis.yml
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. language: java sudo: false jdk: - openjdk7 - oraclejdk8 - oraclejdk9 after_success: - mvn clean test jacoco:report coveralls:report -Ptravis-jacoco
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. language: java sudo: false jdk: - oraclejdk8 - oraclejdk11 - openjdk7 - openjdk8 - openjdk11 - openjdk-ea after_success: - mvn clean test jacoco:report coveralls:report -Ptravis-jacoco
Update Travis build with current JDKs.
Update Travis build with current JDKs.
YAML
apache-2.0
apache/commons-fileupload,apache/commons-fileupload
2d7f782abc88c4cca15b7df1db5b68a33d8d1bed
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - hhvm - hhvm-nightly matrix: fast_finish: true allow_failures: - php: 7 - php: hhvm - php: hhvm-nightly script: - ./vendor/bin/phpcs --standard=PSR2 ./DependencyInjection/ ./Extension/ ./Tests/ - if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != 'hhvm-nightly' ] && [ $TRAVIS_PHP_VERSION != '7' ]; then ./vendor/bin/phpunit --coverage-clover=coverage.clover; fi before_script: - composer self-update - composer update --prefer-source after_script: - if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != 'hhvm-nightly' ] && [ $TRAVIS_PHP_VERSION != '7' ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != 'hhvm-nightly' ] && [ $TRAVIS_PHP_VERSION != '7' ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
language: php php: - 5.5 - 5.6 - hhvm matrix: fast_finish: true allow_failures: - php: 7 - php: hhvm script: - ./vendor/bin/phpcs --standard=PSR2 ./DependencyInjection/ ./Extension/ ./Tests/ - if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != '7' ]; then ./vendor/bin/phpunit --coverage-clover=coverage.clover; fi before_script: - composer self-update - composer update --prefer-source after_script: - if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != '7' ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != '7' ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
Remove hhvm-nightly from build matrix
Remove hhvm-nightly from build matrix
YAML
mit
mpalourdio/TwitterWidgetBundle
51894d6a3a1eb5a9e99462e359a2cb9dbddfa97a
.travis.yml
.travis.yml
sudo: required services: - docker script: - docker build --tag=sdkman/sdkman-cli . - docker run --rm -v $PWD:/usr/src/app -v $HOME/.gradle:/root/.gradle sdkman/sdkman-cli clean test --stacktrace after_success: - ./gradlew -Penv=production clean assemble bintrayUpload before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - "$HOME/.gradle/caches/" - "$HOME/.gradle/wrapper/" env: global: - secure: Pj9krGs5nKgyqUB2jlRTA1vuGLgRGlB2ADfbCeqCigiu5BxdJeBRFbsm9Qq95lu503eT/81CvbKUPBCmd/BwNt0ifGzRVNIRqEUZAU3OgRhthc47bu+qUNRli9ZSo5FgLSwaARSElyoy9QJUFfVxIpOUTnq62xlj9fyRh5/BLfY= - secure: ooLnOq8QklJgn1A3ymlBJfTRwGn3rpt0sXZTzRf7Tffs+EpfyNkBTAAeOoXdErgHOR5X2erij2t/Eaf5GD9pZnFZbfI9AhfKxzTUyjaW7r3j7QHt/WNyt23EN9cFP7MagFoLCRPr0MJ6NGYnSKpnHFbmN25AilAIPlrpFCquTYE=
sudo: required services: - docker script: - docker build --tag=sdkman/sdkman-cli . - docker run --rm -v $PWD:/usr/src/app -v $HOME/.gradle:/root/.gradle sdkman/sdkman-cli clean test --info after_success: - ./gradlew -Penv=production clean assemble bintrayUpload before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - "$HOME/.gradle/caches/" - "$HOME/.gradle/wrapper/" env: global: - secure: Pj9krGs5nKgyqUB2jlRTA1vuGLgRGlB2ADfbCeqCigiu5BxdJeBRFbsm9Qq95lu503eT/81CvbKUPBCmd/BwNt0ifGzRVNIRqEUZAU3OgRhthc47bu+qUNRli9ZSo5FgLSwaARSElyoy9QJUFfVxIpOUTnq62xlj9fyRh5/BLfY= - secure: ooLnOq8QklJgn1A3ymlBJfTRwGn3rpt0sXZTzRf7Tffs+EpfyNkBTAAeOoXdErgHOR5X2erij2t/Eaf5GD9pZnFZbfI9AhfKxzTUyjaW7r3j7QHt/WNyt23EN9cFP7MagFoLCRPr0MJ6NGYnSKpnHFbmN25AilAIPlrpFCquTYE=
Use info flag on build.
Use info flag on build.
YAML
apache-2.0
gvmtool/gvm-cli,sdkman/sdkman-cli,busches/gvm-cli,jbovet/gvm
7a6a1cc165285890ea4d0375cc21ff19f0be9123
.travis.yml
.travis.yml
language: python sudo: false python: - "2.6" - "2.7_with_system_site_packages" env: - "TRAC_TEST_DB_URI=" - "TRAC_TEST_DB_URI=sqlite:test.db" - "TRAC_TEST_DB_URI=postgres://tracuser:password@localhost/trac?schema=tractest" - "TRAC_TEST_DB_URI=mysql://tracuser:password@localhost/trac" before_install: - psql -U postgres -c "CREATE USER tracuser NOSUPERUSER NOCREATEDB CREATEROLE PASSWORD 'password';" - psql -U postgres -c "CREATE DATABASE trac OWNER tracuser;" - mysql -u root -e "CREATE DATABASE trac DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;" - mysql -u root -e "CREATE USER tracuser@localhost IDENTIFIED BY 'password';" - mysql -u root -e "GRANT ALL ON trac.* TO tracuser@localhost; FLUSH PRIVILEGES;" install: - pip install -q Genshi==0.6.1 Babel configobj Pygments docutils lxml pytz twill==0.9.1 psycopg2 MySQL-python - echo ".uri = $TRAC_TEST_DB_URI" >Makefile.cfg addons: apt: packages: - python-subversion script: - make Trac.egg-info compile unit-test functional-test notifications: email: recipients: - trac-builds@googlegroups.com
language: python sudo: false python: - "2.6" - "2.7_with_system_site_packages" env: - "TRAC_TEST_DB_URI=" - "TRAC_TEST_DB_URI=sqlite:test.db" - "TRAC_TEST_DB_URI=postgres://tracuser:password@localhost/trac?schema=tractest" - "TRAC_TEST_DB_URI=mysql://tracuser:password@localhost/trac" before_install: - psql -U postgres -c "CREATE USER tracuser NOSUPERUSER NOCREATEDB CREATEROLE PASSWORD 'password';" - psql -U postgres -c "CREATE DATABASE trac OWNER tracuser;" - mysql -u root -e "CREATE DATABASE trac DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;" - mysql -u root -e "CREATE USER tracuser@localhost IDENTIFIED BY 'password';" - mysql -u root -e "GRANT ALL ON trac.* TO tracuser@localhost; FLUSH PRIVILEGES;" install: - pip install -q Genshi==0.6.1 Babel configobj Pygments<2.1 docutils lxml pytz twill==0.9.1 psycopg2 MySQL-python - echo ".uri = $TRAC_TEST_DB_URI" >Makefile.cfg addons: apt: packages: - python-subversion script: - make Trac.egg-info compile unit-test functional-test notifications: email: recipients: - trac-builds@googlegroups.com
Use Pygments < 2.1 in Travis CI tests
0.12.8dev: Use Pygments < 2.1 in Travis CI tests Test failures with Pygments 2.1 were fixed on the 1.0-stable branch but not backported to 0.12-stable. Refs #12326, #12083. git-svn-id: 764b04d0c6fbbea0ee05220aef3208173ff13049@14730 af82e41b-90c4-0310-8c96-b1721e28e2e2
YAML
bsd-3-clause
rbaumg/trac,rbaumg/trac,rbaumg/trac,rbaumg/trac
3dadf3cf0b85eb8eaebb6a2e27c5964c19ef7eac
.travis.yml
.travis.yml
language: objective-c xcode_project: CCListViewExample.xcworkspace xcode_scheme: CCListViewExample xcode_sdk: iphonesimulator script: xctool -workspace CCListViewExample.xcworkspace -scheme "All Tests" -sdk iphonesimulator build
language: objective-c xcode_project: CCListViewExample.xcworkspace xcode_scheme: CCListViewExample before_install: gem install cocoapods xcode_sdk: iphonesimulator script: xctool -workspace CCListViewExample.xcworkspace -scheme "All Tests" -sdk iphonesimulator build
Revert "no longer necessary, Travis handles it", turns out Travis uses an old version
Revert "no longer necessary, Travis handles it", turns out Travis uses an old version This reverts commit 3262d3122d74711c9e95138e384f544e2e9f0bb7.
YAML
mit
Codecademy/CCListView,Codecademy/CCListView
cd1492270d73bd1bfe49957769616d4f1196ecb0
.travis.yml
.travis.yml
language: cpp compiler: - gcc - clang cache: apt before_install: - sudo add-apt-repository ppa:kalakris/cmake - sudo apt-get update -qq - sudo apt-get install -qq libcppunit-dev cmake before_script: mkdir build && cd build script: cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DGEOMETRY_BUILD_TESTS=ON .. && make && tests/GeometryTest
language: cpp compiler: - gcc - clang cache: apt before_install: - sudo add-apt-repository --yes ppa:kalakris/cmake - sudo apt-get update -qq - sudo apt-get install -qq libcppunit-dev cmake before_script: mkdir build && cd build script: cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DGEOMETRY_BUILD_TESTS=ON .. && make && tests/GeometryTest
Add "--yes" for apt-add-repository (Travis CI)
Add "--yes" for apt-add-repository (Travis CI)
YAML
mpl-2.0
PADrend/Geometry
4437df71b5f0746e9393048a11f683a88fe14fbf
.travis.yml
.travis.yml
rvm: - 1.8.6 - 1.8.7 - 1.9.1 - 1.9.2 - jruby - rbx - ree
rvm: - 1.8.7 - 1.9.1 - 1.9.2 - jruby - rbx - ree
Revert "Add 1.8.6 to the CI matrix"
Revert "Add 1.8.6 to the CI matrix" This reverts commit 1916b9574edcddadb220460238f89df036431fc5.
YAML
mit
r7kamura/octokit.rb,daukantas/octokit.rb,christer155/octokit.rb,Payro93/octokit.rb,xantage/octokit.rb,synmnstr/octokit.rb,kv109/octokit.rb,simon0191/octokit.rb,stetsenko/octokit.rb,Ladiijae/octokit.rb,byroot/octokit.rb,pvdb/octokit.rb,cocktail-io/octokit.rb,pwz3n0/octokit.rb,kv109/octokit.rb,benbalter/octokit.rb,hoorayimhelping/octokit.rb,JuanitoFatas/octokit.rb,nilbus/octokit.rb,pezholio/octokit.rb,Ladiijae/octokit.rb,benbalter/octokit.rb,LizzHale/octokit.rb,pwz3n0/octokit.rb,cocktail-io/octokit.rb,LizzHale/octokit.rb,raysrashmi/octokit.rb,Tadeirro/octokit.rb,daukantas/octokit.rb,iainbeeston/octokit.rb,pvdb/octokit.rb,AnNOtis/octokit.rb,christer155/octokit.rb,moodyredistribution/octokit.rb,JuanitoFatas/octokit.rb,synmnstr/octokit.rb,whip112/octokit.rb,stetsenko/octokit.rb,Payro93/octokit.rb,pezholio/octokit.rb,octokit/octokit.rb,iainbeeston/octokit.rb,moodyredistribution/octokit.rb,tarebyte/octokit.rb,whip112/octokit.rb,Neo20067/octokit.rb,Tadeirro/octokit.rb,octokit/octokit.rb,AnNOtis/octokit.rb,raysrashmi/octokit.rb,sferik/octokit.rb,sferik/octokit.rb,byroot/octokit.rb,r7kamura/octokit.rb,BreemsEmporiumMensToiletriesFragrances/octokit.rb,tarebyte/octokit.rb,nilbus/octokit.rb,xantage/octokit.rb,simon0191/octokit.rb,BreemsEmporiumMensToiletriesFragrances/octokit.rb,hoorayimhelping/octokit.rb,Neo20067/octokit.rb
03a7acc4428a3ec1cd591ac6ee50de7bf7350a0b
.travis.yml
.travis.yml
language: node_js node_js: - '0.11' - '0.10' before_script: - npm install -g mocha grunt-cli notifications: email: - kimmo.brunfeldt+urltoimage@futurice.com deploy: provider: npm email: kimmo.brunfeldt@gmail.com api_key: secure: BaR508fKqIBXHYXbAwpFyBJwAzYEQ+LwoMWbuBcc9YeEoiPbsFYG2kky1lUMBzHDHMHlqMelaFdStmSXDcu4nVV4QXQdE/jxUuJiaAgiIPoA+ULlfd2JfHM0QJVgda6Px5rtInD6ZZLjv32GDg0I4T6W87RVVriEeG/ZsWHrylI= on: tags: true node: '0.11'
language: node_js node_js: - '0.12' - '0.11' - '0.10' before_script: - npm install -g mocha grunt-cli notifications: email: - kimmo.brunfeldt+urltoimage@gmail.com deploy: provider: npm email: kimmo.brunfeldt@gmail.com api_key: secure: BaR508fKqIBXHYXbAwpFyBJwAzYEQ+LwoMWbuBcc9YeEoiPbsFYG2kky1lUMBzHDHMHlqMelaFdStmSXDcu4nVV4QXQdE/jxUuJiaAgiIPoA+ULlfd2JfHM0QJVgda6Px5rtInD6ZZLjv32GDg0I4T6W87RVVriEeG/ZsWHrylI= on: tags: true node: '0.12'
Add node 0.12 to testable versions
Add node 0.12 to testable versions
YAML
mit
kimmobrunfeldt/url-to-image
05c55b8c35b7b69e2fe80f227979982adb2e5af5
packages/nu/numeric-logarithms.yaml
packages/nu/numeric-logarithms.yaml
homepage: https://github.com/google/hs-numeric-logarithms#readme changelog-type: markdown hash: c2c245b7b4ffb8a71dfe9a4dd825b20e103f963489388ed3b4fb4cdfcd459e44 test-bench-deps: test-framework: -any numeric-logarithms: -any base: '>=4.9 && <4.17' test-framework-quickcheck2: -any integer-gmp: '>=0.5 && <1.2' QuickCheck: -any maintainer: Andrew Pritchard <awpritchard@gmail.com> synopsis: Integral and rational log2 algorithms changelog: |+ # 0.1.0.0 Initial version. basic-deps: base: '>=4.9 && <4.17' integer-gmp: '>=0.5 && <1.2' all-versions: - 0.1.0.0 author: Andrew Pritchard <awpritchard@gmail.com> latest: 0.1.0.0 description-type: haddock description: |- This provides a user-facing API for the GHC primitive 'integerLog2#', in the form of functions computing the floor, ceiling, or other rounded form of the base-2 logarithm of 'Integral' or 'Rational' types. license-name: Apache-2.0
homepage: https://github.com/awpr/numeric-logarithms#readme changelog-type: markdown hash: 10c4860d4c6798110c228d0e873f3a2e27a3827a6b968a53c76cce96ba4ab600 test-bench-deps: test-framework: -any numeric-logarithms: -any base: '>=4.9 && <4.18' test-framework-quickcheck2: -any integer-gmp: '>=0.5 && <1.2' QuickCheck: -any maintainer: Andrew Pritchard <awpritchard@gmail.com> synopsis: Integral and rational log2 algorithms changelog: |+ # 0.1.0.0 Initial version. basic-deps: base: '>=4.9 && <4.18' integer-gmp: '>=0.5 && <1.2' all-versions: - 0.1.0.0 author: Andrew Pritchard <awpritchard@gmail.com> latest: 0.1.0.0 description-type: haddock description: |- This provides a user-facing API for the GHC primitive 'integerLog2#', in the form of functions computing the floor, ceiling, or other rounded form of the base-2 logarithm of 'Integral' or 'Rational' types. license-name: Apache-2.0
Update from Hackage at 2022-09-29T01:34:27Z
Update from Hackage at 2022-09-29T01:34:27Z
YAML
mit
commercialhaskell/all-cabal-metadata
220a89676772adacd6fca037f046582478479d95
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 env: matrix: - dependencies="" - dependencies="--prefer-stable" matrix: include: - php: 7.1 env: dependencies="--prefer-lowest --prefer-stable" allow_failures: - php: 7.2 before_install: - composer self-update install: - composer update --no-interaction --prefer-dist $dependencies script: - vendor/bin/parallel-lint -e php,phpt --exclude tests/temp src tests - vendor/bin/phpcs --standard=vendor/nepada/coding-standard/src/Nepada/ruleset.xml --encoding=utf-8 -sp src tests - vendor/bin/tester tests -s -p php after_failure: - for i in $(find tests -name \*.actual); do echo "--- $i"; cat $i; echo; echo; done sudo: false cache: directories: - $HOME/.composer/cache
language: php php: - 7.1 - 7.2 env: - COMPOSER_ARGS="" - COMPOSER_ARGS="--prefer-stable" - COMPOSER_ARGS="--prefer-stable --prefer-lowest" matrix: allow_failures: - php: 7.2 before_install: - composer self-update install: - composer update --no-interaction --prefer-dist $COMPOSER_ARGS script: - vendor/bin/parallel-lint -e php,phpt --exclude tests/temp src tests - vendor/bin/phpcs --standard=vendor/nepada/coding-standard/src/Nepada/ruleset.xml --encoding=utf-8 -sp src tests - vendor/bin/tester tests -s -p php after_failure: - for i in $(find tests -name \*.actual); do echo "--- $i"; cat $i; echo; echo; done sudo: false cache: directories: - $HOME/.composer/cache
Test with lowest dependencies for every PHP version
Test with lowest dependencies for every PHP version
YAML
bsd-3-clause
nepada/bust-cache
fe7ada7de885f6973d7e69e1cdc5b15bb5318026
.travis.yml
.travis.yml
language: ruby cache: bundler before_install: gem install bundler gemfile: - gemfiles/standalone.gemfile - gemfiles/binding_of_caller.gemfile - gemfiles/delayed_job.gemfile - gemfiles/rails.gemfile - gemfiles/rack.gemfile rvm: - 1.9.3 - 2.0.0 - 2.1.5 - 2.2.0 - jruby-19mode matrix: fast_finish: true allow_failures: - rvm: jruby-19mode exclude: - rvm: jruby-19mode gemfile: gemfiles/binding_of_caller.gemfile - rvm: jruby-19mode gemfile: gemfiles/rails.gemfile - rvm: 1.9.3 gemfile: gemfiles/rails.gemfile env: global: secure: DwQI6QHuRRaMoKvE9rnXmw3U1KLKH6Y1ZTXCcDN34Zkq7QG5KPt195zvL6XPbsefvd2fOHq4es5D6jxgLlEdKB7njhWX8XNMgb/eprz6zTxSAS/ep31zYHEJ3krWSPM6a7fXJOjdYIzXhVl7I0NRDZGy/Sf6LgHIBMpaGVKGc34=
language: ruby cache: bundler before_install: gem install bundler sudo: false gemfile: - gemfiles/standalone.gemfile - gemfiles/binding_of_caller.gemfile - gemfiles/delayed_job.gemfile - gemfiles/rails.gemfile - gemfiles/rack.gemfile rvm: - 1.9.3 - 2.0.0 - 2.1.5 - 2.2.0 - jruby-19mode matrix: fast_finish: true allow_failures: - rvm: jruby-19mode exclude: - rvm: jruby-19mode gemfile: gemfiles/binding_of_caller.gemfile - rvm: jruby-19mode gemfile: gemfiles/rails.gemfile - rvm: 1.9.3 gemfile: gemfiles/rails.gemfile env: global: secure: DwQI6QHuRRaMoKvE9rnXmw3U1KLKH6Y1ZTXCcDN34Zkq7QG5KPt195zvL6XPbsefvd2fOHq4es5D6jxgLlEdKB7njhWX8XNMgb/eprz6zTxSAS/ep31zYHEJ3krWSPM6a7fXJOjdYIzXhVl7I0NRDZGy/Sf6LgHIBMpaGVKGc34=
Upgrade Travis to new infrastructure.
Upgrade Travis to new infrastructure. http://docs.travis-ci.com/user/migrating-from-legacy/?utm_source=legacy-notice&utm_medium=banner&utm_campaign=legacy-upgrade
YAML
mit
kylerippey/honeybadger-ruby,honeybadger-io/honeybadger-ruby,kylerippey/honeybadger-ruby,honeybadger-io/honeybadger-ruby
06e3144a12b36a2c5f1a0bfdf0cfeded1e138035
.travis.yml
.travis.yml
branches: except: - travis language: java jdk: - oraclejdk8 script: - mvn jacoco:report coveralls:report deploy --settings settings.xml -P $TRAVIS_BRANCH notifications: slack: cloudfoundry:xvgjKLNQTyqAFMnsTywVHik9 after_success: - mvn scm-publish:publish-scm #- mkdir -p /tmp/spring-content-docs/refs/current #- mv spring-content-fs/target/generated-docs/*.html /tmp/spring-content-docs/refs/current/ #- cd .. #- git clone --depth=50 --branch=gh-pages https://github.com/paulcwarren/spring-content.git gh-pages #- cd gh-pages #- git branch #- git branch -r #- git config --global user.email $GITHUB_EMAIL #- git config --global user.name $GITHUB_NAME #- mkdir -p refs/current #- mv /tmp/spring-content-docs/refs/current/*.html refs/current/ #- git add refs/current/ #- git commit --message "SpringContentCI Publishing References" #- git remote add origin-pages $GITHUB_LINK > /dev/null 2>&1 #- git push --quiet --set-upstream origin-pages gh-pages
branches: except: - travis language: java jdk: - oraclejdk8 script: - mvn deploy --settings settings.xml -P $TRAVIS_BRANCH jacoco:report coveralls:report notifications: slack: cloudfoundry:xvgjKLNQTyqAFMnsTywVHik9 after_success: - mvn scm-publish:publish-scm #- mkdir -p /tmp/spring-content-docs/refs/current #- mv spring-content-fs/target/generated-docs/*.html /tmp/spring-content-docs/refs/current/ #- cd .. #- git clone --depth=50 --branch=gh-pages https://github.com/paulcwarren/spring-content.git gh-pages #- cd gh-pages #- git branch #- git branch -r #- git config --global user.email $GITHUB_EMAIL #- git config --global user.name $GITHUB_NAME #- mkdir -p refs/current #- mv /tmp/spring-content-docs/refs/current/*.html refs/current/ #- git add refs/current/ #- git commit --message "SpringContentCI Publishing References" #- git remote add origin-pages $GITHUB_LINK > /dev/null 2>&1 #- git push --quiet --set-upstream origin-pages gh-pages
Move reporting to after main build
Move reporting to after main build
YAML
apache-2.0
paulcwarren/spring-content,paulcwarren/spring-content,paulcwarren/spring-content
3ac27b6857043abe225f437719d2cae46936c485
.travis.yml
.travis.yml
language: ruby dist: trusty matrix: include: - rvm: 2.1 - rvm: 2.2 - rvm: ruby-2.3.0 - rvm: jruby env: - JRUBY_OPTS="--2.0" - rvm: jruby-9000 before_install: - gem install bundler script: - rake - rubocop
language: ruby dist: trusty matrix: include: - rvm: 2.1 - rvm: 2.2 - rvm: ruby-2.3.0 - rvm: jruby-1.7.22 env: - JRUBY_OPTS="--2.0" - rvm: jruby-9000 before_install: - gem install bundler script: - rake - rubocop
Install jruby-1.7.22 to use --2.0
Install jruby-1.7.22 to use --2.0
YAML
mit
waterlink/cars_api,waterlink/cars_api
25788200f09dd972991061cc803816d75db879e2
.travis.yml
.travis.yml
language: haskell install: - cabal install gtk2hs-buildtools - cabal install ConfigFile regex-posix regex-compat gtk --enable-tests --reinstall --force-reinstalls --constraint="mtl>=2.1.2" --constraint="containers>=0.5.2.1" --constraint="template-haskell>=2.7.0.0" --constraint="text>=0.11.2.3" - cabal install --enable-tests --force-reinstalls --constraint="mtl>=2.1.2" --constraint="containers>=0.5.2.1" --constraint="template-haskell>=2.7.0.0" --constraint="text>=0.11.2.3"
language: haskell install: - cabal install gtk2hs-buildtools - cabal install ConfigFile regex-posix regex-compat gtk --enable-tests --reinstall --force-reinstalls --constraint="mtl>=2.1.2" --constraint="containers>=0.5.2.1" --constraint="template-haskell>=2.7.0.0" --constraint="text>=0.11.2.3" - cabal install LambdaHack --enable-tests --force-reinstalls --constraint="mtl>=2.1.2" --constraint="containers>=0.5.2.1" --constraint="template-haskell>=2.7.0.0" --constraint="text>=0.11.2.3" - cabal install --enable-tests --force-reinstalls --constraint="mtl>=2.1.2" --constraint="containers>=0.5.2.1" --constraint="template-haskell>=2.7.0.0" --constraint="text>=0.11.2.3"
Debug Travis build by adding an old LambdaHack target
Debug Travis build by adding an old LambdaHack target
YAML
agpl-3.0
AllureOfTheStars/Allure
d6679f288d4e650afaf7b16250f6d97e1a44e520
.travis.yml
.travis.yml
dist: xenial language: ruby rvm: - 2.7.1 before_script: - mkdir ~/.task - echo data.location=~/.task > ~/.taskrc before_install: - sudo apt-get install task
dist: xenial language: ruby rvm: - 2.7.1 - 2.6.6 - 2.5.8 before_script: - mkdir ~/.task - echo data.location=~/.task > ~/.taskrc before_install: - sudo apt-get install task
Add support for Ruby 2.6.6 and 2.5.8
Add support for Ruby 2.6.6 and 2.5.8
YAML
mit
nerab/TaskWarriorMail,nerab/TaskWarriorMail
f439ab7f60477e5e4689d4bcc43b8e67341be8e2
.travis.yml
.travis.yml
language: node_js node_js: "10.11.0" matrix: include: - os: osx - os: linux - os: windows osx_image: xcode9.1 #env: # - ELECTRON_CACHE=$HOME/.cache/electron ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update ; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libx11-dev libxss-dev icnsutils graphicsmagick libappindicator1 libxtst-dev ; fi branches: only: - master cache: yarn script: yarn release notifications: email: on_success: never on_failure: change
language: node_js node_js: "10.11.0" matrix: include: - os: osx - os: linux # - os: windows osx_image: xcode9.1 #env: # - ELECTRON_CACHE=$HOME/.cache/electron ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update ; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libx11-dev libxss-dev icnsutils graphicsmagick libappindicator1 libxtst-dev ; fi branches: only: - master cache: yarn script: yarn release notifications: email: on_success: never on_failure: change
Remove windows from Travis builds for now
Remove windows from Travis builds for now It don't work!
YAML
mit
muffinista/before-dawn,muffinista/before-dawn,muffinista/before-dawn
c898c8d3eecc8dbf4c18b79ffa9c9057425c3e18
.travis.yml
.travis.yml
--- language: node_js node_js: - "0.10" - "0.12" sudo: false cache: directories: - node_modules env: - EMBER_TRY_SCENARIO=default - EMBER_TRY_SCENARIO=ember-release - EMBER_TRY_SCENARIO=ember-beta - EMBER_TRY_SCENARIO=ember-canary matrix: fast_finish: true allow_failures: - env: EMBER_TRY_SCENARIO=ember-canary before_install: - export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH - "npm config set spin false" - "npm install -g npm@^2" install: - npm install -g bower - npm install - bower install script: - ember try $EMBER_TRY_SCENARIO test
--- language: node_js node_js: - "0.10" - "0.12" - "4.2.6" - "5.5.0" sudo: false cache: directories: - node_modules env: - EMBER_TRY_SCENARIO=default - EMBER_TRY_SCENARIO=ember-release - EMBER_TRY_SCENARIO=ember-beta - EMBER_TRY_SCENARIO=ember-canary matrix: fast_finish: true allow_failures: - env: EMBER_TRY_SCENARIO=ember-canary before_install: - export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH - "npm config set spin false" - "npm install -g npm@^2" install: - npm install -g bower - npm install - bower install script: - ember try $EMBER_TRY_SCENARIO test
Add 4 and 5 node versions
Add 4 and 5 node versions
YAML
mit
BBVAEngineering/ember-cli-custom-addons,BBVAEngineering/ember-cli-custom-addons
f103a7fd81428351d96a29b499184a59597e79b2
.travis.yml
.travis.yml
language: python python: - "3.6" - "3.5" - "3.4" # command to install dependencies install: - pip install -r requirements.txt - pip install coveralls before_script: - psql -c 'create database travis_ci_test;' -U postgres # run test script: - coverage run --source=app -m py.test && coverage report - coveralls services: - postgresql addons: postgresql: "9.6" postgresql: "9.5" postgresql: "9.4" after_success: - coveralls env: - TEST_DATABASE_URI=postgresql://localhost/travis_ci_test
language: python python: - "3.6" - "3.5" - "3.4" # command to install dependencies install: - pip install -r requirements.txt - pip install coveralls before_script: - psql -c 'create database travis_ci_test;' -U postgres # run test script: - coverage run --source=app -m py.test && coverage report - coveralls services: - postgresql addons: postgresql: "9.6" postgresql: "9.5" postgresql: "9.4" after_success: - coveralls env: - TEST_DATABASE_URI=postgresql://localhost/travis_ci_test - jwt_token_secret="$##$%^##$#$#$##@dhskksdn^snsdn"
Add jwt secret token for tests
[FIX] Add jwt secret token for tests
YAML
mit
brayoh/bucket-list-api
e518d8db9ca6f8893ad5529f8e6cfaf9528becfa
.travis.yml
.travis.yml
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. language: java dist: trusty sudo: false arch: - amd64 - arm64 addons: apt: packages: - maven jdk: - openjdk12 - oraclejdk16 - openjdk-ea matrix: allow_failures: - jdk: openjdk-ea
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. language: java dist: trusty sudo: false arch: - amd64 - arm64 addons: apt: packages: - maven jdk: - openjdk12 - oraclejdk16 - openjdk-ea matrix: fast_finish: true allow_failures: - jdk: openjdk-ea cache: directories: - $HOME/.m2
Improve Travis CI build Performance
Improve Travis CI build Performance
YAML
apache-2.0
apache/httpcomponents-client
98d273372ac9e369c37d11104c234bf2f2855e07
.travis.yml
.travis.yml
language: objective-c compiler: - clang install: - git clone https://github.com/mogemimi/pomdog-third-party.git third-party - git clone https://chromium.googlesource.com/external/gyp.git tools/gyp - git clone https://github.com/srz-zumix/iutest.git third-party/iutest script: - tools/gyp/gyp build/unittest.gyp --depth=. -f xcode --generator-output=build.xcodefiles - xcodebuild -project build.xcodefiles/build/unittest.xcodeproj clean - xcodebuild -project build.xcodefiles/build/unittest.xcodeproj - build/build/Release/unittest
language: objective-c compiler: - clang install: - git clone https://github.com/mogemimi/pomdog-third-party.git third-party - git clone https://chromium.googlesource.com/external/gyp.git tools/gyp - git clone https://github.com/srz-zumix/iutest.git third-party/iutest script: - tools/gyp/gyp build/unittest.gyp --depth=. -f xcode --generator-output=build.xcodefiles - xcodebuild -project build.xcodefiles/build/unittest.xcodeproj clean - xcodebuild -project build.xcodefiles/build/unittest.xcodeproj - build/build/Release/unittest notifications: email: false
Disable Travis CI email notifications
Disable Travis CI email notifications
YAML
mit
mogemimi/pomdog,Mourtz/pomdog,bis83/pomdog,mogemimi/pomdog,bis83/pomdog,Mourtz/pomdog,mogemimi/pomdog
fb165bfc340d31ce87d89db400090c8f330226e7
.travis.yml
.travis.yml
sudo: false language: ruby cache: directories: - vendor/bundle rvm: - '2.3.0' - '2.2' - '2.1' env: - REDMINE_VERSION=3.2.1 - REDMINE_VERSION=3.1.4 - REDMINE_VERSION=2.6.10 - REDMINE_VERSION=master matrix: allow_failures: - env: REDMINE_VERSION=master branches: except: - debian install: - export BUNDLE_GEMFILE="" - export BUNDLE_PATH="$(pwd)/vendor/bundle" - ./redmine update - bundle install --jobs=3 --retry=3 --path $BUNDLE_PATH script: - bundle exec rake spec
sudo: false language: ruby cache: directories: - vendor/bundle rvm: - '2.3.0' - '2.2' - '2.1' env: - REDMINE_VERSION=3.2.1 - REDMINE_VERSION=3.1.4 - REDMINE_VERSION=2.6.10 - REDMINE_VERSION=master matrix: allow_failures: - env: REDMINE_VERSION=master branches: except: - debian before_install: - gem install bundler --pre install: - export BUNDLE_GEMFILE="" - export BUNDLE_PATH="$(pwd)/vendor/bundle" - ./redmine update - bundle install --jobs=3 --retry=3 --path $BUNDLE_PATH script: - bundle exec rake spec
Install newest bundler on CI to resolve with matching ruby version
Install newest bundler on CI to resolve with matching ruby version
YAML
apache-2.0
jgraichen/redmine_dashboard,jgraichen/redmine_dashboard,jgraichen/redmine_dashboard
d95fdaac59f38c396528f2fa4460df6d2d9c220a
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 matrix: fast_finish: true include: - php: 7.0 env: PHPCS=1 - php: 7.0 env: COVERAGE=1 before_script: - phpenv rehash install: - composer self-update - composer install --prefer-dist --no-interaction --dev script: - sh -c "if [ '$PHPCS' != '1' & '$COVERAGE' != '1' ]; then phpunit; fi" - sh -c "if [ '$PHPCS' = '1' ]; then vendor/bin/phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests; fi" - sh -c "if [ '$COVERAGE' = '1' ]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=clover.xml || true; fi" - sh -c "if [ '$COVERAGE' = '1' ]; then wget -O codecov.sh https://codecov.io/bash; fi" - sh -c "if [ '$COVERAGE' = '1' ]; then bash codecov.sh; fi" notifications: email: false
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 matrix: fast_finish: true include: - php: 7.0 env: PHPCS=1 - php: 7.0 env: COVERAGE=1 before_script: - phpenv rehash install: - composer self-update - composer install --prefer-dist --no-interaction --dev script: - sh -c "if [ '$PHPCS' != '1' && '$COVERAGE' != '1' ]; then phpunit; fi" - sh -c "if [ '$PHPCS' = '1' ]; then vendor/bin/phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests; fi" - sh -c "if [ '$COVERAGE' = '1' ]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=clover.xml || true; fi" - sh -c "if [ '$COVERAGE' = '1' ]; then wget -O codecov.sh https://codecov.io/bash; fi" - sh -c "if [ '$COVERAGE' = '1' ]; then bash codecov.sh; fi" notifications: email: false
Fix typo in test script.
Fix typo in test script.
YAML
mit
markstory/asset_compress,markstory/asset_compress,markstory/asset_compress
f2a6144302d1e44352e7e17a821a3482033560ce
.travis.yml
.travis.yml
language: ruby before_install: gem install bundler bundler_args: --without yard guard benchmarks script: "bundle exec rake spec" rvm: - 1.9.3 - 2.0.0 - ruby-head - rbx-19mode notifications: irc: channels: - "irc.freenode.org#rom-rb" on_success: never on_failure: change email: recipients: - piotr.solnica@gmail.com on_success: never on_failure: change matrix: include: - rvm: jruby-19mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" - rvm: jruby-head env: JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby before_install: gem install bundler bundler_args: --without yard guard benchmarks script: "bundle exec rake spec" rvm: - 1.9.3 - 2.0.0 - ruby-head - rbx-19mode matrix: include: - rvm: jruby-19mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" - rvm: jruby-head env: JRUBY_OPTS="$JRUBY_OPTS --debug" allow_failures: - rvm: jruby-19mode - rvm: ruby-head notifications: irc: channels: - "irc.freenode.org#rom-rb" on_success: never on_failure: change email: recipients: - piotr.solnica@gmail.com on_success: never on_failure: change
Allow failures on jruby and ruby-head
Allow failures on jruby and ruby-head
YAML
mit
rom-rb/rom-mapper,rom-rb/rom,rom-rb/rom,rom-rb/rom,solnic/rom-mapper
9d5f14086ca6160c1d93ff2f1dfdd4fdd3ef7871
.travis.yml
.travis.yml
language: ruby rvm: - 2.3.0 before_script: - psql -c "CREATE USER andrecosta WITH PASSWORD 'andrecosta';" -U postgres
language: ruby rvm: - 2.3.0 services: - postgresql before_script: - psql -c "CREATE USER andrecosta;CREATE DATABASE etikette_development;GRANT ALL PRIVILEGES ON DATABASE etikette_development to andrecosta" -U postgres
Fix Travis CI .yml file.
Fix Travis CI .yml file.
YAML
mit
nogdacosta/etikette,nogdacosta/etikette,nogdacosta/etikette
06e07369b98a8930146d380801f641d2151ded4d
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.3 env: - LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 before_install: gem install xcpretty -N script: "./Tests/travis.sh" notifications: slack: secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI=
language: objective-c osx_image: xcode8 env: - LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 before_install: gem install xcpretty -N script: "./Tests/travis.sh" notifications: slack: secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI=
Switch Travis to the Xcode 8 image.
Switch Travis to the Xcode 8 image.
YAML
mit
eljeff/AudioKit,audiokit/AudioKit,adamnemecek/AudioKit,audiokit/AudioKit,eljeff/AudioKit,adamnemecek/AudioKit,adamnemecek/AudioKit,eljeff/AudioKit,adamnemecek/AudioKit,eljeff/AudioKit,audiokit/AudioKit,audiokit/AudioKit
5cddacea0124dfc5cd97d56271daeb4337b47b8e
.travis.yml
.travis.yml
language: node_js node_js: - '0.10' before_install: - 'npm install -g bower gulp typescript' script: - 'npm install && bower install && gulp build'
sudo: false language: node_js node_js: - '0.10' before_install: - 'npm install -g bower gulp typescript' script: - 'npm install && bower install && gulp build'
Enable container-based infrastructure for Travis builds.
Enable container-based infrastructure for Travis builds.
YAML
apache-2.0
mtho11/hawkular-charts,ammendonca/hawkular-charts,hawkular/hawkular-charts,mtho11/hawkular-charts,hawkular/hawkular-charts,ammendonca/hawkular-charts,tsegismont/hawkular-charts,ammendonca/hawkular-charts,tsegismont/hawkular-charts,tsegismont/hawkular-charts,mtho11/hawkular-charts,hawkular/hawkular-charts
cdcba5bf44a4e5afb270057ff4dde4ebedcbc7b9
.travis.yml
.travis.yml
language: c sudo: required dist: trusty compiler: clang before_install: - curl https://letsencrypt.org/certs/isrgrootx1.pem.txt | sudo tee /usr/share/ca-certificates/isrgrootx1.crt - echo "isrgrootx1.crt" | sudo tee -a /etc/ca-certificates.conf - curl https://letsencrypt.org/certs/lets-encrypt-x3-cross-signed.pem.txt | sudo tee /usr/share/ca-certificates/lets-encrypt-x3-cross-signed.crt - echo "lets-encrypt-x3-cross-signed.crt" | sudo tee -a /etc/ca-certificates.conf - sudo update-ca-certificates - curl https://raw.githubusercontent.com/bbcarchdev/bbcarchdev-keys/main/bbcarchdev-apt.asc | sudo apt-key add - - echo "deb [arch=amd64] https://apt.bbcarchdev.net/debian wheezy main ports dev stage live" | sudo tee -a /etc/apt/sources.list - sudo apt-get update -qq - sudo apt-get install -qq libxml2-dev libcurl4-gnutls-dev librdf0-dev libltdl-dev libedit-dev python-minimal 4store procps automake autoconf libtool pkg-config before_script: - autoreconf -f -i script: - ./configure && make && make check
language: c sudo: required dist: trusty compiler: clang before_install: - curl https://letsencrypt.org/certs/isrgrootx1.pem.txt | sudo tee /usr/share/ca-certificates/isrgrootx1.crt - echo "isrgrootx1.crt" | sudo tee -a /etc/ca-certificates.conf - curl https://letsencrypt.org/certs/lets-encrypt-x3-cross-signed.pem.txt | sudo tee /usr/share/ca-certificates/lets-encrypt-x3-cross-signed.crt - echo "lets-encrypt-x3-cross-signed.crt" | sudo tee -a /etc/ca-certificates.conf - sudo update-ca-certificates - curl https://raw.githubusercontent.com/bbcarchdev/bbcarchdev-keys/main/bbcarchdev-apt.asc | sudo apt-key add - - echo "deb [arch=amd64] https://apt.bbcarchdev.net/debian wheezy main ports dev stage live" | sudo tee -a /etc/apt/sources.list - sudo apt-get update -qq - sudo apt-get install -qq libxml2-dev libcurl4-gnutls-dev librdf0-dev libltdl-dev libedit-dev python-minimal 4store procps automake autoconf libtool pkg-config liburi-dev before_script: - autoreconf -f -i script: - ./configure && make && make check
Add liburi-dev to build-deps for Travis
Add liburi-dev to build-deps for Travis
YAML
apache-2.0
bbcarchdev/libsparqlclient,bbcarchdev/libsparqlclient,bbcarchdev/libsparqlclient
02de84a4c68173ca43d577e72d9a45e5a2f06d11
.travis.yml
.travis.yml
language: go go: - 1.2 - 1.3 - 1.4 script: go build
language: go go: - 1.2 - 1.3 - 1.4 - 1.5 script: go build
Update Travis file to build using Go 1.5
Update Travis file to build using Go 1.5
YAML
mit
marksamman/gotorrent
7e45c865da5e5a564adcfdbdd24f3d7d8e12a07c
.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=ant setup.py test - python setup.py build 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=ant setup.py test - python setup.py build after_success: - coveralls matrix: allow_failures: - python: 3.5-dev - python: 3.6-dev - python: nightly
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
Tigge/openant
ce0d09082a33d2b4c2741921d935c072436caf68
.travis.yml
.travis.yml
language: ruby matrix: include: - rvm: 2.2.2 - rvm: rbx-2.6 env: RBX_RUBY_COMPAT=2.1.0 RBX_VERSION=2.6 bundler_args: --without production --without development --jobs=4 cache: bundler before_install: - 'echo "gem: --no-ri --no-rdoc" > ~/.gemrc' before_script: - psql -c 'create user levelup with superuser;' -U postgres - bundle exec rake db:{create,migrate} env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true - SECRET_KEY=f2fbcc06ac38f6f3a6383045f25856d
language: ruby matrix: include: - rvm: 2.2.2 - rvm: rbx-3.14 env: RBX_RUBY_COMPAT=2.1.0 RBX_VERSION=2.6 bundler_args: --without production --without development --jobs=4 cache: bundler before_install: - 'echo "gem: --no-ri --no-rdoc" > ~/.gemrc' before_script: - psql -c 'create user levelup with superuser;' -U postgres - bundle exec rake db:{create,migrate} env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true - SECRET_KEY=f2fbcc06ac38f6f3a6383045f25856d
Use a more current rbx.
Use a more current rbx.
YAML
mit
jmmastey/level_up,jmmastey/level_up,jmmastey/level_up
e8e32361f366c6d11a417d37238ad4ef12d34f6a
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - hhvm before_install: - mkdir tests/files - bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then rm phpunit.xml; fi;' - bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then mv phpunit.hhvm.xml phpunit.xml; fi;' install: - travis_retry composer install --no-interaction --prefer-source script: - bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then bin/phpunit; fi;' - bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then bin/phpunit --coverage-text --coverage-clover coverage.xml; fi;' - bin/phpspec run after_script: - wget https://scrutinizer-ci.com/ocular.phar - bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.xml; fi;'
language: php php: - 5.4 - 5.5 - 5.6 - hhvm sudo: false before_install: - mkdir tests/files - bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then rm phpunit.xml; fi;' - bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then mv phpunit.hhvm.xml phpunit.xml; fi;' install: - travis_retry composer install --no-interaction --prefer-source script: - bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then bin/phpunit; fi;' - bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then bin/phpunit --coverage-text --coverage-clover coverage.xml; fi;' - bin/phpspec run after_script: - wget https://scrutinizer-ci.com/ocular.phar - bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.xml; fi;'
Use the container based builds for better performance
[Travis] Use the container based builds for better performance
YAML
mit
hannesvdvreken/flysystem,sohelrana820/flysystem,farmisen/flysystem,oswaldderiemaecker/flysystem,dshafik/flysystem,twistor/flysystem,nao-pon/flysystem,mhlavac/flysystem,dstockto/flysystem,Amrit01/flysystem,twistor/flysystem,sachintaware/flysystem,mhlavac/flysystem
290489ae9c3234b70b04eeb1b1a2fa6202f0223b
.travis.yml
.travis.yml
sudo: false language: c cache: directories: - "$HOME/.stack" - "$HOME/build/serokell/importify/.stack-work" addons: apt: packages: - libgmp-dev before_install: # Download and unpack the stack executable - mkdir -p ~/.local/bin - export PATH=$HOME/.local/bin:$PATH - travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' - stack --version install: # Install GHC for current project - travis_wait stack setup --no-terminal - stack ghc -- --version # Build project dependencies - travis_wait stack --jobs=2 build --only-dependencies --no-terminal # Build project itself - travis_wait stack --jobs=2 build --test --bench --no-run-tests --no-run-benchmarks --no-terminal script: - travis_wait stack --jobs=4 test --no-terminal notifications: email: false slack: rooms: - serokell:JWBvWb5PKOhknocQgcoQnflZ on_success: change on_failure: always
sudo: false language: c cache: directories: - "$HOME/.stack" - "$HOME/build/serokell/importify/.stack-work" addons: apt: packages: - libgmp-dev before_install: # Download and unpack the stack executable - mkdir -p ~/.local/bin - export PATH=$HOME/.local/bin:$PATH - travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' - stack --version install: # Install GHC for current project - travis_wait 30 stack setup --no-terminal - stack ghc -- --version # Build project dependencies - travis_wait 30 stack --jobs=2 build --only-dependencies --no-terminal # Build project itself - travis_wait 30 stack --jobs=2 build --test --bench --no-run-tests --no-run-benchmarks --no-terminal script: - travis_wait 30 stack --jobs=4 test --no-terminal notifications: email: false slack: rooms: - serokell:JWBvWb5PKOhknocQgcoQnflZ on_success: change on_failure: always
Extend time of Stack builds.
Travis: Extend time of Stack builds.
YAML
mit
serokell/importify
90574069a9bdf0ca5c1b9fce549292a4d660a2bc
.travis.yml
.travis.yml
language: python python: 2.7 env: - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py32 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=py35 - TOX_ENV=pypy install: - pip install tox codecov script: - tox -e $TOX_ENV after_success: - codecov
language: python python: 2.7 env: - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py32 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=py35 - TOX_ENV=pypy install: - pip install tox codecov script: - tox -e $TOX_ENV matrix: allow_failures: - env: TOX_ENV=py35 after_success: - codecov
Add allow_failures for Python 3.5 on Travis CI
Add allow_failures for Python 3.5 on Travis CI
YAML
mit
gorlemik/pyanyapi,Stranger6667/pyanyapi
35121300b9be1f409790c78dd3bf2e2da8e46be0
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3 script: 'bundle exec rake' branches: only: - master
language: ruby rvm: - 2.1 - 2.0 - 1.9.3 script: 'bundle exec rake' branches: only: - master
Use latest 2.0.x + 2.1.x Rubies on Travis
Use latest 2.0.x + 2.1.x Rubies on Travis
YAML
mit
attack/barometer-weather_bug
9de303d225cdfef6bd85b61787c9e95a3ae62f56
.travis.yml
.travis.yml
language: python addons: apt: sources: - debian-sid packages: - shellcheck python: - "3.5" - "3.6" before_install: - sudo apt-get update -qq - sudo apt-get install -qq -y libdb5.1-dev env: - TARGET=lint - TARGET=typecheck - TARGET=unit-tests script: BERKELEYDB_DIR=/usr make $TARGET -e py_env=~/virtualenv/python$TRAVIS_PYTHON_VERSION
language: python addons: apt: sources: - debian-sid packages: - shellcheck python: - "3.5" before_install: - sudo apt-get update -qq - sudo apt-get install -qq -y libdb5.1-dev env: - TARGET=lint - TARGET=typecheck - TARGET=unit-tests script: BERKELEYDB_DIR=/usr make $TARGET -e py_env=~/virtualenv/python$TRAVIS_PYTHON_VERSION
Remove under-tested Python 3.6 support
Remove under-tested Python 3.6 support
YAML
apache-2.0
c-w/gutenberg-http,c-w/gutenberg-http