Skip to content

Commit

Permalink
quarto-dev/quarto-actions/setup works on arm64 linux (#981)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborcsardi authored Feb 19, 2025
1 parent 32869cb commit b9fb1d6
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions setup-r-dependencies/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -273,10 +273,6 @@ runs:
if (Sys.which("quarto") != "") {
cat("Quarto is already installed at", Sys.which("quarto"), "\n")
o <- "false"
} else if (Sys.info()[["machine"]] == "aarch64" && Sys.info()[["sysname"]] == "Linux") {
# do not install on aarch64 Linux, until this is merged and published:
# https://github.com/quarto-dev/quarto-actions/pull/122
o <- "false"
} else {
qmd <- dir(recursive = TRUE, pattern = "[.]qmd$")
if (length(qmd) > 0) {
Expand All @@ -295,7 +291,7 @@ runs:

- name: Install quarto if needed
if: ${{ steps.check-quarto.outputs.install == 'true' }}
uses: quarto-dev/quarto-actions/setup@87b35bb88b36317fa36b5189e9553b4164a5c5a3
uses: quarto-dev/quarto-actions/setup@9e48da27e184aa238fcb49f5db75469626d43adb
with:
version: ${{ inputs.quarto-version }}

Expand Down

0 comments on commit b9fb1d6

Please sign in to comment.