(WIP!) Enable BIP-127 support #173
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
on: [push, pull_request] | |
name: CI | |
jobs: | |
build-test: | |
name: Build and test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- 1.75.0 # STABLE | |
- 1.63.0 # MSRV | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Generate cache key | |
run: echo "${{ matrix.rust }} ${{ matrix.features }}" | tee .cache_key | |
- name: cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('.cache_key') }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }} | |
- name: Set default toolchain | |
run: rustup default ${{ matrix.rust }} | |
- name: Set profile | |
run: rustup set profile minimal | |
- name: Add clippy | |
run: rustup component add clippy | |
- name: Update toolchain | |
run: rustup update | |
- name: Update Cargo.lock | |
run: cargo update | |
- name: Pin dependencies for MSRV | |
if: matrix.rust == '1.63.0' | |
run: | | |
cargo update -p home:0.5.9 --precise 0.5.5 | |
- name: Build | |
run: cargo build | |
- name: Clippy | |
run: cargo clippy --all-targets -- -D warnings | |
- name: Test | |
run: cargo test | |
check-wasm: | |
name: Check WASM | |
runs-on: ubuntu-20.04 | |
env: | |
CC: clang-10 | |
CFLAGS: -I/usr/include | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ github.job }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }} | |
# Install a recent version of clang that supports wasm32 | |
- run: wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - || exit 1 | |
- run: sudo apt-add-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-10 main" || exit 1 | |
- run: sudo apt-get update || exit 1 | |
- run: sudo apt-get install -y libclang-common-10-dev clang-10 libc6-dev-i386 || exit 1 | |
- name: Set default toolchain | |
run: rustup default 1.65.0 # STABLE | |
- name: Set profile | |
run: rustup set profile minimal | |
- name: Add target wasm32 | |
run: rustup target add wasm32-unknown-unknown | |
- name: Update toolchain | |
run: rustup update | |
# - name: Check | |
# run: cargo check --target wasm32-unknown-unknown | |
fmt: | |
name: Rust fmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set default toolchain | |
run: rustup default nightly | |
- name: Set profile | |
run: rustup set profile minimal | |
- name: Add rustfmt | |
run: rustup component add rustfmt | |
- name: Update toolchain | |
run: rustup update | |
- name: Check fmt | |
run: cargo fmt --all -- --config format_code_in_doc_comments=true --check |