LoginSignup
1
1

More than 5 years have passed since last update.

Travis CIのLinuxとOSXにTeXLive 2016をインストールするスクリプト

Last updated at Posted at 2016-08-27

はじめに

Travis CITeXLiveをインストールしたい場合、OSXとLinuxではやり方が全く異なるため、方法に熟知していなければやや難しいと思われる。そこでTravis CIでTeXLiveをインストールするためのスクリプトを作った。この成果は次のリポジトリに置かれている。

使い方

次のような.travis.ymlを用意する。

.travis.yml
os:
  - osx
  - linux
dist: trusty
sudo: false
before_install:
  - wget https://raw.githubusercontent.com/y-yu/install-tex-travis/master/install-tex.sh
  - chmod +x install-tex.sh
install:
  - . ./install-tex.sh
script:
  # something

このように次のような手順を実行すればよい。

  1. install-tex.shをダウンロード
  2. 実行する権限を付与
  3. . ./install-tex.shを実行
1
1
0

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
1
1