@@ -85,52 +85,36 @@ jobs:
85
85
- name : Configure & build for linux
86
86
if : matrix.os == 'ubuntu-latest'
87
87
run : |
88
- pwd
89
- echo "end pwd"
90
88
cd cryptominisat
91
- pwd
92
- echo "end pwd"
93
- ls
94
- echo "end list"
95
- ls ../
96
- echo "end list"
97
89
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DENABLE_TESTING=OFF -DSTATICCOMPILE=${{ matrix.staticcompile }}
98
90
cmake --build . --config ${{ matrix.build_type }}
99
91
100
92
101
93
- name : Configure & buidl for non-linux
102
94
if : matrix.os != 'ubuntu-latest'
103
95
run : |
104
- pwd
105
- echo "end pwd"
106
96
cd cryptominisat
107
- pwd
108
- echo "end pwd"
109
- ls
110
- echo "end list"
111
- ls ../
112
- echo "end list"
113
97
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DENABLE_TESTING=OFF -DSTATICCOMPILE=${{ matrix.staticcompile }}
114
98
cmake --build . --config ${{ matrix.build_type }}
115
99
ctest -C ${{ matrix.build_type }}
116
-
100
+
117
101
- name : Upload Artifact - Linux
118
102
if : matrix.os == 'ubuntu-latest' && matrix.staticcompile == 'ON'
119
103
uses : actions/upload-artifact@v4
120
104
with :
121
105
name : cryptominisat5-linux-amd64
122
- path : cryptominisat /cryptominisat5
106
+ path : build /cryptominisat5
123
107
124
108
- name : Upload Artifact - Mac
125
- if : matrix.os == 'macos-13 ' && matrix.staticcompile == 'ON'
109
+ if : matrix.os == 'macos-14 ' && matrix.staticcompile == 'ON'
126
110
uses : actions/upload-artifact@v4
127
111
with :
128
- name : cryptominisat5-mac-amd64
129
- path : cryptominisat /cryptominisat5
112
+ name : cryptominisat5-mac-arm64
113
+ path : build /cryptominisat5
130
114
131
115
- name : Upload Artifact - Windows
132
116
if : matrix.os == 'windows-2022' && matrix.staticcompile == 'ON'
133
117
uses : actions/upload-artifact@v4
134
118
with :
135
119
name : cryptominisat5-win64.exe
136
- path : cryptominisat \Release\cryptominisat5.exe
120
+ path : build \Release\cryptominisat5.exe
0 commit comments