Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dotnet 8 CI #205

Merged
merged 1 commit into from
Nov 20, 2023
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
27 changes: 23 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
uses: ./.github/workflows/reusable.yml
with:
redis_stack_type: cluster
dotnet_version: 6.0.x
clr_version: net6.0
dotenv_file: .github/cluster.env
secrets: inherit
Expand All @@ -36,7 +35,6 @@ jobs:
redis-stack-type: ['edge', '6.2.6', '7.2.0-RC3']
with:
redis_stack_type: ${{matrix.redis-stack-type}}
dotnet_version: 6.0.x
clr_version: net6.0
dotenv_file: .github/standalone.env
secrets: inherit
Expand All @@ -46,7 +44,6 @@ jobs:
uses: ./.github/workflows/reusable.yml
with:
redis_stack_type: cluster
dotnet_version: 7.0.x
clr_version: net7.0
dotenv_file: .github/cluster.env
secrets: inherit
Expand All @@ -61,11 +58,33 @@ jobs:
redis-stack-type: ['edge', '6.2.6', '7.2.0-RC3']
with:
redis_stack_type: ${{matrix.redis-stack-type}}
dotnet_version: 7.0.x
clr_version: net7.0
dotenv_file: .github/standalone.env
secrets: inherit

dotnet_8_cluster:
name: .NET 8 on [redis-stack cluster]
uses: ./.github/workflows/reusable.yml
with:
redis_stack_type: cluster
clr_version: net8.0
dotenv_file: .github/cluster.env
secrets: inherit

dotnet_8:
name: .NET 8 on [redis-stack ${{matrix.redis-stack-type}}]
uses: ./.github/workflows/reusable.yml
strategy:
fail-fast: false
max-parallel: 5
matrix:
redis-stack-type: ['edge', '6.2.6', '7.2.0-RC3']
with:
redis_stack_type: ${{matrix.redis-stack-type}}
clr_version: net8.0
dotenv_file: .github/standalone.env
secrets: inherit

build_and_test_windows:
name: Windows Test ${{matrix.redis-stack-version}}
runs-on: windows-latest
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ on:
required: true
type: string

dotnet_version:
required: true
type: string

clr_version:
required: true
type: string
Expand Down Expand Up @@ -42,6 +38,12 @@ jobs:
with:
dotnet-version: '7.0.x'

- name: .NET Core 8 preview
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8
dotnet-quality: 'preview'

- name: run redis-stack-server docker
working-directory: .github
run: docker-compose up -d redis-stack-${{inputs.redis_stack_type}}
Expand Down