Skip to content

Commit

Permalink
chore: no not strip sidecar release build
Browse files Browse the repository at this point in the history
When the build is stripped, the profiler does not work
  • Loading branch information
michael1011 committed Jan 14, 2025
1 parent 9c442f1 commit 7ecc51c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: CI

on: [push, pull_request]
on: [ push, pull_request ]

jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest]
node-version: [20]
rust-version: [stable]
platform: [ ubuntu-latest ]
node-version: [ 20 ]
rust-version: [ stable ]

runs-on: ${{ matrix.platform }}

Expand Down Expand Up @@ -80,9 +80,9 @@ jobs:
build-rust:
strategy:
matrix:
platform: [ubuntu-latest]
node-version: [20]
rust-version: [stable, nightly]
platform: [ ubuntu-latest ]
node-version: [ 20 ]
rust-version: [ stable, nightly ]

runs-on: ${{ matrix.platform }}

Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
run: cargo fmt --check

- name: Clippy
run: cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings

- name: Tests
run: cargo test
1 change: 0 additions & 1 deletion boltzr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ otel = [
]

[profile.release]
strip = true
opt-level = 2
lto = true
codegen-units = 1
Expand Down

0 comments on commit 7ecc51c

Please sign in to comment.