mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-06 13:10:49 +02:00
7f80896033
- Skip CI for draft PRs and redundant master-push re-runs; membrowse nightly. - Add smoke test (8 configs, CFLAGS=-Werror, post-merge tree, fail-fast on conflicts). - Add wait-for-smoke composite action for downstream CI gating. - Add check-source-text + bash -n + shellcheck workflow (script in make dist). - Cache apt-get update in install-apt-deps composite on cache hit.
42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
name: WolfSSL CMake Autoconf Interworking Test
|
|
|
|
on:
|
|
push:
|
|
branches: [ 'release/**' ]
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
branches: [ '*' ]
|
|
|
|
jobs:
|
|
build:
|
|
if: ${{ (github.repository_owner == 'wolfssl') && (github.event_name != 'pull_request' || github.event.pull_request.draft == false) }}
|
|
runs-on: ubuntu-24.04
|
|
|
|
steps:
|
|
# pull wolfSSL
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install cmake and autotools
|
|
uses: ./.github/actions/install-apt-deps
|
|
with:
|
|
packages: cmake autoconf automake libtool
|
|
|
|
# build and install wolfssl via autotools for CMake consumer test
|
|
- name: Build wolfssl with autotools
|
|
run: |
|
|
./autogen.sh
|
|
./configure --prefix="$GITHUB_WORKSPACE/install-autoconf" --enable-all
|
|
make -j $(nproc)
|
|
make install
|
|
|
|
# CMake consumer test using the autotools install
|
|
- name: CMake consumer test (autotools install)
|
|
run: |
|
|
mkdir -p cmake/consumer/build
|
|
cd cmake/consumer/build
|
|
cmake -DCMAKE_PREFIX_PATH="$GITHUB_WORKSPACE/install-autoconf" ..
|
|
cmake --build .
|
|
./wolfssl_consumer
|
|
cd ..
|
|
rm -rf build
|