Skip to content

Commit

Permalink
add CI jobs to run cargo package
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw authored and inikulin committed Aug 30, 2023
1 parent ed91cce commit c8d52a7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,16 @@ jobs:
run: cargo check --target ${{ matrix.target }} --all-targets
name: Check tests (iOS)

package:
name: Test boring-sys package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust
run: rustup update stable && rustup default stable
- name: Test boring-sys cargo package
run: cargo package -p boring-sys

test-fips:
name: Test FIPS integration
runs-on: ubuntu-20.04
Expand All @@ -197,6 +207,8 @@ jobs:
run: ln -s clang clang++-12
- run: cargo test --features fips
name: Run tests
- run: cargo package --features fips
name: Test boring-sys cargo package (FIPS)

test-features:
name: Test features
Expand Down

0 comments on commit c8d52a7

Please sign in to comment.