sec1: bump serdect
dependency to v0.3.0-rc.0 (#1523)
#2412
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tls_codec | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/tls_codec.yml" | |
- "tls_codec/**" | |
- "Cargo.*" | |
push: | |
branches: | |
- master | |
defaults: | |
run: | |
working-directory: tls_codec | |
env: | |
CARGO_INCREMENTAL: 0 | |
RUSTFLAGS: "-Dwarnings" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.70.0 # MSRV | |
- stable | |
target: | |
- wasm32-unknown-unknown | |
- thumbv7em-none-eabi | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
targets: ${{ matrix.target }} | |
- uses: RustCrypto/actions/cargo-hack-install@master | |
- run: cargo hack build --target ${{ matrix.target }} --feature-powerset --exclude-features std,default,serde,arbitrary | |
minimal-versions: | |
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master | |
with: | |
working-directory: ${{ github.workflow }} | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
# 32-bit Linux | |
- targets: i686-unknown-linux-gnu | |
rust: 1.70.0 # MSRV | |
deps: sudo apt update && sudo apt install gcc-multilib | |
- targets: i686-unknown-linux-gnu | |
rust: stable | |
deps: sudo apt update && sudo apt install gcc-multilib | |
# 64-bit Linux | |
- targets: x86_64-unknown-linux-gnu | |
rust: 1.70.0 # MSRV | |
- targets: x86_64-unknown-linux-gnu | |
rust: stable | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
targets: ${{ matrix.target }} | |
- run: ${{ matrix.deps }} | |
- uses: RustCrypto/actions/cargo-hack-install@master | |
- run: cargo hack test --feature-powerset | |
- run: cargo hack test -p tls_codec_derive --feature-powerset --test encode\* --test decode\* | |
- run: cargo hack test -p tls_codec_derive --feature-powerset --doc |