Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
mmghannam committed Sep 11, 2023
1 parent 025ff4f commit 0e651eb
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/build_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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



Expand Down

0 comments on commit 0e651eb

Please sign in to comment.