-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+semver: major * Update license approvals Signed-off-by: Victor Chang <[email protected]> * Throw any error from MinIO with ListObject APIs (#214) * Throw any error from MinIO when listing objects * Capture ListObjectsAsync exceptions in VerifyObjectExistsAsync * Configure minio client timeout * Throw VerifyObjectsException on error * Convert MinIO exception with custom exceptions * Update API doc * Upgrade to .NET 8 (#281) * Upgrade to .NET 8 Signed-off-by: Victor Chang <[email protected]>
- Loading branch information
Showing
29 changed files
with
1,746 additions
and
4,353 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ jobs: | |
|
||
- uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: "6.0.x" | ||
dotnet-version: "8.0.x" | ||
|
||
- name: Enable NuGet cache | ||
uses: actions/[email protected] | ||
|
@@ -63,6 +63,9 @@ jobs: | |
run: dotnet build -c ${{ env.BUILD_CONFIG }} --nologo ${{ env.SOLUTION }} | ||
working-directory: ./src | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v2 | ||
|
||
analyze: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
|
@@ -81,7 +84,7 @@ jobs: | |
fetch-depth: 0 | ||
- uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: "6.0.x" | ||
dotnet-version: "8.0.x" | ||
|
||
- name: Enable Homebrew | ||
run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | ||
|
@@ -123,11 +126,11 @@ jobs: | |
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '11' | ||
java-version: '17' | ||
|
||
- uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: "6.0.x" | ||
dotnet-version: "8.0.x" | ||
|
||
- name: Enable NuGet cache | ||
uses: actions/[email protected] | ||
|
@@ -168,7 +171,7 @@ jobs: | |
working-directory: ./src/Plugins/MinIO/Tests | ||
|
||
- name: Test | ||
run: find ~+ -type f -name "*.Test.csproj" | xargs -L1 dotnet test -c ${{ env.BUILD_CONFIG }} -v=minimal -r "${{ env.TEST_RESULTS }}" --collect:"XPlat Code Coverage" --settings coverlet.runsettings | ||
run: find ~+ -type f -name "*.Tests.csproj" | xargs -L1 dotnet test -c ${{ env.BUILD_CONFIG }} -v=minimal --results-directory "${{ env.TEST_RESULTS }}" --collect:"XPlat Code Coverage" --settings coverlet.runsettings | ||
working-directory: ./src | ||
|
||
- name: End SonarScanner | ||
|
@@ -188,7 +191,7 @@ jobs: | |
- uses: codecov/[email protected] | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
directory: "src/${{ env.TEST_RESULTS }}" | ||
directory: "src/" | ||
files: "**/coverage.opencover.xml" | ||
flags: unittests | ||
name: codecov-umbrella | ||
|
@@ -220,7 +223,7 @@ jobs: | |
|
||
- uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: "6.0.x" | ||
dotnet-version: "8.0.x" | ||
|
||
- name: Enable NuGet cache | ||
uses: actions/[email protected] | ||
|
@@ -308,7 +311,7 @@ jobs: | |
env: | ||
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
with: | ||
dotnet-version: "6.0.x" | ||
dotnet-version: "8.0.x" | ||
source-url: https://nuget.pkg.github.com/Project-MONAI/index.json | ||
|
||
- name: Publish to GitHub | ||
|
@@ -333,7 +336,7 @@ jobs: | |
env: | ||
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
with: | ||
dotnet-version: "6.0.x" | ||
dotnet-version: "8.0.x" | ||
source-url: https://nuget.pkg.github.com/Project-MONAI/index.json | ||
|
||
- name: Publish to GitHub | ||
|
@@ -401,4 +404,4 @@ jobs: | |
token: ${{ secrets.GITHUB_TOKEN }} | ||
owner: ${{ steps.repo.outputs._0 }} | ||
repository: ${{ steps.repo.outputs._1 }} | ||
milestone: ${{ env.MAJORMINORPATCH }} | ||
milestone: ${{ env.MAJORMINORPATCH }} |
Oops, something went wrong.