From 75dcbee64f0e8328afce935cc5bd5eb7f1b0b66f Mon Sep 17 00:00:00 2001 From: Mohammed Ghannam Date: Mon, 11 Sep 2023 16:24:17 +0200 Subject: [PATCH] Try conda --- .github/workflows/build_binaries.yml | 35 +++++++++------------------- 1 file changed, 11 insertions(+), 24 deletions(-) diff --git a/.github/workflows/build_binaries.yml b/.github/workflows/build_binaries.yml index 2b41c811bc..fed38076c8 100644 --- a/.github/workflows/build_binaries.yml +++ b/.github/workflows/build_binaries.yml @@ -24,32 +24,19 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: julia-actions/setup-julia@v1 - with: - version: 1.6 - - - 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 + - uses: conda-incubator/setup-miniconda - - name: Upload Binaries as artifacts - uses: actions/upload-artifact@v2 + - name: Install dependencies + run: | + conda install -c conda-forge scip + - uses: upload-artifact@v2 with: - name: Binaries - path: | - ${{ runner.temp }}/julia - ${{ runner.temp }}/julia_packages + name: libscip + path: ${{ env.CONDA_PREFIX }}/lib + + + +