Skip to content

Commit

Permalink
feat(ci): use latex-dev and run scheduled
Browse files Browse the repository at this point in the history
  • Loading branch information
hmenke committed Jun 15, 2022
1 parent 7942456 commit 21f1ca9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: CI

on: [push, pull_request]
on:
push:
pull_request:
schedule:
- cron: '0 8 * * 3' # Every Wednesday at 08:00

jobs:
build:
Expand Down Expand Up @@ -38,7 +42,7 @@ jobs:
run: |
cd doc/latex/pgf-pie
while : ; do
${{ matrix.engine }} -shell-escape -halt-on-error -interaction=nonstopmode pgf-pie-manual.tex
${{ matrix.engine }}-dev -shell-escape -halt-on-error -interaction=nonstopmode pgf-pie-manual.tex
grep -q -E "(There were undefined references|Rerun to get (cross-references|the bars) right)" *.log || break
[ "$(( thisrun=$(( thisrun + 1 )) ))" -lt 5 ] || { echo "Reruns exceeded"; exit 1; }
done
Expand Down

0 comments on commit 21f1ca9

Please sign in to comment.