Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,35 @@ jobs:
tool: nextest@0.9
- run: ci/test

benchmark-check:
name: Check Benchmarks Compile
runs-on: ubuntu-latest
env:
CARGO_INCREMENTAL: "0"
SCCACHE_BUCKET: "lading-sccache"
SCCACHE_REGION: "us-west-2"
RUSTC_WRAPPER: "sccache"
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@61815dcd50bd041e203e49132bacad1fd04d2708 # v5.1.1
with:
role-to-assume: arn:aws:iam::850406765696:role/lading-ci-sccache-oidc
aws-region: us-west-2

- uses: actions-rust-lang/setup-rust-toolchain@1780873c7b576612439a134613cc4cc74ce5538c # v1.10

- uses: mozilla-actions/sccache-action@7d986dd989559c6ecdb630a3fd2557667be217ad # v0.0.9

- name: Install Protobuf
uses: ./.github/actions/install-protobuf
- name: Install FUSE
uses: ./.github/actions/install-fuse
- name: Check benchmarks compile
run: ci/bench-check
timeout-minutes: 15

integration-test:
name: Integration Tests
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
compressed.
- New "Static Chunks" generator that divides static files by lines into blocks
(as opposed to static which turns each file into a block).
- Fingerprint mechanism now calculates Shannon entropy.

## [0.30.0]
## Added
Expand Down
Loading
Loading