/usr/bin/ld: warning: libssl.so.1.0.0, needed by /usr/local/lib/libgit2.so, not found (try using -rpath or -rpath-link)
/usr/bin/ld: warning: libcrypto.so.1.0.0, needed by /usr/local/lib/libgit2.so, not found (try using -rpath or -rpath-link)
I think https://github.com/libgit2/libgit2/pull/6258 can be a valid solution, since it seems to enable support for dynamically provides OpenSSL dependency, and it's shipped with libgit2 version 1.5
As mentioned in https://stackoverflow.com/questions/70980763/bitrise-update-jira-issues-with-build-number-not-working, the step fails every time on Bitrise Ubuntu machines. The failure is caused by
lib2git
dependency onlibssl.so.1.0.0
andlibcrypto.so.1.0.0
which are not available on Bitrise Ubuntu 20.04 machines, since they ship withOpenSSL 1.1.1
. Here's the warning before step execution fails:I think https://github.com/libgit2/libgit2/pull/6258 can be a valid solution, since it seems to enable support for dynamically provides OpenSSL dependency, and it's shipped with
libgit2
version1.5