Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix unittest failing on dependencies handling #30

Merged
merged 4 commits into from
Sep 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
- name: Install JAGS on macOS
if: runner.os == 'macOS' && inputs.needs_JAGS
run: |
rm '/usr/local/bin/gfortran'
# rm '/usr/local/bin/gfortran'
brew install jags
shell: bash

Expand All @@ -125,8 +125,9 @@ jobs:
# ragg requires libharfbuzz-dev libfribidi-dev
# credentials (dependency of usethis) requires libgit2-dev
# curl (dependency of usethis) requires libcurl4-openssl-dev
# libicu (dependency of igraph or stringi...) requires libicu libicu-dev

sudo apt install libharfbuzz-dev libfribidi-dev libgit2-dev libcurl4-openssl-dev
sudo apt install libharfbuzz-dev libfribidi-dev libgit2-dev libcurl4-openssl-dev libicu*
shell: bash

- name: Set environment variable to never compile packages on Windows and macOS
Expand All @@ -141,8 +142,9 @@ jobs:
extra-packages: |
any::rcmdcheck
github::jasp-stats/jaspTools
vdiffr@1.0.5
needs: check
cache-version: 2
cache-version: 3

- name: Install JAGS on Linux
if: runner.os == 'Linux' && inputs.needs_JAGS
Expand Down