mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-07-19 06:22:31 +00:00
d246a1a817
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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@v7
|
|
|
|
- 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
|