Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0320c9d

Browse filesBrowse files
committed
Test OpenSSL after build
1 parent 233441a commit 0320c9d
Copy full SHA for 0320c9d

File tree

Expand file treeCollapse file tree

2 files changed

+14
-4
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

2 files changed

+14
-4
lines changed
Open diff view settings
Collapse file

‎utils/acquireOpenSSL.js‎

Copy file name to clipboardExpand all lines: utils/acquireOpenSSL.js
+5-1Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,11 @@ const buildDarwin = async (buildCwd, macOsDeploymentTarget) => {
4949
cwd: buildCwd
5050
}, { pipeOutput: true });
5151

52-
await execPromise("make depend", {
52+
await execPromise("make", {
53+
cwd: buildCwd
54+
}, { pipeOutput: true });
55+
56+
await execPromise("make test", {
5357
cwd: buildCwd
5458
}, { pipeOutput: true });
5559

Collapse file

‎utils/build-openssl.bat‎

Copy file name to clipboard
+9-3Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
@call %1 %2
22

3-
echo %cd%
3+
perl .\Configure %3 shared no-ssl2 no-ssl3 no-comp --prefix="%cd%\.." --openssldir="%cd%\.." || goto :error
44

5-
perl .\Configure %3 shared no-ssl2 no-ssl3 no-comp --prefix="%cd%\.." --openssldir="%cd%\.."
5+
nmake || goto :error
6+
nmake test || goto :error
7+
nmake install || goto :error
68

7-
nmake install
9+
goto :EOF
10+
11+
:error
12+
echo Failed with error #%errorlevel%.
13+
exit /b %errorlevel%

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.