mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-08-19 13:46:58 +00:00
69 lines
1.7 KiB
YAML
69 lines
1.7 KiB
YAML
name: "Vacuum Integration Tests"
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
paths:
|
|
- 'weed/**'
|
|
- 'test/vacuum/**'
|
|
- 'go.mod'
|
|
- 'go.sum'
|
|
- '.github/workflows/vacuum-integration-tests.yml'
|
|
pull_request:
|
|
branches: [ master ]
|
|
paths:
|
|
- 'weed/**'
|
|
- 'test/vacuum/**'
|
|
- 'go.mod'
|
|
- 'go.sum'
|
|
- '.github/workflows/vacuum-integration-tests.yml'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
vacuum-integration-tests:
|
|
name: Vacuum Integration Tests
|
|
runs-on: ubuntu-22.04
|
|
timeout-minutes: 15
|
|
steps:
|
|
- name: Set up Go 1.x
|
|
uses: actions/setup-go@v7
|
|
with:
|
|
go-version: ^1.26
|
|
id: go
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v7
|
|
|
|
- name: Build weed binary
|
|
run: |
|
|
cd weed && go build -o weed .
|
|
|
|
- name: Run Vacuum Integration Tests
|
|
working-directory: test/vacuum
|
|
run: |
|
|
go test -v -timeout 10m
|
|
|
|
- name: Collect server logs on failure
|
|
if: failure()
|
|
run: |
|
|
echo "Collecting server logs from temp directories..."
|
|
mkdir -p /tmp/vacuum-test-logs
|
|
find /tmp -maxdepth 1 -type d -name "TestVacuum*" 2>/dev/null | while read dir; do
|
|
if [ -d "$dir" ]; then
|
|
echo "Found test directory: $dir"
|
|
cp -r "$dir" /tmp/vacuum-test-logs/ 2>/dev/null || true
|
|
fi
|
|
done
|
|
echo "Collected logs:"
|
|
find /tmp/vacuum-test-logs -type f -name "*.log" 2>/dev/null || echo "No logs found"
|
|
|
|
- name: Archive logs
|
|
if: failure()
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: vacuum-integration-test-logs
|
|
path: /tmp/vacuum-test-logs/
|
|
retention-days: 14
|