mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-07-25 01:22:39 +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.
82 lines
2.1 KiB
YAML
82 lines
2.1 KiB
YAML
name: "S3 Authenticated Integration Tests"
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'weed/s3api/**'
|
|
- 'weed/iam/**'
|
|
- 'weed/filer/**'
|
|
- 'weed/server/**'
|
|
- 'test/s3/normal/**'
|
|
- 'go.mod'
|
|
- 'go.sum'
|
|
- '.github/workflows/s3-example-integration-tests.yml'
|
|
|
|
concurrency:
|
|
group: ${{ github.head_ref }}/s3-integration-tests
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
tests:
|
|
name: S3 Integration Tests
|
|
runs-on: ubuntu-22.04
|
|
timeout-minutes: 30
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
id: go
|
|
|
|
- name: Build SeaweedFS
|
|
run: |
|
|
cd weed
|
|
go build -o weed -buildvcs=false
|
|
|
|
- name: Run S3 Integration Tests
|
|
timeout-minutes: 15
|
|
working-directory: test/s3/normal
|
|
run: |
|
|
set -x
|
|
echo "=== Running S3 Integration Tests ==="
|
|
go test -v -timeout=60s -run TestS3Integration ./...
|
|
|
|
- name: Run S3 DeleteBucketNotEmpty Tests
|
|
timeout-minutes: 15
|
|
working-directory: test/s3/normal
|
|
run: |
|
|
set -x
|
|
echo "=== Running S3 DeleteBucketNotEmpty Tests ==="
|
|
go test -v -timeout=60s -run TestS3DeleteBucketNotEmpty ./...
|
|
|
|
- name: Run S3 Empty Directory Marker Tests
|
|
timeout-minutes: 15
|
|
working-directory: test/s3/normal
|
|
run: |
|
|
set -x
|
|
echo "=== Running S3 Empty Directory Marker Tests ==="
|
|
go test -v -timeout=180s -run TestS3ListObjectsEmptyDirectoryMarkers ./...
|
|
|
|
- name: Run IAM Integration Tests
|
|
timeout-minutes: 15
|
|
working-directory: test/s3/normal
|
|
run: |
|
|
set -x
|
|
echo "=== Running IAM Integration Tests ==="
|
|
go test -v -timeout=60s -run TestIAMOperations ./...
|
|
|
|
- name: Upload test logs on failure
|
|
if: failure()
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: integration-test-logs
|
|
path: test/s3/normal/*.log
|
|
retention-days: 3
|