mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-05 19:20: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.
98 lines
2.8 KiB
YAML
98 lines
2.8 KiB
YAML
name: libssh2 Tests
|
|
|
|
# START OF COMMON SECTION
|
|
on:
|
|
push:
|
|
branches: [ 'release/**' ]
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
branches: [ '*' ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
# END OF COMMON SECTION
|
|
|
|
jobs:
|
|
build_wolfssl:
|
|
name: Build wolfSSL
|
|
# Just to keep it the same as the testing target
|
|
if: ${{ (github.repository_owner == 'wolfssl') && (github.event_name != 'pull_request' || github.event.pull_request.draft == false) }}
|
|
runs-on: ubuntu-24.04
|
|
# This should be a safe limit for the tests to run.
|
|
timeout-minutes: 4
|
|
steps:
|
|
- name: Build wolfSSL
|
|
uses: wolfSSL/actions-build-autotools-project@v1
|
|
with:
|
|
path: wolfssl
|
|
configure: --enable-all
|
|
check: false # config is already tested in many other PRB's
|
|
install: true
|
|
|
|
- name: tar build-dir
|
|
run: tar -zcf build-dir.tgz build-dir
|
|
|
|
- name: Upload built lib
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: wolf-install-libssh2
|
|
path: build-dir.tgz
|
|
retention-days: 5
|
|
|
|
libssh2_check:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
# List of releases to test
|
|
ref: [ 1.11.1 ]
|
|
name: ${{ matrix.ref }}
|
|
if: ${{ (github.repository_owner == 'wolfssl') && (github.event_name != 'pull_request' || github.event.pull_request.draft == false) }}
|
|
runs-on: ubuntu-24.04
|
|
# This should be a safe limit for the tests to run.
|
|
timeout-minutes: 8
|
|
needs: build_wolfssl
|
|
steps:
|
|
- name: Download lib
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: wolf-install-libssh2
|
|
|
|
- name: untar build-dir
|
|
run: tar -xf build-dir.tgz
|
|
|
|
- name: Clone libssh2
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: libssh2/libssh2
|
|
ref: libssh2-${{ matrix.ref }}
|
|
path: libssh2
|
|
fetch-depth: 1
|
|
|
|
- name: Update libssh2 test to use a stable version of debian
|
|
working-directory: libssh2
|
|
run: |
|
|
sed -i 's/testing-slim/oldstable-slim/' tests/openssh_server/Dockerfile
|
|
|
|
- name: Build libssh2
|
|
working-directory: libssh2
|
|
run: |
|
|
autoreconf -fi
|
|
./configure --with-crypto=wolfssl --with-libwolfssl-prefix=$GITHUB_WORKSPACE/build-dir
|
|
make -j
|
|
|
|
- name: Pre-build Docker image to avoid concurrent docker build race
|
|
working-directory: libssh2
|
|
run: docker build -t libssh2/openssh_server tests/openssh_server
|
|
|
|
- name: Run libssh2 tests
|
|
working-directory: libssh2
|
|
run: make -j check
|
|
|
|
- name: Confirm libssh2 built with wolfSSL
|
|
run: ldd libssh2/src/.libs/libssh2.so | grep wolfssl
|
|
|
|
- name: print test logs
|
|
if: ${{ failure() }}
|
|
run: tail -n +1 libssh2/tests/*.log
|