Skip to content

Commit

Permalink
dotnet 8 CI (#205)
Browse files Browse the repository at this point in the history
dotnet 8 preview
  • Loading branch information
chayim authored Nov 20, 2023
1 parent 954992e commit 16ac7a7
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 8 deletions.
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

0 comments on commit 16ac7a7

Please sign in to comment.