aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/linux.yml
diff options
context:
space:
mode:
authorKenjiro Nakayama <nakayamakenjiro@gmail.com>2026-07-30 06:42:58 +0900
committerKenjiro Nakayama <nakayamakenjiro@gmail.com>2026-07-30 08:20:41 +0900
commit686304f1581c4bbc49e8a87408e9e38d4b72445a (patch)
tree00e7a53997ec79b4397edf9c40cc07a085a8a903 /.github/workflows/linux.yml
parentdf1ed6bb4ec3e72c20a7082cc168a45ae67704ba (diff)
downloadportable-686304f1581c4bbc49e8a87408e9e38d4b72445a.tar.gz
portable-686304f1581c4bbc49e8a87408e9e38d4b72445a.tar.bz2
portable-686304f1581c4bbc49e8a87408e9e38d4b72445a.zip
ci: install the IO::Socket::SSL test dependency
Install IO::Socket::SSL to enable the ssl_verify regress test.
Diffstat (limited to '.github/workflows/linux.yml')
-rw-r--r--.github/workflows/linux.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index a44df9d..197e894 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -46,6 +46,12 @@ jobs:
46 - name: "Checkout repository" 46 - name: "Checkout repository"
47 uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 47 uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
48 48
49 - name: "Install test dependencies"
50 run: |
51 sudo apt-get update
52 sudo apt-get install -y libio-socket-ssl-perl
53 perl -MIO::Socket::SSL::Utils -e 1
54
49 - name: "Run tests" 55 - name: "Run tests"
50 run: ./scripts/test || (status=$?; cat tests/test-suite.log; exit $status) 56 run: ./scripts/test || (status=$?; cat tests/test-suite.log; exit $status)
51 env: 57 env:
@@ -68,6 +74,12 @@ jobs:
68 - name: "Checkout repository" 74 - name: "Checkout repository"
69 uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 75 uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
70 76
77 - name: "Install test dependencies"
78 run: |
79 sudo apt-get update
80 sudo apt-get install -y libio-socket-ssl-perl
81 perl -MIO::Socket::SSL::Utils -e 1
82
71 - name: "Run tests" 83 - name: "Run tests"
72 run: ./scripts/test 84 run: ./scripts/test
73 env: 85 env: