Skip to content

Commit 655cb77

Browse files
committed
fix(ci): ensure CI artifact copying does not fail
1 parent 51d206b commit 655cb77

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/fortress-completion-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,15 +156,15 @@ jobs:
156156
if [ -d "./ci-artifacts/" ]; then
157157
echo "📋 Processing unit test CI results..."
158158
find ./ci-artifacts/ -name "*.jsonl" -type f | while read -r file; do
159-
copy_ci_artifact "$file" "ci"
159+
copy_ci_artifact "$file" "ci" || true
160160
done
161161
fi
162162
163163
# Process CI results from test-artifacts (fuzz tests)
164164
if [ -d "./test-artifacts/" ]; then
165165
echo "📋 Processing fuzz test CI results..."
166166
find ./test-artifacts/ -name "*.jsonl" -type f | while read -r file; do
167-
copy_ci_artifact "$file" "ci"
167+
copy_ci_artifact "$file" "ci" || true
168168
done
169169
fi
170170

0 commit comments

Comments
 (0)