Skip to content

Commit

Permalink
Update binary-build.yml -- install and fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
msoos committed Jan 13, 2024
1 parent c8e5211 commit 0e066dd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
path: cryptominisat5

- name: Upload Artifact - Mac
if: matrix.os == ' macos-13' && matrix.staticcompile == 'ON'
if: matrix.os == 'macos-13' && matrix.staticcompile == 'ON'
uses: actions/upload-artifact@v3
with:
name: cryptominisat5-mac-amd64
Expand All @@ -90,10 +90,10 @@ jobs:
name: cryptominisat5-win64.exe
path: Release\cryptominisat5.exe

#- name: "Install CMS (unix)"
# if: ${{ !contains(matrix.os, 'windows') }}
# run: sudo cmake --install build --config ${{ matrix.build_type }}
- name: "Install CMS (unix)"
if: ${{ !contains(matrix.os, 'windows') }}
run: sudo cmake --install build --config ${{ matrix.build_type }}

#- name: "Install Spix (win)"
# if: ${{ contains(matrix.os, 'windows') }}
# run: cmake --install build --config ${{ matrix.build_type }}
- name: "Install Spix (win)"
if: ${{ contains(matrix.os, 'windows') }}
run: cmake --install build --config ${{ matrix.build_type }}

0 comments on commit 0e066dd

Please sign in to comment.