Skip to content

Commit

Permalink
Try to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasp85 committed Aug 16, 2022
1 parent 25554e1 commit 628bb88
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ jobs:
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

- name: Install av on Linux
if: runner.os == 'Linux'
run: sudo apt-get update -y && sudo apt-get install -y libavfilter-dev

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ jobs:
with:
use-public-rspm: true

- name: Install av on Linux
if: runner.os == 'Linux'
run: sudo apt-get update -y && sudo apt-get install -y libavfilter-dev

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::pkgdown, local::.
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pr-commands.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
with:
use-public-rspm: true

- name: Install av on Linux
if: runner.os == 'Linux'
run: sudo apt-get update -y && sudo apt-get install -y libavfilter-dev

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::roxygen2
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
with:
use-public-rspm: true

- name: Install av on Linux
if: runner.os == 'Linux'
run: sudo apt-get update -y && sudo apt-get install -y libavfilter-dev

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::covr
Expand Down

0 comments on commit 628bb88

Please sign in to comment.