Skip to content

Commit 146aff5

Browse files
authored
use ubuntu-22.04 (#329)
1 parent 432d6e2 commit 146aff5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ concurrency:
1212

1313
jobs:
1414
Build_docs:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-22.04
1616
steps:
1717
- uses: actions/checkout@v3
1818
with:

docs/ci_build.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ sudo apt -y install \
2525
ttf-mscorefonts-installer \
2626
poppler-utils \
2727
ghostscript-x \
28-
qt5-default \
28+
qtbase5-dev \
2929
pdf2svg \
3030
gnuplot \
3131
g++
@@ -49,8 +49,9 @@ fi
4949
export GKSwstype=nul # Plots.jl/issues/3664
5050
export COLORTERM=truecolor # UnicodePlots.jl
5151
export PLOTDOCS_ANSICOLOR=true
52+
export LD_PRELOAD=$(g++ --print-file-name=libstdc++.so)
5253

53-
julia='xvfb-run julia --color=yes --project=docs'
54+
julia='xvfb-run -a julia --color=yes --project=docs'
5455

5556
$julia -e '
5657
using Pkg; Pkg.instantiate()

0 commit comments

Comments
 (0)