fix(plugins): Reenable writing rejected certificates to a reject folder #730
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux Build & Test with OpenSSL3.0 | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- build_name: "Encryption (OpenSSL3.0) Build & Unit Tests (gcc)" | |
cmd_deps: sudo apt-get install -y -qq openssl | |
cmd_action: unit_tests_encryption OPENSSL | |
name: ${{matrix.build_name}} | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y -qq python3-sphinx graphviz check | |
${{ matrix.cmd_deps }} | |
- name: ${{matrix.build_name}} | |
run: source tools/ci.sh && ${{matrix.cmd_action}} | |
env: | |
ETHERNET_INTERFACE: eth0 | |