travis-meta-yaml: .travis.yml preprocessor

[ bsd3, development, library, program ] [ Propose Tags ]

.travis.yml preprocessor


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.1.0, 0.0.1.1, 0.1.0.0
Dependencies aeson, base (>=4.7 && <4.9), bytestring, lens, lens-aeson, optparse-applicative, regex-applicative, text, travis-meta-yaml, yaml [details]
License BSD-3-Clause
Author Oleg Grenrus <oleg.grenrus@iki.fi>
Maintainer Oleg Grenrus <oleg.grenrus@iki.fi>
Category Development
Home page https://github.com/phadej/travis-meta-yaml#readme
Bug tracker https://github.com/phadej/travis-meta-yaml/issues
Source repo head: git clone https://github.com/phadej/travis-meta-yaml
Uploaded by phadej at 2015-08-10T13:43:29Z
Distributions
Executables travis-meta-yaml
Downloads 1983 total (10 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2015-08-10 [all 1 reports]

Readme for travis-meta-yaml-0.0.1.1

[back to package description]

travis-meta-yaml

Build Status Hackage

Motivation

Turn

env:
  - CABALVER=1.18 GHCVER=7.8.4
  - CABALVER=1.22 GHCVER=7.10.1
  - CABALVER=1.22 GHCVER=head

addons:
  apt:
    sources:
      - hvr-ghc
    packages:
      - cabal-install-$CABALVER
      - ghc-$GHCVER

matrix:
  allow_failures:
    - env: CABALVER=1.22 GHCVER=head

into

matrix:
  include:
  - env: CABALVER=1.18 GHCVER=7.8.4
    addons:
      apt:
        sources:
        - hvr-ghc
        packages:
        - cabal-install-1.18
        - ghc-7.8.4
  - env: CABALVER=1.22 GHCVER=7.10.1
    addons:
      apt:
        sources:
        - hvr-ghc
        packages:
        - cabal-install-1.22
        - ghc-7.10.1
  - env: CABALVER=1.22 GHCVER=head
    addons:
      apt:
        sources:
        - hvr-ghc
        packages:
        - cabal-install-1.22
        - ghc-head
  allow_failures:
  - env: CABALVER=1.22 GHCVER=head

Features

Currently only expanding of addons.apt. Any feature requests are welcome.