Signing abilities: Xprivs, derivation, signing traits and test signer #251
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: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
default: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# NOTE: Dont use nix here, everything should be based on the ubuntu-latest | |
- name: Install rust stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Latest Ubuntu build check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --workspace | |
features: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
feature: | |
- signers | |
- client-side-validation | |
- strict_encoding | |
- serde | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v26 | |
- name: Check feature ${{ matrix.feature }} only | |
run: nix develop .#stable -c cargo check --no-default-features --features=${{ matrix.feature }} | |
- name: Check feature ${{ matrix.feature }} with defaults | |
run: nix develop .#stable -c cargo check --features=${{ matrix.feature }} | |
platforms: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-20.04, ubuntu-22.04, macos-12, macos-13, windows-2019, windows-2022 ] | |
steps: | |
- uses: actions/checkout@v4 | |
# NOTE: Don't use nix in platform checks everything should be based on the host system | |
- name: Install rust stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Build with all features | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
args: --workspace --all-targets --all-features | |
toolchains: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
toolchain: [ nightly, beta, stable, msrv ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v26 | |
- name: Check Crates | |
run: nix develop ".#${{ matrix.toolchain }}" -c cargo check --workspace --all-targets --all-features |