Skip to content

Commit

Permalink
System dependencies done wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
LeaSeep committed Jun 28, 2024
1 parent 52b34fd commit 97f21d6
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/start_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,18 @@ jobs:
- uses: r-lib/actions/setup-renv@v2

- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev libssl-dev libxml2-dev libsqlite3-dev libglu1-mesa-dev default-jdk libmagick++-dev
- name: Cache packages
uses: actions/cache@v2
with:
path: ${{ env.RENV_PATHS_ROOT }}
key: ${{ runner.os }}-renv-${{ hashFiles('**/renv.lock') }}
restore-keys: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev libssl-dev libxml2-dev libsqlite3-dev libglu1-mesa-dev default-jdk libmagick++-dev
${{ runner.os }}-renv-
- name: Restore packages
shell: Rscript {0}
run: |
Expand Down

0 comments on commit 97f21d6

Please sign in to comment.