Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2018-10-02 12:10:23 +0300
committerGitHub <noreply@github.com>2018-10-02 12:10:23 +0300
commit634e726bdf3653242d570cfc16f44613820bc1ea (patch)
tree005cee936cf23d5a7c39ffbcee4d0d3bd48370ef /scripts/ci
parent6145ad25fc10ae393eb9a5736bac4197ead39fcd (diff)
[packaging] Remove installation of openssl via brew on macOS (#10874)
We're now using an msbuild version which uses .NET Core 2.x which no longer needs openssl.
Diffstat (limited to 'scripts/ci')
-rw-r--r--scripts/ci/pipeline/osx-package.groovy9
1 files changed, 0 insertions, 9 deletions
diff --git a/scripts/ci/pipeline/osx-package.groovy b/scripts/ci/pipeline/osx-package.groovy
index 5ad988d8a6a..c9f28c70b07 100644
--- a/scripts/ci/pipeline/osx-package.groovy
+++ b/scripts/ci/pipeline/osx-package.groovy
@@ -29,15 +29,6 @@ node ("osx-amd64") {
stage('Build') {
utils.reportGitHubStatus (isPr ? env.ghprbActualCommit : commitHash, 'PKG-mono', env.BUILD_URL, 'PENDING', 'Building...')
- // install openssl for .net core (remove once msbuild uses a 2.x version which doesn't rely on openssl)
- sh 'brew update && brew install openssl'
- sh 'mkdir -p /usr/local/lib'
- sh 'rm /usr/local/lib/libcrypto.1.0.0.dylib || true'
- sh 'rm /usr/local/lib/libssl.1.0.0.dylib || true'
- sh 'ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/'
- sh 'ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/'
-
-
// workaround for libtiff issue
sh 'make -C external/bockbuild/builds/tiff-4.0.8-x86 clean || true'
sh 'make -C external/bockbuild/builds/tiff-4.0.8-x64 clean || true'