Endpoint to request which certificate published a blob last in a given validator #8280
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: Rust | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: | |
- "**" | |
paths-ignore: | |
- 'CONTRIBUTING.md' | |
- 'INSTALL.md' | |
- 'docker/**' | |
- 'docker_scylla/**' | |
- 'configuration/**' | |
- 'kubernetes/**' | |
workflow_dispatch: | |
# This allows a subsequently queued workflow run to interrupt previous runs on pull-requests | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.run_id }}' | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
CARGO_INCREMENTAL: 0 | |
CARGO_NET_RETRY: 10 | |
RUST_BACKTRACE: short | |
# We allow redundant explicit links because `cargo rdme` doesn't know how to resolve implicit intra-crate links. | |
RUSTDOCFLAGS: -A rustdoc::redundant_explicit_links -D warnings | |
RUSTFLAGS: -D warnings | |
RUSTUP_MAX_RETRIES: 10 | |
RUST_LOG: warn | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest-16-cores | |
timeout-minutes: 95 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- uses: foundry-rs/[email protected] | |
- uses: pontem-network/get-solc@master | |
with: | |
version: v0.8.25 | |
- name: Clear up some space | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /opt/ghc | |
sudo rm -rf "/usr/local/share/boost" | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install chromedriver | |
uses: nanasess/setup-chromedriver@v2 | |
- name: Install wasm-pack | |
uses: jetli/[email protected] | |
with: | |
version: 'latest' | |
- name: Set environment variables | |
run: | | |
echo "LINERA_STORAGE_SERVICE=127.0.0.1:1235" >> "$GITHUB_ENV" | |
- name: Build example applications | |
run: | | |
cd examples | |
cargo build --locked --release --target wasm32-unknown-unknown | |
- name: Compile the workspace with the default features (test) | |
run: | | |
cargo test --locked --no-run | |
- name: Compile `linera-core` for the browser | |
run: | | |
cargo build -p linera-core \ | |
--locked \ | |
--target wasm32-unknown-unknown \ | |
--no-default-features \ | |
--features web,wasmer | |
- name: Compile the workspace with the default features (build) | |
run: | | |
cargo build --locked | |
- name: Run Storage Service | |
run: | | |
./target/debug/storage_service_server memory --endpoint $LINERA_STORAGE_SERVICE & | |
cargo test --features storage_service -- storage_service | |
- name: Run Ethereum tests | |
run: | | |
cargo test -p linera-ethereum --features ethereum | |
cargo test test_wasm_end_to_end_ethereum_tracker --features ethereum,storage_service | |
- name: Compile Wasm test modules for Witty integration tests | |
run: | | |
cargo build -p linera-witty-test-modules --target wasm32-unknown-unknown | |
- name: Check that the WIT files are up-to-date | |
run: | | |
cargo run --bin wit-generator -- -c | |
- name: Run all tests using the default features | |
run: | | |
cargo test --locked | |
- name: Run some extra execution tests with wasmtime | |
run: | | |
cargo test --locked -p linera-execution --features wasmtime | |
- name: Run the browser tests | |
run: | | |
cd linera-views | |
WASM_BINDGEN_TEST_TIMEOUT=300 wasm-pack test --chrome --headless --features web,indexeddb | |
- name: Run the benchmark test | |
run: | | |
cargo build --locked -p linera-service --bin linera-benchmark --features benchmark | |
cargo test --locked -p linera-service --features benchmark benchmark | |
- name: Run Wasm application tests | |
run: | | |
cd examples | |
cargo test --locked | |
- name: Run Witty integration tests | |
run: | | |
cargo test -p linera-witty --features wasmer,wasmtime | |
- name: Check for outdated CLI.md | |
run: | | |
if ! diff CLI.md <(cargo run --bin linera -- help-markdown) | |
then | |
echo '`CLI.md` differs from the output of `linera help-markdown`' | |
echo 'Run `linera help-markdown > CLI.md` to update it.' | |
exit 1 | |
fi | |
lint: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Clear up some space | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /opt/ghc | |
sudo rm -rf "/usr/local/share/boost" | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
- name: Build check_copyright_header script | |
run: | | |
cd ./scripts/check_copyright_header | |
cargo build --locked --release | |
- name: Check Copyright headers | |
run: > | |
find linera-* examples -name '*.rs' -a -not -wholename '*/target/*' -print0 | |
| xargs -0 scripts/target/release/check_copyright_header | |
- name: Put lint toolchain file in place | |
run: | | |
ln -sf toolchains/lint/rust-toolchain.toml | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Install cargo-machete | |
run: | | |
cargo install cargo-machete --locked | |
- name: Install cargo-all-features | |
run: | | |
cargo install --git https://github.com/ma2bd/cargo-all-features --branch workspace_metadata --locked | |
- name: Install cargo-rdme | |
run: | | |
cargo install cargo-rdme --locked | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install cargo-sort | |
run: | | |
cargo install cargo-sort --git https://github.com/Twey/cargo-sort/ --tag linera | |
- name: Check formatting | |
run: | | |
cargo fmt -- --check | |
- name: Check if Cargo.toml files are sorted | |
run: | | |
cargo sort --check --workspace --grouped | |
- name: Check if example Cargo.toml files are sorted | |
run: | | |
cd examples | |
cargo sort --check --workspace --grouped | |
- name: Check for unused dependencies | |
run: | | |
cargo machete | |
- name: Check for outdated README.md | |
run: | | |
(set -e; for I in linera-*; do if [ -d "$I" ]; then echo $I; cargo rdme --check --no-fail-on-warnings -w $I; fi; done) | |
cd examples | |
(set -e; for I in fungible native-fungible non-fungible social crowd-funding amm hex-game counter meta-counter matching-engine; do echo $I; cargo rdme --check --no-fail-on-warnings -w $I; done) | |
- name: Run Wasm application lints | |
run: | | |
cd examples | |
cargo fmt -- --check | |
cargo clippy --all-targets --all-features --target wasm32-unknown-unknown --locked | |
cargo clippy --all-targets --all-features --target x86_64-unknown-linux-gnu --locked | |
- name: Run clippy | |
run: | | |
cargo clippy --all-targets --all-features --locked | |
cargo clippy --no-default-features --features kubernetes --locked | |
cargo clippy --no-default-features --locked | |
- name: Run cargo doc | |
run: | | |
cargo doc --locked --all-features | |
- name: Run cargo check-all-features | |
run: | | |
cargo check-all-features | |
cargo check-all-features --all-targets | |
- name: Restore `rust-toolchain.toml` file | |
if: '!cancelled()' | |
run: | | |
ln -sf toolchains/build/rust-toolchain.toml |