From 0e066dd3d2475b73513e310eb7cd7094c97f15e6 Mon Sep 17 00:00:00 2001 From: Mate Soos Date: Sat, 13 Jan 2024 20:33:12 +0100 Subject: [PATCH] Update binary-build.yml -- install and fix typo --- .github/workflows/binary-build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/binary-build.yml b/.github/workflows/binary-build.yml index 36c5b46df..ead3f5c7d 100644 --- a/.github/workflows/binary-build.yml +++ b/.github/workflows/binary-build.yml @@ -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 @@ -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 }}