Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: briansmith/webpki
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 92ce59e08dc45983c863e6740926d3b7a527685a
Choose a base ref
..
head repository: briansmith/webpki
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c9421a78a5b20073dd4ea487538b67d4fef68a5c
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 .github/workflows/ci.yml
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -203,12 +203,12 @@ jobs:
run: |
cargo +${{ matrix.rust_channel }} test -vv --target=${{ matrix.target }} ${{ matrix.cargo_options }} ${{ matrix.features }} ${{ matrix.mode }}
- if: ${{ !contains(matrix.host_os, 'windows') && matrix.skip_rcgen != 'true' }}
- if: ${{ !contains(matrix.host_os, 'windows') && !contains(matrix.skip_rcgen, 'true') }}
run: |
mk/cargo.sh +${{ matrix.rust_channel }} test -p rcgen-tests -vv --target=${{ matrix.target }} ${{ matrix.cargo_options }} ${{ matrix.features }} ${{ matrix.mode }}
# rcgen-based tests require Rust 1.67, and uses *ring* 0.16 which doesn't build for aarch64-pc-windows-msvc.
- if: ${{ contains(matrix.host_os, 'windows') && matrix.skip_rcgen != 'true' }}
- if: ${{ contains(matrix.host_os, 'windows') && !contains(matrix.skip_rcgen, 'true') }}
run: |
cargo +${{ matrix.rust_channel }} test -vv -p rcgen-tests --target=${{ matrix.target }} ${{ matrix.cargo_options }} ${{ matrix.features }} ${{ matrix.mode }}