Skip to content

Commit d4c77bb

Browse files
committed
Trying to debug CI failure
1 parent efb97f5 commit d4c77bb

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ jobs:
9191

9292
- name: Install Agave
9393
run: |
94+
objdump --version
9495
if ! ./agave/bin/agave-validator --version; then
9596
git clone https://github.com/anza-xyz/agave
9697
cd agave

src/start_address.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ pub fn start_address(path: impl AsRef<Path>) -> Result<u64> {
1919
OutputError::new(output)
2020
);
2121
let stdout = std::str::from_utf8(&output.stdout)?;
22+
dbg!(&stdout);
2223
for line in stdout.lines() {
2324
if let Some(suffix) = line.strip_prefix("start address: 0x") {
2425
if let Ok(address) = u64::from_str_radix(suffix, 16) {

0 commit comments

Comments
 (0)