test: set pkuthss option degreetype
, new in v1.9.4
#379
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ctex-kit test | |
on: | |
pull_request: | |
push: | |
schedule: | |
# at 12:00 UTC (20:00 CST/UTC +8) on Friday | |
- cron: "0 12 * * 5" | |
workflow_dispatch: | |
env: | |
TL_PACKAGES: >- | |
adobemapping | |
amsfonts | |
amsmath | |
atbegshi | |
cjk | |
cjkutils | |
cm | |
ctablestack | |
currfile | |
dvipdfmx | |
ec | |
epstopdf-pkg | |
everysel | |
etex | |
etoolbox | |
euenc | |
fancyhdr | |
fandol | |
filehook | |
fontspec | |
graphics | |
graphics-cfg | |
graphics-def | |
iftex | |
l3build | |
l3experimental | |
l3kernel | |
l3packages | |
latex-bin | |
lm | |
lm-math | |
ltxcmds | |
lualatex-math | |
lualibs | |
luaotfload | |
luatex | |
luatex85 | |
luatexbase | |
luatexja | |
metafont | |
mfware | |
ms | |
oberdiek | |
platex-tools | |
tex | |
tex-ini-files | |
tools | |
trimspaces | |
ucharcat | |
ulem | |
unicode-data | |
uplatex | |
varwidth | |
xcolor | |
xetex | |
xkeyval | |
xunicode | |
TL_EXTRA_PACKAGES: >- | |
amscls | |
atveryend | |
auxhook | |
beamer | |
bibunits | |
bigfoot | |
bigintcalc | |
bitset | |
booktabs | |
caption | |
carlisle | |
chinese-jfm | |
cjkpunct | |
cleveref | |
context | |
enumitem | |
environ | |
eso-pic | |
etexcmds | |
everyhook | |
fontaxes | |
footmisc | |
geometry | |
gettitlestring | |
hycolor | |
hyperref | |
infwarerr | |
intcalc | |
ipaex | |
kastrup | |
koma-script | |
kvdefinekeys | |
kvoptions | |
kvsetkeys | |
letltxmacro | |
mweights | |
natbib | |
newtx | |
notoccite | |
ntheorem | |
pdfescape | |
pdflscape | |
pdfpages | |
pdftexcmds | |
pgf | |
pkuthss | |
psnfss | |
refcount | |
rerunfilecheck | |
sansmathaccent | |
setspace | |
soul | |
svn-prov | |
tex-gyre | |
tex-gyre-math | |
thuthesis | |
titlesec | |
tocloft | |
translator | |
ttfutils | |
txfonts | |
unicode-math | |
uniquecounter | |
url | |
xcjk2uni | |
xecjk | |
xits | |
xstring | |
zhmetrics | |
zhmetrics-uptex | |
zhnumber | |
NOTO_SANS_URL: https://github.com/notofonts/noto-cjk/releases/download/Sans2.004/03_NotoSansCJK-OTC.zip | |
NOTO_SERIF_URL: https://github.com/notofonts/noto-cjk/releases/download/Serif2.002/04_NotoSerifCJKOTC.zip | |
jobs: | |
test-ctex: | |
strategy: | |
matrix: | |
include: | |
- runs-on: ubuntu-latest | |
shell: bash | |
font-dir: /usr/share/fonts/truetype | |
tl-pkgs: "" | |
- runs-on: macos-14 | |
shell: bash | |
font-dir: /Library/Fonts | |
tl-pkgs: "" | |
- runs-on: windows-latest | |
shell: C:\msys64\usr\bin\bash.exe -e {0} | |
font-dir: /c/Windows/Fonts | |
# for `unzip` shipped with texlive | |
tl-pkgs: wintools.windows | |
name: on ${{ matrix.runs-on }} | |
runs-on: ${{ matrix.runs-on }} | |
defaults: | |
run: | |
shell: ${{ matrix.shell }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install TeX Live | |
uses: teatimeguest/setup-texlive-action@v3 | |
with: | |
packages: >- | |
${{ env.TL_PACKAGES }} | |
${{ env.TL_EXTRA_PACKAGES }} | |
${{ matrix.tl-pkgs }} | |
update-all-packages: true | |
- name: Install Noto fonts | |
run: | | |
curl -LO ${{ env.NOTO_SANS_URL }} | |
curl -LO ${{ env.NOTO_SERIF_URL }} | |
unzip -ojd ${{ matrix.font-dir }} "*OTC.zip" "*.ttc" | |
- name: Test ctex | |
working-directory: ./ctex | |
run: | | |
l3build check -q -H | |
l3build check -c test/config-cmap -q -H | |
l3build check -c test/config-contrib -q -H | |
- name: Get short commit SHA | |
if: failure() | |
run: | | |
echo "SHA_SHORT=$(git rev-parse --short=8 HEAD)" >> $GITHUB_ENV | |
- name: Upload test diffs | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ctex-kit-diff-${{ env.SHA_SHORT }} | |
path: | | |
ctex/build/**/*.diff | |
ctex/build/**/*.fc |