TIP BlockId tests #2843
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: Common Feature Sets | |
on: | |
push: | |
branches: [develop, staging, "2.0"] | |
paths: | |
- ".cargo/config.toml" | |
- ".github/workflows/common-features.yml" | |
- ".github/actions/**" | |
- "**.rs" # Include all rust files | |
- "**Cargo.toml" # Include all Cargo.toml files | |
- "**Cargo.lock" # Include all Cargo.lock files | |
- "!**/bindings/**" # Exclude all bindings | |
pull_request: | |
branches: [develop, staging, "2.0"] | |
paths: | |
- ".cargo/config.toml" | |
- ".github/workflows/common-features.yml" | |
- ".github/actions/**" | |
- "**.rs" # Include all rust files | |
- "**Cargo.toml" # Include all Cargo.toml files | |
- "**Cargo.lock" # Include all Cargo.lock files | |
- "!**/bindings/**" # Exclude all bindings | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
CARGO_INCREMENTAL: 0 | |
jobs: | |
common-sets: | |
name: Check common feature sets | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
set: | |
- irc_27 | |
- irc_30 | |
- client,private_key_secret_manager | |
- client,mqtt | |
- client,participation | |
- wallet,storage | |
- wallet,stronghold | |
- wallet,rocksdb | |
- wallet,participation | |
- wallet,events | |
- wallet,events,ledger_nano | |
steps: | |
- name: Checkout the Source Code | |
uses: actions/checkout@v3 | |
- name: Set up Rust | |
uses: ./.github/actions/setup-rust | |
# Required for ledger-nano | |
- name: Install required packages (Ubuntu) | |
run: | | |
sudo apt-get update | |
sudo apt-get install libudev-dev libusb-1.0-0-dev | |
- name: Check features [ ${{ matrix.set }} ] | |
run: cargo check --no-default-features -p iota-sdk -F ${{ matrix.set }} |