Skip to content

Commit

Permalink
chore: rename fbm to fluvio-bench
Browse files Browse the repository at this point in the history
  • Loading branch information
fraidev committed Jan 16, 2025
1 parent 6415586 commit 99279d4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
rust-target:
- x86_64-unknown-linux-musl
- aarch64-unknown-linux-musl
binary: [fluvio, fluvio-run, fluvio-test, fluvio-channel, smdk, fbm, cdk, fvm]
binary: [fluvio, fluvio-run, fluvio-test, fluvio-channel, smdk, fluvio-bench, cdk, fvm]
os: [ubuntu-latest]
env:
RUST_BACKTRACE: full
Expand Down Expand Up @@ -110,9 +110,9 @@ jobs:
if: matrix.binary == 'cdk'
run: make build-cdk

- name: Build fbm
if: matrix.binary == 'fbm'
run: make build-fbm
- name: Build fluvio-bench
if: matrix.binary == 'fluvio-bench'
run: make build-bench

- name: Build fvm
if: matrix.binary == 'fvm'
Expand Down
2 changes: 1 addition & 1 deletion crates/fluvio-benchmark/Makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
build:
cargo build --bin fbm --release
cargo build --bin fluvio-bench --release
4 changes: 2 additions & 2 deletions makefiles/build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ build-smdk: install_rustup_target
build-cdk: install_rustup_target
$(CARGO_BUILDER) build --bin cdk -p cdk $(RELEASE_FLAG) $(TARGET_FLAG) $(VERBOSE_FLAG) $(SMARTENGINE_FLAG)

build-fbm: install_rustup_target
$(CARGO_BUILDER) build --bin fbm -p fluvio-benchmark $(RELEASE_FLAG) $(TARGET_FLAG) $(VERBOSE_FLAG) $(SMARTENGINE_FLAG)
build-bench: install_rustup_target
$(CARGO_BUILDER) build --bin fluvio-bench -p fluvio-benchmark $(RELEASE_FLAG) $(TARGET_FLAG) $(VERBOSE_FLAG) $(SMARTENGINE_FLAG)

build-fvm: install_rustup_target
$(CARGO_BUILDER) build --bin fvm -p fluvio-version-manager $(RELEASE_FLAG) $(TARGET_FLAG) $(VERBOSE_FLAG) $(SMARTENGINE_FLAG)
Expand Down

0 comments on commit 99279d4

Please sign in to comment.