https://github.com/quicwg/base-drafts
Raw File
Tip revision: d57305fcbe27b1847af04c5f7857abfb09e104a5 authored by Martin Thomson on 22 May 2017, 04:46:56 UTC
Add changelog entries for -03 drafts, make formatting uniform
Tip revision: d57305f
circle.yml
machine:
  environment:
    GOPATH: "${HOME}/${CIRCLE_PROJECT_REPONAME}/.go_workspace"
    mmark_src: github.com/miekg/mmark/mmark
    mmark: ./mmark
  python:
    version: 3.5.2

checkout:
  post:
    - if [ -e .git/shallow ]; then git fetch origin --unshallow; fi
    - git fetch origin gh-pages

dependencies:
  pre:
    - pip install xml2rfc
    - if head -1 -q *.md | grep '^\-\-\-' >/dev/null 2>&1; then gem install --no-doc kramdown-rfc2629; fi
    - if head -1 -q *.md | grep '^%%%' >/dev/null 2>&1; then go get "$mmark_src" && go build "$mmark_src"; fi
  cache_directories:
    - "/opt/circleci/.rvm/gems"

test:
  override:
    - make

deployment:
  production:
    branch: /.*/
    commands:
      - make artifacts
      - make ghpages || make ghpages
      - make ghissues || make ghissues
back to top