From c45123549af79f35bd77ace359fa841581d22709 Mon Sep 17 00:00:00 2001 From: Martin Studer Date: Mon, 7 Oct 2024 17:48:50 +0200 Subject: [PATCH] install vcredist on Windows --- .github/workflows/ci-tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 561e263..faf7510 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -107,6 +107,12 @@ jobs: extra-packages: | any::rcmdcheck + - name: Install Microsoft Visual C++ 2010 SP1 Redistributable Package via Chocolatey + if: runner.os == 'Windows' + run: | + # Install the package using Chocolatey + choco install vcredist2010 -y --allow-empty-checksums + - name: Install Spark run: | sparklyr::spark_install(version="${{ matrix.config.spark }}")