2022-05-18 06:03:16 +08:00
|
|
|
# Copyright (C) 2000 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
2022-05-17 17:16:50 +08:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: curl
|
|
|
|
|
2021-12-28 22:08:24 +08:00
|
|
|
name: Linux
|
|
|
|
|
|
|
|
on:
|
|
|
|
# Trigger the workflow on push or pull requests, but only for the
|
|
|
|
# master branch
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- '*/ci'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
autotools:
|
|
|
|
name: ${{ matrix.build.name }}
|
|
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
timeout-minutes: 60
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
build:
|
2022-01-21 21:31:48 +08:00
|
|
|
- name: wolfssl (configured with --enable-all)
|
2021-12-28 22:08:24 +08:00
|
|
|
install:
|
2022-05-18 06:03:16 +08:00
|
|
|
configure: LDFLAGS="-Wl,-rpath,$HOME/wssl/lib" --with-wolfssl=$HOME/wssl --enable-debug
|
2022-01-21 21:31:48 +08:00
|
|
|
wolfssl-configure: --enable-all
|
|
|
|
- name: wolfssl (configured with --enable-opensslextra)
|
|
|
|
install:
|
2022-05-18 06:03:16 +08:00
|
|
|
configure: LDFLAGS="-Wl,-rpath,$HOME/wssl/lib" --with-wolfssl=$HOME/wssl --enable-debug
|
2022-01-21 21:31:48 +08:00
|
|
|
wolfssl-configure: --enable-opensslextra
|
2021-12-28 22:08:24 +08:00
|
|
|
|
|
|
|
steps:
|
2022-01-20 16:29:12 +08:00
|
|
|
- run: |
|
2022-05-18 06:03:16 +08:00
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install libtool autoconf automake pkg-config stunnel4 ${{ matrix.build.install }}
|
2021-12-14 03:51:19 +08:00
|
|
|
sudo python3 -m pip install impacket
|
2022-05-18 06:03:16 +08:00
|
|
|
name: 'install prereqs and impacket'
|
2021-12-28 22:08:24 +08:00
|
|
|
|
|
|
|
- run: |
|
2022-02-08 04:39:58 +08:00
|
|
|
curl -LO https://github.com/wolfSSL/wolfssl/archive/v5.0.0-stable.tar.gz
|
|
|
|
tar -xzf v5.0.0-stable.tar.gz
|
|
|
|
cd wolfssl-5.0.0-stable
|
|
|
|
./autogen.sh
|
|
|
|
./configure --enable-tls13 ${{ matrix.build.wolfssl-configure }} --enable-harden --prefix=$HOME/wssl
|
|
|
|
make && make install
|
2021-12-28 22:08:24 +08:00
|
|
|
name: 'install wolfssl'
|
|
|
|
|
2022-05-15 05:37:59 +08:00
|
|
|
- uses: actions/checkout@v3
|
2021-12-28 22:08:24 +08:00
|
|
|
|
2022-05-18 06:03:16 +08:00
|
|
|
- run: autoreconf -fi
|
|
|
|
name: 'autoreconf'
|
|
|
|
|
2022-05-30 20:13:48 +08:00
|
|
|
- run: ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }}
|
2022-05-18 06:03:16 +08:00
|
|
|
name: 'configure'
|
|
|
|
|
|
|
|
- run: make V=1
|
|
|
|
name: 'make'
|
|
|
|
|
|
|
|
- run: make V=1 examples
|
|
|
|
name: 'make examples'
|
2021-12-28 22:08:24 +08:00
|
|
|
|
|
|
|
- run: make V=1 test-ci
|
|
|
|
name: 'test'
|
|
|
|
env:
|
|
|
|
TFLAGS: "${{ matrix.build.tflags }}"
|