Skip to content

Commit

Permalink
Install binaries for MacOS and Windows, source for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Adafede committed Dec 17, 2024
1 parent de82247 commit 6279802
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/external-use.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,20 @@ jobs:
with:
use-public-rspm: true
Ncpus: ${{ steps.cpu-cores.outputs.count }}
- name: Install dependencies on Ubuntu
- name: Install dependencies (Linux)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update && sudo apt-get install -y --no-install-recommends libcurl4-openssl-dev libfribidi-dev libharfbuzz-dev \
&& sudo apt-get clean \
&& sudo rm -rf /var/lib/apt/lists/*
- name: Install
- name: Install (Linux)
if: matrix.os == 'ubuntu-latest'
run: |
install.packages("tima", repos = c("https://taxonomicallyinformedannotation.r-universe.dev", "https://bioc.r-universe.dev", "https://cloud.r-project.org"), type = "source")
tima::install()
shell: Rscript {0}
- name: Install (MacOS and Windows)
if: matrix.os != 'ubuntu-latest'
run: |
install.packages("tima", repos = c("https://taxonomicallyinformedannotation.r-universe.dev", "https://bioc.r-universe.dev", "https://cloud.r-project.org"), type = "binary")
tima::install()
Expand Down

0 comments on commit 6279802

Please sign in to comment.