mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-05 17:40:50 +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.
123 lines
3.3 KiB
YAML
123 lines
3.3 KiB
YAML
name: nss interop Tests
|
|
|
|
### TODO uncomment stuff
|
|
|
|
# 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
|
|
|
|
env:
|
|
NSS_REF: NSS_3_107_RTM
|
|
|
|
jobs:
|
|
build_nss:
|
|
name: Build nss
|
|
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: 30
|
|
steps:
|
|
- name: Checkout wolfSSL CI actions
|
|
uses: actions/checkout@v4
|
|
with:
|
|
sparse-checkout: .github/actions
|
|
fetch-depth: 1
|
|
|
|
- name: Checking if we have nss in cache
|
|
uses: actions/cache@v4
|
|
id: cache
|
|
with:
|
|
path: dist
|
|
key: nss-${{ env.NSS_REF }}
|
|
lookup-only: true
|
|
|
|
- name: Install dependencies
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
uses: ./.github/actions/install-apt-deps
|
|
with:
|
|
packages: gyp ninja-build
|
|
|
|
- name: Checkout nss
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: nss-dev/nss
|
|
ref: ${{ env.NSS_REF }}
|
|
path: nss
|
|
fetch-depth: 1
|
|
|
|
- name: Compile nss
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
run: |
|
|
hg clone https://hg.mozilla.org/projects/nspr
|
|
cd nss
|
|
./build.sh
|
|
|
|
nss_test:
|
|
name: Test interop with nss
|
|
if: ${{ (github.repository_owner == 'wolfssl') && (github.event_name != 'pull_request' || github.event.pull_request.draft == false) }}
|
|
runs-on: ubuntu-24.04
|
|
needs: build_nss
|
|
timeout-minutes: 30
|
|
steps:
|
|
- name: Checking if we have nss in cache
|
|
uses: actions/cache@v4
|
|
id: cache
|
|
with:
|
|
path: dist
|
|
key: nss-${{ env.NSS_REF }}
|
|
|
|
- name: Checkout wolfSSL CI actions (fallback on cache miss)
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
uses: actions/checkout@v4
|
|
with:
|
|
sparse-checkout: .github/actions
|
|
fetch-depth: 1
|
|
|
|
- name: Install dependencies (fallback on cache miss)
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
uses: ./.github/actions/install-apt-deps
|
|
with:
|
|
packages: gyp ninja-build
|
|
|
|
- name: Checkout nss (fallback on cache miss)
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: nss-dev/nss
|
|
ref: ${{ env.NSS_REF }}
|
|
path: nss
|
|
fetch-depth: 1
|
|
|
|
- name: Compile nss (fallback on cache miss)
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
run: |
|
|
hg clone https://hg.mozilla.org/projects/nspr
|
|
cd nss
|
|
./build.sh
|
|
|
|
- name: Build wolfSSL
|
|
uses: wolfSSL/actions-build-autotools-project@v1
|
|
with:
|
|
path: wolfssl
|
|
configure: --enable-dtls --enable-dtls13
|
|
install: false
|
|
check: false
|
|
|
|
- name: Test interop
|
|
run: bash wolfssl/.github/workflows/nss.sh
|
|
|
|
- name: print server logs
|
|
if: ${{ failure() }}
|
|
run: |
|
|
cat /tmp/server.log
|