Skip to content

Commit

Permalink
Try conda
Browse files Browse the repository at this point in the history
  • Loading branch information
mmghannam committed Sep 11, 2023
1 parent 281c6fd commit 75dcbee
Showing 1 changed file with 11 additions and 24 deletions.
35 changes: 11 additions & 24 deletions .github/workflows/build_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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







Expand Down

0 comments on commit 75dcbee

Please sign in to comment.