Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Validate bare protocol locally against OpenSSL reference #66

Merged
merged 23 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/local_openssl.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: validate-local-openssl

defaults:
run:
working-directory: validation/local_ping_pong_openssl

on:
pull_request:
paths-ignore:
- README.md
push:
branches: master
paths-ignore:
- README.md

permissions:
contents: read

env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-Dwarnings"

jobs:
test:
strategy:
matrix:
toolchain:
- stable
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: RustCrypto/actions/cargo-cache@master
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- name: Test against OpenSSL locally
run: cargo test
1 change: 1 addition & 0 deletions validation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ between rustls and rustcrypto-rustcrypto provider under different targets.
| Crate | Description |
| :--- | :--- |
| consumer-no_std | Basic consumer library aiming no_std environment |
| local_ping_pong_openssl | Local tests against OpenSSL reference |

These live in the workspace due to different dependency requirements between
tests where development-deps may pollute the integration under test.
Expand Down
6 changes: 6 additions & 0 deletions validation/local_ping_pong_openssl/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
target
certs/*.crt
certs/*.key
certs/*.pfx
certs/*.srl
certs/*.csr
Loading
Loading