Skip to content

Activate TLS-Anvil CI tests #39

Activate TLS-Anvil CI tests

Activate TLS-Anvil CI tests #39

Workflow file for this run

# (C) 2023 Jack Lloyd
# (C) 2023 Fabian Albert, Rohde & Schwarz Cybersecurity
#
# Botan is released under the Simplified BSD License (see license.txt)
name: nightly
permissions:
contents: read
# implicitly all other scopes not listed become none
on:
push:
branches: [ ci-test/fix/tls_http_alert ]
jobs:
# clang_tidy:
# name: "clang-tidy"
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v3
# - name: Setup Build Agent
# uses: ./.github/actions/setup-build-agent
# with:
# target: clang-tidy
# cache-key: linux-x86_64-clang-tidy
# - name: Install Boost
# run: sudo apt-get -qq install libboost-dev
# - name: Configure Build
# run: python3 ./configure.py --cc=clang --build-targets=shared,cli,tests,examples,bogo_shim --build-fuzzers=test --with-boost --with-sqlite --with-zlib --with-lzma --with-bzip2
# - name: Run Clang Tidy
# run: python3 ./src/scripts/dev_tools/run_clang_tidy.py --verbose
# valgrind:
# name: "valgrind"
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v3
# - name: Setup Build Agent
# uses: ./.github/actions/setup-build-agent
# with:
# target: valgrind-full
# cache-key: linux-x86_64-valgrind-full
# - name: Valgrind Checks
# run: python3 ./src/scripts/ci_build.py --cc=gcc --make-tool=make valgrind-full
# hybrid_tls_interop:
# name: "PQ/T TLS 1.3"
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v3
# - name: Setup Build Agent
# uses: ./.github/actions/setup-build-agent
# with:
# target: hybrid-tls13-interop-test
# cache-key: linux-x86_64-hybrid_tls
# - name: Hybrid PQ/T TLS 1.3 Online Interop Checks
# run: python3 ./src/scripts/ci_build.py --cc=gcc --make-tool=make hybrid-tls13-interop-test
tls_anvil_server_test:
name: "TLS-Anvil (server)"
runs-on: ubuntu-22.04
steps:
- name: Fetch Botan Repository
uses: actions/checkout@v3
- name: Setup Build Agent
uses: ./.github/actions/setup-build-agent
with:
target: tlsanvil
cache-key: linux-x86_64-tlsanvil
- name: Build and Test Botan Server with TLS-Anvil
run: >
python3 ./src/scripts/ci/ci_tlsanvil_test.py
--botan-dir .
--test-target server
--parallel $(nproc)
- uses: actions/upload-artifact@v3
with:
name: tls-anvil-server-test-results
path: |
./TestSuiteResults/
./logs/
- name: Check TLS-Anvil Test Results
run: python3 ./src/scripts/ci/ci_tlsanvil_check.py --verbose ./TestSuiteResults