Skip to content

Commit

Permalink
try rgl solution suggested here
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Heckmann committed Dec 29, 2023
1 parent 65a722e commit 29b2d69
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get build-dep mesa
- uses: r-lib/actions/setup-pandoc@v2

- uses: r-lib/actions/setup-r@v2
Expand All @@ -44,10 +49,10 @@ jobs:
extra-packages: any::rcmdcheck
needs: check

# extra lines to use null device in rgl when
- name: Configure RGL for headless testing
run: |
echo 'options(rgl.useNULL = TRUE)' > ~/.Rprofile
# # extra lines to use null device in rgl when
# - name: Configure RGL for headless testing
# run: |
# echo 'options(rgl.useNULL = TRUE)' > ~/.Rprofile

- uses: r-lib/actions/check-r-package@v2
with:
Expand Down

0 comments on commit 29b2d69

Please sign in to comment.