Skip to content

Commit 57c0284

Browse files
committed
Update build steps to use release profile for cargo builds
1 parent f12d6e4 commit 57c0284

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,10 @@ jobs:
147147
run: rustup component add clippy-preview
148148
- name: Build
149149
if: runner.os != 'Windows'
150-
run: cargo build --verbose
150+
run: cargo build --release --verbose
151151
- name: Build (Windows MinGW)
152152
if: runner.os == 'Windows'
153-
run: cargo build --verbose --target x86_64-pc-windows-gnu
153+
run: cargo build --release --verbose --target x86_64-pc-windows-gnu
154154
- name: Verify vendored LLVM
155155
run: |
156156
file external/lib/linux/libLLVM.so.21.1-rust-1.94.0-nightly || true

0 commit comments

Comments
 (0)