We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51d206b commit 655cb77Copy full SHA for 655cb77
1 file changed
.github/workflows/fortress-completion-tests.yml
@@ -156,15 +156,15 @@ jobs:
156
if [ -d "./ci-artifacts/" ]; then
157
echo "📋 Processing unit test CI results..."
158
find ./ci-artifacts/ -name "*.jsonl" -type f | while read -r file; do
159
- copy_ci_artifact "$file" "ci"
+ copy_ci_artifact "$file" "ci" || true
160
done
161
fi
162
163
# Process CI results from test-artifacts (fuzz tests)
164
if [ -d "./test-artifacts/" ]; then
165
echo "📋 Processing fuzz test CI results..."
166
find ./test-artifacts/ -name "*.jsonl" -type f | while read -r file; do
167
168
169
170
0 commit comments