Skip to content

Commit

Permalink
reerre
Browse files Browse the repository at this point in the history
  • Loading branch information
Woellchen committed Aug 31, 2022
1 parent a8813ab commit c2d6853
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v2

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y fuse
- name: Start SeaweedFS
timeout-minutes: 5
run: make build_e2e && docker compose -f ./compose/e2e-mount.yml up --wait
Expand All @@ -51,7 +56,10 @@ jobs:
- name: Save logs
if: always()
run: docker compose -f ./compose/e2e-mount.yml logs > output.log
run: |
docker compose -f ./compose/e2e-mount.yml logs > output.log
echo 'Showing last 500 log lines of mount service:'
docker compose -f ./compose/e2e-mount.yml logs --tail 500 mount
- name: Archive logs
if: always()
Expand Down
2 changes: 2 additions & 0 deletions docker/compose/e2e-mount.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ services:
- SYS_ADMIN
devices:
- /dev/fuse
security_opt:
- apparmor:unconfined
deploy:
resources:
limits:
Expand Down

0 comments on commit c2d6853

Please sign in to comment.