Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
7.x
8.x
9.x
10.x
- name: Checkout
uses: actions/checkout@v4
- name: Build
Expand All @@ -33,7 +34,7 @@ jobs:
run: dotnet test --no-build --filter "TestCategory!~Cloud"

azure:
name: "Test: AzureFileSystem, Azurite"
name: "Test: AzureFileSystem"
runs-on: ubuntu-latest
services:
azurite:
Expand All @@ -59,16 +60,14 @@ jobs:
run: dotnet test --no-build --filter TestCategory=Cloud:Azure

s3:
name: "Test: S3FileSystem, Minio"
name: "Test: S3FileSystem"
runs-on: ubuntu-latest
services:
minio:
image: bitnami/minio:latest
rustfs:
image: docker.io/rustfs/rustfs:latest
ports:
- 9000:9000
env:
MINIO_ROOT_USER: minioadmin
MINIO_ROOT_PASSWORD: minioadmin
- 9001:9001
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected override DirectoryInfo GetDirectoryInfo() =>

private AmazonS3FileSystem CreateFileSystem(bool isReadOnly)
{
var credentials = new BasicAWSCredentials("minioadmin", "minioadmin");
var credentials = new BasicAWSCredentials("rustfsadmin", "rustfsadmin");
var config = new AmazonS3Config
{
RegionEndpoint = RegionEndpoint.USEast1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ private AmazonS3FileSystem CreateFileSystem(string storageName)
_list.Add(storageName);

return new AmazonS3FileSystem(
new BasicAWSCredentials("minioadmin", "minioadmin"),
new BasicAWSCredentials("rustfsadmin", "rustfsadmin"),
new AmazonS3Config
{
RegionEndpoint = RegionEndpoint.USEast1,
Expand Down