We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a489fb commit d321597Copy full SHA for d321597
src/ci_integration_functions.jl
@@ -197,6 +197,14 @@ function upload_to_coveralls(fcs::Vector{FileCoverage};
197
@debug "Using environment COVERALLS_SERVICE_NUMBER" service_number=ENV["COVERALLS_SERVICE_NUMBER"]
198
end
199
200
+ # Set SSL certificate bundle for macOS binaries (fixes SSL verification issues)
201
+ if Sys.isapple()
202
+ # Set the macOS system CA certificate bundle directly
203
+ env["SSL_CERT_FILE"] = "/etc/ssl/cert.pem"
204
+ env["SSL_CA_BUNDLE"] = "/etc/ssl/cert.pem"
205
+ @debug "Using macOS system CA certificate bundle: /etc/ssl/cert.pem"
206
+ end
207
+
208
# Execute command
209
if dry_run
210
@info "Would execute: $(join(cmd_args, " "))"
0 commit comments