teatimeguest / setup-texlive-action

A GitHub Action to set up TeX Live
https://github.com/marketplace/actions/setup-texlive-action
MIT License
37 stars 2 forks source link
actions github-actions latex luatex pdftex tex texlive xetex

setup-texlive-action

A GitHub Action to set up TeX Live

Marketplace CI Codecov

This action provides the following functionality:

Linux, Windows, and macOS are supported.

Breaking Changes in V3

In most cases, you can upgrade from v2 to v3 without changing your workflow.

Use Node.js v20 as runtime.

With Node.js v16 having reached its [end-of-life][nodejs16-eol] and GitHub Actions beginning the [transition to Node.js v20], the action has upgraded its default runtime to Node.js v20. If you are using a self-hosted runner, please update it to [v2.308.0] or later to ensure `node20` runtime functionality. [nodejs16-eol]: https://nodejs.org/en/blog/announcements/nodejs16-eol [transition to Node.js v20]: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ [v2.308.0]: https://github.com/actions/runner/releases/tag/v2.308.0

Change the condition under which cache-hit is set to true.

To be more consistent with official actions such as [actions/cache], the `cache-hit` output is now set to `true` only if a cache is found that exactly matches the specified version and package set. To simply check if a cache was found, use `cache-restored` instead: ```yaml - uses: teatimeguest/setup-texlive-action@v3 id: setup - if: fromJSON(steps.setup.outputs.cache-restored) run: echo 'A cache has been found' ``` [actions/cache]: https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#cache-hits-and-misses

Change default installation prefix, environment variable name, and cache key prefix.

