Skip to content

Commit

Permalink
Add openssl dependency, split build into two
Browse files Browse the repository at this point in the history
  • Loading branch information
Fethbita committed Oct 6, 2024
1 parent 57344b5 commit d90c8cd
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,13 @@ jobs:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 #v4.2.0

- name: Install deps
run: apk add --no-cache pcsc-lite-dev musl-dev
run: |
apk add --no-cache pcsc-lite-dev \ # For pcsc dependency
musl-dev # For tracing-attributes dependency (needs crti.o)
apk add pkgconf openssl-dev # For openssl dependency (see https://github.com/Fethbita/emrtd/pull/3)
- name: Build
run: cargo build --release --verbose
run: cargo build --verbose

- name: Run tests
run: cargo test --all-features --verbose
Expand All @@ -35,3 +38,6 @@ jobs:
- name: Lint
run: cargo clippy -- -D warnings

- name: Build release
run: cargo build --release --verbose

0 comments on commit d90c8cd

Please sign in to comment.