Skip to content

Commit ddffca8

Browse files
committed
Build fix
1 parent 38e4db4 commit ddffca8

File tree

1 file changed

+6
-22
lines changed

1 file changed

+6
-22
lines changed

.github/workflows/binary-build.yml

+6-22
Original file line numberDiff line numberDiff line change
@@ -85,52 +85,36 @@ jobs:
8585
- name: Configure & build for linux
8686
if: matrix.os == 'ubuntu-latest'
8787
run: |
88-
pwd
89-
echo "end pwd"
9088
cd cryptominisat
91-
pwd
92-
echo "end pwd"
93-
ls
94-
echo "end list"
95-
ls ../
96-
echo "end list"
9789
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DENABLE_TESTING=OFF -DSTATICCOMPILE=${{ matrix.staticcompile }}
9890
cmake --build . --config ${{ matrix.build_type }}
9991
10092
10193
- name: Configure & buidl for non-linux
10294
if: matrix.os != 'ubuntu-latest'
10395
run: |
104-
pwd
105-
echo "end pwd"
10696
cd cryptominisat
107-
pwd
108-
echo "end pwd"
109-
ls
110-
echo "end list"
111-
ls ../
112-
echo "end list"
11397
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DENABLE_TESTING=OFF -DSTATICCOMPILE=${{ matrix.staticcompile }}
11498
cmake --build . --config ${{ matrix.build_type }}
11599
ctest -C ${{ matrix.build_type }}
116-
100+
117101
- name: Upload Artifact - Linux
118102
if: matrix.os == 'ubuntu-latest' && matrix.staticcompile == 'ON'
119103
uses: actions/upload-artifact@v4
120104
with:
121105
name: cryptominisat5-linux-amd64
122-
path: cryptominisat/cryptominisat5
106+
path: build/cryptominisat5
123107

124108
- name: Upload Artifact - Mac
125-
if: matrix.os == 'macos-13' && matrix.staticcompile == 'ON'
109+
if: matrix.os == 'macos-14' && matrix.staticcompile == 'ON'
126110
uses: actions/upload-artifact@v4
127111
with:
128-
name: cryptominisat5-mac-amd64
129-
path: cryptominisat/cryptominisat5
112+
name: cryptominisat5-mac-arm64
113+
path: build/cryptominisat5
130114

131115
- name: Upload Artifact - Windows
132116
if: matrix.os == 'windows-2022' && matrix.staticcompile == 'ON'
133117
uses: actions/upload-artifact@v4
134118
with:
135119
name: cryptominisat5-win64.exe
136-
path: cryptominisat\Release\cryptominisat5.exe
120+
path: build\Release\cryptominisat5.exe

0 commit comments

Comments
 (0)