File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -48,9 +48,6 @@ export GKSwstype=nul # Plots.jl/issues/3664
48
48
export COLORTERM=' truecolor' # UnicodePlots.jl
49
49
export PLOTDOCS_ANSICOLOR=true
50
50
51
- # tentative fix for `pyplot` bug: libstdc++.so.X: version `GLIBCXX_X.X.X' not found ...
52
- # export LD_PRELOAD=$(g++ --print-file-name=libstdc++.so)
53
-
54
51
julia=' xvfb-run julia --color=yes --project=docs'
55
52
56
53
$julia -e '
@@ -61,10 +58,14 @@ $julia -e '
61
58
Conda.runconda(`config --set auto_update_conda False --file $rc --force`, env)
62
59
Pkg.add("PyCall"); Pkg.build("PyCall"; verbose=true)
63
60
Conda.add("matplotlib")
64
- Conda.add("libgcc")
65
61
Conda.list()
66
62
'
67
63
64
+ # tentative fix for `pyplot` bug: libstdc++.so.X: version `GLIBCXX_X.X.X' not found ...
65
+ # export LD_PRELOAD=$(g++ --print-file-name=libstdc++.so)
66
+ export LD_PRELOAD=$( $julia -e ' using Conda; joinpath(Conda.ROOTENV, "lib", "libstdc++.so") |> print' )
67
+ echo $LD_PRELOAD
68
+
68
69
echo " == build documentation for $GITHUB_REPOSITORY @$GITHUB_REF , triggerd by $GITHUB_ACTOR on $GITHUB_EVENT_NAME =="
69
70
if [ " $GITHUB_REPOSITORY " == ' JuliaPlots/PlotDocs.jl' ]; then
70
71
$julia docs/make.jl
You can’t perform that action at this time.
0 commit comments