Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

md5: add inline assembly support for x86_64 and x86 #447

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
md5: add CI to test inline assembly
johnmave126 committed Jan 16, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 40a315dea9d5619e664c3b70749d0af692bca8b8
17 changes: 17 additions & 0 deletions .github/workflows/md5.yml
Original file line number Diff line number Diff line change
@@ -83,3 +83,20 @@ jobs:
toolchain: ${{ matrix.rust }}
override: true
- run: cargo test --features oid

# TODO: merge with test on MSRV bump to 1.59 or higher
test-inline-asm:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.59.0 # MSRV
steps:
- uses: actions/checkout@v3
- uses: RustCrypto/actions/cargo-cache@master
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- run: cargo test --features inline-asm