From cf14199b9d8c031b885c3baef373f1cf70b78d20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sat, 30 Nov 2024 17:22:36 +0100 Subject: [PATCH] ci: Install GLPK on macOS --- .github/workflows/custom/before-install/action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/custom/before-install/action.yml b/.github/workflows/custom/before-install/action.yml index fd52fc5a4e..3778a28ca8 100644 --- a/.github/workflows/custom/before-install/action.yml +++ b/.github/workflows/custom/before-install/action.yml @@ -7,3 +7,9 @@ runs: run: | echo '_R_CHECK_PKG_SIZES_=FALSE' | tee -a $GITHUB_ENV shell: bash + + - name: Install GLPK on macOS + if: runner.os == 'macOS' + run: | + brew install glpk + shell: bash