Xuanwo commented on code in PR #3079:
URL: 
https://github.com/apache/incubator-opendal/pull/3079#discussion_r1327897513


##########
.github/workflows/fs_write_full_disk.yml:
##########
@@ -0,0 +1,35 @@
+name: Fs write full disk
+
+on:
+  push:
+    branches:
+      - main
+
+jobs:
+  test:
+    runs-on: ubuntu-latest
+
+    steps:
+      - name: Checkout code
+        uses: actions/checkout@v2
+
+      - name: Create disk image
+        run: |
+          fallocate -l 512K disk.img
+          mkfs disk.img
+
+      - name: Mount disk image
+        run: |
+          mkdir ./td
+          sudo mount -o loop disk.img ./td
+
+      - name: Set permissions
+        run: chmod a+wr ./td
+
+      # Add more steps for testing as needed

Review Comment:
   Thanks for the PR, but this action is incomplete and hasn't undergone any 
real testing. Would you be willing to complete this part?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to