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 |
|---|---|---|---|---|---|---|---|---|---|
f1c9c8ffb79145f75614cd9ac4d8dcf18d2bf3a0 | .travis.yml | .travis.yml | language: python
env:
global:
- USE_CONDA=false
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
matrix:
include:
- python: 2.7
env: USE_CONDA=true
- python: 3.4
env: USE_CONDA=true
install:
- |
set -ev
export TRAVIS_PYTHON=`which python`
export TRAVIS_PIP=`which pip`
i... | language: python
env:
global:
- USE_CONDA=false
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
matrix:
include:
- python: 2.7
env: USE_CONDA=true
- python: 3.4
env: USE_CONDA=true
install:
- |
set -ev
export TRAVIS_PYTHON=`which python`
export TRAVIS_PIP=`which pip`
i... | Enable full-stack tests on Travis-CI | Enable full-stack tests on Travis-CI
| YAML | bsd-3-clause | mdboom/asv,qwhelan/asv,spacetelescope/asv,edisongustavo/asv,qwhelan/asv,spacetelescope/asv,giltis/asv,waylonflinn/asv,spacetelescope/asv,pv/asv,airspeed-velocity/asv,airspeed-velocity/asv,pv/asv,airspeed-velocity/asv,pv/asv,giltis/asv,waylonflinn/asv,qwhelan/asv,pv/asv,giltis/asv,mdboom/asv,airspeed-velocity/asv,mdboom... |
953a3192d1eb3120f8575977306d19bf150dc489 | .travis.yml | .travis.yml | language: node_js
branches:
only:
- master
node_js:
- "0.12"
- "0.10"
- "4.3"
- stable
notifications:
email:
- vesa.poikajarvi@iki.fi
sudo: false
| language: node_js
branches:
only:
- master
node_js:
- "0.12"
- "0.10"
- "4.3"
- "6.9"
- stable
notifications:
email:
- vesa.poikajarvi@iki.fi
sudo: false
| Build with node 6.9 too | Build with node 6.9 too
| YAML | mit | vesse/passport-ldapauth,vesse/passport-ldapauth |
18a34c5ad9f3698e408d607814056d9b318ddf21 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
before_script:
- composer self-update
- composer install --dev --no-interaction
| language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4snapshot
before_script:
- composer self-update
- composer install --dev --no-interaction
| Allow Travis CI to build on PHP 7.4 | Allow Travis CI to build on PHP 7.4
| YAML | mit | RiskioFr/oauth2-auth0 |
44f8a8d172f8ae363c70406e74b4c95d94cfa7d1 | .travis.yml | .travis.yml | language: ruby
before_install:
- gem install bundler
gemfile:
- Gemfile
rvm:
- 2.0.0
- 2.1.10
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
script:
- bundle exec rspec spec
| language: ruby
before_install:
- gem install bundler
gemfile:
- Gemfile
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
script:
- bundle exec rspec spec
| Use the latest Rubies on Travis CI | Use the latest Rubies on Travis CI
| YAML | mit | koic/death-command |
40d94bbb21c0d072ae226b749bc295fcfc4296bc | .travis.yml | .travis.yml | language: dart
script: ./tool/travis.sh
# env:
# - DARTANALYZER_FLAGS=--fatal-warnings
| language: dart
script: ./tool/travis.sh
env:
- DARTANALYZER_FLAGS=--fatal-warnings
| Set analyzer warnings as errors in Travis CI script. | Set analyzer warnings as errors in Travis CI script.
| YAML | apache-2.0 | QuiverDart/quiver_optional,QuiverDart/quiver_iterables,QuiverDart/quiver_time,QuiverDart/quiver_mirrors,QuiverDart/quiver_async,QuiverDart/quiver_check,googlearchive/quiver_iterables,trinarytree/quiver-dart,QuiverDart/quiver_strings,cbracken/quiver-dart,QuiverDart/quiver_cache,googlearchive/quiver_pattern,EmmanuelOga/q... |
e944dd87ad019749eb1fec2ec9171c816236c8a4 | .travis.yml | .travis.yml | language: perl
sudo: false
perl:
- 5.14
- 5.16
- 5.18
- 5.20
- 5.22
- 5.24
matrix:
include:
- perl: 5.24
env: COVERAGE=1
before_install:
- eval $(curl https://travis-perl.github.io/init) --auto
| language: perl
sudo: false
perl:
- 5.14
- 5.16
- 5.18
- 5.20
- 5.22
- 5.24
- dev
matrix:
include:
- perl: 5.24
env: COVERAGE=1
before_install:
- eval $(curl https://travis-perl.github.io/init) --auto
| Add dev version of Perl to test against | Add dev version of Perl to test against
| YAML | mit | zakame/hashids.pm,zakame/hashids.pm |
56c5f44d5ea1f81d503205a3f58117c45720a238 | .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
- cp -r test/vulnerable-sites /var/www/vulnerable-sites
- pip install -r requirements... | 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
- cp -R test/vulnerable-sites /var/www/html/vulnerable-sites/
- pip install -r requir... | Copy vulnerable sites to apache document root recursively for Travis. | Copy vulnerable sites to apache document root recursively for Travis.
| YAML | mit | tijme/angularjs-csti-scanner,tijme/angularjs-sandbox-escape-scanner |
69969b3688e0305819ff12e51d04c9e7688d63cd | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
script:
- npm test | sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
| Remove script `npm test`, it'll automatically be run | Remove script `npm test`, it'll automatically be run
| YAML | mit | bookyacom/simple-soundcloud |
996e4d5f709f71285581a298bb7912bb9ccdb08a | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 5.5
- 5.4
- 7.0
cache:
directories:
- ~/.composer
before_script:
- phpenv config-add .travis.php.ini
- composer self-update
- composer install --prefer-dist
script:
- ant
branches:
only:
- master
| ## Run on container environment
sudo: false
language: php
php:
- 5.6
- 7
matrix:
include:
- php: 5.6
env: dependencies=lowest
- php: 7
env: dependencies=lowest
- php: 5.6
env: dependencies=highest
- php: 7
env: dependencies=highest
## Cache composer bits, where possible
cac... | Test only current/future PHP. Cache composer atifacts | Test only current/future PHP. Cache composer atifacts
Also testing lowest/current/highest versions of code.
* http://blog.wyrihaximus.net/2015/07/composer-cache-on-travis/
* http://blog.wyrihaximus.net/2015/06/test-lowest-current-and-highest-possible-on-travis/
| YAML | mit | alister/faker-extensions,alister/faker-extensions |
3ab59e3347d47bf27fc739c020458954c04ac15e | .travis.yml | .travis.yml | ---
language: ruby
script: "bundle exec qed -Ilib"
rvm:
- 1.9.2
- 1.9.3
- rbx-19mode
- jruby-19mode
| ---
language: ruby
script: "bundle exec qed -Ilib"
rvm:
- 1.9.3
- 2.0.0
- rbx
- jruby
| Add Ruby 2.0.0 to Travis CI. | Add Ruby 2.0.0 to Travis CI. [admin]
| YAML | bsd-2-clause | rubyworks/rubytest |
458ca5d92fbd8e8020cc95a939cd04d3af2b3268 | .travis.yml | .travis.yml | language: node_js
node_js:
- "stable"
| language: node_js
node_js:
- "stable"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/9fd34f7c5d010a31bab7
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [alw... | Configure Travis to call webhook on Gitter | Configure Travis to call webhook on Gitter
| YAML | bsd-2-clause | SpotScore/spotscore |
1020c021d4960c9d9007f1802b78e11e5df103c8 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: cpp
before_install:
- sudo apt-get update -qq
# Install ZeroMQ
- sudo apt-get install -y libzmq3-dev libzmq3
# Install Boost
- sudo apt-get install -y libboost-all-dev
# Install yaml-cpp
- sudo apt-get install -y libyaml-cpp0.5 libyaml-cpp-dev
# Install libcURL
-... | sudo: required
dist: trusty
language: cpp
before_install:
- sudo apt-get update -qq
# Install ZeroMQ
- sudo apt-get install -y libzmq3-dev libzmq3
# Install Boost
- sudo apt-get install -y libboost-all-dev
# Install yaml-cpp
- sudo apt-get install -y libyaml-cpp0.5 libyaml-cpp-dev
# Install libcURL
-... | Fix Isolate compilation in Travis | Fix Isolate compilation in Travis
| YAML | mit | ReCodEx/worker,ReCodEx/worker,ReCodEx/worker |
df1dd046d904a3a61081c675a59b1dd34ba61862 | .travis.yml | .travis.yml | language: nodejs
node_js:
- "4.1"
before_install:
- sudo add-apt-repository ppa:ubuntu-wine/ppa -y
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
- echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources... | language: nodejs
node_js:
- "4.1"
before_install:
- sudo add-apt-repository ppa:ubuntu-wine/ppa -y
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
- echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources... | Add other mono repo for Ubuntu 12.04 | Add other mono repo for Ubuntu 12.04
| YAML | mit | electronjs/windows-installer,mongodb-js/electron-installer-squirrel-windows |
0cf8ebcf106dd15ff2591ff1c220a692630975ff | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| sudo: false
language: node_js
node_js:
- '5'
- '4'
- '0.12'
- '0.10'
| Test on Node.js v5 and v4 | Test on Node.js v5 and v4
| YAML | mit | kevva/is-negative |
8631366dc47eb9665b4508ac7d79a54e4da2d09d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- step
- master
- travis-ci
install:
- for dir in compassion.*; do (cd $dir && yarn install --no-lockfile); done
- yarn install --no-lockfile
- yarn global add istanbul coveralls
- git checkout .
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- step
- master
- travis-ci
install:
- npm install -g npm
- for dir in compassion.*; do (cd $dir && npm install --no-package-lock --no-save); done
- npm install --no-package-lock --no-save
- npm install -g istanbul ... | Install with NPM 5 on Travis CI. | Install with NPM 5 on Travis CI.
| YAML | mit | bigeasy/compassion |
f12581c394d7513d63454d3b01315dd44fbe3930 | .travis.yml | .travis.yml | language: go
go:
- 1.1.2
- tip
install: true
before_install:
git submodule update --init --recursive
script: ./bin/test
| language: go
go:
- 1.1.2
- tip
install: true
before_install:
go get github.com/codegangsta/cli
go get github.com/stretchr/testify/assert
script: ./bin/test
| Add go get to Travis config | Add go get to Travis config
| YAML | mit | arvidsaur/cli,arvidsaur/cli,zabawaba99/cli,zabawaba99/cli,neslom/cli,neslom/cli,exercism/cli,Tonkpils/cli,yeah-right/cli,yeah-right/cli,arvidsaur/cli,yeah-right/cli,exercism/cli,Tonkpils/cli,lcowell/cli,zabawaba99/cli,lcowell/cli,Tonkpils/cli,lcowell/cli,neslom/cli |
26e840b3298bfac67816dff36578e7c448575100 | .travis.yml | .travis.yml | language: csharp
solution: ObjectDisposedFodyAddin.sln
install:
- nuget restore ObjectDisposedFodyAddin.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- dotnet build -c Release
- dotnet test -c Release ./src/Tests
| language: csharp
solution: ObjectDisposedFodyAddin.sln
mono: none
dotnet: 2.1.403
install:
- dotnet restore
script:
- dotnet build -c Release
- dotnet test -c Release ./src/Tests
| Use .NET core instead of Mono. | Use .NET core instead of Mono.
| YAML | mit | minidfx/ObjectDisposedFodyAddin |
938ad4979628ac0551504dd568793be5d1c75c8e | .travis.yml | .travis.yml | language: perl
perl:
- "5.10"
env:
PATH=~/.rakudobrew/bin:$PATH
install:
- git clone https://github.com/tadzik/rakudobrew ~/.rakudobrew
- rakudobrew build moar
- rakudobrew build-panda
- panda install URI
- panda install Pod::To::HTML
script:
- make test
| language: perl
perl:
- "5.10"
env:
PATH=~/.rakudobrew/bin:$PATH
install:
- git clone https://github.com/tadzik/rakudobrew ~/.rakudobrew
- rakudobrew build moar
- rakudobrew build-panda
- panda install URI
- panda install Pod::To::HTML
- panda install LWP::Simple
script:
- make te... | Add LWP::Simple to list of modules to install | Add LWP::Simple to list of modules to install
| YAML | artistic-2.0 | stmuk/perl6-examples,perl6/perl6-examples,Quinny/perl6-examples,perl6/perl6-examples,perl6/perl6-examples,shlomif/perl6-examples,shlomif/perl6-examples,stmuk/perl6-examples,stmuk/perl6-examples,shlomif/perl6-examples,shlomif/perl6-examples,shlomif/perl6-examples,Quinny/perl6-examples,perl6/perl6-examples,stmuk/perl6-ex... |
d1d2de48f72853552e3d3a751b3f178c5dc10ef5 | .travis.yml | .travis.yml | language: node_js
node_js:
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@~1.4.6'
matrix:
fast_finish: true
allow_failures:
- node_js: "0.11"
- node_js: "0.9"
- node... | language: node_js
node_js:
- "iojs-v2.2"
- "iojs-v2.1"
- "iojs-v2.0"
- "iojs-v1.8"
- "iojs-v1.7"
- "iojs-v1.6"
- "iojs-v1.5"
- "iojs-v1.4"
- "iojs-v1.3"
- "iojs-v1.2"
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TR... | Test up to `io.js` `v2.2` | Test up to `io.js` `v2.2` | YAML | mit | es-shims/object-is,ljharb/object-is |
21f8e31105444a2355e6d6ff1b531b939950dbde | .travis.yml | .travis.yml | sudo: false
language: rust
script:
- cargo build --verbose
- cargo test --verbose
- |
if [ $TRAVIS_RUST_VERSION == "nightly" ]; then
cargo install clippy && cargo clippy -- -Dclippy
fi
matrix:
fast_finish: true
# I'd love to just use travis-cargo for all this, but it's... | sudo: false
language: rust
script:
- cargo build --verbose
- cargo test --verbose
- |
if [ $TRAVIS_RUST_VERSION == "nightly" ]; then
cargo install clippy && cargo clippy -- -Dclippy
fi
matrix:
fast_finish: true
allow_failures:
- rust: nightly
# I'd love to ... | Allow nightly / clippy to fail | Allow nightly / clippy to fail
| YAML | apache-2.0 | portier/portier-broker,portier/portier-broker,portier/portier-broker,portier/portier-broker |
537c0b193a9c5e23cdae5d71d384ce713c5c3548 | .travis.yml | .travis.yml | language: rust
rust:
- nightly
addons:
apt:
packages:
- sqlite3
- libsqlite3-dev
env:
global:
- DATABASE_BUSY_TIMEOUT=250
- TEST_DATABASE_URL=/home/travis/lugh-test-database.sqlite
- TEST_LUGH_BIND=localhost:3000
- PATH="/home/travis/.cargo/bin:$PATH"
before_script:
- cargo insta... | language: rust
cache: cargo
rust:
- nightly
addons:
apt:
packages:
- sqlite3
- libsqlite3-dev
env:
global:
- DATABASE_BUSY_TIMEOUT=250
- TEST_DATABASE_URL=/home/travis/lugh-test-database.sqlite
- TEST_LUGH_BIND=localhost:3000
- PATH="/home/travis/.cargo/bin:$PATH"
before_script:
... | Enable Travis CI Cargo cache | Enable Travis CI Cargo cache
| YAML | mit | rlustin/lugh,rlustin/lugh,rlustin/lugh |
0a8e53f3a631812ef645c2a8b14a7016f4c4b611 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
| sudo: false
language: node_js
node_js:
- "6"
- "8"
- "10"
| Add 10 (lts), 11 (current); remove 4 (eol) | chore(NodeJS): Add 10 (lts), 11 (current); remove 4 (eol)
| YAML | mit | knalli/homebridge-pilight |
e34bec93b965eb30e838c551af09676a23fe9f60 | .travis.yml | .travis.yml | language: go
install:
- go get -t
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- $HOME/gopath/bin/goveralls -service=travis-ci -repotoken $COVERALLS_TOKEN
| language: go
install:
- go get -t
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- go test -race -v ./...
after_script:
- $HOME/gopath/bin/goveralls -service=travis-ci -repotoken $COVERALLS_TOKEN
| Fix the ci for pull-requests | Fix the ci for pull-requests
- Run tests as script (with race condition)
- Put `goverwalls` as `after_script` so a failure to upload the
coverage won't affect the status of the build
Signed-off-by: Vincent Demeester <87e1f221a672a14a323e57bb65eaea19d3ed3804@sbr.pm>
| YAML | bsd-3-clause | imdario/mergo |
f37591ee9f88d88e8332ca1c2583e078b7473350 | .travis.yml | .travis.yml | language: python
python:
- '3.5'
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
install:
- pip install tox
script:
- tox
| language: python
python:
- '2.6'
- '2.7'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
- pypy
install:
- pip install tox
script:
- tox -e py
| Test against Python 3.6 and PyPy | Test against Python 3.6 and PyPy
| YAML | mit | jwodder/javaproperties |
48ce31654bd3c034444f665f63fcd8afe5107927 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- jruby-19mode
- rbx-19mode
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- jruby
- rbx
install: "bundle install --retry=3"
| Disable parallel bundle install to fix rbx builds | Disable parallel bundle install to fix rbx builds
Travis CI uses `--jobs=3` by default which leads to corrupted gems on
rubinius. See https://github.com/travis-ci/travis-ci/issues/2821
| YAML | mit | vinnicc/dota,yielder/dota,mbesto/dota |
1274b59b8dc993918ee8afeff77ff0b5593e5a83 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=Django==1.4.2
- DJANGO=Django==1.5.0
install:
- pip install --use-mirrors $DJANGO
- pip install --use-mirrors coverage coveralls
script: coverage run -a --branch setup.py test
matrix:
include:
- python: 3.2
env: DJANGO=Django==1.5.0
- ... | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=Django==1.4.10
- DJANGO=Django==1.5.5
install:
- pip install --use-mirrors $DJANGO
- pip install --use-mirrors coverage coveralls
script: coverage run -a --branch setup.py test
matrix:
include:
- python: 3.2
env: DJANGO=Django==1.5.5
-... | Upgrade Django 1.4 and 1.5 versions in Travis | Upgrade Django 1.4 and 1.5 versions in Travis
| YAML | mit | treyhunner/django-email-log,treyhunner/django-email-log |
3d915d9490af8945309954f75afc1636a673242e | .travis.yml | .travis.yml | if: NOT (commit_message =~ /^\[docs\]/)
branches:
except:
- new-docs
addons:
chrome: stable
firefox: latest
apt:
packages:
- dbus
language: node_js
matrix:
include:
- node_js: "6"
env: GULP_TASK="test-server"
- node_js: "stable"
env: GULP_TASK="test-server"
- node_js: "stable"
env: GU... | if: NOT (commit_message =~ /^\[docs\]/ OR branch = 'new-docs')
addons:
chrome: stable
firefox: latest
apt:
packages:
- dbus
language: node_js
matrix:
include:
- node_js: "6"
env: GULP_TASK="test-server"
- node_js: "stable"
env: GULP_TASK="test-server"
- node_js: "stable"
env: GULP_TASK="te... | Disable tests on Travis for new-docs | Disable tests on Travis for new-docs | YAML | mit | VasilyStrelyaev/testcafe,miherlosev/testcafe,AndreyBelym/testcafe,AndreyBelym/testcafe,VasilyStrelyaev/testcafe,MargaritaLoseva/testcafe,VasilyStrelyaev/testcafe,AndreyBelym/testcafe,MargaritaLoseva/testcafe,miherlosev/testcafe,DevExpress/testcafe,VasilyStrelyaev/testcafe,VasilyStrelyaev/testcafe,miherlosev/testcafe,Ma... |
5251707a4a2ffe17edab3eb8060e0e41f0c30eb9 | .travis.yml | .travis.yml | language: php
matrix:
fast_finish: true
include:
- php: 5.3.3
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7
- php: hhvm
allow_failures:
- php: 7
before_install:
- composer selfupdate
install:
- sudo apt-get -y install pypy python-sphinx graphviz
- travis_retry compo... | language: php
matrix:
fast_finish: true
include:
- php: 5.3.3
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
env: CHECK_LINKS=true
- php: 7
- php: hhvm
allow_failures:
- php: 7
before_install:
- composer selfupdate
install:
- if [[ "$CHECK_LINKS" == "true" ]]; then sudo a... | Check links only on PHP 5.6 | Enhancement: Check links only on PHP 5.6
| YAML | mit | Targoniy/-json-schema-for-trip-api,ChrisTitos/json-schema,erayd/json-schema,JustTSK/json-schema,samokspv/json-schema,edisonthk/json-schema,siad007/json-schema,sam002/json-schema,richgarrod/json-schema,localheinz/json-schema,jojo1981/json-schema,justinrainbow/json-schema,robotdance/json-schema,araines/json-schema |
18efcd9754636ca364a7e2e9510297681271ede7 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
| language: node_js
node_js:
- "iojs"
- "0.12"
- "0.11"
- "0.10"
| Add io.js testing in Travis | Add io.js testing in Travis
| YAML | mit | resin-io/resin-image |
5a02cdda668fce07cb229db9d98ba8b094f618c1 | .travis.yml | .travis.yml | language: go
go:
- 1.9.x
install:
- go get github.com/magefile/mage
# We currently need the unreleased Hugo 0.33 to build.
- go get -d github.com/gohugoio/hugo
script:
- pushd $GOPATH/src/github.com/gohugoio/hugo
- mage vendor
- mage install
- popd
- hugo env
- hugo
| language: generic
before_install:
- wget https://github.com/gohugoio/hugo/releases/download/v0.33/hugo_0.33_Linux-64bit.deb
- sudo dpkg -i hugo_0.33_Linux-64bit.deb
- echo "6426dad5c5489b642ee9a635ef2c7239cad242fd1d65cc712a8fb815565362cd hugo_0.33_Linux-64bit.deb" | sha256sum -c - || exit 1;
install:
- hugo e... | Update Travis config to use Hugo 0.33 release version | Update Travis config to use Hugo 0.33 release version
| YAML | mpl-2.0 | letsencrypt/website,letsencrypt/website,letsencrypt/website |
82ea7227a4cfc12f2986513a2470de9980f809f6 | .travis.yml | .travis.yml | language: generic
sudo: required
script: swift test
matrix:
include:
- os: osx
osx_image: xcode9
- os: linux
dist: trusty
install:
- wget https://swift.org/builds/swift-4.0-release/ubuntu1404/swift-4.0-RELEASE/swift-4.0-RELEASE-ubuntu14.04.tar.gz
- tar xzf swift-4.0-RELEASE-u... | language: generic
sudo: required
script: swift test
matrix:
include:
- os: osx
osx_image: xcode11
- os: linux
dist: trusty
install:
- wget https://swift.org/builds/swift-5.1.3-release/ubuntu1404/swift-5.1.3-RELEASE/swift-5.1.3-RELEASE-ubuntu14.04.tar.gz
- tar xzf swift-5.1.3-... | Test against Swift 5 with Travis CI | Test against Swift 5 with Travis CI
| YAML | mit | Bouke/DNS |
b9fc2c41c6f8f44b32a1516b4d17988fb57c965a | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode9
matrix:
include:
- xcode_scheme: Gzip macOS
xcode_sdk: macosx
env: DESTINATION="arch=x86_64"
- xcode_scheme: Gzip iOS
xcode_sdk: iphonesimulator
env: DESTINATION="OS=10.0,name=iPhone SE"
script:
- swiftlint
- swift test
- xcodebuild
... | language: objective-c
osx_image: xcode9.1
matrix:
include:
- xcode_scheme: Gzip macOS
xcode_sdk: macosx
env: DESTINATION="arch=x86_64"
- xcode_scheme: Gzip iOS
xcode_sdk: iphonesimulator
env: DESTINATION="OS=10.0,name=iPhone SE"
script:
- swiftlint
- swift test
- xcodebuild
... | Update Xcode image for Travis CI to Xcode 9.1 | Update Xcode image for Travis CI to Xcode 9.1
| YAML | mit | 1024jp/NSData-GZIP,1024jp/GzipSwift,1024jp/GzipSwift,1024jp/NSData-GZIP,1024jp/GzipSwift |
63f7398a123757958f872cd861e18d079040d30b | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- pip install git+https://github.com/pytoolz/toolz.git
- pip install cython
- pip install nose
install:
- python setup.py build_ext --inplace
- python setup.py install
# commands to run tests
script:
- no... | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- pip install git+https://github.com/pytoolz/toolz.git
- pip install cython
install:
- python setup.py build_ext --inplace
- python setup.py install
# commands to run tests
script:
- nosetests --with-doctest ... | Use `nosestests` that comes with TravisCI (don't install via pip) | Use `nosestests` that comes with TravisCI (don't install via pip)
| YAML | bsd-3-clause | cpcloud/cytoolz,llllllllll/cytoolz,llllllllll/cytoolz,ljwolf/cytoolz,cpcloud/cytoolz,simudream/cytoolz,simudream/cytoolz |
02b652abee17b10bd79576a84788b14b5457aff4 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- 2.1.0
bundler_args: --jobs 7
branches:
only:
- master
script: bundle exec rake travis:ci
notifications:
hipchat:
on_change: true
on_failure: true
on_success: false
on_pull_requests: false
rooms:
# Build Statuses
- secure: IycrY52k8dhilnU3B2c8mem9L... | language: ruby
cache: bundler
sudo: false
rvm:
- 2.2.5
- 2.3.1
branches:
only:
- master
script: bundle exec rake travis:ci
| Test on modern Ruby and remove hip chat notifications | Test on modern Ruby and remove hip chat notifications
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef/mixlib-versioning,chef/mixlib-versioning |
438e1c0fbb9c2215d5f5e0b99615622e6210cbad | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
matrix:
fast_finish: true
allow_failures:
- php: 5.3
install:
- composer install --no-dev
- ./vendor/bin/phake app:install DB_NAME=tests CHOWN_USER=$USER CHGRP_GROUP=$USER
before_script:
- sh -e /etc/init.d/xvfb start
- e... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
matrix:
fast_finish: true
allow_failures:
- php: 5.3
install:
- composer install
- ./vendor/bin/phake app:install DB_NAME=tests CHOWN_USER=$USER CHGRP_GROUP=$USER
before_script:
- sh -e /etc/init.d/xvfb start
- export DI... | Use our PHPUnit in Travis | Use our PHPUnit in Travis
| YAML | mit | QoboLtd/project-template-wordpress,QoboLtd/project-template-wordpress,QoboLtd/project-template-wordpress,QoboLtd/project-template-wordpress |
ae5d30c34f097264cf0e71ea770f9560858a75eb | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.2
services:
- redis-server
script:
- bin/rake db:migrate RAILS_ENV=test
- CODECLIMATE_REPO_TOKEN=1898c1592d89355927dfccc9815ec3f91fa5fa32e2eb1333977b008d4c9e96dc bundle exec rake
branches:
only: master | language: ruby
rvm:
- 2.2.2
services:
- redis-server
script:
- bin/rake db:migrate RAILS_ENV=test
- CODECLIMATE_REPO_TOKEN=1898c1592d89355927dfccc9815ec3f91fa5fa32e2eb1333977b008d4c9e96dc bundle exec rake
| Update Travis configuration to test with all branch | Update Travis configuration to test with all branch
| YAML | mit | riseshia/Bonghwa,riseshia/Bonghwa,riseshia/Bonghwa,riseshia/Bonghwa |
b504ec6bfd33da8f80f5c0ec7a08e5c2d4181814 | .travis.yml | .travis.yml | language: python
# See tox.ini for env list
env:
- TOXENV=py27-django14
- TOXENV=py27-django15
- TOXENV=py27-django16
- TOXENV=py27-django17
- TOXENV=py27-django18
- TOXENV=py33-django15
- TOXENV=py33-django16
- TOXENV=py33-django17
- TOXENV=py33-django18
- TOXENV=py34-django15
- TOXENV=py34-django16
- TOXENV=py34-djan... | language: python
# See tox.ini for env list
env:
- TOXENV=py27-django14
- TOXENV=py27-django15
- TOXENV=py27-django16
- TOXENV=py27-django17
- TOXENV=py27-django18
- TOXENV=py33-django15
- TOXENV=py33-django16
- TOXENV=py33-django17
- TOXENV=py33-django18
- TOXENV=py34-django15
- TOXENV=py34-django16
- TOXENV=py34-djan... | Allow TravisCI to use container infrastructure, for faster builds | Allow TravisCI to use container infrastructure, for faster builds
| YAML | mit | GamesDoneQuick/django-paypal,Parisson/django-paypal,drfraser/django-paypal,frankier/django-paypal,rsalmaso/django-paypal,philippeowagner/django-paypal-1,pydanny/django-paypal,spookylukey/django-paypal,spookylukey/django-paypal,patathor/django-paypal,philippeowagner/django-paypal-1,spookylukey/django-paypal,millanp/djan... |
d121334843ec0f5d1dc0992c891b6b2fe778eace | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
env:
- SYMFONY_VERSION=2.5.*
matrix:
include:
- php: 5.5
env: SYMFONY_VERSION=2.3.*
- php: 5.5
env: SYMFONY_VERSION=2.4.*
- php: 5.5
env: SYMFONY_VERSION=2.6.*
before_script:
- composer self-update
- composer... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache
env:
- SYMFONY_VERSION=2.6.*
matrix:
include:
- php: 5.6
env: SYMFONY_VERSION=2.3.*
- php: 5.6
env: SYMFONY_VERSION=2.5.*
- php: 5.6
env: SYMFO... | Test against newest PHP and Symfony versions | Test against newest PHP and Symfony versions | YAML | mit | symfony-cmf/TreeBrowserBundle,symfony-cmf/TreeBrowserBundle,symfony-cmf/TreeBrowserBundle,symfony-cmf/TreeBrowserBundle |
44f5a3fc2ccef0b4bf1f3fa1cce5a1b0d64d5da4 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.3"
- "5.6"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
| language: node_js
node_js:
- "4.3"
- "5.6"
env:
- CXX=g++-5
- CC=gcc-5
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
| Set environnement variables for tests | Set environnement variables for tests
| YAML | mit | cedced19/pouicpouic,cedced19/pouicpouic |
de4ccc3fae21187d87b050b438f291e05bae8e94 | .travis.yml | .travis.yml | # octocatalog-diff
language: ruby
install: true
script: "script/cibuild"
matrix:
include:
# Build with latest ruby
- rvm: 2.4.1
env: RUBOCOP_TEST="true" RSPEC_TEST="true"
# Build with older ruby versions
- rvm: 2.3.4
env: RUBOCOP_TEST="false" RSPEC_TEST="true"
- rvm: 2.2
env: R... | # octocatalog-diff
language: ruby
install: true
script: "script/cibuild"
dist: precise
matrix:
include:
# Build with latest ruby
- rvm: 2.4.1
env: RUBOCOP_TEST="true" RSPEC_TEST="true"
# Build with older ruby versions
- rvm: 2.3.4
env: RUBOCOP_TEST="false" RSPEC_TEST="true"
- rvm: 2.... | Add flag to build on precise for now | Add flag to build on precise for now
| YAML | mit | github/octocatalog-diff,github/octocatalog-diff,github/octocatalog-diff |
34698751f23be028cf7f04b005001158d5346523 | .travis.yml | .travis.yml | language: node_js
node_js:
- "8"
services:
- xvfb
before_script:
- yarn danger ci
- npm install grunt-cli -g
- "export DISPLAY=:99.0"
- sleep 5
script:
- grunt
- npm run test:unit
- npm run test:e2e
after_script:
- npm list
cache:
directories:
- node_modules
| dist: trusty
language: node_js
node_js:
- "8"
before_script:
- yarn danger ci
- npm install grunt-cli -g
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 5
script:
- grunt
- npm run test:unit
- npm run test:e2e
after_script:
- npm list
cache:
directories:
- node_modules
| Fix Build Failed in Travis CI: | Fix Build Failed in Travis CI:
This commit set trusty as image to use and revert this commit changes
Add xvfb as service: 3c31460f2fd193864fdc69781d8041f1626b6937
Remove failing script: d5cb60b19cea7851b0d42ee2d028b136b08a6ec1
| YAML | mit | roramirez/MagicMirror,roramirez/MagicMirror,n8many/MagicMirror,Tyvonne/MagicMirror,n8many/MagicMirror,MichMich/MagicMirror,MichMich/MagicMirror,Tyvonne/MagicMirror,n8many/MagicMirror,MichMich/MagicMirror,MichMich/MagicMirror,Tyvonne/MagicMirror,Tyvonne/MagicMirror,roramirez/MagicMirror,n8many/MagicMirror,roramirez/Magi... |
ab3c54514bc5f18557a364199b6125535dfc8984 | .travis.yml | .travis.yml | language: generic
env:
- OCAML=4.02.3
- OCAML=4.02.3+buckle-master
- OCAML=4.03.0
- OCAML=4.04.2
- OCAML=4.05.0
- OCAML=4.06.1
- OCAML=4.07.0
before_script:
- sudo add-apt-repository -y ppa:robert7/tidy-html5
- sudo add-apt-repository -y ppa:avsm/ocaml42+opam12
- sudo apt-get update
- sudo apt-g... | language: generic
env:
- OCAML=4.02.3
- OCAML=4.02.3+buckle-master
- OCAML=4.03.0
- OCAML=4.04.2
- OCAML=4.05.0
- OCAML=4.06.1
- OCAML=4.07.0
before_script:
- sudo add-apt-repository -y ppa:robert7/tidy-html5
- sudo apt-get update
- sudo apt-get install tidy
- wget https://github.com/ocaml/opam/... | Use opam 2 in Travis | Use opam 2 in Travis
opam 1.2 cannot access new packages, which are published only in the
opam 2 repo.
| YAML | isc | ocaml-doc/odoc,ocaml-doc/odoc |
6e5ab5ee55c9e7cff6be0b36610544e143034273 | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
- oraclejdk9
cache:
directories:
- $HOME/.gradle
| language: java
sudo: false
jdk:
- openjdk7
- oraclejdk8
- oraclejdk9
cache:
directories:
- $HOME/.gradle
install:
# If the build targets Java 7, we need to temporarily switch to Java 9 to
# install the Gradle wrapper and to avoid an InvalidKeyException
- if [[ $JAVA_HOME =~ "java-7" ]]; then
jd... | Fix CI tests for Java 7 | Fix CI tests for Java 7
| YAML | apache-2.0 | michel-kraemer/bson4jackson |
1e42b0fb3b4f7d33b619e2a7ce16a4c3080cccf9 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
script:
- npm run ci
| language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
script:
- npm run ci
| Drop node 4 support, add node 10 support. | Drop node 4 support, add node 10 support.
| YAML | mit | stampit-org/stamp,stampit-org/stamp |
edd2c6a6fe99ca94399bdc1406ee5bc5fc526ea5 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
os:
- linux
install:
- pip install flake8
- pip install coveralls
before_script:
- "flake8 --show-source --max-line-length=80 --statistics --builtins=_ pubkey"
script:
- python setup.py install
- python setup.py sdist
- pubkey --help
- pubkey --version
- pubkey --deb... | language: python
python:
- "3.4"
os:
- linux
install:
- pip install flake8
- pip install coveralls
before_script:
- "flake8 --show-source --max-line-length=80 --statistics --builtins=_ pubkey"
script:
- python setup.py install
- python setup.py sdist
- pubkey --help
- pubkey --version
- pubkey --deb... | Add minimal deployment test logic | Add minimal deployment test logic
| YAML | mit | fxstein/pubkey |
e51f75fcc3a4e38a8860ef3aa99075bb29607e30 | .travis.yml | .travis.yml | sudo: required
services:
- docker
env:
DOCKER_COMPOSE_VERSION: 1.6.0
before_install:
- sudo apt-get update
- sudo apt-get install -qqy docker-engine
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`un... | sudo: required
services:
- docker
env:
DOCKER_COMPOSE_VERSION: 1.6.0
before_install:
- sudo apt-get update
- Y | sudo apt-get install -qqy docker-engine
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`... | Test auto answer Y during docker update | Test auto answer Y during docker update
| YAML | mit | sirateck/devops-magento2 |
e25e28b4d5c7dbf802abf397fa684a0a68324e24 | .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
install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail && xcodebuild test -workspace Example/BonMot.xcworkspace -scheme BonMo... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode7.3
install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail && xcodebuild test -workspace Example/BonMot.xcworkspace -scheme BonMo... | Stop using xcpretty, which may be masking the reason behind the exit code 65 intermittent build failures. | Stop using xcpretty, which may be masking the reason behind the exit code 65 intermittent build failures.
| YAML | mit | Raizlabs/BonMot,Raizlabs/BonMot,Raizlabs/BonMot |
6d1f646ec7c5d4adf374ded876fe1f0649902a86 | .travis.yml | .travis.yml | ---
# Verify this with: http://lint.travis-ci.org/
language: ruby
# Delete dependency locks for matrix builds.
before_install: rm Gemfile.lock || true
script: bundle exec rake test
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
env:
matrix:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION="~> 3.1.0"
- PUPPET_VERSION="~> 3.2.0"... | ---
# Verify this with: http://lint.travis-ci.org/
language: ruby
# Delete dependency locks for matrix builds.
before_install: rm Gemfile.lock || true
script: bundle exec rake test
rvm:
- 1.9.3
env:
matrix:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION="~> 3.1.0"
- PUPPET_VERSION="~> 3.2.0"
- PUPPET_VERSION=... | Remove older version of Ruby from Travis | Remove older version of Ruby from Travis
Drop versions 1.8.7 and 1.9.2 from the Travis matrix, because
the latest version of the `retriable` gem (which comes from Beaker)
requires at least Ruby 1.9.3.
| YAML | apache-2.0 | gds-operations/puppet-graphite,gds-operations/puppet-graphite |
c53ddcc8a56657f2baeaf6feee4796b7157580a9 | .travis.yml | .travis.yml | sudo: false
dist: trusty
addons:
apt:
packages:
- tidy
- tcl
- tk
install: bundle install --without=benchmark
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.3.4
- 2.4.1
- rbx-3.81
- ruby-head
notifications:
email: false
| sudo: false
dist: trusty
addons:
apt:
packages:
- tidy
- tcl
- tk
install: bundle install --without=benchmark
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
- rbx-3.81
- ruby-head
notifications:
email: false
| Test against new Ruby 2.5 | [CI] Test against new Ruby 2.5 | YAML | mit | kaneshin/redcarpet,vmg/redcarpet,increments/greenmat,fukayatsu/redcarpet,increments/greenmat,fukayatsu/redcarpet,fukayatsu/redcarpet,kaneshin/redcarpet,kaneshin/redcarpet,vmg/redcarpet,increments/greenmat,kaneshin/redcarpet,increments/greenmat,vmg/redcarpet,vmg/redcarpet,fukayatsu/redcarpet |
ee86eebc25af816d48ae4200d0a0783a17919d50 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4.0"
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob... | sudo: false
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4.0"
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/co... | Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation. | Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation.
| YAML | mit | cliffano/bagofcli |
cf8f7b6a38abe33ba8cd118542da42acf487b46d | .travis.yml | .travis.yml | rvm:
- 1.9.2
- 1.8.7
branches:
only:
- 4.0.0
env:
- DB=postgres
- DB=mysql
- DB=sqlite3
gemfile:
- gemfiles/Gemfile.rails-3.0.rb
- gemfiles/Gemfile.rails-3.1.rb
script: "bundle exec rake db:reset db:up test"
| rvm:
- 1.9.2
- 1.8.7
- jruby
branches:
only:
- 4.0.0
env:
- DB=postgres
- DB=mysql
- DB=sqlite3
gemfile:
- gemfiles/Gemfile.rails-3.0.rb
- gemfiles/Gemfile.rails-3.1.rb
script: "bundle exec rake db:reset db:up test"
| Add JRuby to tested rubies | Add JRuby to tested rubies
| YAML | mit | MatthewRDodds/friendly_id,sideci-sample/sideci-sample-friendly_id,tekin/friendly_id,Pathgather/friendly_id,kangkyu/friendly_id,onursarikaya/friendly_id,norman/friendly_id,Empact/friendly_id,zenhacks/friendly_id,joshsoftware/friendly_id,morsedigital/friendly_id,ThanhKhoaIT/friendly_id,ashagnanasekar/friendly_id,MAubreyK... |
e16f95cdd23ba2c549ed293ebf0f55ae5d5aad24 | packages/pi/pipes-lzma.yaml | packages/pi/pipes-lzma.yaml | homepage: http://github.com/bgamari/pipes-lzma
changelog-type: ''
hash: e704705165de18fd9c7ae84fc12a2e8c9b6409da34c65f5579cd3d2431d3fbd2
test-bench-deps: {}
maintainer: ben@smart-cactus.org
synopsis: LZMA compressors and decompressors for the Pipes package
changelog: ''
basic-deps:
bytestring: ==0.10.*
base: ! '>=4... | homepage: http://github.com/bgamari/pipes-lzma
changelog-type: ''
hash: 3e01e58f9dade8355a7dd2abc54a030001afb335064ac64cffb435f6ab13e443
test-bench-deps: {}
maintainer: ben@smart-cactus.org
synopsis: LZMA compressors and decompressors for the Pipes package
changelog: ''
basic-deps:
bytestring: ==0.10.*
base: ! '>=4... | Update from Hackage at 2016-06-05T06:47:20+0000 | Update from Hackage at 2016-06-05T06:47:20+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
48694fed52208a0d73345aaab844ded331cf5825 | packages/qu/quiver-csv.yaml | packages/qu/quiver-csv.yaml | homepage: https://github.com/zadarnowski/quiver-csv
changelog-type: ''
hash: 45ed0aea590e7044c7fb958dadc2d45e2b9e72a7355aa28fe702a53c74111b3f
test-bench-deps: {}
maintainer: Patryk Zadarnowski <pat@jantar.org>
synopsis: Quiver combinators for cellular CSV data processing
changelog: ''
basic-deps:
bytestring: ! '>=0.1... | homepage: https://github.com/zadarnowski/quiver-csv
changelog-type: ''
hash: dd389f7e765712ee78032d7146c17545dcddc1201083400435a9cd7f380bf06d
test-bench-deps: {}
maintainer: Patryk Zadarnowski <pat@jantar.org>
synopsis: Quiver combinators for cellular CSV data processing
changelog: ''
basic-deps:
bytestring: ! '>=0.1... | Update from Hackage at 2015-08-04T02:18:37+0000 | Update from Hackage at 2015-08-04T02:18:37+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
1e66b36943b46e91fe661629ab1886ed1659f71b | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- 6
- 8
- 10
- 11
os:
- linux
- osx
script:
- npm run ci | language: node_js
sudo: false
node_js:
- 8
- 10
- 11
os:
- linux
- osx
script:
- npm run test
| Fix why does Travis always fail on me | Fix why does Travis always fail on me
Is it because we export an async function
on index.js line 17
(and call a script that doesn't exist)
| YAML | mit | davidmarkclements/0x |
859a783ee1ec48a7b48a7e13386a1d0c05dc6115 | .travis.yml | .travis.yml | ---
language: ruby
bundler_args: --without system_tests --jobs 3 --retry 3
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
sudo: false
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION=... | ---
language: ruby
bundler_args: --without system_tests --jobs 3 --retry 3
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
sudo: false
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.0.0
en... | Remove support for Puppet 2.7 | Remove support for Puppet 2.7
| YAML | apache-2.0 | dhoppe/puppet-puppet,dhoppe/puppet-puppet |
00b5cb670044e2bb52b25b0acb22a22643f2c9a3 | packages/pl/ploterific.yaml | packages/pl/ploterific.yaml | homepage: http://github.com/GregorySchwartz/ploterific#readme
changelog-type: ''
hash: 9e2a85bff62e5c60159de48eb03ed4f050266991bd5e19b08ac1a9dce999dbef
test-bench-deps: {}
maintainer: gsch@pennmedicine.upenn.edu
synopsis: Basic plotting of tabular data for the command line.
changelog: ''
basic-deps:
bytestring: -any
... | homepage: http://github.com/GregorySchwartz/ploterific#readme
changelog-type: ''
hash: e46261efb88bf7d048306fea1b81a16ac7874ec85a11178bd02e9ef647306779
test-bench-deps: {}
maintainer: gsch@pennmedicine.upenn.edu
synopsis: Basic plotting of tabular data for the command line.
changelog: ''
basic-deps:
bytestring: -any
... | Update from Hackage at 2021-05-20T15:29:26Z | Update from Hackage at 2021-05-20T15:29:26Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
0956931c94d3ee3b4cfde386c2cd12aa04211c8c | packages/sd/sdl2-image.yaml | packages/sd/sdl2-image.yaml | homepage: ''
changelog-type: markdown
hash: 3ef2860a80d31d54c20ce50033f03a48d6e76ba41d7f4d61777fe88b29f8159a
test-bench-deps: {}
maintainer: cailei@live.com
synopsis: Haskell binding to sdl2-image.
changelog: ! '## v0.1.3.1
- add ''this'' change-log file
## v0.1.3.0
- bump dependency version to support sdl2 1... | homepage: ''
changelog-type: markdown
hash: 7d5c7c825727632ac1837672db01522aaff0819291f4794b8d9254ec8245d380
test-bench-deps: {}
maintainer: cailei@live.com
synopsis: Haskell binding to sdl2-image.
changelog: ! '## v0.1.3.2
- add support for ''base-4.8''
## v0.1.3.1
- add ''this'' change-log file
## v0.1.... | Update from Hackage at 2015-07-08T11:19:16+0000 | Update from Hackage at 2015-07-08T11:19:16+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
cc2891bb07f193bb98713b2b20c4403a572bc2df | .travis.yml | .travis.yml | language: "node_js"
node_js:
- "0.10"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true'
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-cov-to-coveralls"
| language: "node_js"
node_js:
- "0.10"
- "0.8"
# - "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true'
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-cov-to-coveralls"
| Disable Node 0.6 on Travis CI. | Disable Node 0.6 on Travis CI.
| YAML | mit | jaredhanson/node-multihash |
f8464a190df0b38c7d879a5fd47371aff8989706 | .travis.yml | .travis.yml | language: go
go:
- 1.9.3
- 1.8.6
sudo: false
script:
- go vet ./...
- go test ./...
| language: go
go:
- "1.10"
- 1.9.4
sudo: false
script:
- go vet ./...
- go test ./...
| Build against 1.10 and 1.9.4 | Build against 1.10 and 1.9.4 | YAML | mit | TV4/mms |
bbd3f7d2efc0cf769e851da851ffc7fddaaa5fca | .travis.yml | .travis.yml | sudo: false
addons:
postgresql: "9.4"
language: node_js
node_js:
- 4.4.5
install:
- rvm use 2.2.2 --install --binary --fuzzy
- npm install elm --global
- make install
before_script:
- bundle exec rake db:create db:migrate
script:
- bundle exec rake
- make test
notifications:
email: false
| sudo: false
cache:
bundler: true
addons:
postgresql: "9.4"
language: node_js
node_js:
- 4.4.5
install:
- rvm use 2.2.2 --install --binary --fuzzy
- npm install elm --global
- make install
before_script:
- bundle exec rake db:create db:migrate
script:
- bundle exec rake
- make test
notifications... | Add rubygem cache on CI | Add rubygem cache on CI
| YAML | agpl-3.0 | hackathing/tea-and-pronouns,hackathing/tea-and-pronouns,hackathing/tea-and-pronouns |
c5ce7951322dacfa976a048435c3a6e1a2311376 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache:
- bundler
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
before_install: gem install bundler -v 1.10.6
env:
matrix:
- RAILS_VERSION="~> 4.2"
- RAILS_VERSION="~> 5.0.0"
matrix:
exclude:
- rvm: 2.4.0
env: RAILS_VERSION="~> 4.2" # Rails 4.2 depends on json gem 1.8. However i... | language: ruby
sudo: false
cache:
- bundler
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
before_install: gem install bundler -v 1.10.6
env:
matrix:
- RAILS_VERSION="~> 4.2"
- RAILS_VERSION="~> 5.0.0"
| Test on Ruby 2.4.0 & Rails 4.2 | Test on Ruby 2.4.0 & Rails 4.2
Now json gem 1.8.6 that works with Ruby 2.4.0 is released.
| YAML | mit | ursm/json_api_params,ursm/json_api_params |
2b353874ecf6d5675d758323a4577ccb01bc4538 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.12'
install:
- npm install
- bower install
before_script:
- chmod +x ./scripts/deploy.sh
script:
- gulp test
- gulp docs:clean
- gulp docs:build
- gulp build
after_success:
- bash ./scripts/deploy.sh
env:
global:
- GH_REF: github.com/fluanceit/angular-dashboard.git
- GH_BOWER_REF: ... | language: node_js
node_js:
- '6'
install:
- npm install
- bower install
before_script:
- chmod +x ./scripts/deploy.sh
script:
- gulp test
- gulp docs:clean
- gulp docs:build
- gulp build
after_success:
- bash ./scripts/deploy.sh
env:
global:
- GH_REF: github.com/fluanceit/angular-dashboard.git
- GH_BOWER_REF: git... | Update nodejs to version 6 | Update nodejs to version 6 | YAML | apache-2.0 | fluanceit/angular-dashboard,fluanceit/angular-dashboard,fluanceit/angular-dashboard |
3bbf2fa737098c4b9dd3544d8be1abfe489edde7 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.8"
| language: node_js
node_js:
- "0.10"
# - "0.8"
| Disable Travis 0.8 build until upstream bug fixed | Disable Travis 0.8 build until upstream bug fixed
Cannot npm install grunt-contrib-jshint due to this
https://github.com/Raynos/console-browserify/issues/6
| YAML | apache-2.0 | MADAR15/IoT-Modeler,ppillip/node-red,drwoods/node-red,fcollova/node-red,nuroglu/cloudgate,anusornc/node-red,cloudfoundry-community/node-red-cf-ready,btsimonh/node-red,knolleary/node-red,zcpara/robot_gui_program,fpt-software/seniot-data-workflow,Tizen-Sunfish/ehf-node-red,nuroglu/cloudgate,redconnect-io/node-red,lostint... |
afeabb50aa7c59d9823e587d74b47039fcb0f82a | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
## Cache composer
sudo: false
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer install --prefer-dist --no-interaction
script: vendor/bin/phpspec run
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
## Cache composer
sudo: false
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer install --prefer-dist --no-interaction
script: vendor/bin/phpspec run
| Drop support for hhvm and add PHP 7.1 and 7.2 | Drop support for hhvm and add PHP 7.1 and 7.2
| YAML | mit | antonioribeiro/google2fa,antonioribeiro/google2fa |
909cbfce303707f4fdba0546da31813e988ecf18 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
env:
- DJANGO_VERSION=1.4
- DJANGO_VERSION=1.5
- DJANGO_VERSION=1.6
- DJANGO_VERSION=1.7
install:
- pip install -q Django==$DJANGO_VERSION
- pip install -r requirements.txt
- pip install .
script:
- make lint
- make test
| language: python
python:
- "2.7"
env:
- DJANGO_VERSION=1.4.19
- DJANGO_VERSION=1.5.12
- DJANGO_VERSION=1.6.10
- DJANGO_VERSION=1.7.5
install:
- pip install -q Django==$DJANGO_VERSION
- pip install -r requirements.txt
- pip install .
script:
- make lint
- make test
| Use latest point releaes of Django for tests | Use latest point releaes of Django for tests
| YAML | mit | AMeng/django-single-model-admin |
7c3fb7e18aa388ec8830c6ca4639fb24bae7aa81 | .travis.yml | .travis.yml | env:
- GHCVER=7.4.2 CABALVER=1.16
- GHCVER=7.6.3 CABALVER=1.18
- GHCVER=head CABALVER=1.18
before_install:
- sudo add-apt-repository -y ppa:hvr/ghc
- sudo apt-get update
- sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER hlint
- cabal-$CABALVER update
- cabal-$CABALVER install happy -j
- export PATH=... | env:
- GHCVER=7.4.2 CABALVER=1.16
- GHCVER=7.6.3 CABALVER=1.18
- GHCVER=head CABALVER=1.18
before_install:
- sudo add-apt-repository -y ppa:hvr/ghc
- sudo apt-get update
- sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER hlint
- cabal-$CABALVER update
- cabal-$CABALVER install happy -j
- export PATH=... | Install cabal into /usr/bin and show server log | Install cabal into /usr/bin and show server log
| YAML | bsd-3-clause | bennofs/ghc-server |
2c7e2435804d17dda011114e23867581887898b4 | .travis.yml | .travis.yml | language: ruby
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: jruby-20mode
- rvm: rbx-2
fast_finish: true
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- jruby-19mode
- jruby-20mode
- rbx-2
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1.4
- 2.1.5
- 2.2.0
- jruby-19mode
- rbx-2
| Remove support for ruby < 1.9.3 | Remove support for ruby < 1.9.3
| YAML | mit | sermo/purview,jzaleski/purview |
40109c646c4fb51ae7d463f0272e6c47b75dabc6 | .travis.yml | .travis.yml | before_install: sudo apt-get install libzmq3-dev
script: bundle exec rspec
language: ruby
rvm:
- 1.9
- 2.0
- 2.1
- rbx-2
notifications:
email: false
irc:
channels:
- "chat.freenode.net#wires" | before_install:
"git clone https://github.com/$LIBZMQ_REPO libzmq \
&& cd libzmq \
&& ./autogen.sh \
&& ./configure --with-pgm \
&& make \
&& sudo make install ... | Add second dimension to Travis CI build matrix - libzmq version 3 and 4 | Add second dimension to Travis CI build matrix - libzmq version 3 and 4
| YAML | mit | jemc/0mq |
2dd3cf47775edb9a2d2d2ba911d976656b56aa1a | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.3.1
- 2.2.5
- 2.1.9
addons:
apt:
packages:
- libicu-dev
before_script:
- git config --global user.email "test@example.com"
- git config --global user.name "Test"
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.3
- 2.2.6
- 2.1.9
addons:
apt:
packages:
- libicu-dev
before_script:
- git config --global user.email "test@example.com"
- git config --global user.name "Test"
| Test with latest Ruby versions | Test with latest Ruby versions
| YAML | mit | jbox-web/gitolite |
8cfe73bb206c1413fa05e531d9979e2dc6e41398 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.6.0-rc2
- 2.5.3
- 2.4.5
- 2.3.8
- jruby-9.2.5.0
before_install:
- gem update --system
- gem install bundler --no-document
after_success:
- bundle exec codeclimate-test-reporter
| language: ruby
cache: bundler
sudo: false
rvm:
- 2.6.0
- 2.5.3
- 2.4.5
- 2.3.8
- jruby-9.2.5.0
before_install:
- gem update --system
- gem install bundler --no-document
after_success:
- bundle exec codeclimate-test-reporter
| Test with Ruby 2.6 final | Test with Ruby 2.6 final
| YAML | mit | jbox-web/simple_navigation_bootstrap |
80186ba5cfc4830fc57a16eca0d404220006b939 | .travis.yml | .travis.yml | language: bash
sudo: required
os:
- osx
osx_image: xcode11
script:
- chmod a+x setup.sh && source setup.sh
- command -v brew
- command -v npm
- command -v yarn
- command -v node
| language: bash
sudo: required
os:
- osx
osx_image: xcode11
script:
- chmod a+x setup.sh && source setup.sh
- command -v brew
- command -v npm
- command -v node
| Remove command to check if yarn exists | Remove command to check if yarn exists
| YAML | mit | ruchern/dotfiles,ruchern/dotfiles |
3e139b7a81fa829c4687b4c9f21007079ac53a09 | .travis.yml | .travis.yml | language: php
# php compatibility
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
before_script:
- travis_retry composer install --no-interaction
- travis_retry php scr... | language: php
# php compatibility
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
before_script:
- travis_retry composer install --no-interaction --prefer-dist
- travis... | Add --prefer-dist to composer install | Add --prefer-dist to composer install
| YAML | mit | eclipxe13/sepomexphp |
0b4c11ab509c10833c505c13f82c7a3240446576 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "0.11"
- "0.10"
- "4.1"
- "4.0"
before_install:
- npm install -g bower
- npm install
- bower install -f
# Run tests.
script:
- gulp lint
- node_modules/karma/bin/karma start | language: node_js
sudo: false
node_js:
- "0.11"
- "0.10"
- "4.1"
- "4.0"
before_install:
- npm install -g bower
- npm install
- bower install -f
# Run tests.
script:
- gulp lint
- node_modules/karma/bin/karma start
- bin/find-windows-line-breaks
| Add check for windows line endings as part of CI build | Add check for windows line endings as part of CI build
| YAML | mit | partnermarketing/pm-image-editor,partnermarketing/pm-image-crop,partnermarketing/pm-image-editor,partnermarketing/pm-image-editor,partnermarketing/pm-image-crop,partnermarketing/pm-image-crop |
f8dfba62dad751c723aaf99a6f11444f4fe52b1b | .travis.yml | .travis.yml | sudo: required
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=smoke-package-stable-centos-6
- INSTANCE=smoke-pa... | sudo: required
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
# - INSTANCE=smoke-package-stable-centos-6 # terribly slow; ta... | Disable Centos 6 in Travis as it takes too long | Disable Centos 6 in Travis as it takes too long
Signed-off-by: Josh Barker <88d7d21fa8a250d4e915db098658a3f5a42acdfb@gmail.com>
| YAML | apache-2.0 | chef-cookbooks/jenkins,opscode-cookbooks/jenkins,opscode-cookbooks/jenkins,gshively11/jenkins,chef-cookbooks/jenkins,gshively11/jenkins,chef-cookbooks/jenkins,opscode-cookbooks/jenkins,gshively11/jenkins |
bd71d3f4fafef4bf2ef26f3108191692f6a7e930 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
sudo: required
dist: trusty
addons:
postgresql: "9.4"
services:
- postgresql
virtualenv:
system_site_packages: true
# install prerequisites
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y build-essential python-numpy python-scipy libgdal1h libhdf5-dev lib... | language: python
python:
- "2.7"
sudo: required
dist: trusty
addons:
postgresql: "9.4"
services:
- postgresql
virtualenv:
system_site_packages: true
# install prerequisites
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y build-essential python-numpy python-scipy libgdal1h libhdf5-dev lib... | Fix for postgis extension error. | Fix for postgis extension error. | YAML | mit | nasa/RHEAS |
addd8e9dd951b50d85650cfb73f1c9d786017866 | .travis.yml | .travis.yml | language: python
python:
- "3.6"
- "3.5"
- "3.4"
- "2.7"
# Install dependencies
install: pip install .
# command to run tests
script: py.test
# Enable new Travis stack, should speed up builds
sudo: false
| language: python
python:
- "3.6"
- "3.5"
- "3.4"
- "2.7"
# Install dependencies
install:
- pip install tornado ptyprocess
# command to run tests
script: py.test
# Enable new Travis stack, should speed up builds
sudo: false
| Update Travis config for flit | Update Travis config for flit
| YAML | bsd-2-clause | takluyver/terminado,takluyver/terminado |
6818a2d9f7a954e44faaba658d0402ee7ae1ed96 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- iojs
- "0.12"
- "0.10"
| sudo: false
language: node_js
node_js:
- iojs
- "0.12"
| Remove node.js 0.10 from CI | Remove node.js 0.10 from CI
| YAML | mit | postcss/postcss-nested |
dc532018585b03842ec84312ce8b03421f688284 | .travis.yml | .travis.yml | language: rust
sudo: false
matrix:
include:
- rust: stable
- os: osx
osx_image: xcode9.2
- os: osx
osx_image: xcode9.4
- os: osx
osx_image: xcode10
- os: osx
osx_image: xcode11
- rust: beta
- rust: nightly
- name: "master doc to gh-pages"
rust: nightly
... | language: rust
sudo: false
matrix:
include:
- rust: stable
- os: osx
osx_image: xcode9.2
- os: osx
osx_image: xcode11
- rust: beta
- rust: nightly
- name: "master doc to gh-pages"
rust: nightly
script:
- cargo doc --no-deps --all-features
deploy:
... | Disable OSX images with utimensat bug | Disable OSX images with utimensat bug
| YAML | apache-2.0 | alexcrichton/filetime |
324a91d6d35c2f28921d0f8920099aab695dc601 | .travis.yml | .travis.yml | # https://app.shippable.com/projects/544620bbb904a4b21567c427
language: python
python:
- 2.7
- 3.3
- 3.4
cache:
directories:
- $HOME/.pip-cache/
install:
- python setup.py install
- pip install flake8
- pip install coveralls
before_script:
- mkdir -p shippable/codecoverage
- mkdir -p shippable/tes... | # https://app.shippable.com/projects/544620bbb904a4b21567c427
language: python
python:
- 2.7
cache:
directories:
- $HOME/.pip-cache/
install:
- python setup.py install
- pip install flake8
- pip install coveralls
before_script:
- mkdir -p shippable/codecoverage
- mkdir -p shippable/testresults
- fla... | Exclude unsupported Python 3.3 and 3.4 from CI tests | Exclude unsupported Python 3.3 and 3.4 from CI tests
(Reason: Packages such as Emencia newsletter are not Python 3k compatible)
| YAML | apache-2.0 | Organice/django-organice,jawaid/django-organice,Organice/django-organice,jawaid/django-organice |
a8763f8d403ec6d92d2e493235851c3c5c769f36 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
install: composer install
| language: php
php:
- 5.6
- 7.0
- 7.1
- 7.4
install: composer install
| Update Travis dependencies tested against. | Update Travis dependencies tested against.
| YAML | mit | beberlei/composer-monorepo-plugin |
9681510de75437aaaab1a2d6aff76cc5e292f3ba | .travis.yml | .travis.yml | language: ruby
dist: trusty
sudo: false
cache: bundler
rvm:
- 2.6.2
addons:
apt:
packages:
- vim-gtk
env:
- TRAVIS_CI=1
before_install:
- "gem install bundler"
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "vim --version"
| language: ruby
dist: stretch
sudo: false
cache: bundler
rvm:
- 2.6.2
addons:
apt:
update: true
env:
- TRAVIS_CI=1
before_install:
- "gem install bundler"
- "sudo apt-get -y install vim-gtk3"
before_script:
- "export DISPLAY=:99.0"
- "vim --version"
script: "xvfb-run bundle exec rspec spec"
| Upgrade TravisCI to Debian Stretch and Vim 8 | Upgrade TravisCI to Debian Stretch and Vim 8
| YAML | mit | AndrewRadev/switch.vim |
7f2a657acfdf5c9db406f15961abe147aa3ca314 | .travis.yml | .travis.yml | sudo: required
language: ruby
cache: bundler
rvm:
- 2.3.0
services:
- docker
before_script:
- ./bin/rake db:create RAILS_ENV=test
- ./bin/rake ridgepole:apply RAILS_ENV=test
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_P... | sudo: required
language: ruby
cache: bundler
rvm:
- 2.3.0
services:
- docker
before_script:
- ./bin/rake db:create RAILS_ENV=test
- ./bin/rake ridgepole:apply RAILS_ENV=test
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_P... | Use public image for build cache | Use public image for build cache
| YAML | mit | hogelog/dmemo,hogelog/dmemo,hogelog/dmemo,hogelog/dmemo |
060ff2ae3e64c3edf18ee2b63900136f2f65381b | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '12'
- '14'
- '15'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
| sudo: false
language: node_js
node_js:
- '12'
- '14'
- '16'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
| Build with Node.js 16 on Travis CI. | Build with Node.js 16 on Travis CI.
| YAML | mit | bigeasy/compassion |
6a5999ef8f8d9a541e57af9bd90865a355866a99 | .travis.yml | .travis.yml | language: haskell
ghc:
- 8.6.5
sudo: false
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.cabal/packages
- $HOME/.cabal/store
- $HOME/.stack
- $TRAVIS_BUILD_DIR/.stack-work
before_install:
# Download and unpack the stack executable
- mkdir -p ~/.local/bin
- expo... | language: haskell
sudo: false
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.cabal/packages
- $HOME/.cabal/store
- $HOME/.stack
- $TRAVIS_BUILD_DIR/.stack-work
before_install:
# Download and unpack the stack executable
- mkdir -p ~/.local/bin
- export PATH=$HOME/.l... | Make CI only test master branch | Make CI only test master branch
| YAML | mit | egison/egison |
2db331e865d828de805b080f1bf2f57ab8364857 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
# Use the newer stack for HHVM as HHVM does not support Precise
- php: hhvm
sudo: required
dist: trusty
group: edge
before_install:
- composer require phpunit/phpunit:4.8.* satooshi/php-coveralls:dev-master
- composer install --dev
script:
- mkdir -p build/... | language: php
php:
- 5.6
- 7.0
- 7.1
# Use the newer stack for HHVM as HHVM does not support Precise
#- php: hhvm
# sudo: required
# dist: trusty
# group: edge
before_install:
- composer require phpunit/phpunit:4.8.* satooshi/php-coveralls:dev-master
- composer install --dev
script:
- mkdir -p bu... | Remove hhvm (didn't work, revisit later) | Remove hhvm (didn't work, revisit later) | YAML | mit | jasonlam604/Stringizer |
fc8a1afa2b6fed37cb16d80c2dd52f826942fcfa | .travis.yml | .travis.yml | language: python
python: 2.7
install: "pip install pytest tox"
env:
- TOX_ENV=py27
- TOX_ENV=py32
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pypy
- TOX_ENV=docs
script:
- tox -e $TOX_ENV
| language: python
python: 2.7
install: "pip install pytest tox"
env:
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pypy
script:
- tox -e $TOX_ENV
| Remove broken docs and python 3.2 builds from tox. | Remove broken docs and python 3.2 builds from tox.
| YAML | mit | thirdkey-solutions/pycoin,Tetchain/pycoin,Tetchain/pycoin,XertroV/pycoin,richardkiss/pycoin,Pan0ram1x/pycoin,zsulocal/pycoin,tomholub/pycoin,Treefunder/pycoin,XertroV/pycoin,gitonio/pycoin,antiface/pycoin,Magicking/pycoin,Treefunder/pycoin,ptcrypto/pycoin,ptcrypto/pycoin,moocowmoo/pycoin,shayanb/pycoin,tomholub/pycoin,... |
93256f610c4cb2bc99e1aeb4ede38f659bcbe547 | .travis.yml | .travis.yml | language: node_js
sudo: required # See http://docs.travis-ci.com/user/trusty-ci-environment/
dist: trusty
node_js:
- "stable"
python:
- "2.7"
notifications:
webhooks:
- http://savage.nonblocking.io:8080/savage/travis
addons:
sauce_connect: true
hosts:
- ads.localhost
- iframe.localhost
apt:
... | language: node_js
sudo: required # See http://docs.travis-ci.com/user/trusty-ci-environment/
dist: trusty
node_js:
- "stable"
python:
- "2.7"
notifications:
webhooks:
- http://savage.nonblocking.io:8080/savage/travis
addons:
sauce_connect: true
hosts:
- ads.localhost
- iframe.localhost
apt:
... | Speed up npm installs on Travis | Speed up npm installs on Travis
Re: https://github.com/npm/npm/issues/11283 | YAML | apache-2.0 | sriramkrish85/amphtml,widespace-os/amphtml,arealit/amphtml,Gregable/amphtml,nathangoulding/amphtml,prateekbh/amphtml,bpaduch/amphtml,yandex-pcode/amphtml,sortable/amphtml,BenDz/amphtml,triplelift/amphtml,criteo-forks/amphtml,BenDz/amphtml,mkhatib/amphtml,NataliaLKB/amphtml,honeybadgerdontcare/amphtml,donttrustthisbot/a... |
a0dd4785438ac445affc178a0809f9e9a31966e0 | .travis.yml | .travis.yml | language: node_js
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- gcc-5
env: CC=gcc-5 CXX=g++-5
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
- "9"
- "10"
| language: node_js
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- gcc-5
env: CC=gcc-5 CXX=g++-5
node_js:
- "5"
- "6"
- "7"
- "8"
- "9"
- "10"
| Remove node 4 from CI | Remove node 4 from CI | YAML | mit | nevermnd/anitomy-js,nevermnd/anitomy-js,nevermnd/anitomy-js |
e68a90491834dbf3e659e4f06fd3e4e339885426 | .travis.yml | .travis.yml | sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
env:
matrix:
- DRIVER_VERSION=1.1.1
addons:
apt:
sources:
- mongodb-3.2-precise
packages:
- mongodb-org-server
before_script:
- pecl install -f mongodb-${DRIVER_VERSION}
- composer install
script:
- ./vendor/bin/phpunit --covera... | sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
env:
matrix:
- DRIVER_VERSION=1.1.1 LEGACY_DRIVER_VERSION=""
- DRIVER_VERSION=1.1.1 LEGACY_DRIVER_VERSION=1.6.12
addons:
apt:
sources:
- mongodb-3.2-precise
packages:
- mongodb-org-server
before_script:
- pecl install -f mongodb-${... | Add ext-mongo tests to build matrix | Add ext-mongo tests to build matrix
| YAML | mit | alcaeus/mongo-php-adapter,researchgate/mongo-php-adapter,researchgate/mongo-php-adapter,alcaeus/mongo-php-adapter,researchgate/mongo-php-adapter |
5f11de5bfa046ee3601d8fc5b3a236c437fa3a51 | .travis.yml | .travis.yml | language: c
sudo: required
dist: trusty
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
global:
- EXTRA_REMOTES="https://github.com/mirage/mirage-dev.git"
- TESTS=false
matrix:
- OCAML_VERSION=4.03... | language: c
sudo: required
dist: trusty
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
global:
- EXTRA_REMOTES="https://github.com/mirage/mirage-dev.git"
- TESTS=false
matrix:
- OCAML_VERSION=4.04... | Add OCaml 4.04 to matrix | Travis: Add OCaml 4.04 to matrix
Not removing 4.02 for now since that would require an OPAM constraint
and the package still builds with that version.
| YAML | isc | mato/mirage-solo5,mato/mirage-solo5 |
8548c15f72b5b8c138fec7ea980edf035a60f612 | .travis.yml | .travis.yml | ---
language: ruby
bundler_args: --without development
before_install: rm Gemfile.lock || true
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.0
script: bundle exec rake test
env:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION="~> 3.2.0"
- PUPPET_VERSION="~> 3.3.0"
- PUPPET_VERSION="~> 3.4.0"
- PUPPET_VERSION="~> 3.... | ---
language: ruby
bundler_args: --without development
before_install: rm Gemfile.lock || true
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.0
script: bundle exec rake test
env:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION="~> 3.2.0"
- PUPPET_VERSION="~> 3.3.0"
- PUPPET_VERSION="~> 3.4.0"
- PUPPET_VERSION="~> 3.... | Exclude testing on ruby 2.1.0 with puppet 3.2.0 & 3.3.0 | Exclude testing on ruby 2.1.0 with puppet 3.2.0 & 3.3.0
| YAML | apache-2.0 | yo61/puppet-user_group |
cddc138696eda9f666f27217458363f5b87a97b8 | .travis.yml | .travis.yml | dist: trusty
sudo: required
language: node_js
node_js:
- 8
addons:
chrome: stable
before_install:
- "export CHROME_BIN=chromium-browser"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
before_script:
- "yarn -g gulp-cli"
- "yarn -g bower"
- "bower install"
| dist: trusty
sudo: required
language: node_js
node_js:
- 8
addons:
chrome: stable
before_install:
- "export CHROME_BIN=chromium-browser"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
before_script:
- "yarn global add gulp-cli"
- "yarn global add bower"
- "bower install"
| Fix yarn commands in Travis CI config | Fix yarn commands in Travis CI config
| YAML | mit | sorich87/bootstrap-tour,sorich87/bootstrap-tour |
54cf2673f46fdc76b8c911a1c783f7b19a45439b | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
| language: node_js
node_js:
- "0.10"
script:
- "./node_modules/.bin/gulp doc"
| Build docs in Travis CI build. | Build docs in Travis CI build.
| YAML | apache-2.0 | Arnavion/libjass,joshuabrown-ellation/libjass,joshuabrown-ellation/libjass,Dador/libjass,Arnavion/libjass,Arnavion/libjass,Dador/libjass,Dador/libjass,joshuabrown-ellation/libjass |
85f386778683abb8525e5b1422b1084b7445ffc8 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
script:
- python setup.py -q install
- python tests.py
| language: python
python:
- "2.7"
- "3.4"
script:
- python setup.py -q install
- python tests.py
| Add Python 2.7 testing to Travis | Add Python 2.7 testing to Travis
| YAML | mit | jbrudvik/yahooscraper |
bc3f3f43e189d7b48ae787a727002544badddcda | playbooks/release/post.yaml | playbooks/release/post.yaml | - hosts: all
roles:
- remove-sshkey
# TODO(fungi) re-add remove-launchpad-credentials here
- remove-gpgkey
| - hosts: all
roles:
- remove-sshkey
- remove-launchpad-credentials
- remove-gpgkey
| Revert "Temporarily leave launchpad creds for release jobs" | Revert "Temporarily leave launchpad creds for release jobs"
This reverts commit dc06e340d536afea8170a73a4580dbe8549be833.
Troubleshooting is complete, and secure removal of the credentials
can be safely restored now.
Change-Id: I18ab248bfd32f7588c7bf041e7b98e32e1db494e
| YAML | apache-2.0 | openstack-infra/project-config,openstack-infra/project-config |
1ad89d592eecd53d18787d599ba905677b6c0a9e | scripts/jenkins/jobs-ibs/templates/cloud-mkcloud-job-magnum-template.yaml | scripts/jenkins/jobs-ibs/templates/cloud-mkcloud-job-magnum-template.yaml | - job-template:
name: 'cloud-mkcloud{version}-job-magnum-{arch}'
node: cloud-trigger
triggers:
- timed: 'H H * * *'
logrotate:
numToKeep: 7
daysToKeep: -1
builders:
- trigger-builds:
- project: openstack-mkcloud
condition: SUCCESS
block: true
... | - job-template:
name: 'cloud-mkcloud{version}-job-magnum-{arch}'
node: cloud-trigger
triggers:
- timed: 'H H * * *'
logrotate:
numToKeep: 7
daysToKeep: -1
builders:
- trigger-builds:
- project: openstack-mkcloud
condition: SUCCESS
block: true
... | Add more compute nodes for Magnum tempest job | Add more compute nodes for Magnum tempest job
A single compute node is not enough to run magnum. So add another one.
| YAML | apache-2.0 | aspiers/automation,vmoravec/automation,SUSE-Cloud/automation,aspiers/automation,SUSE-Cloud/automation,gosipyan/automation,vmoravec/automation,aspiers/automation,vmoravec/automation,SUSE-Cloud/automation,SUSE-Cloud/automation,gosipyan/automation,aspiers/automation,gosipyan/automation,gosipyan/automation,vmoravec/automat... |
24373cdf9bdf4de4daa974ad3f001b7d527522dd | packages/bo/Boolean.yaml | packages/bo/Boolean.yaml | homepage: ''
changelog-type: ''
hash: a707a0f0fe9f2f6be156be1bdf5b76c6b9f52b3c10dc41cf4416dbb0b67d71dd
test-bench-deps: {}
maintainer: conal@conal.net
synopsis: Generalized booleans and numbers
changelog: ''
basic-deps:
base: <5
all-versions:
- '0.0.0'
- '0.0.1'
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.2'
- '0.2.1'
- '0.2.... | homepage: ''
changelog-type: ''
hash: a16b532a00eb3f29e8e588f3ca5c225370eef3dd963ee833d88b241ac680dc71
test-bench-deps: {}
maintainer: conal@conal.net
synopsis: Generalized booleans and numbers
changelog: ''
basic-deps:
base: <5
all-versions:
- '0.0.0'
- '0.0.1'
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.2'
- '0.2.1'
- '0.2.... | Update from Hackage at 2017-02-19T22:13:29Z | Update from Hackage at 2017-02-19T22:13:29Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
18775fda0f7a3c1d73b78a4f9bf8b4c37a304597 | .builds/archlinux.yml | .builds/archlinux.yml | image: archlinux
packages:
- clang
- freerdp
- ffmpeg
- libcap
- libinput
- libxkbcommon
- mesa
- meson
- pixman
- wayland
- wayland-protocols
- xcb-util-errors
- xcb-util-image
- xcb-util-wm
- xorgproto
sources:
- https://github.com/swaywm/wlroots
tasks:
- setup: |
cd wlroots
... | image: archlinux
packages:
- clang
- freerdp
- ffmpeg
- libcap
- libinput
- libxkbcommon
- mesa
- meson
- pixman
- wayland
- wayland-protocols
- xcb-util-errors
- xcb-util-image
- xcb-util-wm
sources:
- https://github.com/swaywm/wlroots
tasks:
- setup: |
cd wlroots
CC=gcc mes... | Revert "ci: add xorgproto dep to Arch build" | Revert "ci: add xorgproto dep to Arch build"
This reverts commit 35bc3e662a34fe92a3de4e3768dc976f8ac2c242.
Per [1], the dependency has been re-added and we shouldn't need to
explicitly install it anymore.
[1]: https://bugs.archlinux.org/task/64914
| YAML | mit | swaywm/wlroots,ascent12/wlroots,SirCmpwn/wlroots,ascent12/wlroots,swaywm/wlroots |
659b4df952d844c17647e56a6161bbe602b6ec23 | .github/workflows/main.yml | .github/workflows/main.yml | name: Builda & deploy 🚀
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '10.16'
- name: Install Node packages
run: yarn ... | name: Build & deploy 🚀
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '10.16'
- name: Install Node packages
run: yarn i... | Remove typo & fix key secret var | Remove typo & fix key secret var
| YAML | mit | frippz/frippz.se,frippz/frippz.se,frippz/frippz.se |
7d7164d7c79eb01934d7d6a792c8c36069667359 | .github/workflows/main.yml | .github/workflows/main.yml | name: Test
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.8"]
steps:
- name: Install libgnutls28-dev
run: |
sudo apt upda... | name: Test
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.8"]
steps:
- name: Install libgnutls28-dev
run: |
sudo apt upda... | Bump actions/setup-python from 2 to 3.1.0 | Bump actions/setup-python from 2 to 3.1.0
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 3.1.0.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v2...v3.1.0)
---
updated-dependencies:
- dependency-name: act... | YAML | mit | kevin1024/vcrpy,kevin1024/vcrpy |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.