From 9d5efa309a3f959d42edb53ff3d8d4af34ce4398 Mon Sep 17 00:00:00 2001 From: synqa Date: Wed, 10 Jun 2026 14:36:23 +0900 Subject: [PATCH] Add CI for LibreSSL When libressl-dev package is installed on Alpine Linux, LibreSSL is used by default. --- .github/workflows/libressl.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/libressl.yml diff --git a/.github/workflows/libressl.yml b/.github/workflows/libressl.yml new file mode 100644 index 00000000..3ed27413 --- /dev/null +++ b/.github/workflows/libressl.yml @@ -0,0 +1,31 @@ +name: LibreSSL + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + libressl: + runs-on: ubuntu-latest + container: + image: alpine:latest + + steps: + - name: Install dependencies + run: apk add binutils --no-cache build-base git readline-dev libressl-dev ncurses-dev git cmake zlib-dev libsodium-dev gnu-libiconv + + - uses: actions/checkout@v6 + with: + submodules: true + + - name: Configure + run: ./configure + + - name: Make + run: make -j $(nproc) -C build + + - name: Test + run: | + .ci/memory-leak-test.sh + .ci/vpntools-check.sh