From 3586544d56723b23ab69aec1e9d73e7220d9c313 Mon Sep 17 00:00:00 2001 From: Cheng XU Date: Sat, 16 Mar 2024 01:54:25 -0700 Subject: [PATCH] fix: fix CI test on historical version of TeXLive --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b3e66d2..621b84d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,6 +17,10 @@ jobs: texlive_version: ${{ matrix.texlive_version }} run: | apk add make + VERSION="${{ matrix.texlive_version }}" + if [[ "$VERSION" != latest ]]; then + tlmgr option repository "https://ftp.math.utah.edu/pub/tex/historic/systems/texlive/$VERSION/tlnet-final" + fi tlmgr install blindtext cd test && make - name: Check pdf files