LoginSignup
0

More than 5 years have passed since last update.

AppVeyorのWindowsに最新のTeXLiveをインストールするスクリプト

Last updated at Posted at 2017-02-26

はじめに

LaTeXのドキュメントをLinuxやmacOSでコンパイルできるかどうかをテストするCIを前回の記事で述べた。今回の記事ではAppVeyorというWindows用のCI環境でLaTeXのドキュメントをコンパイルするためのスクリプトを作成した。
なお、この成果は次のリポジトリにある。

使い方

次のようなものを.appveyor.ymlに書けばよい。

image: Visual Studio 2015
environment:
  PATH: '%PATH%;C:\texlive\2016\bin\win32'
install:
  - curl -O https://raw.githubusercontent.com/y-yu/install-tex-appveyor/master/install-tex.sh
  - bash ./install-tex.sh
cache:
  - 'C:\texlive\2016\texmf-var\fonts\cache'
build_script:
  - tlmgr install collection-langjapanese # something you want to install
  - # somethings

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0