Skip to content

Commit 4f798be

Browse files
Shammah Chancellorclaude
andcommitted
debug: add verbose output and build-essential for Linux
Adding verbose cargo output to see actual compilation errors. Also installing build-essential which includes gcc and other build tools that might be needed. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent a966e51 commit 4f798be

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ jobs:
4141
if: runner.os == 'Linux'
4242
run: |
4343
sudo apt-get update
44-
sudo apt-get install -y pkg-config libssl-dev
44+
sudo apt-get install -y pkg-config libssl-dev build-essential
4545
4646
- name: Install Rust toolchain
4747
uses: dtolnay/rust-toolchain@stable
4848
with:
4949
targets: ${{ matrix.target }}
5050

5151
- name: Build release binary
52-
run: cargo build --release --target ${{ matrix.target }}
52+
run: cargo build --release --target ${{ matrix.target }} --verbose
5353

5454
- name: Strip binary (Linux/macOS)
5555
run: |

0 commit comments

Comments
 (0)