Skip to content

Create deterministic wasm builds and publish release on tag #253

Create deterministic wasm builds and publish release on tag

Create deterministic wasm builds and publish release on tag #253

Workflow file for this run

name: Rust build, benchmarks, and tests
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
##
on:
##
# Run automatically for any push that changes Rust file(s)
push:
branches:
- main
- $default-branch
paths:
- "**.rs"
- "**/Cargo.toml"
- "**/Cargo.lock"
##
# Run automatically for PRs against default/main branch if Rust files change
pull_request:
branches:
- main
- $default-branch
paths:
- "**.rs"
- "**/Cargo.toml"
- "**/Cargo.lock"
## Allow running workflow manually from the Actions tab
workflow_dispatch:
inputs:
verbose:
description: "Output more information when triggered manually"
required: false
default: ""
##
env:
CARGO_TERM_COLOR: always
VERBOSE: ${{ github.events.input.verbose }}
##
#
jobs:
check:
name: Tests targeting ${{ matrix.rust-target }} for OS ${{ matrix.os }}
runs-on: ${{ matrix.os }}
##
# Define multiple targets for builds and tests
strategy:
matrix:
rust-branch:
- nightly-2023-03-01
rust-target:
- x86_64-unknown-linux-gnu
# - x86_64-apple-darwin
os:
- ubuntu-latest
# - macos-latest
include:
- os: ubuntu-latest
# - os: macos-latest
##
env:
RELEASE_NAME: development
RUSTFLAGS: -A warnings
RUSTV: ${{ matrix.rust-branch }}
RUST_BACKTRACE: full
RUST_BIN_DIR: target/${{ matrix.rust-target }}
SKIP_WASM_BUILD: 1
TARGET: ${{ matrix.rust-target }}
##
steps:
- name: Check-out repository under $GITHUB_WORKSPACE
uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt update &&
sudo apt install -y git clang curl libssl-dev llvm libudev-dev protobuf-compiler
- name: Install Rust ${{ matrix.rust-branch }}
uses: actions-rs/[email protected]
with:
toolchain: ${{ matrix.rust-branch }}
profile: minimal
- name: Set up cargo cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ matrix.rust-target }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ matrix.rust-target }}-cargo-
## TODO: maybe use `if` conditions in tests to target `--package <name>`
- name: Run tests
# timeout-minutes: 30
run: |
cargo test --tests --features=runtime-benchmarks