Actions published on [GitHub Marketplace](https://github.com/marketplace?type=actions) have unique names defined in the metadata file `action.yml`. To minimize conflicts with other actions, the action name (`setup-texlive-action`) is now used for the following things: - Directory name of the default installation prefix: ```diff - $RUNNER_TEMP/setup-texlive + $RUNNER_TEMP/setup-texlive-action ``` - Environment variable name: ```diff - SETUP_TEXLIVE_FORCE_UPDATE_CACHE + SETUP_TEXLIVE_ACTION_FORCE_UPDATE_CACHE ``` - Cache keys.

Change default texmf user directories.

As with `install-tl`'s [portable installation], user directories are now set by default to be the same as the corresponding system directories. To emulate the previous behavior, specify the user directories explicitly using environment variables: ```yaml - uses: teatimeguest/setup-texlive-action@v3 env: TEXLIVE_INSTALL_TEXMFHOME: ~/texmf TEXLIVE_INSTALL_TEXMFCONFIG: ~/.local/texlive//texmf-config TEXLIVE_INSTALL_TEXMFVAR: ~/.local/texlive//texmf-var ``` [portable installation]: https://tug.org/texlive/doc/texlive-en/texlive-en.html#tlportable "4.2 Portable (USB) installation"

Change syntax for the package-file input.

The `package-file` input now accepts [glob patterns][glob] to specify multiple files: ```yaml - uses: actions/checkout@v4 - uses: teatimeguest/setup-texlive-action@v3 with: package-file: | .github/tl_packages **/DEPENDS.txt ``` This change might break existing workflow behavior since special characters such as `*` and `?` will need to be escaped. [glob]: https://github.com/actions/toolkit/tree/main/packages/glob#patterns

Table of Contents

Usage

Basic Usage

- name: Setup TeX Live
  uses: teatimeguest/setup-texlive-action@v3
  with:
    packages: scheme-basic

To make it suitable for CI use, by default, the action will only set up tlmgr (TeX Live package manager) and will not install any TeX packages, even basic commands such as pdflatex. If you want to install some TeX packages, you can use the packages input:

- uses: teatimeguest/setup-texlive-action@v3
  with:
    packages: |
      scheme-basic
      hyperref
      microtype

  # `pdflatex` is now available
  # along with hyperlink and microtypography support.

[!NOTE]\ Since tlmgr does not manage package dependencies, you will need to explicitly specify all the packages you depend on. If you are not sure exactly which packages are required, it is recommended to install at least scheme-basic, which contains the most basic packages such as latex and amsmath.

See also "Troubleshooting."

You can also specify packages by file using the package-file input:

- uses: actions/checkout@v4
- uses: teatimeguest/setup-texlive-action@v3
  with:
    package-file: |
      .github/tl_packages
      **/DEPENDS.txt

Caching

By default, the action will save TEXDIR to cache using @actions/cache. This is done in the post-process of a successfully completed workflow, so that, for example, LuaTeX font cache files generated in your jobs are also saved and restored as part of the cache entry.

If you have problems due to a corrupt cache entry, you can delete it from the web interface, GitHub CLI, or REST API. For an example of programmatically deleting cache entries created by this action using actions/github-script, see this script.

If you want to disable caching, set the cache input to false:

- uses: teatimeguest/setup-texlive-action@v3
  with:
    cache: false

Historic Versions

You can use an older version of TeX Live by setting the version input:

- uses: teatimeguest/setup-texlive-action@v3
  with:
    version: 2008

The action will install an older version using historic archive with small patches to fix minor problems.

Supported TeX Live versions

OS Runner TeX Live Versions
Linux ubuntu-24.04 `2008`–`2024`
ubuntu‑22.04*
ubuntu-20.04
Windows windows-2022*
windows-2019
macOS macos-14* `2013`–`2024` > :memo: Versions prior to `2013` are for 32-bit systems and > will not work due to _Bad CPU type in executable._
macos-13
macos-12

The runners marked with "*" are the current -latest runners (i.e., ubuntu-latest, windows-latest, and macos-latest).

Inputs

All inputs are optional.

Name Type Description
cache Bool

Enable caching for TEXDIR.

Default:true
package-file String A (multi-line) [glob] string to specify files that contain package names to be installed. The file format is the same as the syntax for the packages input. In addition, the DEPENDS.txt format is also supported.
packages String TeX package names to be installed, separated by whitespaces. Schemes and collections are also acceptable. Everything from "#" to the end of line will be treated as a comment.
prefix String

TeX Live installation prefix. This has the same effect as TEXLIVE_INSTALL_PREFIX.

Default:$RUNNER_TEMP/setup-texlive-action
repository URL Specify the package repository URL to be used as the main repository. Currently only http(s) repositories are supported.
texdir String TeX Live system installation directory. This has the same effect as the installer's -texdir option and takes precedence over the prefix input and related environment variables.
tlcontrib Bool

Set up TLContrib as an additional TeX package repository. This input will be ignored for older versions.

Default:false
update-all-packages Bool

Update all TeX packages when cache restored. Defaults to false, and the action will update only tlmgr.

Default:false
version String

TeX Live version to install. Supported values are 2008 to 2024, and latest.

Default:latest if the repository input is not set, otherwise the remote version will be assumed.

Outputs

Name Type Description
cache-hit Bool A boolean value to indicate if an exact cache match was found. Implies cache-restored.
cache‑restored Bool A boolean value to indicate if a cache was found.
version String The installed TeX Live version.

Environment Variables

The action reads the following environment variable:

Name Type Description
SETUP_TEXLIVEACTION​FORCE_UPDATE_CACHE String Setting this to anything other than 0, the action will use a unique cache key each time to keep the cache up-to-date.

:warning: Enabling this will consume more cache space.

Default:unset

NO_COLOR String Disable color output.

In addition, the official environment variables for install-tl are supported, but excluding TEXLIVE_INSTALL_TEXMFSYS(CONFIG|VAR) in order to ensure system directories are cached correctly.

To specify the installation prefix, either the input prefix or the environment variable TEXLIVE_INSTALL_PREFIX can be used, with prefix taking precedence if both are set. Precedence for all other texmf-related inputs and environment variables follows the behavior of the latest version of install-tl.

Default values in this action

| Name | Default | | ---------------------------------- | ------------------------------------------------------------------------------------------------------ | | `TEXLIVE_DOWNLOADER` | | | `TL_DOWNLOAD_PROGRAM` | | | `TL_DOWNLOAD_ARGS` | | | `TEXLIVE_INSTALL_ENV_NOCHECK` | `1` | | `TEXLIVE_INSTALL_NO_CONTEXT_CACHE` | | | `TEXLIVE_INSTALL_NO_DISKCHECK` | | | `TEXLIVE_INSTALL_NO_RESUME` | | | `TEXLIVE_INSTALL_NO_WELCOME` | `1` | | `TEXLIVE_INSTALL_PAPER` | | | `TEXLIVE_INSTALL_PREFIX` | [$RUNNER_TEMP]/setup-texlive-action | | `TEXLIVE_INSTALL_TEXMFLOCAL` | | | `TEXLIVE_INSTALL_TEXMFHOME` | Same as `TEXMFLOCAL` | | `TEXLIVE_INSTALL_TEXMFCONFIG` | Same as `TEXMFSYSCONFIG` | | `TEXLIVE_INSTALL_TEXMFVAR` | Same as `TEXMFSYSVAR` | | `NOPERLDOC` | |

Permissions

This action does not use GITHUB_TOKEN and does not require any permissions.

Troubleshooting

If a problem persists, feel free to open an issue.

Dependency Issues

Unlike other package managers such as pip or npm, TeX Live (tlmgr) has very little dependency management, so generally it is difficult to determine exactly which packages you need. Lacking some indirect dependencies, you may often encounter compilation errors like:

! LaTeX Error: File `XXXXX.sty` not found.

While there is no perfect solution, there are some tools that can help address this problem:

Local Testing

If you are using a container engine such as docker, act allows you to run a workflow locally inside a container environment, without having to push changes to GitHub, saving a lot of time in setup for CI. This action can be run on a node:20 image, so the following configuration is a good starting point for testing or debugging with act:

.actrc
```opts --platform ubuntu-latest=node:20 --pull=false --detect-event --env RUNNER_DEBUG=1 # Enable debug logging # --env NODE_DEBUG= # Might be useful in few cases ```

Debug Logging

On GitHub, debug logging can be enabled without modifying a workflow file by setting repository configuration variables. See the GitHub Docs for more information.

Changelog

See the releases page.

License

MIT License

For third-party software licenses and copyright notices, please refer to dist/NOTICE.md.