From b9fb1d6636d103e113141c81f3ec6d37fa25c548 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Cs=C3=A1rdi?= Date: Wed, 19 Feb 2025 21:20:22 +0100 Subject: [PATCH] quarto-dev/quarto-actions/setup works on arm64 linux (#981) --- setup-r-dependencies/action.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/setup-r-dependencies/action.yaml b/setup-r-dependencies/action.yaml index 0f45e858..7583b2d3 100644 --- a/setup-r-dependencies/action.yaml +++ b/setup-r-dependencies/action.yaml @@ -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) { @@ -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 }}