commit
stringlengths
40
40
old_file
stringlengths
4
264
new_file
stringlengths
4
264
old_contents
stringlengths
0
4.24k
new_contents
stringlengths
1
5.44k
subject
stringlengths
14
778
message
stringlengths
15
9.92k
lang
stringclasses
277 values
license
stringclasses
13 values
repos
stringlengths
5
127k
cb135d6bc873d6d9e31a598b9c897b0be35b3326
.travis.yml
.travis.yml
language: "node_js" node_js: - 0.4 - 0.6
language: "node_js" node_js: - 0.4 - 0.6 - 0.8
Test on Node 0.8 in Travis CI.
Test on Node 0.8 in Travis CI.
YAML
mit
jaredhanson/passport-37signals
a1f195791ce2a84d7fec4286695252f0a9fb42be
.travis.yml
.travis.yml
language: python sudo: false cache: - pip python: - "2.7" addons: postgresql: "9.4" apt: packages: - "postgresql-9.4-postgis-2.3" env: - DJANGO_VERSION=1.10 db_name=calaccess_website db_user=postgres db_password='' rds_host=localhost install: - pip install -r requirements.txt - pip uninst...
language: python sudo: false cache: - pip python: - "2.7" addons: postgresql: "9.4" apt: packages: - "postgresql-9.4-postgis-2.3" env: - DJANGO_VERSION=1.11 db_name=calaccess_website db_user=postgres db_password='' rds_host=localhost install: - pip install -r requirements.txt - pip uninst...
Upgrade Django version for Travis
Upgrade Django version for Travis
YAML
mit
california-civic-data-coalition/django-calaccess-downloads-website,california-civic-data-coalition/django-calaccess-downloads-website,california-civic-data-coalition/django-calaccess-downloads-website
6605e06bc65a471f2ba0cedb31a2ff72c6d26db2
.travis.yml
.travis.yml
language: go sudo: false matrix: include: - go: 1.4 - go: 1.5 - go: 1.6 - go: tip install: - go get golang.org/x/tools/cmd/vet script: - go get -t -v ./... - diff -u <(echo -n) <(gofmt -d .) - go tool vet . - go test -v -race ./...
language: go sudo: false matrix: include: - go: 1.4 - go: 1.5 - go: 1.6 - go: tip install: - go get golang.org/x/tools/cmd/vet script: - go get -t -v $(go list ./... | grep -v '/vendor/') - diff -u <(echo -n) <(gofmt -d .) - go vet $(go list ./... | grep -v '/vendor/') - go test -v -race ...
Exclude vendored deps from Go tools.
[ci] Exclude vendored deps from Go tools.
YAML
bsd-3-clause
cloudflare/cloudflare-go,cloudflare/cloudflare-go
1eae6ef90869a2661d599f5e1e0146a1cb3105a6
.travis.yml
.travis.yml
language: java jdk: - openjdk7 - oraclejdk7 - oraclejdk8 sudo: false branches: only: - master - develop
language: java jdk: - openjdk7 - oraclejdk8 sudo: false branches: only: - master - develop
Stop CI with OracleJDK7 on TravisCI
Stop CI with OracleJDK7 on TravisCI
YAML
apache-2.0
fluent/fluent-logger-java
2d2ce20c11cc49d9d7b3d32889f087609b322ac7
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - "7" - "6" - "5" - "4" - "0.12" - "0.10" - "iojs" before_install: - npm install -g npm@^3
language: node_js sudo: false node_js: - "node" - "6" - "4" - "0.12" - "0.10" before_install: - npm install -g npm@^3
Support only stable and latest node versions
Support only stable and latest node versions
YAML
apache-2.0
sagiegurari/grunt-markdownlint
328015d4ef5749b7e744c78d47b4bbf6c97bc3e0
.travis.yml
.travis.yml
language: java jdk: - openjdk6 - openjdk7 - openjdk8 - oraclejdk7 - oraclejdk8 script: mvn verify -Dmaven.javadoc.skip=true
language: java jdk: - openjdk6 - openjdk7 - oraclejdk7 - oraclejdk8 script: mvn verify -Dmaven.javadoc.skip=true
Remove Open JDK 8 (not supported on Travis)
Remove Open JDK 8 (not supported on Travis)
YAML
apache-2.0
uglycustard/buildergenerator
937d47931bced185bbcf5ae0c9123d27ee4fd882
.travis.yml
.travis.yml
language: cpp dist: trusty sudo: false matrix: include: - os: linux compiler: gcc # - os: linux #compiler: clang script: - (cd bigtable/api && cmake . && make) addons: apt: packages: - vim - curl - git-core - make - gcc - g++ - build-essen...
language: cpp dist: trusty sudo: false matrix: include: - os: linux compiler: gcc # - os: linux #compiler: clang script: - (cd bigtable/api && cmake . && make) addons: apt: packages: - vim - curl - git-core - make - gcc - g++ - build-essen...
Remove clang package because it breaks build.
Remove clang package because it breaks build.
YAML
apache-2.0
GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples
20c38b2d44e4d0d3ea91e72ce333be37baf6d957
.travis.yml
.travis.yml
language: elixir elixir: - 1.4 otp_release: - 19.3 - 18.3 env: - CACHE_ENABLED=true - CACHE_ENABLED=true TEST_OPTS='--exclude redis_pubsub --include phoenix_pubsub --no-start' PUBSUB_BROKER=phoenix_pubsub - CACHE_ENABLED=false TEST_OPTS='--only integration' services: - redis-server script: - mix test --...
dist: trusty language: elixir elixir: - 1.4 otp_release: - 19.3 - 18.3 env: - CACHE_ENABLED=true TEST_OPTS='--exclude phoenix_pubsub --exclude ecto_persistence' - CACHE_ENABLED=false TEST_OPTS='--only integration' - CACHE_ENABLED=true PUBSUB_BROKER=phoenix_pubsub TEST_OPTS='--no-start --exclude redis_pubs...
Configure Travis to run with postgres
Configure Travis to run with postgres
YAML
mit
tompave/fun_with_flags
168c8cbc63e011931079c7c4d2856c05cd20cf18
.travis.yml
.travis.yml
language: php php: - '5.6' - '7.0' - '7.1' install: composer install script: vendor/bin/phpunit --verbose tests
language: php php: - '5.6' - '7.0' - '7.1' - '7.2' install: composer install script: vendor/bin/phpunit --verbose tests
Add php 7.2 to Travis
Add php 7.2 to Travis
YAML
mit
jerry1970/parable,devvoh/Fluid,jerry1970/parable,devvoh/Fluid,devvoh/parable,devvoh/parable
37888e1e505d9490d83323000f1d6b86a2a86812
.travis.yml
.travis.yml
install: - apt-get install libxml2-utils script: - xmllint --noout *.xsd
install: - sudo apt-get install libxml2-utils script: - xmllint --noout *.xsd
Fix dependency installation for Travis
Fix dependency installation for Travis Build was failing with $ apt-get install libxml2-utils E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied) E: Unable to lock the administration directory (/var/lib/dpkg/), are you root? APT dependencies must be installed as sudoer.
YAML
mit
JeanFred/Galaxy-XSD,mr-c/Galaxy-XSD
b98b2aba0e90e58442e2fa5c111fb10798efe5ac
.travis.yml
.travis.yml
language: java matrix: include: - os: linux dist: precise jdk: oraclejdk7 - os: linux jdk: oraclejdk8 - os: linux jdk: openjdk8 - os: linux jdk: oraclejdk9 - os: linux jdk: oraclejdk10 - os: linux jdk: openjdk10 env: - TERM=dumb script: - gr...
language: java matrix: include: - os: linux dist: precise jdk: oraclejdk7 - os: linux jdk: oraclejdk8 - os: linux jdk: openjdk8 - os: linux jdk: oraclejdk9 - os: linux jdk: oraclejdk10 - os: linux jdk: openjdk10 env: - TERM=dumb script: - ./...
Use gradle wrapper on Travis
Use gradle wrapper on Travis
YAML
bsd-3-clause
bwaldvogel/log4j-systemd-journal-appender,bwaldvogel/log4j-systemd-journal-appender
9850302c264fa24cb964fe636cb9c84cbefcc25a
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7 - 7.1 - hhvm before_script: - composer update script: ./vendor/bin/phpunit -c tests/phpunit.xml
language: php dist: trusty php: - 5.4 - 5.5 - 5.6 - 7 - 7.1 - hhvm before_script: - composer update script: ./vendor/bin/phpunit -c tests/phpunit.xml
Fix for HHVM Travis build
Fix for HHVM Travis build
YAML
bsd-2-clause
zbateson/MailMimeParser
7e5dc1446279954e93212ca9c40dbebb5d92507b
.travis.yml
.travis.yml
language: php sudo: false git: submodules: false cache: directories: - vendor php: - 7.2 - 7.4 install: - composer --no-interaction install script: - vendor/bin/phpunit - vendor/bin/php-cs-fixer fix --dry-run -v --diff
language: php sudo: false git: submodules: false cache: directories: - vendor php: - 7.2.24 - 7.4 install: - composer --no-interaction install script: - vendor/bin/phpunit - vendor/bin/php-cs-fixer fix --dry-run -v --diff
Test CI against the same 7.2 patch we specify as minimum
Test CI against the same 7.2 patch we specify as minimum
YAML
mit
dxw/iguana
cc8e361092f665d7fdf5f3d22971c15b614e9658
.travis.yml
.travis.yml
language: node_js node_js: - "12.14.0" - "8.16.2" - "6.14.4" - "4.9.1" before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.9.4 - export PATH="$HOME/.yarn/bin:$PATH"
language: node_js node_js: - "12.14.0" - "8.16.2" - "6.14.4" - "4.9.1" before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.12.3 - export PATH="$HOME/.yarn/bin:$PATH"
Change yarn version back to 1.12.3
Change yarn version back to 1.12.3
YAML
mit
MindscapeHQ/raygun4node,MindscapeHQ/raygun4node
eceb9de6d63c389106eec24421c705669fd935ab
.travis.yml
.travis.yml
language: python # need mongo for the popit-api we launch in the background services: - mongodb # 2.6.1 is used on our servers python: - "2.6" - "2.7" env: - DJANGO_VERSION=">=1.3,<1.4" - DJANGO_VERSION=">=1.4,<1.5" - DJANGO_VERSION=">=1.5,<1.6" # command to install dependencies install: - pip install...
language: python # need mongo for the popit-api we launch in the background services: - mongodb # 2.6.1 is used on our servers python: - "2.6" - "2.7" # Should only really uncomment this just before a release - no point making # Travis do more work than is needed. # # env: # - DJANGO_VERSION=">=1.3,<1.4" # ...
Comment out the various Django versions
Comment out the various Django versions
YAML
agpl-3.0
mysociety/popit-django,mysociety/popit-django,ciudadanointeligente/popit-django,mysociety/popit-django,ciudadanointeligente/popit-django,ciudadanointeligente/popit-django
2401303396adacb0f1219eae1843fc4112b4389b
.travis.yml
.travis.yml
language: php php: - 7.2 - nightly matrix: allow_failures: - php: nightly env: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" install: - composer update $COMPOSER_OPTS script: - rm -fv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini - vendor/bin/phpunit - vendor/bin/compos...
language: php php: - 7.2 - 7.3 - nightly matrix: allow_failures: - php: nightly env: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" install: - composer update $COMPOSER_OPTS script: - rm -fv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini - vendor/bin/phpunit - vendor/bi...
Add support for PHP 7.3
Add support for PHP 7.3
YAML
apache-2.0
metroplex-systems/edifact
2423bf1d68bd030e93bb6fa18601bf4be7414862
.travis.yml
.travis.yml
language: python dist: xenial addons: apt: update: true packages: libapr1-dev libaprutil1-dev libdb5.3-dev liblz4-dev libsasl2-dev libperl-dev libserf-dev libsqlite3-dev libtool python-all-dev libneon27-gnutls-dev libutf8proc-dev python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" - "3.8" env: - SVN...
language: python dist: xenial addons: apt: update: true packages: libapr1-dev libaprutil1-dev libdb5.3-dev liblz4-dev libsasl2-dev libperl-dev libserf-dev libsqlite3-dev libtool python-all-dev libneon27-gnutls-dev libutf8proc-dev python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" - "3.8" env: - SVN...
Build svn 1.11, 1.12 and 1.13.
Build svn 1.11, 1.12 and 1.13.
YAML
lgpl-2.1
jelmer/subvertpy,jelmer/subvertpy
aec0b92dc61efbc446ea99f982385327ff2032c9
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '6' - '8' - '10' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g istanbul coveralls
sudo: false language: node_js node_js: - '6' - '8' - '10' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc script: - nyc npm test
Add `nyc` to Travis CI.
Add `nyc` to Travis CI.
YAML
mit
bigeasy/expandable
2bd5c680140d34a3795fb922cc0aae02df4324b6
.travis.yml
.travis.yml
language: python matrix: include: - python: 2.6 - python: 2.7 - python: 3.3 - python: 3.4 - python: 3.5 - python: 3.6 - python: 3.7 - python: pypy - python: pypy3 cache: directories: - $HOME/.cache/pip branches: only: - master install: - if [[ $TRAVIS_PYTHON_VERSI...
language: python matrix: include: - python: 2.6 - python: 2.7 - python: 3.3 - python: 3.4 - python: 3.5 - python: 3.6 - python: 3.7 - python: pypy - python: pypy3 cache: directories: - $HOME/.cache/pip branches: only: - master install: - if [[ $TRAVIS_PYTHON_VERSI...
Print out python and pip version
Print out python and pip version
YAML
bsd-3-clause
sjagoe/haas,scalative/haas,scalative/haas,sjagoe/haas,itziakos/haas,itziakos/haas
24e585b3930a1cb118cc7d9c914d9af66cb4896f
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.0 - 5.6 env: global: - COMPOSER_OPTIONS="" matrix: include: - php: 5.6 env: COMPOSER_OPTIONS="--prefer-lowest" - php: nightly allow_failures: - php: nightly fast_finish: true cache: directories: - vendor ...
language: php php: - 7.1 - 7.0 - 5.6 env: global: - COMPOSER_OPTIONS="" matrix: include: - php: 5.6 env: COMPOSER_OPTIONS="--prefer-lowest" - php: nightly allow_failures: - php: nightly fast_finish: true cache: directories: - vendor ...
Remove "composer self-update" from Travis CI (it's done automatically)
Remove "composer self-update" from Travis CI (it's done automatically)
YAML
mit
FriendsOfBehat/SkipExtension
fe1d9df27274564d5ef595b609701abae4ed9fb6
.travis.yml
.travis.yml
language: scala scala: - 2.11.6 - 2.11.5 - 2.11.4 jdk: - oraclejdk8 - oraclejdk7 - openjdk7 script: "sbt clean coverage test" after_success: "sbt coveralls"
language: scala scala: - 2.11.7 - 2.11.6 jdk: - oraclejdk8 - openjdk8 script: "sbt clean coverage test" after_success: "sbt coveralls"
Build for latest scala (2.11.6 and 2.11.7) and JDK 8
Build for latest scala (2.11.6 and 2.11.7) and JDK 8
YAML
mit
izmailoff/mqtt-mongo
db6c0c8d97ed2ebf7235a0632ec8b4c462eea371
.travis.yml
.travis.yml
language: python python: - "2.7" before_install: - openssl aes-256-cbc -K $encrypted_84a2848b3b48_key -iv $encrypted_84a2848b3b48_iv -in tests/travisci-gcloud_requests.json.enc -out travisci-gcloud_requests.json -d - export GOOGLE_APPLICATION_CREDENTIALS=travisci-gcloud_requests.json - export DATASTORE_HOST=htt...
language: python python: - "2.7" before_install: - openssl aes-256-cbc -K $encrypted_84a2848b3b48_key -iv $encrypted_84a2848b3b48_iv -in tests/travisci-gcloud_requests.json.enc -out travisci-gcloud_requests.json -d - export JSON_CREDENTIALS_FILE=travisci-gcloud_requests.json - export DATASTORE_HOST=http://local...
Update for new credentials file method
Update for new credentials file method
YAML
mit
LeadPages/gcloud_requests
9a7db0e7a3472a532df7f98579acfa8d6798e3b4
metadata/cz.vitskalicky.lepsirozvrh.yml
metadata/cz.vitskalicky.lepsirozvrh.yml
AntiFeatures: - NonFreeNet Categories: - Internet - Science & Education License: GPL-3.0-or-later AuthorName: Vít Skalický AuthorEmail: vit.skalicky@email.cz SourceCode: https://github.com/vitSkalicky/lepsi-rozvrh IssueTracker: https://github.com/vitSkalicky/lepsi-rozvrh/issues AutoName: Better schedule RepoTyp...
AntiFeatures: - NonFreeNet Categories: - Internet - Science & Education License: GPL-3.0-or-later AuthorName: Vít Skalický AuthorEmail: vit.skalicky@email.cz SourceCode: https://github.com/vitSkalicky/lepsi-rozvrh IssueTracker: https://github.com/vitSkalicky/lepsi-rozvrh/issues AutoName: Better schedule RepoTyp...
Update Better schedule to 1.3 (4)
Update Better schedule to 1.3 (4)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
187c9d9f56fbb6531f9b396d6bace3880fa421ca
.travis.yml
.travis.yml
language: php sudo: false cache: directories: - $HOME/.composer/cache/files - $HOME/symfony-bridge/.phpunit php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - nightly env: global: - SYMFONY_PHPUNIT_DIR="$HOME/symfony-bridge/.phpunit" matrix: include: - php: 5.6...
language: php sudo: false cache: directories: - $HOME/.composer/cache/files - $HOME/symfony-bridge/.phpunit php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - nightly env: global: - SYMFONY_PHPUNIT_DIR="$HOME/symfony-bridge/.phpunit" matrix: include: - php: 5.6...
Add validation of the composer.json on Travis
Add validation of the composer.json on Travis This prevents PRs breaking the validity of the composer.json, which would then be rejected by Packagist. The lock file is not validated, as it is not committed in the repo.
YAML
mit
KnpLabs/KnpMenu
6da0571b6ec7a68c6f51beac3d1cd01f4b210d48
.travis.yml
.travis.yml
# Fake out Travis CI, since PHP isn't supported when using their Docker services language: python env: - PHP_VERSION=5.4.45 ARCH=x86_64 - PHP_VERSION=5.4.45 ARCH=mips - PHP_VERSION=5.5.32 ARCH=x86_64 - PHP_VERSION=5.5.31 ARCH=mips - PHP_VERSION=5.6.18 ARCH=x86_64 - PHP_VERSION=5.6.17 ARCH=mips - PHP_VERS...
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm sudo: false before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction --prefer-dist script: - mkdir -p build/logs - ./vendor/bin/parallel-lint src tests - ./vendor/bin/phpunit --verbose --coverage-clover ...
Update Travis builds to use Travis-installed PHP instead of Docker
Update Travis builds to use Travis-installed PHP instead of Docker The Docker images currently do not have all the proper dependencies for some newly-updated dependent packages (i.e. iconv), so we're using standard Travis for the moment.
YAML
mit
michabbb-backup/uuid,michabbb-backup/uuid,ramsey/uuid
43a1dbb7e4b9bc14df7d505d48b3cc319dc4c213
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.10" - "0.12" - "0.13" - "4" - '5' install: - npm install before_script: - npm install -g grunt-cli script: - grunt notifications: email: on_success: always on_failure: always
sudo: false language: node_js node_js: - "0.10" - "0.12" - "4" - '5' install: - npm install before_script: - npm install -g grunt-cli script: - grunt notifications: email: on_success: always on_failure: always
Remove Version '0.13' not found
Remove Version '0.13' not found
YAML
mit
mdasberg/grunt-karma-sonar,mdasberg/grunt-karma-sonar
8553b0736492b49e761f880dfe7b988e05710993
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - stable - '0.10' - '0.12' - '4.2.6'
sudo: false language: node_js node_js: - stable - '6' - '7'
Update Travis CI to use newer nodejs
Update Travis CI to use newer nodejs
YAML
mit
arccoza/postcss-aspect-ratio
2a2b39f4460d0e0cd3be1e31a7d2201e515e8614
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 1.9.3 - 1.9.2 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode - 1.8.7 - ree
language: ruby rvm: - 2.5.0 - 2.0.0 - 1.9.3 - 1.9.2 - jruby-18mode - jruby-19mode - rbx-2 - 1.8.7 - ree
Change Ruby versions to test in CI
Change Ruby versions to test in CI
YAML
mit
archan937/slot_machine
ea5b721939062d245250838b05ac117c6c80b9ab
.travis.yml
.travis.yml
language: python sudo: false python: - "2.7" - "3.3" - "3.4" - "3.5" env: - SPHINX=1.3.6 - SPHINX=1.4.9 - SPHINX=1.5.3 notifications: email: false irc: "irc.iiens.net#Clicky" branches: only: - master install: - "pip install sphinx-testing" # required for tests - "pip install Sphinx...
language: python sudo: false python: - "2.7" - "3.3" - "3.4" - "3.5" env: - SPHINX=1.3.6 - SPHINX=1.4.9 - SPHINX=1.5.3 notifications: email: false irc: "irc.iiens.net#Clicky" branches: only: - master install: - "pip install sphinx-testing" # required for tests - "pip install Sphinx...
Install lxml as part of the tests
Install lxml as part of the tests
YAML
bsd-2-clause
fpoirotte/sphinxcontrib-doxylinks
4ec2d70c60477794d1daa0596bf143b521a18a44
.travis.yml
.travis.yml
branches: except: - rpi language: generic sudo: required matrix: include: - os: linux dist: trusty env: - SWIFT_VERSION=swift-3.1 SWIFT_BUILD=$SWIFT_VERSION-RELEASE-ubuntu14.04 SWIFT_URL=https://swift.org/builds/$SWIFT_VERSION-release/ubuntu1404/$SWIFT_VERSION-RELE...
branches: except: - rpi language: generic sudo: required env: SWIFT_VERSION=3.1 matrix: include: - os: linux dist: trusty - os: osx osx_image: xcode8.3 env: - OPENSSL_ROOT_DIR=$(brew --prefix openssl) install: - eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c...
Use swiftenv to install Swift for CI
Use swiftenv to install Swift for CI
YAML
mit
NobodyNada/SwiftChatSE,NobodyNada/SwiftChatSE
790197e1d140cc165430ccab4ddb33ae9f45eab4
.travis.yml
.travis.yml
language: python python: - "3.3" install: - pip install -e git://github.com/TangledWeb/tangled.git - pip install -e . script: py.test
language: python python: - "3.3" install: - pip install git://github.com/TangledWeb/tangled.git#egg=tangled - pip install . script: py.test
Fix pip install link for tangled
Fix pip install link for tangled
YAML
mit
TangledWeb/tangled.web
c61f6f05dcaf91f48a5f5addfed68521ce0b9c14
.travis.yml
.travis.yml
before_install: - git submodule update --init --recursive language: node_js node_js: - "0.10" - "0.12" before_script: - npm install -g grunt-cli
language: node_js node_js: - "0.10" - "0.12" before_script: - npm install -g grunt-cli
Remove `git submodule update` call from Travis build
Remove `git submodule update` call from Travis build I don't think this is necessary any more.
YAML
apache-2.0
kobotoolbox/enketo-core,enketo/enketo-core,nap2000/enketo-core,kevinmwangi/enketo-core,enketo/enketo-core,enketo/enketo-core,kobotoolbox/enketo-core,nap2000/enketo-core,nap2000/enketo-core,medic/enketo-core,kevinmwangi/enketo-core,medic/enketo-core
7a215ff5ca5733ebbaf7eb63dd22d55d1c6c5ebd
.travis.yml
.travis.yml
--- language: node_js node_js: - "0.12" sudo: false cache: directories: - node_modules before_install: - "npm config set spin false" - "npm install -g npm@^2" install: - npm install -g bower - npm install - bower install script: - npm test
--- language: node_js node_js: - "0.12" - "4" - "5" sudo: false cache: directories: - node_modules before_install: - "npm config set spin false" - "npm install -g npm@^2" install: - npm install -g bower - npm install - bower install script: - npm test
Test node v4 and v5
Test node v4 and v5
YAML
mit
j-/ember-cli-array-pauser,j-/ember-cli-array-pauser
9af818e7670f74ead11b85f426ebadcb871f0323
.travis.yml
.travis.yml
language: node_js node_js: - '10' - '12' - '14' - node matrix: include: - name: Lint node_js: 14 script: npm run lint script: '(nvm i 14 && npm run build) && npm run ci:test' after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
language: node_js node_js: - '10' - '12' - '14' - node matrix: include: - name: Lint node_js: 14 script: npm run lint script: npm run ci:test after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
Fix copy/paste error in Travis config
Fix copy/paste error in Travis config
YAML
bsd-3-clause
papandreou/node-gettemporaryfilepath
d567b10e2594829d351b660a5dbfbeafb6e27bc1
.travis.yml
.travis.yml
language: c install: - sudo add-apt-repository -y ppa:ceph-ubuntu/dev - sudo apt-get update > /dev/null - sudo apt-get install mono-devel libleveldb-dev libleveldb1 nunit-console > /dev/null script: - xbuild leveldb-sharp.sln - nunit-console bin/Debug/leveldb-sharp-tests.dll
language: c install: - sudo sudo -s bash -c 'echo "deb http://http.debian.net/debian experimental main" >> /etc/apt/sources.list' - sudo apt-get update > /dev/null - sudo apt-get install mono-devel nunit-console > /dev/null - sudo apt-get install -t experimental libleveldb-dev script: - xbuild lev...
Use leveldb library from Debian/Experimental as the PPA wasn't current enough
Use leveldb library from Debian/Experimental as the PPA wasn't current enough
YAML
bsd-3-clause
warrenfalk/leveldb-sharp,parhelia512/leveldb-sharp,meebey/leveldb-sharp,parhelia512/leveldb-sharp,meebey/leveldb-sharp,warrenfalk/leveldb-sharp
e1437673cf0a3e57fdb43099c315417d3adca5b0
.travis.yml
.travis.yml
dist: trusty group: beta language: ruby git: submodules: false script: - bundle exec rake libffi - bundle exec rake compile - bundle exec rake test - | if [[ $(ruby -v) != *truffleruby* ]]; then ITER=10 bundle exec rake bench:all fi - bundle exec rake types_conf && git --no-pager diff o...
dist: trusty group: beta language: generic git: submodules: false matrix: include: - name: powerpc before_install: | docker run --rm --privileged multiarch/qemu-user-static:register --reset && docker build --rm -t ffi-powerpc -f spec/env/Dockerfile.powerpc . script: | docke...
Remove TravisCI jobs redundant with GitHub Actions
Remove TravisCI jobs redundant with GitHub Actions
YAML
bsd-3-clause
ffi/ffi,ffi/ffi,ffi/ffi
4ccce9b9fccf0cc8c246e19e942d39c3790ff708
.travis.yml
.travis.yml
language: python # this version of python is only used to run tox - the version specified by TOX_ENV # is used to install and run tests python: 2.7 env: - TOX_ENV=py27 - TOX_ENV=py32 - TOX_ENV=py33 - TOX_ENV=py34 - TOX_ENV=py35 - TOX_ENV=py36 - TOX_ENV=py37 - TOX_ENV=pypy - TOX_ENV=coverage # comman...
language: python # this version of python is only used to run tox - the version specified by TOX_ENV # is used to install and run tests python: 2.7 env: - TOX_ENV=py27 - TOX_ENV=py34 - TOX_ENV=py35 - TOX_ENV=py36 - TOX_ENV=py37 - TOX_ENV=pypy - TOX_ENV=coverage # command to install dependencies, e.g. pi...
Remove python 3.2 and 3.3, as they are no longer supported
Remove python 3.2 and 3.3, as they are no longer supported
YAML
mpl-2.0
digidotcom/python-devicecloud,digidotcom/python-devicecloud
f3aedf50e85598f66834023aae994151f611561e
.travis.yml
.travis.yml
language: java sudo: required jdk: - oraclejdk8 env: global: - DISPLAY=:99.0 cache: directories: - $HOME/.m2 notifications: email: recipients: - vitruv-build@ira.uni-karlsruhe.de # Handle git submodules yourself git: submodules: false # Enable UI before_install: - sh -e /...
language: java sudo: required jdk: - oraclejdk8 env: global: - DISPLAY=:99.0 cache: directories: - $HOME/.m2 notifications: email: recipients: - vitruv-build@ira.uni-karlsruhe.de # Handle git submodules yourself git: submodules: false # Enable UI before_install: - sh -e /...
Increase Maven memory to avoid GC limit
Increase Maven memory to avoid GC limit
YAML
epl-1.0
vitruv-tools/Vitruv
1e636a7d2f69a313e597c53882dda09fc18f0406
.travis.yml
.travis.yml
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby jdk: - oraclejdk8 rvm: - 2.6.6 install: - rvm use 2.6.6 - gem install bundler - bundle install script: buildr package git: depth: false
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby jdk: - oraclejdk8 rvm: - 2.6.6 install: - gem install bundler - bundle install script: buildr package git: depth: false
Update the version of ruby used to build project in TravisCI.
Update the version of ruby used to build project in TravisCI.
YAML
apache-2.0
realityforge/arez,realityforge/arez,realityforge/arez
97c5fdf8b6c15d2178dcb80a364a65c8988ab7b5
.travis.yml
.travis.yml
language: ruby rvm: - ruby-head - 2.4.3 - 2.3.6 - 2.2.9 - 2.1.10 before_install: - gem update --system install: - bundle install --without development addons: apt_packages: libmagic-dev script: - bundle exec parallel_rspec spec
language: ruby rvm: - ruby-head - 2.5.0 - 2.4.3 - 2.3.6 - 2.2.9 - 2.1.10 before_install: - gem update --system install: - bundle install --without development addons: apt_packages: libmagic-dev script: - bundle exec parallel_rspec spec
Add ruby 2.5.0 to testing versions
Add ruby 2.5.0 to testing versions
YAML
agpl-3.0
ONLYOFFICE/ooxml_parser
8426f1ca53d524d9c347008e305cade002bf9343
.travis.yml
.travis.yml
language: rust os: - linux - osx rust: - stable - nightly matrix: exclude: - rust: stable env: FEATURE=nightly allow_failures: - os: osx before_script: - pip install 'travis-cargo<0.2' --user && export PATH=$HOME/Library/Python/2.7/bin:$HOME/.local/bin:$PATH script: - travis-cargo test --...
language: rust os: - linux - osx rust: - stable - nightly matrix: exclude: - rust: stable env: FEATURE=nightly allow_failures: - os: osx - rust: nightly before_script: - pip install 'travis-cargo<0.2' --user && export PATH=$HOME/Library/Python/2.7/bin:$HOME/.local/bin:$PATH script: - ...
Allow continuous builds to fail with rust nightly.
chore(ci): Allow continuous builds to fail with rust nightly. Some of the crates used by the rust-nightly build are more than a bit flaky.
YAML
apache-2.0
dermesser/yup-oauth2,Narfinger/yup-oauth2,dermesser/yup-oauth2
176d76d06f9e4cad25dd03a046b1a5fb33db4670
.travis.yml
.travis.yml
# Based on https://github.com/moteus/lua-travis-example language: c branches: only: - moon env: global: - LUAROCKS=2.3.0 - LUA=lua5.1 before_install: - source .travis/setenv_lua.sh install: - luarocks install moonscript script: - bash ./build.sh notifications: irc: channels: - "irc.esp...
# Based on https://github.com/moteus/lua-travis-example language: c branches: only: - moon env: global: - LUAROCKS=2.3.0 - LUA=lua5.1 before_install: - source .travis/setenv_lua.sh install: - luarocks install moonscript script: - bash ./build.sh notifications: irc: channels: - "irc.esp...
Update Travis CI notification formatting
Update Travis CI notification formatting
YAML
mit
hel-repo/hpm
a1fcd32620341f477db568426df6725a4270394a
.travis.yml
.travis.yml
language: php php: - 5.6 - '7' mysql: database: activecollab_promises_test username: root encoding: utf8mb4 install: composer install --dev before_script: # create the database - mysql -e 'create database if not exists activecollab_promises_test;' script: phpunit -c test/phpunit.xml
language: php php: - 7.1 mysql: database: activecollab_promises_test username: root encoding: utf8mb4 install: composer install --dev before_script: # create the database - mysql -e 'create database if not exists activecollab_promises_test;' script: phpunit -c test/phpunit.xml
Switch Travis to PHP 7.1
Switch Travis to PHP 7.1
YAML
mit
activecollab/promises
3ce9bb6ac14e855ed0531a51ceda7b03b8fffe8e
.travis.yml
.travis.yml
language: rust sudo: false script: - cargo build --verbose - cargo test --verbose - cargo doc --no-deps after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && echo '<meta http-equiv=refresh content=0;url=tempdir/index.html>' > target/doc/index.html && pip install ghp-import --...
language: rust rust: - 1.0.0 - beta - nightly sudo: false script: - cargo build --verbose - cargo test --verbose - cargo doc --no-deps after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && [ $TRAVIS_RUST_VERSION = nightly ] && echo '<meta http-equiv=refresh content=0;ur...
Test on rust 1.0.0, nightly, and beta
Test on rust 1.0.0, nightly, and beta
YAML
apache-2.0
Yamakaky/tempdir,rust-lang/tempdir
6ddf84ff75b91332c204eb700e92881061c7a606
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "pypy2.7" - "pypy3-2" install: - pip install -q tox coverage coveralls tox-travis script: - coverage erase - tox after_success: - coverage combine - coveralls notifications: email: - boerni@gmail.com
language: python python: - "2.7" - "3.4" - "3.5" - "3.6" install: - pip install -q tox coverage coveralls tox-travis script: - coverage erase - tox after_success: - coverage combine - coveralls notifications: email: - boerni@gmail.com
Test only for python 2.7, 3.4, 3.5, 3.6
Test only for python 2.7, 3.4, 3.5, 3.6
YAML
mit
ierror/django-js-reverse
d1ce570b940ecc9d01d69abcb86ef7897b180db7
.travis.yml
.travis.yml
language: c compiler: - clang - gcc env: - COVERAGE=true - COVERAGE=false; matrix: exclude: - compiler: clang env: COVERAGE=true - compiler: gcc env: COVERAGE=false before_install: - sudo apt-get install check - sudo pip install cpp-coveralls # Change this to your needs script: -...
language: c compiler: - clang - gcc env: - COVERAGE=true - COVERAGE=false; matrix: exclude: - compiler: clang env: COVERAGE=true - compiler: gcc env: COVERAGE=false before_install: - sudo apt-get install check # - sudo pip install cpp-coveralls - sudo apt-get install -y lcov - gem...
Move to coveralls-lcov to see if that works.
Move to coveralls-lcov to see if that works.
YAML
bsd-2-clause
iptube/SPUDlib,iptube/SPUDlib,iptube/SPUDlib,iptube/SPUDlib,iptube/SPUDlib
e449786f743363d5db4b4f67ce6b4ca1de7e86b8
.travis.yml
.travis.yml
branches: only: - master - v3-new language: ruby rvm: - 1.9.3 - 2.0.0 - "2.1" script: bundle exec rspec
branches: only: - master - v3-new language: ruby matrix: allow_failures: - rvm: ruby-head rvm: - 1.9.3 - 2.0.0 - "2.1" - ruby-head script: bundle exec rspec
Build against head Ruby on Travis (but allow failure)
Build against head Ruby on Travis (but allow failure)
YAML
mit
collectiveidea/interactor,artofhuman/interactor,youprofit/interactor,JDutil/interactor,EnerfisTeam/interactor,splittingred/interactor
2498fc34e6cdf51b8aeeeb9048c8886443672c39
.travis.yml
.travis.yml
sudo: false cache: bundler language: ruby bundler_args: --without kitchen_common kitchen_vagrant kitchen_cloud kitchen_pester rvm: - 2.0 - 2.1 - 2.2 script: - bundle exec foodcritic -f any . - bundle exec rubocop - bundle exec rspec --color --format progress
# Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-stable-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefdk...
Use chef-dk install in Travis CI
Use chef-dk install in Travis CI
YAML
apache-2.0
chef-cookbooks/windows,GannettDigital/chef-windows,shoekstra/chef-windows,ruicovelo/windows,stuartpreston/windows,rlaveycal/windows,blairham/windows-cookbook,urban-institute/windows,opscode-cookbooks/windows,criteo-forks/windows,daptiv/windows,juliandunn/windows,protec-cookbooks/windows,autoclone/windows
1f553f6f10f2d3fd7c8c9347957c4515a4d80e13
.travis.yml
.travis.yml
sudo: required env: global: - PACKAGE="DiffView" matrix: - SUBLIME_TEXT_VERSION="3" env: global: - PACKAGE="DiffView" - SUBLIME_TEXT_VERSION="3" matrix: include: - os: linux language: python python: 3.3 - os: osx language: ...
sudo: required env: global: - PACKAGE="DiffView" matrix: - SUBLIME_TEXT_VERSION="3" env: global: - PACKAGE="DiffView" - SUBLIME_TEXT_VERSION="3" matrix: include: - os: linux language: python - os: osx language: generic before_insta...
Move UTs off Python 3.4
Move UTs off Python 3.4
YAML
mit
CJTozer/SublimeDiffView
2e9f0dbaeeb8dc8b2894c57f9a2587dc166c670a
.travis.yml
.travis.yml
language: python env: global: - DEPENDS="numpy cython" python: - "2.7" - "3.3" - "3.4" matrix: include: # Absolute minimum dependencies - python: 2.7 env: - DEPENDS="numpy==1.7.0 cython==0.19" # test without Cython installed - python: 2.7 env: - DEPENDS="n...
language: python env: global: - DEPENDS="numpy cython" - NO_NET=1 python: - "2.7" - "3.3" - "3.4" matrix: include: # Absolute minimum dependencies - python: 2.7 env: - DEPENDS="numpy==1.7.0 cython==0.19" # test without Cython installed - python: 2.7 env: ...
Set NO_NET for Travis CI build.
Set NO_NET for Travis CI build.
YAML
mit
Unidata/netcdf4-python,Unidata/netcdf4-python,Unidata/netcdf4-python
b3b271a438af540cac95be38ccd6e929d820b4a8
.travis.yml
.travis.yml
sudo: false language: ruby cache: bundler rvm: # - 2.0.0 # - 2.1.1 - 2.1.2 gemfile: - chef-client-version.gemfile env: - CHEF_VERSION=master - CHEF_VERSION=12.4.1 - CHEF_VERSION=12.4.0 - CHEF_VERSION=12.3.0 - CHEF_VERSION=12.2.1 - CHEF_VERSION=12.1.2 matrix: # fast_finish: true allow_failure...
sudo: false language: ruby cache: bundler rvm: # - 2.0.0 # - 2.1.1 - 2.1.2 gemfile: - chef-client-version.gemfile env: - CHEF_VERSION=master - CHEF_VERSION=12.4.1 - CHEF_VERSION=12.3.0 - CHEF_VERSION=12.2.1 - CHEF_VERSION=12.1.2 script: - bundle install --jobs=3 --retry=3 - bundle exec rake bu...
Remove 12.4.0 as valid target
Remove 12.4.0 as valid target
YAML
apache-2.0
chef/cheffish,chef/cheffish,mikenairn/cheffish,ckaushik/cheffish
422604c767c0a308c8d81bb369f55062e38ba5f3
.travis.yml
.travis.yml
# Filename: travis.yml language: cpp sudo: required dist: trusty compiler: - clang - gcc env: - CMSAT_TAG="4.5.3" GTEST_TAG="release-1.7.0" install: - sudo apt-get update --fix-missing - sudo apt-get install -y lcov libboost-dev libm4ri-dev - pushd third_party/cryptominisat - git checko...
# Filename: travis.yml language: cpp sudo: required dist: trusty compiler: - clang - gcc env: - CMSAT_TAG="4.5.3" GTEST_TAG="release-1.8.0" install: - sudo apt-get update --fix-missing - sudo apt-get install -y lcov libboost-dev libm4ri-dev - pushd third_party/cryptominisat - git checko...
Update Travis-CI GTEST_TAG to 1.8.0
Update Travis-CI GTEST_TAG to 1.8.0
YAML
apache-2.0
cjdrake/boolexpr,cjdrake/boolexpr
55f839103aca3e5e01975c467fc3615c5226a0ee
.travis.yml
.travis.yml
matrix: include: - os: osx osx_image: xcode8.3 language: generic - os: osx osx_image: xcode8.2 language: generic - os: osx osx_image: xcode8.1 language: generic - os: osx osx_image: xcode8 language: generic - os: osx osx_image: xcode7.3 l...
matrix: include: - os: osx osx_image: xcode8.3 language: generic - os: osx osx_image: xcode8.2 language: generic - os: osx osx_image: xcode8 language: generic - os: osx osx_image: xcode7.3 language: generic script: - brew update - brew install Formula/o...
Remove xcode8.1 since it fails when the others pass
Remove xcode8.1 since it fails when the others pass
YAML
mit
jbarlow83/homebrew-ocrmypdf
c112ae95f750f5cc0b260af71829090986c71cd7
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - 0.12 before_install: - npm install -g grunt-cli notifications: email: - build@whiteout.io
language: node_js sudo: false node_js: - 4.1 before_install: - npm install -g grunt-cli notifications: email: - felix.hammerl@gmail.com - andris.reinman@gmail.com
Add node v4.1 to Travis, change notification emails
Add node v4.1 to Travis, change notification emails
YAML
mit
nifgraup/browserbox,ltgorm/emailjs-imap-client,whiteout-io/browserbox,emailjs/emailjs-imap-client,emailjs/emailjs-imap-client,ltgorm/emailjs-imap-client
e90793bbb75370f018c5864ff623145d9f45ad67
.travis.yml
.travis.yml
language: ruby rvm: - 2.4.1 - 2.3.4 - 2.2.7 - jruby-9.1.8.0 sudo: false after_success: '[[ "$TRAVIS_JOB_NUMBER" == *.1 ]] && bundle exec codeclimate-test-reporter'
language: ruby rvm: - 2.4.1 - 2.3.4 - 2.2.7 sudo: false after_success: '[[ "$TRAVIS_JOB_NUMBER" == *.1 ]] && bundle exec codeclimate-test-reporter'
Stop building on JRuby until 9.1.11.0 is released
Stop building on JRuby until 9.1.11.0 is released The test suite requires https://github.com/jruby/jruby/pull/4636
YAML
mit
haines/tar,haines/tar
90a7e7e96cbdecff07563dffcddac48309a97f0c
.travis.yml
.travis.yml
language: node_js dist: trusty sudo: false addons: chrome: stable cache: yarn: true directories: - node_modules node_js: - "8.7" stages: - test install: - yarn install script: gulp build jobs: include: - stage: test script: npm run test:coverage after_success: - npm run codecov
language: node_js dist: trusty sudo: false addons: chrome: stable cache: yarn: true directories: - node_modules node_js: - "8.7" stages: - compile - test install: - yarn install jobs: include: - stage: compile script: gulp build - stage: test script: npm run test:coverag...
Revert "chore: ci: remove "compile" stage"
Revert "chore: ci: remove "compile" stage" This reverts commit 626b4b983c4d4d0407fb6690a9e9d51b76125cb2.
YAML
mit
yyc-git/Wonder.js,yyc-git/Wonder.js,yyc-git/Wonder.js
82655ddc175952a2dbab70b11af7977f369af960
.travis.yml
.travis.yml
rvm: - 1.9.3 - 2.0.0 - 2.2.2 - jruby-19mode - rbx gemfile: - test/gemfiles/Gemfile.rails-3.2.x - test/gemfiles/Gemfile.rails-4.0.x - test/gemfiles/Gemfile.rails-5.0.x matrix: exclude: - rvm: 1.9.3 gemfile: test/gemfiles/Gemfile.rails-5.0.x - rvm: 2.0.0 gemfile: test/gemfiles/Gemf...
before_install: gem install bundler --no-document rvm: - 1.9.3 - 2.0.0 - 2.2.2 - jruby-19mode - rbx gemfile: - test/gemfiles/Gemfile.rails-3.2.x - test/gemfiles/Gemfile.rails-4.0.x - test/gemfiles/Gemfile.rails-5.0.x matrix: exclude: - rvm: 1.9.3 gemfile: test/gemfiles/Gemfile.rails-5.0.x...
Use newest released bundler for CI
Use newest released bundler for CI
YAML
mit
rails/pjax_rails,rails/pjax_rails,rails/pjax_rails
e094db5d771a99e412dd6bc6a568544116757a13
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.1snapshot - 7.2 - 7.2snapshot branches: only: - master - development - /^feature\/.+$/ - /^issue\/.+$/ services: - redis-server before_script: - echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini - if [ "$TRAVIS_PULL_REQU...
language: php php: - 7.1 - 7.1snapshot - 7.2 - 7.2snapshot branches: only: - master - development - /^feature\/.+$/ - /^issue\/.+$/ services: - redis-server before_script: - echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini - if [ "$TRAVIS_PULL_REQU...
Copy missing default configs for CI build
Copy missing default configs for CI build
YAML
mit
hollodotme/redis-status,hollodotme/redis-status,hollodotme/redis-status,hollodotme/redis-status
c209fa93f3ddb566f51d2dafa599b84b2e98ef23
.travis.yml
.travis.yml
language: objective-c before_install: - sudo easy_install cpp-coveralls script: - xctool test -project Source/OCHamcrest.xcodeproj -scheme OCHamcrest -sdk macosx10.9 - xctool test -project Source/OCHamcrest.xcodeproj -scheme libochamcrest -sdk iphonesimulator7.1 after_success: - ./coveralls.rb --exclude-fold...
language: objective-c before_install: - sudo easy_install cpp-coveralls script: - xctool test -project Source/OCHamcrest.xcodeproj -scheme OCHamcrest -sdk macosx10.9 - xctool test -project Source/OCHamcrest.xcodeproj -scheme libochamcrest -sdk iphonesimulator7.0 after_success: - ./coveralls.rb --exclude-fold...
Drop Travis iOS back down to 7.0
Drop Travis iOS back down to 7.0
YAML
bsd-2-clause
klundberg/OCHamcrest,hamcrest/OCHamcrest,hamcrest/OCHamcrest,klundberg/OCHamcrest,hamcrest/OCHamcrest
b2c664abe72bf2aa0e8ab1b66593fce9915387ce
.travis.yml
.travis.yml
language: ruby rvm: - 2.4.4 before_install: - curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - && sudo apt-get install -y nodejs before_script: - cd lib/assets && npm install && npm run bundle -- -p && cd - - cp config/database_example.yml config/database.yml - cp config/secrets_example.yml conf...
language: ruby rvm: - 2.4.4 before_install: - curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - && sudo apt-get install -y nodejs before_script: - cd lib/assets && npm install && npm run bundle -- -p && cd - - cp config/database_example.yml config/database.yml - cp config/secrets_example.yml conf...
Remove Rake test from Travis CI config
Remove Rake test from Travis CI config
YAML
mit
DigitalCurationCentre/roadmap,CDLUC3/dmptool,DigitalCurationCentre/roadmap,DigitalCurationCentre/roadmap,CDLUC3/dmptool,DMPRoadmap/roadmap,CDLUC3/roadmap,DMPRoadmap/roadmap,DMPRoadmap/roadmap,CDLUC3/roadmap,CDLUC3/dmptool,CDLUC3/dmptool,CDLUC3/roadmap,CDLUC3/roadmap
6689236fb0bdc9430489d3882ae78a4ce528762e
.travis.yml
.travis.yml
language: cpp compiler: - clang - gcc before_install: # nomlib dependencies (SDL) - sudo apt-get install libsdl1.2-dev libsdl1.2debian libsdl-image1.2-dev libsdl-image1.2 libsdl-ttf2.0-dev libsdl-ttf2.0-0 # nomlib dependencies (Audio) - sudo apt-get install libsndfile1-dev libopenal-dev before_script: - mkdir...
language: cpp compiler: - clang - gcc before_install: # nomlib dependencies (SDL) - sudo apt-get install libsdl1.2-dev libsdl1.2debian libsdl-image1.2-dev libsdl-image1.2 libsdl-ttf2.0-dev libsdl-ttf2.0-0 # nomlib dependencies (Audio) - sudo apt-get install libsndfile1-dev libopenal-dev before_script: - mkdir...
Disable build script test of OSX Framework (I didn't expect it to work!)
Disable build script test of OSX Framework (I didn't expect it to work!)
YAML
bsd-2-clause
i8degrees/nomlib,i8degrees/nomlib,i8degrees/nomlib,i8degrees/nomlib
5b7043e4fddaea316665738e5599e50cc41a68ac
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10"
language: node_js node_js: - iojs - "0.12" - "0.10"
Add node 0.12 and iojs
Add node 0.12 and iojs
YAML
mit
silas/node-jenkins,durai145/node-jenkins,theverything/then-jenkins,greyhwndz/node-jenkins
23849b524ed76ed53c7dc40ec69e7d13b826e046
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler before_install: - gem update bundler rvm: - 2.2.10 - 2.3.8 - 2.4.5 - 2.5.3 - 2.6.5 - 2.7.0 - ruby-head matrix: allow_failures: - rvm: ruby-head fast_finish: true notifications: recipients: - mail@zzak.io slack: sinatrarb:LQGhUfGYcqRgRzwKea0...
language: ruby sudo: false cache: bundler before_install: - gem update bundler rvm: - 2.2.10 - 2.3.8 - 2.4.10 - 2.5.9 - 2.6.7 - 2.7.3 - "3.0" - ruby-head - jruby-9.2.17.0 matrix: allow_failures: - rvm: ruby-head fast_finish: true notifications: recipients: - mail@zzak.io slack:...
Update patch versions of Ruby in the matrix
CI: Update patch versions of Ruby in the matrix
YAML
mit
sinatra/mustermann
3e9d13f18b9a23de7229220608fb0f82f4890220
.travis.yml
.travis.yml
language: rust sudo: false cache: cargo rust: - nightly - beta - 1.12.0 script: - cargo clean - (test $TRAVIS_RUST_VERSION != "nightly" || cargo test --manifest-path phf_macros/Cargo.toml --features unicase_support) - (test $TRAVIS_RUST_VERSION != "nightly" || cargo test --manifest-path phf_macros/Cargo.toml) - (test $...
language: rust sudo: false cache: cargo rust: - nightly - beta - 1.12.0 script: - cargo clean - (test $TRAVIS_RUST_VERSION != "nightly" || cargo test --manifest-path phf_macros/Cargo.toml --features unicase_support) - cargo clean # otherwise compiletest complains about multiple matching crates - (test $TRAVIS_RUST_VERS...
Fix compiletests by cleaning up build files beforehand
Fix compiletests by cleaning up build files beforehand
YAML
mit
Bobo1239/rust-phf,Bobo1239/rust-phf
0066a1df5670a58299e08f44cb172f86fcef5565
.travis.yml
.travis.yml
sudo: false language: generic # install recent GCC addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-6 - g++-6 # run on linux and mac os: - linux - osx # different builds env: - VTK=5 PYTHON=2 - VTK=6 PYTHON=2 - VTK=7 ...
sudo: false language: generic # install recent GCC addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-6 - g++-6 # run on linux and mac os: - linux - osx # different builds env: - VTK=5 PYTHON=2 - VTK=6 PYTHON=2 - VTK=7 ...
Disable slow tests on osx too
Disable slow tests on osx too
YAML
mit
chrisdjscott/Atoman,chrisdjscott/Atoman,chrisdjscott/Atoman,chrisdjscott/Atoman,chrisdjscott/Atoman
00560938f36ffc64c80e69103ae7a2d42d094059
.travis.yml
.travis.yml
--- language: ruby bundler_args: --without development rvm: - 1.9.2 - 1.9.3 - jruby-19mode - jruby-head - ruby-head - rbx-19mode notifications: email: - tech@challengepost.com
--- language: ruby bundler_args: --without development rvm: - 1.9.3 - 2.0.0 notifications: email: - tech@challengepost.com
Test on 2.0 and drop test support for other rubies
Test on 2.0 and drop test support for other rubies
YAML
mit
jcmuller/figleaf,challengepost/figleaf
939502a83ffd804c0abcb70873ae255f67ee877f
.travis.yml
.travis.yml
sudo: false language: pythons 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 mini...
sudo: false language: pythons 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 mini...
Revert "conda install numpy/scipy without confirmation"
Revert "conda install numpy/scipy without confirmation" This reverts commit ada068fdb999d24c79d296a93ebb245d1edd860f.
YAML
apache-2.0
DigitalSlideArchive/HistomicsTK,DigitalSlideArchive/HistomicsTK
bc28b0c74f435a2c9e3a724d552f32845cfb9c70
.travis.yml
.travis.yml
language: python cache: pip python: - "2.7" - "3.4" - "3.5" sudo: false env: - DJANGO=1.10 - DJANGO=1.11 - DJANGO=2.0 - DJANGO=master matrix: fast_finish: true include: - { python: "3.6", env: DJANGO=master } - { python: "3.6", env: DJANGO=1.11 } - { python: "3....
language: python cache: pip python: - "2.7" - "3.4" - "3.5" sudo: false env: - DJANGO=1.10 - DJANGO=1.11 - DJANGO=2.0 - DJANGO=master matrix: fast_finish: true include: - { python: "3.6", env: DJANGO=master } - { python: "3.6", env: DJANGO=1.11 } - { python: "3....
Remove django 2.0 from allowable failures in CI
Remove django 2.0 from allowable failures in CI
YAML
bsd-2-clause
tomchristie/django-rest-framework,kgeorgy/django-rest-framework,tomchristie/django-rest-framework,jpadilla/django-rest-framework,jpadilla/django-rest-framework,tomchristie/django-rest-framework,jpadilla/django-rest-framework,kgeorgy/django-rest-framework,kgeorgy/django-rest-framework
52b54701f936614e9d2d3fe2db92853a2b2bebc8
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 env: - SYMFONY_VERSION="~2.3" # Test against previous minor releases of Symfony 2.x to ensure that we # actually support the versions we specify in our requirements. - SYMFONY_VERSION="2.3.*" before_script: # Use --prefer-source to download dependencies via git and...
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 env: - SYMFONY_VERSION="~2.3" # Test against previous minor releases of Symfony 2.x to ensure that we # actually support the versions we specify in our requirements. - SYMFONY_VERSION="2.3.*" before_script: # Use --prefer-source to download dependencies via...
Include PHP 5.6 in Travis tests.
Include PHP 5.6 in Travis tests.
YAML
mit
ivol84/wsdl2phpgenerator,jongotlin/wsdl2phpgenerator,Razoxane/wsdl2phpgenerator,sha1/wsdl2phpgenerator,Intera/wsdl2phpgenerator,kasperg/wsdl2phpgenerator,red-led/wsdl2phpgenerator,parabolicinteractive/wsdl2phpgenerator,yethee/wsdl2phpgenerator,wsdl2phpgenerator/wsdl2phpgenerator
84829640afc478d1717418895b8872e2a6ee4e25
.travis.yml
.travis.yml
language: go go: - 1.4 install: - go get -u github.com/c-fs/Jerasure - go get -u github.com/BurntSushi/toml - go get -u github.com/qiniu/log - go get -u github.com/spf13/cobra - go get -u golang.org/x/net/context - go get -u github.com/codahale/metrics - go get -u google.golang.org/grpc - curl -o cad...
language: go go: - 1.4 install: - go get -u github.com/c-fs/Jerasure - go get -u github.com/BurntSushi/toml - go get -u github.com/qiniu/log - go get -u github.com/spf13/cobra - go get -u golang.org/x/net/context - go get -u github.com/codahale/metrics - go get -u github.com/influxdb/influxdb/client ...
Add go get github.com/influxdb/influxdb/client for ci.
Add go get github.com/influxdb/influxdb/client for ci.
YAML
apache-2.0
c-fs/cfs,wangtuanjie/cfs,c-fs/cfs,wangtuanjie/cfs
ca01f8bfdbcf4f818ff63b5b633a8b23ba6399cf
.travis.yml
.travis.yml
dist: trusty sudo: false language: python python: - "2.7" - "3.6" - "3.7" - "3.8" # command to install dependencies install: - pip install -r dev-requirements.txt # command to run tests script: - pytest --cache-clear
language: python python: - "2.7" - "3.6" - "3.7" - "3.8" # command to install dependencies install: - pip install -r dev-requirements.txt # command to run tests script: - pytest --cache-clear
Remove explicit dist from Travis-CI config.
Remove explicit dist from Travis-CI config.
YAML
apache-2.0
pyocd/pyOCD,pyocd/pyOCD,flit/pyOCD,mbedmicro/pyOCD,mesheven/pyOCD,mesheven/pyOCD,mbedmicro/pyOCD,mbedmicro/pyOCD,flit/pyOCD,mesheven/pyOCD
0b3854b128f950ffe91135181f0d0527458ad65c
.travis.yml
.travis.yml
language: node_js node_js: - '0.10' after_success: - gulp coverage deploy: provider: npm email: d2ltravisdeploy@d2l.com api_key: secure: kbd9PFMuS1XlXTrPaowlSPgLlLMq9B+WMVLhvi3cK+0TrpKwRv1UDqj+hz6EAXd0b/2zV452mJZ20lEf9Z2m5xdhWVLYxY0qJdKSFFNBB9qF5HlUbwOhu3A44k03YUMqYKXj4Z5P7I/i+qS5sSLdoJLpeP5xwsm68ZOOWDkDdUE= ...
language: node_js node_js: - '0.12' after_success: - gulp coverage deploy: provider: npm email: d2ltravisdeploy@d2l.com api_key: secure: KlXxulHXjKi/dBk5mST82IXgrso3ONd1vMcQ5ax61aXhgML/iO4vuouRX66b1btWHkqK01lPPVrUgHLTe7IIfbNyzbMTxvhQ44sI9AACJPahjGq4q5Kn84X3W9+b3Zr/PZLR/xHdjDOkF4IuOrGAXQ25zCM6SxYiUHUv0ytJTGs= ...
Update API key for publishing to NPM.
Update API key for publishing to NPM.
YAML
apache-2.0
Brightspace/images-to-variables
081f0753b3abe92320fb61bd9f6d52de043c7c51
.travis.yml
.travis.yml
language: node_js node_js: - "node" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 cache: directories: - node_modules before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 # give xvfb some time to start before_ins...
language: node_js node_js: - "node" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - oracle-java8-set-default cache: directories: - node_modules before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 # give x...
Configure Travis to install Java. Fix for selenium not starting
Configure Travis to install Java. Fix for selenium not starting
YAML
mit
hadynz/pact-testing-example,hadynz/pact-testing-example
b674b5b02549ee9071aa15860450e8e555fddfed
.travis.yml
.travis.yml
language: node_js cache: yarn node_js: - node - "10" - "8" - "6" git: depth: 5 install: - yarn install --ignore-engines
language: node_js cache: yarn node_js: - node - "12" - "10" - "8" - "6" git: depth: 5 install: - yarn install --ignore-engines
Add Node.js 13 to CI
Add Node.js 13 to CI
YAML
mit
bezoerb/postcss,jonathantneal/postcss,postcss/postcss,postcss/postcss,Semigradsky/postcss
ee1cf0157a78543692104b447222361cf9106071
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" cache: directories: - $HOME/.cache/pip - $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/lib/python$TRAVIS_PYTHON_VERSION/site-packages - $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/bin install: - env - ls -al $HOME/virtualenv/python$TRAVIS_PYTHON_VERSI...
sudo: false language: python python: - "2.7" - "3.5" cache: directories: - $HOME/.cache/pip - $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/lib/python$TRAVIS_PYTHON_VERSION/site-packages - $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/bin install: - env - ls -al $HOME/virtualenv/python$TRAVIS_PY...
Add support for Python 3.5.
Add support for Python 3.5. Possibly not complete.
YAML
apache-2.0
dls-controls/pymalcolm,dls-controls/pymalcolm,dls-controls/pymalcolm
fc66b629ef16f2ca1b4f2804f06b1df0613875fc
.travis.yml
.travis.yml
language: cpp compiler: - clang branches: except: - gh-pages before_install: - sudo apt-get update -qq - sudo apt-get install -qq nasm g++-4.6-multilib gcc-multilib libc6-dev-i386 lib32z1-dev install: make gtest-bootstrap # libssl is not multiarch so we are building 64bit # and then installing the 32bit versi...
language: cpp compiler: - clang branches: except: - gh-pages before_install: - sudo apt-get update -qq - sudo apt-get install -qq nasm g++-4.6-multilib gcc-multilib libc6-dev-i386 lib32z1-dev install: make gtest-bootstrap # libssl is not multiarch so we are building 64bit # and then installing the 32bit versi...
Use -B option instead of make clean.
Travis: Use -B option instead of make clean.
YAML
bsd-2-clause
ethanhugg/openh264,hj3938/losslessh264,wzup/openh264,PeterXu/openh264,subailong/losslessh264,zhimeihetx/openh264,krsjoseph/losslessh264,aquar25/losslessh264,Ghimtim/losslessh264,GuangweiWang/openh264,treble37/losslessh264,nfedera/cisco-openh264,shyamalschandra/openh264,bowlofstew/losslessh264,zyhh/losslessh264,danielrh...
57576e4d5acaa65872b73e1f95c707e83e14e65e
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 env: - SYMFONY="2.3.*" services: - elasticsearch install: - composer require --no-update symfony/symfony:${SYMFONY} before_install: # SQL settings - sudo chmod 0644 /etc/mysql/my.cnf - sudo sed "/skip-external-locking/a log-bin=mysql-bin\nbinlog_format = ROW\ndatad...
language: php php: - 5.4 - 5.5 - 5.6 env: - SYMFONY="2.3.*" services: - elasticsearch install: - composer require --no-update symfony/symfony:${SYMFONY} before_install: # SQL settings - sudo chmod 0644 /etc/mysql/my.cnf - sudo sed "/skip-external-locking/a log-bin=mysql-bin\nbinlog_format = ROW\ndatad...
Change prefer dist to prefer source
Change prefer dist to prefer source
YAML
mit
ongr-io/ConnectionsBundle,asev/ConnectionsBundle,GrandLTU/ConnectionsBundle
f631a6e0bb6c8575e2ccc81a2c683840b0656ad5
.travis.yml
.travis.yml
language: python python: - 3.2 - 3.3 before_install: pip install --use-mirrors nose unittest2 pymongo install: - python setup.py install script: nosetests services: - mongodb
language: python python: - 3.2 - 3.3 before_install: pip install --use-mirrors nose pymongo install: - python setup.py install script: nosetests services: - mongodb
Remove unittest2 dependency for tests
Remove unittest2 dependency for tests
YAML
bsd-3-clause
aquavitae/mongokit-py3
5797e43f5d3c97747bbee671320d80dcd3e44b0b
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 1.9.3 - rbx-19mode - jruby-19mode env: - DB=mysql - DB=postgres gemfile: - Gemfile - ci/gemfiles/rspec2_14_rails4_0.gemfile - ci/gemfiles/rspec2_14_rails3_2.gemfile before_script: - ci/script/create_db.sh - bundle exec rake db:test:reset --trace script: bundle exec rs...
language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3 - rbx-19mode - jruby-19mode env: - DB=mysql - DB=postgres gemfile: - Gemfile - ci/gemfiles/rspec2_14_rails4_0.gemfile - ci/gemfiles/rspec2_14_rails3_2.gemfile before_script: - ci/script/create_db.sh - bundle exec rake db:test:reset --trace script: bund...
Add MRI-2.1.0 to ci testing
Add MRI-2.1.0 to ci testing
YAML
mit
yellow5/foreigner-matcher,yellow5/foreigner-matcher
35e5ac24fd970d36e9c9a7b145b5e14a0bd755c2
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm # faster builds on new travis setup not using sudo sudo: false # cache vendor dirs cache: directories: - vendor - $HOME/.composer/cache install: - travis_retry composer self-update && composer --version - travis_retry composer global require ...
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm # faster builds on new travis setup not using sudo sudo: false # cache vendor dirs cache: directories: - vendor - $HOME/.composer/cache install: - travis_retry composer self-update && composer --version - travis_retry composer global require ...
Add beforescript and change how to run codecept :panda_face:
[Travis] Add beforescript and change how to run codecept :panda_face:
YAML
bsd-3-clause
thanhpv-102/yii2-pk-training,thanhpv-102/yii2-pk-training
409a2884ac91d7054dea40e224ef33d9a8c7ce98
.travis.yml
.travis.yml
language: python python: 2.7 os: - linux - osx env: - TOX_ENV=flake8 - TOX_ENV=pypy - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py32 - TOX_ENV=py33 - TOX_ENV=py34 install: - pip install tox script: - tox -e $TOX_ENV notifications: email: on_success: never on_failure: change
language: python python: 2.7 env: - TOX_ENV=flake8 - TOX_ENV=pypy - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py32 - TOX_ENV=py33 - TOX_ENV=py34 install: - pip install tox script: - tox -e $TOX_ENV notifications: email: on_success: never on_failure: change
Revert "Run Travis on OSX."
Revert "Run Travis on OSX." This reverts commit 90084e11579b887bdec033eb3fcc486dfdcd1f61.
YAML
mit
schlamar/pytest-cov,ionelmc/pytest-cover,pytest-dev/pytest-cov,wushaobo/pytest-cov,opoplawski/pytest-cov,moreati/pytest-cov
ad274f82cc1c9c906007afa892bbe023f0cb2f3f
.travis.yml
.travis.yml
sudo: required os: linux language: python python: - 3.3 - 3.4 - 3.5 - 3.6 install: - sudo apt-get install -y apache2 - sudo apt-get install -y php5-common libapache2-mod-php5 php5-cli - sudo service apache2 restart - pwd - ls - mkdir /var/www/vulnerable-sites - mv test/vulnerable-sites/* /var/ww...
sudo: required os: linux language: python python: - 3.3 - 3.4 - 3.5 - 3.6 install: - sudo apt-get install -y apache2 - sudo apt-get install -y php5-common libapache2-mod-php5 php5-cli - sudo service apache2 restart - pwd - ls - sudo mkdir /var/www/vulnerable-sites - mv test/vulnerable-sites/* /v...
Use sudo to create folder.
Use sudo to create folder.
YAML
mit
tijme/angularjs-csti-scanner,tijme/angularjs-sandbox-escape-scanner
f704b540e5ae7eeca1b3824232f20ddaf34bcd3f
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "6" script: "npm run-script travis" after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js"
language: node_js node_js: - "8" - "9" script: "npm run-script travis" after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js"
Test with node 8 and 9
Travis: Test with node 8 and 9
YAML
bsd-3-clause
assetgraph/assetgraph-i18n
a1acbb1f1bd394e0d9dd43a7bd2967e268ef4808
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.6" # Command to run tests script: py.test
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.6" # Temporarily use xenial with with sudo to install Python 3.7. References: # https://github.com/travis-ci/travis-ci/issues/9069 # https://github.com/travis-ci/travis-ci/issues/9815 matrix: include: - python: "3.7" ...
Add Python 3.7 back to TravisCI pipeline
Add Python 3.7 back to TravisCI pipeline
YAML
mit
srsudar/eg
6fe955b4e6709bae3faa9f39dbf12c77c4e0855a
.travis.yml
.travis.yml
language: ruby bundler_args: --without development rvm: - 2.1.8 - 2.2.4 - 2.3.0 before_install: - gem update --system $gemver - gem --version env: - gemver: 2.5.2
language: ruby bundler_args: --without development rvm: - 2.2.* - 2.3.* - 2.4.* before_install: - gem update --system $gemver - gem --version env: - gemver: 2.6.13
Drop ruby 2.1 and add 2.4. Upgrade gem version
Drop ruby 2.1 and add 2.4. Upgrade gem version
YAML
mit
abak-press/geminabox,geminabox/geminabox,geminabox/geminabox,abak-press/geminabox,geminabox/geminabox,abak-press/geminabox,abak-press/geminabox,geminabox/geminabox
36975e79a4eb42ed89eddd8668bdd0e790c43c75
.travis.yml
.travis.yml
language: python python: - "3.3" # - "3.4" before_install: - sudo apt-get update -qq - sudo apt-get install -qq libzmq3-dev install: - python setup.py install - pip install --user msgpack-python script: - python runtests.py
language: python python: - "3.3" # - "3.4" before_install: - sudo apt-get update -qq - sudo apt-get install -qq libzmq3-dev install: - python setup.py install - pip install msgpack-python script: - python runtests.py
Drop --user from pip install
Drop --user from pip install
YAML
bsd-2-clause
MetaMemoryT/aiozmq,asteven/aiozmq,aio-libs/aiozmq,claws/aiozmq
bcef4822ef1ae6fe5f041f9ca855353daf6cd770
.travis.yml
.travis.yml
language: ruby bundler_args: --without debugging documentation addons: code_climate: repo_token: 186c49521e629c51591c86f057f49fe388ce87603e04b5486f0c92f26f2a455f rvm: # OS X 10.9.5-10.10.0 (2.0.0-p481) - system # OS X 10.9.3-10.9.4 - 2.0.0-p451 # OS X 10.9.0-10.9.2 - 2.0.0-p247 env: - LANG="en_US.UTF-...
language: ruby bundler_args: --without debugging documentation addons: code_climate: repo_token: 186c49521e629c51591c86f057f49fe388ce87603e04b5486f0c92f26f2a455f rvm: # OS X 10.9.5-10.10.0 (2.0.0-p481) - 2.0.0-p481 # OS X 10.9.3-10.9.4 - 2.0.0-p451 # OS X 10.9.0-10.9.2 - 2.0.0-p247 env: - LANG="en_US....
Make build green, take 2.
[Travis] Make build green, take 2.
YAML
mit
CocoaPods/Core,k0nserv/Core,dnkoutso/Core,gabro/Core,dacaiguoguogmail/Core,brianmichel/Core,Ashton-W/Core,AdamCampbell/Core
68826242cc7a00ac1e16b2a97689723736ae6d6d
.travis.yml
.travis.yml
language: cpp sudo: false os: linux before_script: - mkdir build script: - cd build - cmake .. - cmake --build . - ctest addons: apt: sources: &global_apt_sources - george-edison55-precise-backports packages: &global_apt_packages - cmake - ...
language: cpp sudo: false os: linux before_script: - mkdir build script: - cd build - cmake .. - cmake --build . - ctest addons: apt: sources: &global_apt_sources - george-edison55-precise-backports packages: &global_apt_packages - cmake - ...
Fix apt not being under addons
Fix apt not being under addons
YAML
mit
westernmagic/NumPDE,westernmagic/NumPDE,westernmagic/NumPDE,westernmagic/NumPDE,westernmagic/NumPDE
4a9045a3ef12c80b88a0a2d17ebdfeb0bb8c0bea
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.4" - "3.5" before_install: - sudo apt-get update - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget https://repo.continuum.io/miniconda/Miniconda-3.9.1-Linux-x86_64.sh -O miniconda.sh; else wget https://repo.continuum.io/miniconda/Miniconda3-3.9.1-...
language: python python: - "2.7" - "3.4" - "3.5" before_install: - sudo apt-get update - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget https://repo.continuum.io/miniconda/Miniconda-3.9.1-Linux-x86_64.sh -O miniconda.sh; else wget https://repo.continuum.io/miniconda/Miniconda3-3.9.1-...
Fix indentation for copied in before_install commands
Fix indentation for copied in before_install commands
YAML
mit
MBARIMike/oxyfloat,MBARIMike/biofloat,biofloat/biofloat,biofloat/biofloat,MBARIMike/oxyfloat,MBARIMike/biofloat
d2aa9220c5b8f5e858475def7fad916b732614c1
.travis.yml
.travis.yml
language: node_js node_js: - 0.8 - 0.10 before_script: - npm install -g grunt-cli
language: node_js node_js: - 0.10 before_script: - npm install -g grunt-cli
Remove node 0.8 from build matrix
Remove node 0.8 from build matrix
YAML
mit
d0rc/moment-timezone,timrwood/moment-timezone,moment/moment-timezone,bcbroussard/moment-timezone,mj1856/moment-timezone,samjoch/moment-timezone,dieface/moment-timezone,6ft-invsbl-rbbt/moment-timezone,rollbar/moment-timezone,blixt/moment-timezone,lookfirst/moment-timezone,andrewchae/moment-timezone,kidaa/moment-timezone...
549320799d21e7348ae313ff708e5e8c7ce0dc72
.travis.yml
.travis.yml
dist: xenial language: python python: - "3.6" - "3.7" - "3.8" - "pypy3.6-7.1.1" matrix: include: - python: "3.7" env: TOXENV="-e docs" - python: "3.7" env: TOXENV="-e pep8" - python: "3.7" env: TOXENV="-e coverage" install: - pip install --upgrade pip setuptools ...
dist: xenial language: python python: - "3.6" - "3.7" - "3.8" - "pypy3" matrix: include: - python: "3.7" env: TOXENV="-e docs" - python: "3.7" env: TOXENV="-e pep8" - python: "3.7" env: TOXENV="-e coverage" install: - pip install --upgrade pip setuptools - pip ...
Use latest pypy3 version on Travis
Use latest pypy3 version on Travis
YAML
bsd-3-clause
morepath/morepath
0ff526b996d1707f54bb7ea6b94a935f1f3d8561
.travis.yml
.travis.yml
sudo: false language: python python: - "3.5" install: - "pip install -r requirements.txt" - "pip freeze"
sudo: false language: python python: - "3.5" script: nosetests install: - "pip install -r development.txt" - "pip freeze"
Add nosetests script for tests.
Add nosetests script for tests.
YAML
mit
mananam/pelican-prajna,mananam/pelican-prajna
e441ee9ceb077000cf84cd390eb1ef6a39ef33d4
.travis.yml
.travis.yml
# This file enables the Travis continuous integration system, which # automatically builds and tests joda-time for each GitHub commit or # pull request on three separate JDKs. # # For more information, see https://travis-ci.org sudo: false language: java jdk: - oraclejdk8 - oraclejdk7 - openjdk6
# This file enables the Travis continuous integration system, which # automatically builds and tests joda-time for each GitHub commit or # pull request on three separate JDKs. # # For more information, see https://travis-ci.org sudo: false language: java jdk: - oraclejdk8 - oraclejdk7
Remove EOL JDK 6 from Travis build
Remove EOL JDK 6 from Travis build
YAML
apache-2.0
mosoft521/joda-time,JodaOrg/joda-time,tingting703/mp3_maven,tingting703/mp3_maven,Alexey-N-Chernyshov/IU_AST_Mutation_Score,mosoft521/joda-time,flightstats/joda-time,flightstats/joda-time,Alexey-N-Chernyshov/IU_AST_Mutation_Score,JodaOrg/joda-time
b44d4bc30050e96343981558bacd3915105761d1
.travis.yml
.travis.yml
# Continuous Integration (CI) is the practice, in software # engineering, of merging all developer working copies with a shared mainline # several times a day < http://docs.platformio.org/page/ci/index.html > # # Documentation: # # * Travis CI Embedded Builds with PlatformIO # < https://docs.travis-ci.com/user/integr...
language: python python: - "2.7" cache: directories: - "~/.platformio" env: - PLATFORMIO_CI_SRC=src install: - pip install -U platformio script: - platformio ci --board=pro8MHzatmega328
Add Travis CI for Arduino code
Add Travis CI for Arduino code
YAML
mit
hatstand/shinywaffle,hatstand/shinywaffle,hatstand/shinywaffle
e54ab24c5ed8ea9542e5c1d65b2187f2ebf86047
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.5 - 2.3.1 before_install: gem install bundler sudo: false cache: bundler
language: ruby rvm: - 2.2.6 - 2.3.3 - 2.4.0-preview3 before_install: gem install bundler sudo: false cache: bundler
Test against latest ruby versions
Test against latest ruby versions
YAML
mit
rubysamurai/mui-sass,rubysamurai/mui-sass,rubysamurai/mui-sass,rubysamurai/mui-sass
5865c7557b723c5a16d1d9e6d88f9cdc777bb82d
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 before_install: - composer self-update install: - composer install --no-interaction --prefer-source script: - composer easy-coding-standard - composer phpstan-analysis - composer nette-tester-tests after_success: - wget https://github.com/satooshi/php-...
language: php php: - 7.2 - 7.3 - 7.4 before_install: - composer self-update install: - composer install --no-interaction --prefer-source script: - composer cs:check - composer phpstan:check - composer tests after_success: - wget https://github.com/satooshi/php-coveralls/releases...
Drop PHP 7.1, use php 7.2, 7.3, 7.4
Drop PHP 7.1, use php 7.2, 7.3, 7.4
YAML
bsd-3-clause
Machy8/webloader,Machy8/webloader,Machy8/webloader
9e2da11e396fe3365b940d99ad07ba7810263321
.travis.yml
.travis.yml
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c osx_image: xcode7.3 cache: cocoapods podfile: Example/Podfile before_install: - gem install cocoapods # Since Travis is not always on latest version - pod install --project-directory=Examp...
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c osx_image: xcode7.3 cache: cocoapods podfile: Example/Podfile before_install: - gem install cocoapods # Since Travis is not always on latest version - pod install --project-directory=Examp...
Fix build script so OSX builds don't get marked as failed
Fix build script so OSX builds don't get marked as failed
YAML
mit
jieliangma/OneAPM
b2a55d84f11d557078e5c36acba05fb622d46f48
.travis.yml
.travis.yml
language: python python: - "3.4" - "3.5" services: - rabbitmq # will start rabbitmq-server cache: - apt - pip before_install: - sudo apt-get -qq update - sudo /etc/init.d/postgresql stop - sudo apt-get install -y postgresql-9.4 - sudo apt-get install -y postgresql-plpython-9.4 - sudo /etc/init.d/pos...
language: python python: - "3.4" - "3.5" services: - rabbitmq # will start rabbitmq-server cache: - apt - pip before_install: - sudo apt-get -qq update - sudo /etc/init.d/postgresql stop - sudo apt-get install -y postgresql-9.4 - sudo apt-get install -y postgresql-plpython-9.4 - sudo /etc/init.d/pos...
Use postgresql 9.4 in TravisCI
Use postgresql 9.4 in TravisCI
YAML
agpl-3.0
taigaio/taiga-back,xdevelsistemas/taiga-back-community,dayatz/taiga-back,taigaio/taiga-back,xdevelsistemas/taiga-back-community,xdevelsistemas/taiga-back-community,dayatz/taiga-back,dayatz/taiga-back,taigaio/taiga-back
25b8e5847975abe019041484d8905f2f29c6216d
.travis.yml
.travis.yml
language: ruby before_install: gem install bundler --pre install: - gem update --system - bundle update script: xvfb-run rake rvm: - 1.9.3 - 2.0.0 - 2.1 - rbx-2 - jruby-19mode branches: only: - master matrix: allow_failures: - rvm: rbx-2 - rvm: jruby-19mode
language: ruby before_install: gem install bundler --pre install: - gem update --system - bundle update script: xvfb-run rake rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - rbx-2 - jruby-19mode branches: only: - master matrix: allow_failures: - rvm: rbx-2 - rvm: jruby-19mode
Add Ruby 2.2 on Travis
Add Ruby 2.2 on Travis
YAML
mit
tyabe/goatmail,tyabe/letter_opener-web,tyabe/goatmail,tyabe/goatmail,tyabe/letter_opener-web
72c6d368ccaf84d667f6fa5c43b3f4613951a9ee
.travis.yml
.travis.yml
# This will run on Travis' 'new' container-based infrastructure sudo: false # Whitelist branches: only: - master # Environment variables env: global: - DOXYFILE: $TRAVIS_BUILD_DIR/Doxygen # Install dependencies addons: apt: packages: - doxygen - doxygen-doc - doxygen-latex -...
# This will run on Travis' 'new' container-based infrastructure sudo: false dist: trusty # Whitelist branches: only: - master # Environment variables env: global: - DOXYFILE: $TRAVIS_BUILD_DIR/Doxygen # Install dependencies addons: apt: packages: - doxygen - doxygen-doc - doxygen-...
Use newer ubuntu version under CI, force clang in cmake.
Use newer ubuntu version under CI, force clang in cmake.
YAML
bsd-2-clause
twoporeguys/librpc,twoporeguys/librpc,twoporeguys/librpc,twoporeguys/librpc,twoporeguys/librpc,twoporeguys/librpc,twoporeguys/librpc,twoporeguys/librpc