Skip to content

Commit 224f76f

Browse files
committed
Install openssl in CircleCI
1 parent 218e5cf commit 224f76f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.circleci/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,12 @@ jobs:
8787
- attach_workspace: { at: /home/circleci }
8888
- restore_cache: { key: 'gradle-wrapper-v2-{{ checksum "gradle/wrapper/gradle-wrapper.properties" }}' }
8989
- restore_cache: { key: 'unit-test-gradle-cache-v2-{{ checksum "versions.props" }}-{{ checksum "build.gradle" }}' }
90+
- run:
91+
name: link_openssl
92+
command: |
93+
sudo ln -s /lib/x86_64-linux-gnu/libcrypt.so /usr/lib/libcrypto.so
94+
echo "Linked openssl /usr/lib/libcrypto.so"
95+
ls -al /lib/libcrypto* /usr/lib/libcrypto* /usr/lib/ssl/libcrypto* //usr/lib/x86_64-linux-gnu/libcrypto*
9096
- run: ./gradlew --parallel --stacktrace --continue --max-workers=2 test
9197
- save_cache:
9298
key: 'unit-test-gradle-cache-v2-{{ checksum "versions.props" }}-{{ checksum "build.gradle" }}'

0 commit comments

Comments
 (0)