-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GetObject API with Args & Response objects.
- Loading branch information
Showing
22 changed files
with
437 additions
and
204 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Minio-dontet Linux Tests | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 2.1.810 | ||
- name: Install dependencies | ||
run: dotnet restore | ||
- name: Build & Unit Test | ||
run: | | ||
dotnet build -c Release | ||
dotnet pack ./Minio/Minio.csproj --no-build -c Release -o ./artifacts | ||
dotnet test ./Minio.Tests/Minio.Tests.csproj -f netcoreapp2.1 | ||
- name: Functional Tests | ||
run: | | ||
dotnet build Minio.Functional.Tests -c Release --framework netcoreapp2.1 | ||
dotnet Minio.Functional.Tests/bin/Release/netcoreapp2.1/Minio.Functional.Tests.dll |
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Minio-dotnet Windows Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
strategy: | ||
matrix: | ||
configuration: [ Release ] | ||
|
||
runs-on: windows-latest | ||
env: | ||
Solution_Name: Minio.sln | ||
Test_Project_Path: ./Minio.Tests/Minio.Tests.csproj -f netcoreapp2.1 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# Install the .NET Core workload | ||
- name: Install .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 2.1.810 | ||
|
||
# Add MSBuild to the PATH: | ||
- name: Setup MSBuild.exe | ||
uses: microsoft/setup-msbuild@2008f912f56e61277eefaac6d1888b750582aa16 | ||
|
||
# Install dependencies | ||
- name: Install dependencies | ||
run: dotnet restore | ||
|
||
# Build and Execute Build tests | ||
- name: Build & Unit Test | ||
run: | | ||
dotnet build -c Release | ||
dotnet pack ./Minio/Minio.csproj --no-build -c Release -o ./artifacts | ||
dotnet test ./Minio.Tests/Minio.Tests.csproj -f netcoreapp2.1 | ||
# Execute all functional tests in the solution | ||
- name: Execute Functional tests | ||
run: | | ||
dotnet build Minio.Functional.Tests -c Release --framework netcoreapp2.1 | ||
dotnet Minio.Functional.Tests/bin/Release/netcoreapp2.1/Minio.Functional.Tests.dll | ||
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
Oops, something went wrong.