File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -272,6 +272,9 @@ extends:
272
272
- pwsh : |
273
273
apt update
274
274
apt -y install gcc-aarch64-linux-gnu
275
+ if ((openssl version -d) -match 'OPENSSLDIR: "(?<dir>.*?)"') {
276
+ $env:OPENSSL_LIB_DIR = $matches['dir']
277
+ }
275
278
./build.ps1 -Release -Architecture aarch64-unknown-linux-gnu
276
279
./build.ps1 -PackageType tgz -Architecture aarch64-unknown-linux-gnu -Release
277
280
Copy-Item ./bin/*.tar.gz "$(ob_outputDirectory)"
@@ -336,6 +339,9 @@ extends:
336
339
apt -y install libssl-dev
337
340
apt -y install pkg-config
338
341
rustup default stable-aarch64-unknown-linux-musl
342
+ if ((openssl version -d) -match 'OPENSSLDIR: "(?<dir>.*?)"') {
343
+ $env:OPENSSL_LIB_DIR = $matches['dir']
344
+ }
339
345
./build.ps1 -Release -Architecture aarch64-unknown-linux-musl
340
346
./build.ps1 -PackageType tgz -Architecture aarch64-unknown-linux-musl -Release
341
347
Copy-Item ./bin/*.tar.gz "$(ob_outputDirectory)"
You can’t perform that action at this time.
0 commit comments