Skip to content

Commit

Permalink
ci: install lme4 directly
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Mar 22, 2024
1 parent ae5e56a commit bb60803
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ jobs:
if: runner.os == 'Windows'
shell: bash
run: |
R -e "install.packages('lme4', repos='http://cran.rstudio.org', type='binary')"
# R -e "install.packages('lme4', repos='http://cran.rstudio.org', type='binary')"
R -e "install.packages('http://cran.rstudio.org/bin/windows/contrib/r-old-release/lme4_1.1-35.1.zip', repos=NULL, type='binary')"
- name: Install Python dependencies
run: |
# prerequisites
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/deploy_github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ jobs:
if: runner.os == 'Windows'
shell: bash
run: |
R -e "install.packages('lme4', repos='http://cran.rstudio.org', type='binary')"
# R -e "install.packages('lme4', repos='http://cran.rstudio.org', type='binary')"
R -e "install.packages('http://cran.rstudio.org/bin/windows/contrib/r-old-release/lme4_1.1-35.1.zip', repos=NULL, type='binary')"
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit bb60803

Please sign in to comment.