Skip to content

Commit

Permalink
20240505 - Linux system dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
isaactpetersen committed May 5, 2024
1 parent f64c456 commit fec9d7d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ jobs:

- uses: r-lib/actions/setup-pandoc@v2

# Added to address problems with installation of curl and textshaping packages
- name: Install system dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev libharfbuzz-dev libfribidi-dev
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,6 @@ jobs:

- uses: r-lib/actions/setup-pandoc@v2

# Added to address problems with installation of curl and textshaping packages
- name: Install system dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev libharfbuzz-dev libfribidi-dev
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
Expand Down

0 comments on commit fec9d7d

Please sign in to comment.