@@ -154,27 +154,6 @@ jobs:
154154 END_TIME=$(date +%s)
155155 echo "duration=$((END_TIME - START_TIME))" >> $GITHUB_OUTPUT
156156
157- - name : Test 6 - Check cephfs binary (Ceph File System)
158- id : test6
159- run : |
160- START_TIME=$(date +%s)
161-
162- if command -v cephfs &> /dev/null || command -v ceph-fuse &> /dev/null; then
163- echo "✓ CephFS related command found"
164- if command -v ceph-fuse &> /dev/null; then
165- which ceph-fuse
166- ceph-fuse --version 2>&1 || echo "ceph-fuse binary exists"
167- fi
168- echo "status=passed" >> $GITHUB_OUTPUT
169- else
170- echo "✗ CephFS related commands not found"
171- echo "status=failed" >> $GITHUB_OUTPUT
172- exit 1
173- fi
174-
175- END_TIME=$(date +%s)
176- echo "duration=$((END_TIME - START_TIME))" >> $GITHUB_OUTPUT
177-
178157 # ============================================================
179158 # Calculate summary
180159 # ============================================================
@@ -226,14 +205,6 @@ jobs:
226205 fi
227206 TOTAL_DURATION=$((TOTAL_DURATION + ${{ steps.test5.outputs.duration || 0 }}))
228207
229- # Test 6
230- if [ "${{ steps.test6.outputs.status }}" == "passed" ]; then
231- PASSED=$((PASSED + 1))
232- else
233- FAILED=$((FAILED + 1))
234- fi
235- TOTAL_DURATION=$((TOTAL_DURATION + ${{ steps.test6.outputs.duration || 0 }}))
236-
237208 echo "passed=$PASSED" >> $GITHUB_OUTPUT
238209 echo "failed=$FAILED" >> $GITHUB_OUTPUT
239210 echo "duration=$TOTAL_DURATION" >> $GITHUB_OUTPUT
@@ -303,11 +274,6 @@ jobs:
303274 "name": "Check rbd binary (RADOS Block Device)",
304275 "status": "${{ steps.test5.outputs.status }}",
305276 "duration_seconds": ${{ steps.test5.outputs.duration || 0 }}
306- },
307- {
308- "name": "Check cephfs binary (Ceph File System)",
309- "status": "${{ steps.test6.outputs.status }}",
310- "duration_seconds": ${{ steps.test6.outputs.duration || 0 }}
311277 }
312278 ]
313279 },
0 commit comments