Skip to content

Commit

Permalink
revert: ci: back to webpki builds, windows native-certs is broken
Browse files Browse the repository at this point in the history
Reverts 007793a and 8fd434b.
  • Loading branch information
2bc4 committed May 7, 2023
1 parent 007793a commit 5edcc2f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- run: cargo check --no-default-features --features rustls-native-certs
- run: cargo check

lint:
name: Lint
Expand All @@ -36,7 +36,7 @@ jobs:
version: [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ]
cargo-cmd:
- fmt --all -- --check
- clippy --all --no-default-features --features rustls-native-certs # -Wclippy::pedantic breaks on Windows?
- clippy --all # -Wclippy::pedantic breaks on Windows?
runs-on: ${{ matrix.version }}
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -87,10 +87,10 @@ jobs:
with:
targets: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
- run: cargo build --release --target=${{ matrix.target }} --no-default-features --features rustls-native-certs
- run: cargo build --release --target=${{ matrix.target }}
- name: Smoke Test
if: ${{ !contains(matrix.target, 'aarch64') }}
run: cargo run --release --target=${{ matrix.target }} --no-default-features --features rustls-native-certs -- -V
run: cargo run --release --target=${{ matrix.target }} -- -V
- name: Move Binary
id: mv
run: mv "target/${{ matrix.target }}/release/${{ matrix.binName }}" .
Expand Down

0 comments on commit 5edcc2f

Please sign in to comment.