Skip to content

Commit 021186f

Browse files
Disable bytehound for now - currently broken
1 parent dd5cb19 commit 021186f

File tree

2 files changed

+19
-17
lines changed

2 files changed

+19
-17
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -177,14 +177,15 @@ jobs:
177177
- name: Install profilers
178178
run: cargo install --version 0.4.12 cargo-llvm-lines
179179

180-
- name: Install Bytehound
181-
run: |
182-
mkdir -p bytehound
183-
cd bytehound
184-
wget https://github.com/koute/bytehound/releases/download/0.11.0/bytehound-x86_64-unknown-linux-gnu.tgz
185-
tar xf bytehound-x86_64-unknown-linux-gnu.tgz
186-
cd ..
187-
echo "LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${PWD}/bytehound" >> $GITHUB_ENV
180+
# Bytehound is currently broken, removing it to keep CI green.
181+
#- name: Install Bytehound
182+
# run: |
183+
# mkdir -p bytehound
184+
# cd bytehound
185+
# wget https://github.com/koute/bytehound/releases/download/0.11.0/bytehound-x86_64-unknown-linux-gnu.tgz
186+
# tar xf bytehound-x86_64-unknown-linux-gnu.tgz
187+
# cd ..
188+
# echo "LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${PWD}/bytehound" >> $GITHUB_ENV
188189

189190
- name: Configure environment
190191
run: |

ci/check-profiling.sh

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -110,15 +110,16 @@ test -f results/msout-Test-helloworld-Check-Full
110110
grep -q "snapshot=0" results/msout-Test-helloworld-Check-Full
111111

112112
# Bytehound.
113-
RUST_BACKTRACE=1 RUST_LOG=raw_cargo_messages=trace,collector=debug,rust_sysroot=debug \
114-
cargo run -p collector --bin collector -- \
115-
profile_local bytehound $bindir/rustc \
116-
--id Test \
117-
--profiles Check \
118-
--cargo $bindir/cargo \
119-
--include helloworld \
120-
--scenarios Full
121-
test -f results/bhout-Test-helloworld-Check-Full
113+
# This is currently broken in CI, commenting out to fix CI for this.
114+
# RUST_BACKTRACE=1 RUST_LOG=raw_cargo_messages=trace,collector=debug,rust_sysroot=debug \
115+
# cargo run -p collector --bin collector -- \
116+
# profile_local bytehound $bindir/rustc \
117+
# --id Test \
118+
# --profiles Check \
119+
# --cargo $bindir/cargo \
120+
# --include helloworld \
121+
# --scenarios Full
122+
# test -f results/bhout-Test-helloworld-Check-Full
122123

123124
# eprintln. The output file is empty because a vanilla rustc doesn't print
124125
# anything to stderr.

0 commit comments

Comments
 (0)