Some fixes #239
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
- next | |
pull_request: | |
branches: [master] | |
jobs: | |
xssl-tests: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
xssl_versions: | |
- { version: "master", continue: true, libressl: true } | |
- { version: "OPENBSD_7_5", continue: true, libressl: true } | |
- { version: "v3.9.1", continue: true, libressl: true } | |
- { version: "OPENBSD_7_4", continue: true, libressl: true } | |
- { version: "v3.8.4", continue: true, libressl: true } | |
- { version: "OPENBSD_7_3", continue: true, libressl: true } | |
- { version: "OPENBSD_7_2", continue: true, libressl: true } | |
- { version: "OPENBSD_7_1", continue: true, libressl: true } | |
# https://github.com/libressl-portable/portable/issues/760 | |
# - { version: "v3.5.2", continue: true, libressl: true } | |
- { version: "OPENBSD_7_0", continue: true, libressl: true } | |
# OPENBSD_7_0 is basically the "fixed v3.4.3" | |
# - { version: "v3.4.3", continue: true, libressl: true } | |
- { version: "v3.4.2", continue: true, libressl: true } | |
- { version: "OPENBSD_6_9", continue: true, libressl: true } | |
- { version: "v3.1.5", continue: true, libressl: true } | |
- { version: "v2.1.10", continue: true, libressl: true } | |
- { version: "openssl-3.0", continue: true, libressl: false } | |
- { version: "openssl-3.0.13", continue: false, libressl: false } | |
- { version: "openssl-3.1", continue: true, libressl: false } | |
- { version: "openssl-3.1.5", continue: false, libressl: false } | |
- { version: "openssl-3.2", continue: true, libressl: false } | |
- { version: "openssl-3.2.1", continue: false, libressl: false } | |
- { version: "openssl-3.3", continue: true, libressl: false } | |
- { version: "openssl-3.3.0", continue: false, libressl: false } | |
name: xSSL tests | |
continue-on-error: ${{ matrix.xssl_versions.continue }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y libtool pkg-config libexpat1-dev valgrind | |
- name: build&install the TLS stack | |
env: | |
XSSL_COMMITISH: ${{ matrix.xssl_versions.version }} | |
LIBRESSL: ${{ matrix.xssl_versions.libressl }} | |
run: | | |
./travis/before_script.sh | |
- name: Build the library | |
run: | | |
./bootstrap.sh | |
PKG_CONFIG_PATH="${HOME}/xssl/lib/pkgconfig" ./configure CFLAGS="-Werror -g3" --prefix="${HOME}/xssl" | |
make -j$(nproc) | |
- name: Run tests | |
run: | | |
LD_LIBRARY_PATH="${HOME}/xssl/lib" make -j$(nproc) check | |
- name: Let's see the TLS stack version | |
run: | | |
cat tests/test_xmppaddr.log | |
- name: Build the library with Valgrind enabled | |
run: | | |
./bootstrap.sh | |
PKG_CONFIG_PATH="${HOME}/xssl/lib/pkgconfig" ./configure --enable-valgrind CFLAGS="-Werror -g3" --prefix="${HOME}/xssl" | |
make -j$(nproc) | |
- name: Run tests with Valgrind enabled | |
run: | | |
LD_LIBRARY_PATH="${HOME}/xssl/lib" make -j$(nproc) check-valgrind | |
- name: Error logs | |
if: ${{ failure() }} | |
run: | | |
cat test-suite*.log || true |