Skip to content
This repository has been archived by the owner on Jul 2, 2023. It is now read-only.

Commit

Permalink
ci: test block cipher using both openssl and ring
Browse files Browse the repository at this point in the history
now either openssl or ring is used to implement block
cipher module.

Signed-off-by: Xynnn007 <xynnn@linux.alibaba.com>
  • Loading branch information
Xynnn007 authored and arronwy committed Apr 22, 2023
1 parent fc1bee1 commit 076c7bd
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,17 @@ jobs:
command: build
args: --no-default-features

- name: Run cargo build - block cipher
- name: Run cargo build - block cipher openssl
uses: actions-rs/cargo@v1
with:
command: build
args: --no-default-features --features=block-cipher
args: --no-default-features --features=block-cipher-openssl

- name: Run cargo build - block cipher ring
uses: actions-rs/cargo@v1
with:
command: build
args: --no-default-features --features=block-cipher-ring

- name: Run cargo build - keywrap-jwe
uses: actions-rs/cargo@v1
Expand Down

0 comments on commit 076c7bd

Please sign in to comment.