Skip to content

Commit 72da905

Browse files
committed
Explicitly set RNG seed in CI
1 parent a42599a commit 72da905

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
run: sudo apt-get install m4 graphviz
2121

2222
- name: Generate SVG
23-
run: m4 flowchart.dot.m4 | dot -Tsvg > generation/gh-pages/initialization.svg
23+
run: m4 flowchart.dot.m4 | dot -Tsvg -start=1000 > generation/gh-pages/initialization.svg
2424

2525
- name: Generate PNG
26-
run: m4 flowchart.dot.m4 | dot -Tpng > generation/gh-pages/initialization.png
26+
run: m4 flowchart.dot.m4 | dot -Tpng -start=1000 > generation/gh-pages/initialization.png
2727

2828
- name: Deploy generated to Github Pages
2929
uses: crazy-max/[email protected]

0 commit comments

Comments
 (0)