mirror of
https://github.com/pezkuwichain/pezframe-metadata.git
synced 2026-04-22 04:17:58 +00:00
1ea3299208
* Metadata supporting scale-info can be decoded and serialized in no_std (#2) * Metadata supporting scale-info can be decoded and serialized in no_std (feature flag scale_info) * Changes from review: rename feature flag into full_derive * Changes from review: std implies full-derive * Changes from review: optimization Co-authored-by: echevrier <edith.chevrier@scs.ch> * split full_derive into decode and sered_codec features. (drop new Debug impls) * cargo fmt * rename serde_codec to serde_full * Prior to v14 everything was Debug. Are there any downsides? Unused debug impls will just get optimised away won't they? * rust fmt * Debug for the masses. Make it work for no_std * check all combos of features (if this plays well with ci then we should double up, doing the same again but target wasm32) * all wasm feature combos Co-authored-by: echevrier <84318241+echevrier@users.noreply.github.com> Co-authored-by: echevrier <edith.chevrier@scs.ch>
117 lines
5.0 KiB
YAML
117 lines
5.0 KiB
YAML
name: Compilation and Testing Suite
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- v*
|
|
paths-ignore:
|
|
- 'README.md'
|
|
jobs:
|
|
|
|
check-test-build:
|
|
name: Check, test and build
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
RUST_BACKTRACE: full
|
|
steps:
|
|
- name: Cancel Previous Runs
|
|
uses: styfle/cancel-workflow-action@b173b6ec0100793626c2d9e6b90435061f4fc3e5 # 0.11.0
|
|
with:
|
|
access_token: ${{ github.token }}
|
|
- name: Checkout sources & submodules
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 5
|
|
submodules: recursive
|
|
## Check Stage
|
|
- name: Checking rust-stable
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: check
|
|
toolchain: stable
|
|
args: --all --verbose
|
|
|
|
## Test Stage
|
|
- name: Testing rust-stable
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: test
|
|
toolchain: stable
|
|
args: --all --verbose
|
|
|
|
## Build Stage
|
|
- name: Building rust-stable
|
|
uses: actions-rs/cargo@v1
|
|
if: github.ref == 'refs/heads/master'
|
|
with:
|
|
command: build
|
|
toolchain: stable
|
|
args: --all --verbose
|
|
|
|
check-wasm:
|
|
name: Check WASM
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
RUST_BACKTRACE: full
|
|
steps:
|
|
- name: Cancel Previous Runs
|
|
uses: styfle/cancel-workflow-action@b173b6ec0100793626c2d9e6b90435061f4fc3e5 # 0.11.0
|
|
with:
|
|
access_token: ${{ github.token }}
|
|
- name: Checkout sources & submodules
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 5
|
|
submodules: recursive
|
|
- name: Add WASM Utilities
|
|
run: rustup target add wasm32-unknown-unknown --toolchain stable
|
|
## Check Stage
|
|
- name: Checking wasm32 (v14)
|
|
uses: actions-rs/cargo@v1
|
|
uses: taiki-e/install-action@cargo-hack
|
|
with:
|
|
command: hack
|
|
toolchain: stable
|
|
args: check --manifest-path ./frame-metadata/Cargo.toml --feature-powerset --no-dev-deps --features v14 --skip legacy,v8,v9,v10,v11,v12,v13 --depth 4 --target wasm32-unknown-unknown
|
|
- name: Checking wasm32 (all features)
|
|
uses: actions-rs/cargo@v1
|
|
uses: taiki-e/install-action@cargo-hack
|
|
with:
|
|
command: hack
|
|
toolchain: stable
|
|
args: check --manifest-path ./frame-metadata/Cargo.toml --feature-powerset --no-dev-deps --skip decode,serde_full --depth 4 --target wasm32-unknown-unknown
|
|
|
|
check-features:
|
|
name: Check Features
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
RUST_BACKTRACE: full
|
|
steps:
|
|
- name: Cancel Previous Runs
|
|
uses: styfle/cancel-workflow-action@b173b6ec0100793626c2d9e6b90435061f4fc3e5 # 0.11.0
|
|
with:
|
|
access_token: ${{ github.token }}
|
|
- name: Checkout sources & submodules
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 5
|
|
submodules: recursive
|
|
## Check Stage
|
|
- name: Checking v14 feature combinations (native)
|
|
uses: actions-rs/cargo@v1
|
|
uses: taiki-e/install-action@cargo-hack
|
|
with:
|
|
command: hack
|
|
toolchain: stable
|
|
args: check --manifest-path ./frame-metadata/Cargo.toml --feature-powerset --no-dev-deps --features v14 --skip legacy,v8,v9,v10,v11,v12,v13 --depth 4
|
|
- name: Checking feature combinations excluding decode/serde_full (native)
|
|
uses: actions-rs/cargo@v1
|
|
uses: taiki-e/install-action@cargo-hack
|
|
with:
|
|
command: hack
|
|
toolchain: stable
|
|
args: check --manifest-path ./frame-metadata/Cargo.toml --feature-powerset --no-dev-deps --skip decode,serde_full --depth 4
|