sec1: bump serdect
dependency to v0.3.0-rc.0
#3054
Workflow file for this run
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: der | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/der.yml" | |
- "const-oid/**" | |
- "der/**" | |
- "der_derive/**" | |
- "Cargo.*" | |
push: | |
branches: master | |
defaults: | |
run: | |
working-directory: der | |
env: | |
CARGO_INCREMENTAL: 0 | |
RUSTFLAGS: "-Dwarnings" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.71.0 # MSRV | |
- stable | |
target: | |
- thumbv7em-none-eabi | |
- wasm32-unknown-unknown | |
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,arbitrary | |
minimal-versions: | |
if: false # TODO: temp disabled due to unpublished prerelease dependencies | |
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master | |
with: | |
working-directory: ${{ github.workflow }} | |
test: | |
strategy: | |
matrix: | |
include: | |
# 32-bit Linux | |
- targets: i686-unknown-linux-gnu | |
platform: ubuntu-latest | |
rust: 1.71.0 # MSRV | |
deps: sudo apt update && sudo apt install gcc-multilib | |
- targets: i686-unknown-linux-gnu | |
platform: ubuntu-latest | |
rust: stable | |
deps: sudo apt update && sudo apt install gcc-multilib | |
# 64-bit Linux | |
- targets: x86_64-unknown-linux-gnu | |
platform: ubuntu-latest | |
rust: 1.71.0 # MSRV | |
- targets: x86_64-unknown-linux-gnu | |
platform: ubuntu-latest | |
rust: stable | |
# temporary disable, since cargo-hack installation does not work yet | |
# 64-bit Windows | |
#- targets: x86_64-pc-windows-msvc | |
# platform: windows-latest | |
# rust: 1.71.0 # MSRV | |
#- targets: x86_64-pc-windows-msvc | |
# platform: windows-latest | |
# rust: stable | |
runs-on: ${{ matrix.platform }} | |
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 | |
derive: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.71.0 # MSRV | |
- stable | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- uses: RustCrypto/actions/cargo-hack-install@master | |
- run: cargo hack test --feature-powerset | |
working-directory: der_derive |