Skip to content

Commit 79ce4e7

Browse files
sbryngelsonclaude
andcommitted
Fix stale retry log messages
The echo said "Clearing staging/install" but build/install is intentionally preserved to avoid disrupting concurrent test jobs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent c3a2469 commit 79ce4e7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/frontier/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ while [ $attempt -le $max_attempts ]; do
4848
fi
4949

5050
if [ $attempt -lt $max_attempts ]; then
51-
echo "Build failed on attempt $attempt. Clearing staging/install and retrying in 30s..."
51+
echo "Build failed on attempt $attempt. Clearing staging and retrying in 30s..."
5252
rm -rf build/staging build/lock.yaml
5353
sleep 30
5454
fi

.github/workflows/frontier_amd/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ while [ $attempt -le $max_attempts ]; do
4848
fi
4949

5050
if [ $attempt -lt $max_attempts ]; then
51-
echo "Build failed on attempt $attempt. Clearing staging/install and retrying in 30s..."
51+
echo "Build failed on attempt $attempt. Clearing staging and retrying in 30s..."
5252
rm -rf build/staging build/lock.yaml
5353
sleep 30
5454
fi

.github/workflows/phoenix/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ while [ $attempt -le $max_attempts ]; do
2323
fi
2424

2525
if [ $attempt -lt $max_attempts ]; then
26-
echo "Build failed on attempt $attempt. Clearing staging/install and retrying in 30s..."
26+
echo "Build failed on attempt $attempt. Clearing staging and retrying in 30s..."
2727
rm -rf build/staging build/lock.yaml
2828
sleep 30
2929
else

0 commit comments

Comments
 (0)