Skip to content

Commit 20cf4d7

Browse files
committed
Try to fix Ubuntu CI error: "No usable version of libssl was found"
1 parent b965f94 commit 20cf4d7

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/pr.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ jobs:
3838
if: matrix.os == 'windows-latest'
3939
run: .\build.cmd
4040

41+
- name: Unix install libssl
42+
if: matrix.os != 'windows-latest'
43+
run: sudo apt-get install -y libssl-dev
44+
4145
- name: Build on Unix
4246
if: matrix.os != 'windows-latest'
4347
run: ./build.sh

.github/workflows/push.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ jobs:
3838
if: matrix.os == 'windows-latest'
3939
run: .\build.cmd
4040

41+
- name: Unix install libssl
42+
if: matrix.os != 'windows-latest'
43+
run: sudo apt-get install -y libssl-dev
44+
4145
- name: Build on Unix
4246
if: matrix.os != 'windows-latest'
4347
run: ./build.sh

0 commit comments

Comments
 (0)