From 0e651ebfdad012fb60012953a81eccbc9ea34990 Mon Sep 17 00:00:00 2001 From: Mohammed Ghannam Date: Mon, 11 Sep 2023 15:36:19 +0200 Subject: [PATCH] WIP --- .github/workflows/build_binaries.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_binaries.yml b/.github/workflows/build_binaries.yml index ba51acf48c..4b57dd5a16 100644 --- a/.github/workflows/build_binaries.yml +++ b/.github/workflows/build_binaries.yml @@ -27,9 +27,21 @@ jobs: - uses: julia-actions/setup-julia@v1 with: version: 1.6 - - name: Install SCIP julia package - run: | - julia -e 'using Pkg; Pkg.add(\"SCIP\")' + + - name: Run command on Ubuntu + if: matrix.os == 'ubuntu-latest' + run: julia -e 'using Pkg; Pkg.add("SCIP")' + shell: bash + + - name: Run command on macOS + if: matrix.os == 'macos-latest' + run: julia -e 'using Pkg; Pkg.add("SCIP")' + shell: bash + + - name: Run command on Windows + if: matrix.os == 'windows-latest' + run: julia -e 'using Pkg; Pkg.add(\"SCIP\")' + shell: pwsh