Skip to content

Implement fips method for provider and parts #45

Implement fips method for provider and parts

Implement fips method for provider and parts #45

Workflow file for this run

name: Rust
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install toolchain
uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
- name: Cache build artifacts
uses: Swatinem/rust-cache@v2
- name: cargo test
run: cargo test --all-features
# https://github.com/rust-lang/cargo/issues/6669
- name: cargo test --doc
run: cargo test --doc --all-features
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install toolchain
uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
- name: Cache build artifacts
uses: Swatinem/rust-cache@v2
- name: cargo fmt (check)
run: cargo fmt -- --check -l
- name: cargo clippy (warnings)
run: cargo clippy --all-targets --all-features -- -D warnings
rustls_provider_tests:
name: Test using rustls provider
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./rustls
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
path: rustls-openssl
- name: Check out repository
uses: actions/checkout@v4
with:
repository: rustls/rustls
path: rustls
- name: Install toolchain
uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
- name: Cache build artifacts
uses: Swatinem/rust-cache@v2
with:
workspaces: rustls
- name: Patch rustls
run: ../rustls-openssl/tests/patch.sh
- name: find
run: find .
- name: cargo test test_with_openssl
run: cargo test test_with_openssl
test-fips:
name: Test using FIPS openssl
runs-on: ubuntu-latest
container:
image: registry.access.redhat.com/ubi8/ubi:latest
steps:
- name: Install dependencies
run: dnf install -y gcc openssl-devel openssl
- name: Check out repository
uses: actions/checkout@v4
- name: Install toolchain
uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
- name: Cache build artifacts
uses: Swatinem/rust-cache@v2
- name: Run cargo test --features fips
run: cargo test --features fips