Skip to content

Commit

Permalink
ci: try to fix r deps
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Nov 4, 2023
1 parent c260fc6 commit eeeabc7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,22 @@ jobs:
sudo apt-get install -y xvfb libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-shape0 libxcb-xinerama0 libxcb-xinput0 libxcb-xfixes0
# start xvfb in the background
sudo /usr/bin/Xvfb $DISPLAY -screen 0 1280x1024x24 &
- name: install R
if: matrix.extras == 'all'
uses: r-lib/actions/setup-r@v2
with:
r-version: '3.6.3'
- name: install lme4
if: matrix.extras == 'all'
uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::lme4
- name: Downgrade rpy2 (Windows)
if: runner.os == 'Windows' && matrix.extras == 'all'
run: |
# Force installation of rpy2 3.5.12
# https://github.com/rpy2/rpy2/issues/1044
python -m pip install rpy2==3.5.12
- name: Install Python dependencies
run: |
# prerequisites
Expand Down

0 comments on commit eeeabc7

Please sign in to comment.