Skip to content

Commit d83eb82

Browse files
committed
try using auto xvfb function via alias
1 parent 6824225 commit d83eb82

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/Documentation.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ jobs:
2323
run: |
2424
sudo apt update
2525
sudo apt install -y xvfb mesa-utils mesa-vulkan-drivers dbus x11-xserver-utils
26+
- name: Set up aliases
27+
run: |
28+
echo "alias autoxvfb='xvfb-run -a'" >> ~/.bashrc
29+
source ~/.bashrc
2630
- uses: actions/checkout@v4
2731
- uses: julia-actions/setup-julia@v2
2832
with:
@@ -43,7 +47,7 @@ jobs:
4347
MESA_GL_VERSION_OVERRIDE: "4.5"
4448
MESA_GLSL_VERSION_OVERRIDE: "450"
4549
with:
46-
prefix: xvfb-run -a
50+
prefix: autoxvfb
4751
- name: Run doctests
4852
shell: julia --project=docs --color=yes {0}
4953
run: |

0 commit comments

Comments
 (0)