Skip to content

Commit

Permalink
teatime
Browse files Browse the repository at this point in the history
  • Loading branch information
ms609 committed Feb 16, 2024
1 parent c689594 commit f3ac0d5
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/rhub.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,15 @@ jobs:
config: ${{ fromJson(needs.setup.outputs.platforms) }}

steps:

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

- name: Check `tlmgr` version
run: tlmgr --version

- name: Install apt packages (Linux)
if: runner.os == 'Linux'
run: |
Expand All @@ -101,6 +110,7 @@ jobs:
- name: Install System dependencies and LaTeX (Windows)
if: runner.os == 'Windows'
shell: bash
run: |
set -x
Expand Down Expand Up @@ -136,8 +146,10 @@ jobs:
# mpm --admin --set-repository=C:/MiKTeX-Repo
# mpm --verbose --admin --repository=C:\MiKTeX-Repo --require=@C:\MiKTeX-Repo\energyplus_packages.lst
# Avoid annoying warning: "xelatex: major issue: So far, you have not checked for updates as a MiKTeX user."
mpm --find-updates
mpm --admin --find-updates
miktex packages update
miktex --admin packages update
mpm --find-updates # TODO remove
mpm --admin --find-updates # TODO remove
# initexmf --enable-installer --update-fndb
# initexmf --admin --enable-installer --update-fndb
# initexmf --enable-installer --dump-by-name=xelatex --engine=xetex
Expand All @@ -147,8 +159,7 @@ jobs:
- name: Install system dependencies (macOS)
if: runner.os == 'macOS'
run: |
brew install basictex xquartz
which pdflatex
brew install xquartz basictex
- name: Update PATH (macOS)
if: runner.os == 'macOS'
Expand Down

0 comments on commit f3ac0d5

Please sign in to comment.