mirror of
https://github.com/tlsnotary/tlsn.git
synced 2026-01-08 22:28:15 -05:00
* refactor: modularize server-fixture * Update crates/server-fixture/server/Cargo.toml add newline Co-authored-by: sinu.eth <65924192+sinui0@users.noreply.github.com> * test: add browser benches * fix deps * ci: run ci workflow for all pull requests (#571) * misc fixes * fix clippy * don't log a non-critical error to stderr * use incognito (mitigates random hangs) * add notes * distinguish prover kind when plotting --------- Co-authored-by: sinu.eth <65924192+sinui0@users.noreply.github.com> Co-authored-by: Hendrik Eeckhaut <hendrik@eeckhaut.org> Co-authored-by: Ubuntu <ubuntu@ip-10-35-1-164.eu-central-1.compute.internal>
139 lines
3.8 KiB
YAML
139 lines
3.8 KiB
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
tags:
|
|
- "[v]?[0-9]+.[0-9]+.[0-9]+*"
|
|
pull_request:
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
|
|
# We need a higher number of parallel rayon tasks than the default (which is 4)
|
|
# in order to prevent a deadlock, c.f.
|
|
# - https://github.com/tlsnotary/tlsn/issues/548
|
|
# - https://github.com/privacy-scaling-explorations/mpz/issues/178
|
|
# 32 seems to be big enough for the foreseeable future
|
|
RAYON_NUM_THREADS: 32
|
|
|
|
jobs:
|
|
fmt:
|
|
name: Check formatting
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
# We use nightly to support `imports_granularity` feature
|
|
- name: Install nightly rust toolchain with rustfmt
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
toolchain: nightly
|
|
components: rustfmt
|
|
|
|
- name: Use caching
|
|
uses: Swatinem/rust-cache@v2.7.3
|
|
|
|
- name: Check formatting
|
|
run: cargo +nightly fmt --check --all
|
|
build-and-test:
|
|
name: Build and test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install stable rust toolchain
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
toolchain: stable
|
|
components: clippy
|
|
|
|
- name: Use caching
|
|
uses: Swatinem/rust-cache@v2.7.3
|
|
|
|
- name: Clippy
|
|
run: cargo clippy --all-features --all-targets -- -D warnings
|
|
|
|
- name: Build
|
|
run: cargo build --all-targets
|
|
|
|
- name: Test
|
|
run: cargo test
|
|
build-wasm:
|
|
name: Build and test wasm
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install stable rust toolchain
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
targets: wasm32-unknown-unknown
|
|
toolchain: stable
|
|
|
|
- name: Install nightly rust toolchain
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
targets: wasm32-unknown-unknown,x86_64-unknown-linux-gnu
|
|
toolchain: nightly
|
|
components: rust-src
|
|
|
|
- name: Install chromedriver
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y chromium-chromedriver
|
|
|
|
- name: Install wasm-pack
|
|
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
|
|
|
|
- name: Use caching
|
|
uses: Swatinem/rust-cache@v2.7.3
|
|
|
|
- name: Run tests
|
|
run: |
|
|
cd crates/wasm-test-runner
|
|
./run.sh
|
|
tests-integration:
|
|
name: Run tests release build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install stable rust toolchain
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
toolchain: stable
|
|
|
|
- name: Use caching
|
|
uses: Swatinem/rust-cache@v2.7.3
|
|
|
|
- name: Add custom DNS entry to /etc/hosts for notary TLS test
|
|
run: echo "127.0.0.1 tlsnotaryserver.io" | sudo tee -a /etc/hosts
|
|
|
|
- name: Run integration tests
|
|
run: cargo test --profile tests-integration --workspace --exclude tlsn-tls-client --exclude tlsn-tls-core -- --include-ignored
|
|
coverage:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install stable rust toolchain
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
toolchain: stable
|
|
- name: Install cargo-llvm-cov
|
|
uses: taiki-e/install-action@cargo-llvm-cov
|
|
- name: Generate code coverage
|
|
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v4
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
files: lcov.info
|
|
fail_ci_if_error: true |