summaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: b77da015df3505e9a593aeec1827d3191a310509 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# https://www.appveyor.com/docs/appveyor-yml

install:
  # Install DocBook XSL.
  - ps: Start-FileDownload 'https://github.com/docbook/xslt10-stylesheets/releases/download/release%2F1.79.2/docbook-xsl-nons-1.79.2.zip'
  - 7z x docbook-xsl-nons-1.79.2.zip -oC:\
  # Install Pygments.
  - pip install pygments
  # Install xsltproc.
  - choco install xsltproc
  # Git on AppVeyor includes a non-functional xsltproc. Remove this.
  - if exist "%ProgramFiles%\Git\usr\bin\xsltproc.exe" del "%ProgramFiles%\Git\usr\bin\xsltproc.exe"

build_script:
  - set XSL_BASE_PATH=C:/docbook-xsl-nons-1.79.2
  # Other make executables are in C:\cygwin64\bin and C:\msys64\usr\bin.
  - C:\cygwin\bin\make html-dist

test: off