Skip to content

Commit 3543f41

Browse files
committed
ci: add libssh2-1-dev system dependency for Net::SSH2 compilation
The CI was failing because Net::SSH2 Perl module requires libssh2-1-dev system library to compile. Added installation of this dependency in the GitHub Actions workflow before Perl module installation.
1 parent 4d7a8a0 commit 3543f41

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/testing.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ jobs:
4242
- name: Checkout code
4343
uses: actions/checkout@v4
4444

45+
- name: Install system dependencies
46+
run: |
47+
sudo apt-get update
48+
sudo apt-get install -y libssh2-1-dev
49+
4550
- name: Install Perl and dependencies
4651
run: |
4752
# Ubuntu already has Perl 5.34+ installed

0 commit comments

Comments
 (0)