Skip to content

Commit 2333f78

Browse files
authored
support Gaston v2 in Plots v1 (#5633)
1 parent 483e6b1 commit 2333f78

File tree

6 files changed

+92
-102
lines changed

6 files changed

+92
-102
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,16 @@ jobs:
5353
- name: Ubuntu LaTeX dependencies
5454
if: startsWith(matrix.os, 'ubuntu')
5555
run: |
56-
sudo apt-get -y update
57-
sudo apt-get -y install gnuplot poppler-utils texlive-{latex-base,latex-extra,luatex} g++
56+
sudo apt -y update
57+
sudo apt -y install poppler-utils texlive-{latex-base,latex-extra,luatex} g++ # LaTeX
58+
sudo apt -y install gnuplot libxcb-cursor0 # Gaston
5859
sudo fc-cache -vr
5960
6061
- name: Set LD_PRELOAD
6162
if: startsWith(matrix.os, 'ubuntu')
62-
run: echo "LD_PRELOAD=$(g++ --print-file-name=libstdc++.so)" >> $GITHUB_ENV
63+
run: |
64+
echo "LD_PRELOAD=$(g++ --print-file-name=libstdc++.so)" >> $GITHUB_ENV
65+
echo "JULIA_GNUPLOT_EXE=gnuplot" >>$GITHUB_ENV
6366
6467
- uses: julia-actions/setup-julia@latest
6568
with:

0 commit comments

Comments
 (0)