mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-07-28 02:55:24 +00:00
Add path filters to workflows that fired on every PR/push regardless of the diff: CodeQL, go build, the e2e/EC/vacuum/TLS/plugin-worker integration suites, the Kafka and Postgres gateways, the S3 suites (Ceph s3tests, s3-go, s3-tables, proxy-signature, https, example, filer-group), TUS, and the dev binary/container builds. Each scopes to its subsystem under weed/, its test dir, go.mod/go.sum, and the workflow file, so docs-, helm-, terraform-, rust- or java-only changes no longer trigger a full compile-and-test fleet.
73 lines
2.0 KiB
YAML
73 lines
2.0 KiB
YAML
name: "EC Integration Tests"
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
paths:
|
|
- 'weed/**'
|
|
- 'test/erasure_coding/**'
|
|
- 'go.mod'
|
|
- 'go.sum'
|
|
- '.github/workflows/ec-integration-tests.yml'
|
|
pull_request:
|
|
branches: [ master ]
|
|
paths:
|
|
- 'weed/**'
|
|
- 'test/erasure_coding/**'
|
|
- 'go.mod'
|
|
- 'go.sum'
|
|
- '.github/workflows/ec-integration-tests.yml'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
ec-integration-tests:
|
|
name: EC Integration Tests
|
|
runs-on: ubuntu-22.04
|
|
timeout-minutes: 30
|
|
steps:
|
|
- name: Set up Go 1.x
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version: ^1.25
|
|
id: go
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Build weed binary
|
|
run: |
|
|
cd weed && go build -o weed .
|
|
|
|
- name: Run EC Integration Tests
|
|
working-directory: test/erasure_coding
|
|
run: |
|
|
go test -v
|
|
|
|
- name: Collect server logs on failure
|
|
if: failure()
|
|
run: |
|
|
echo "Collecting server logs from temp directories..."
|
|
mkdir -p /tmp/ec-test-logs
|
|
# Find all temp directories created by the tests (they persist on failure with t.TempDir())
|
|
find /tmp -maxdepth 1 -type d \( -name "TestEC*" -o -name "TestDisk*" -o -name "TestCross*" -o -name "TestEvacuation*" \) 2>/dev/null | while read dir; do
|
|
if [ -d "$dir" ]; then
|
|
echo "Found test directory: $dir"
|
|
# Copy the entire directory structure to preserve organization
|
|
cp -r "$dir" /tmp/ec-test-logs/ 2>/dev/null || true
|
|
fi
|
|
done
|
|
# List what we collected
|
|
echo "Collected logs:"
|
|
find /tmp/ec-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: ec-integration-test-logs
|
|
path: |
|
|
/tmp/ec-test-logs/
|
|
test/erasure_coding/
|
|
if-no-files-found: warn |