We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a67b82 commit 501aad2Copy full SHA for 501aad2
1 file changed
.github/workflows/ReusableTest.yml
@@ -57,7 +57,13 @@ jobs:
57
if [ -f "$DEFAULT" ] && [ ! -f "$TARGET" ]; then
58
cp "$DEFAULT" "$TARGET"
59
echo "Copied $DEFAULT to $TARGET"
60
- fi
+ fi
61
+ - name: Install xvfb for headless GL rendering
62
+ run: sudo apt-get update && sudo apt-get install -y xvfb
63
+ - name: Start virtual framebuffer
64
+ run: |
65
+ Xvfb :99 -screen 0 1024x768x24 &
66
+ echo "DISPLAY=:99" >> $GITHUB_ENV
67
- uses: julia-actions/julia-buildpkg@v1
68
69
- uses: julia-actions/julia-runtest@v1
0 commit comments