Skip to content

Commit

Permalink
Only build chariott package from intent-brokering dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
ladatz committed Jan 16, 2024
1 parent 13d3335 commit 75bd1b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.intent_brokering
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ COPY ./ .

RUN rustup target add x86_64-unknown-linux-musl

RUN cargo build --release --target=x86_64-unknown-linux-musl
RUN cargo build --release --target=x86_64-unknown-linux-musl -p chariott

####################################################################################################
## Final image
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.intent_brokering.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ COPY ./ .

RUN rustup target add aarch64-unknown-linux-musl

RUN cargo build --release --target=aarch64-unknown-linux-musl
RUN cargo build --release --target=aarch64-unknown-linux-musl -p chariott

#############################################################x#######################################
## Final image
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.intent_brokering.valgrind
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ WORKDIR /sdv

COPY ./ .

RUN cargo build --release
RUN cargo build --release -p chariott

#############################################################x#######################################
## Final image
Expand Down

2 comments on commit 75bd1b2

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ESS Benchmark

Benchmark suite Current: 75bd1b2 Previous: 4d8e45e Ratio
ess/1-subscribers/1000-events 178557 ns/iter (± 7974) 183759 ns/iter (± 5758) 0.97
ess/10-subscribers/1000-events 1318905 ns/iter (± 26416) 1326857 ns/iter (± 30922) 0.99
ess/100-subscribers/1000-events 13047515 ns/iter (± 434197) 12993152 ns/iter (± 570228) 1.00
ess/1-subscribers/10000-events 1718538 ns/iter (± 44965) 1700214 ns/iter (± 41335) 1.01
ess/10-subscribers/10000-events 13202023 ns/iter (± 84008) 13218576 ns/iter (± 57035) 1.00
ess/100-subscribers/10000-events 131380289 ns/iter (± 671335) 130400492 ns/iter (± 721612) 1.01

This comment was automatically generated by workflow using github-action-benchmark.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Chariott Benchmark

Benchmark suite Current: 75bd1b2 Previous: 4d8e45e Ratio
Invoke Throughput 3030 1/Second 3030 1/Second 1
Latency 2 Millisecond (p95=7) 2 Millisecond (p95=7) 1
Definitely Lost Bytes 0 bytes 0 bytes NaN
Definitely Lost Blocks 0 blocks 0 blocks NaN
Indirectly Lost Bytes 0 bytes 0 bytes NaN
Indirectly Lost Blocks 0 blocks 0 blocks NaN
Possibly Lost Bytes 2812 bytes 2620 bytes 1.07
Possibly Lost Blocks 12 blocks 8 blocks 1.50
CPU Usage 43 Percent (p95=44) 42 Percent (p95=44) 1.02
Memory Usage 3060 Bytes (p95=3588) 2904 Bytes (p95=3150) 1.05

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.