-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into csharp/integ_yuryf_…
…fix_eol Signed-off-by: Yury-Fridlyand <[email protected]>
- Loading branch information
Showing
116 changed files
with
7,552 additions
and
1,175 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 |
---|---|---|
|
@@ -5,68 +5,91 @@ on: | |
branches: ["main"] | ||
paths: | ||
- csharp/** | ||
- glide-core/** | ||
- glide-core/src/** | ||
- submodules/** | ||
- .github/workflows/csharp.yml | ||
- .github/workflows/install-shared-dependencies/action.yml | ||
- .github/workflows/install-redis/action.yml | ||
- .github/workflows/test-benchmark/action.yml | ||
- .github/workflows/lint-rust/action.yml | ||
pull_request: | ||
paths: | ||
- csharp/** | ||
- glide-core/src/** | ||
- submodules/** | ||
- .github/workflows/csharp.yml | ||
- .github/workflows/install-shared-dependencies/action.yml | ||
- .github/workflows/install-redis/action.yml | ||
- .github/workflows/test-benchmark/action.yml | ||
- .github/workflows/lint-rust/action.yml | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
run-tests: | ||
timeout-minutes: 15 | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
redis: | ||
- 6.2.14 | ||
- 7.2.3 | ||
dotnet: | ||
- 6.0 | ||
- 8.0 | ||
- '6.0' | ||
- '8.0' | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Install redis | ||
# TODO: make this step macos compatible: https://github.com/aws/glide-for-redis/issues/781 | ||
if: ${{ matrix.os == 'ubuntu-latest' }} | ||
uses: ./.github/workflows/install-redis | ||
with: | ||
redis-version: ${{ matrix.redis }} | ||
|
||
- name: Install protoc (protobuf) | ||
uses: arduino/[email protected] | ||
- name: Install shared software dependencies | ||
uses: ./.github/workflows/install-shared-dependencies | ||
with: | ||
version: "25.1" | ||
os: ${{ matrix.os }} | ||
target: ${{ matrix.os == 'ubuntu-latest' && 'x86_64-unknown-linux-gnu' || 'x86_64-apple-darwin' }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Set up dotnet ${{ matrix.dotnet }} | ||
uses: actions/setup-dotnet@v3 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: ${{ matrix.dotnet }} | ||
|
||
- name: Start redis server | ||
run: redis-server & | ||
|
||
- name: Format | ||
working-directory: ./csharp | ||
run: dotnet format --verify-no-changes --verbosity diagnostic | ||
|
||
- name: Test dotnet ${{ matrix.dotnet }} | ||
working-directory: ./csharp | ||
run: dotnet test --framework net${{ matrix.dotnet }} /warnaserror | ||
run: dotnet test --framework net${{ matrix.dotnet }} "-l:html;LogFileName=TestReport.html" --results-directory . -warnaserror | ||
|
||
- uses: ./.github/workflows/test-benchmark | ||
with: | ||
language-flag: -csharp | ||
|
||
- name: Upload test reports | ||
if: always() | ||
continue-on-error: true | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: test-reports-dotnet-${{ matrix.dotnet }}-redis-${{ matrix.redis }}-${{ matrix.os }} | ||
path: | | ||
csharp/TestReport.html | ||
benchmarks/results/* | ||
utils/clusters/** | ||
lint-rust: | ||
timeout-minutes: 10 | ||
runs-on: ubuntu-latest | ||
|
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 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
Oops, something went wrong.