Skip to content

Commit bad94d7

Browse files
committed
Streamline CI jobs
Add net8.0 as target framework. Remove the `doctests` workflow, since all tests inside `tests/Doc` are executed anyway during the `integration` workflow. Separate the concurrency groups between workflows, to avoid them cancelling each other during one CI run. This seems to be a known issue: https://github.com/orgs/community/discussions/41518 Instead of running the `integration` workflow separately for different dotnet target frameworks (which turned out to be an illusion, because it was always running with dotnet 8), run it only once per Redis setup type, and don't restrict the target framework, so it will run against all listed target frameworks.
1 parent b725b9e commit bad94d7

File tree

8 files changed

+15
-115
lines changed

8 files changed

+15
-115
lines changed

.github/workflows/doctests.yml

-39
This file was deleted.

.github/workflows/integration.yml

+3-49
Original file line numberDiff line numberDiff line change
@@ -12,62 +12,15 @@ on:
1212
- cron: "0 1 * * *"
1313

1414
concurrency:
15-
group: ${{ github.event.pull_request.number || github.ref }}
15+
group: ${{ github.event.pull_request.number || github.ref }}-integration
1616
cancel-in-progress: true
1717

1818
jobs:
19-
dotnet_6_cluster:
20-
name: .NET 6 on [redis-stack cluster]
21-
uses: ./.github/workflows/reusable.yml
22-
with:
23-
redis_stack_type: cluster
24-
clr_version: net6.0
25-
dotenv_file: .github/cluster.env
26-
secrets: inherit
27-
28-
dotnet_6:
29-
name: .NET 6 on [redis-stack ${{matrix.redis-stack-type}}]
30-
uses: ./.github/workflows/reusable.yml
31-
strategy:
32-
fail-fast: false
33-
max-parallel: 5
34-
matrix:
35-
redis-stack-type: ['edge', '6.2.6', '7.2.0-RC3']
36-
with:
37-
redis_stack_type: ${{matrix.redis-stack-type}}
38-
clr_version: net6.0
39-
dotenv_file: .github/standalone.env
40-
secrets: inherit
41-
42-
dotnet_7_cluster:
43-
name: .NET 7 on [redis-stack cluster]
44-
uses: ./.github/workflows/reusable.yml
45-
with:
46-
redis_stack_type: cluster
47-
clr_version: net7.0
48-
dotenv_file: .github/cluster.env
49-
secrets: inherit
50-
51-
dotnet_7:
52-
name: .NET 7 on [redis-stack ${{matrix.redis-stack-type}}]
53-
uses: ./.github/workflows/reusable.yml
54-
strategy:
55-
fail-fast: false
56-
max-parallel: 5
57-
matrix:
58-
redis-stack-type: ['edge', '6.2.6', '7.2.0-RC3']
59-
with:
60-
redis_stack_type: ${{matrix.redis-stack-type}}
61-
clr_version: net7.0
62-
dotenv_file: .github/standalone.env
63-
secrets: inherit
64-
6519
dotnet_8_cluster:
6620
name: .NET 8 on [redis-stack cluster]
6721
uses: ./.github/workflows/reusable.yml
6822
with:
6923
redis_stack_type: cluster
70-
clr_version: net8.0
7124
dotenv_file: .github/cluster.env
7225
secrets: inherit
7326

@@ -81,7 +34,6 @@ jobs:
8134
redis-stack-type: ['edge', '6.2.6', '7.2.0-RC3']
8235
with:
8336
redis_stack_type: ${{matrix.redis-stack-type}}
84-
clr_version: net8.0
8537
dotenv_file: .github/standalone.env
8638
secrets: inherit
8739

@@ -109,6 +61,8 @@ jobs:
10961
sudo apt-get install curl -y && sudo apt-get install gpg -y && apt-get install lsb-release -y && apt-get install libgomp1 -y
11062
curl https://packages.redis.io/redis-stack/redis-stack-server-${{env.redis_stack_version}}.jammy.x86_64.tar.gz -o redis-stack.tar.gz
11163
tar xf redis-stack.tar.gz
64+
- name: Clean
65+
run: dotnet clean
11266
- name: Restore dependencies
11367
run: dotnet restore
11468
- name: Build

.github/workflows/linter.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Format check on pull request
33
on: pull_request
44

55
concurrency:
6-
group: ${{ github.event.pull_request.number || github.ref }}
6+
group: ${{ github.event.pull_request.number || github.ref }}-linter
77
cancel-in-progress: true
88

99
jobs:
@@ -14,7 +14,7 @@ jobs:
1414
run: dotnet tool install -g dotnet-format
1515

1616
- name: Checkout repo
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
with:
1919
ref: ${{ github.head_ref }}
2020

.github/workflows/reusable.yml

+4-19
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ on:
77
required: true
88
type: string
99

10-
clr_version:
11-
required: true
12-
type: string
13-
1410
dotenv_file:
1511
required: true
1612
type: string
@@ -25,24 +21,12 @@ jobs:
2521
PASSWORD: ${{ secrets.PASSWORD }}
2622
ENDPOINT: ${{ secrets.ENDPOINT }}
2723
steps:
28-
2924
- uses: actions/checkout@v3
3025

31-
- name: .NET Core 6
32-
uses: actions/setup-dotnet@v2
33-
with:
34-
dotnet-version: '6.0.x'
35-
36-
- name: .NET Core 7
37-
uses: actions/setup-dotnet@v2
38-
with:
39-
dotnet-version: '7.0.x'
40-
41-
- name: .NET Core 8 preview
26+
- name: .NET Core 8
4227
uses: actions/setup-dotnet@v3
4328
with:
4429
dotnet-version: 8
45-
dotnet-quality: 'preview'
4630

4731
- name: run redis-stack-server docker
4832
working-directory: .github
@@ -53,6 +37,8 @@ jobs:
5337
with:
5438
env-file: ${{inputs.dotenv_file}}
5539

40+
- name: Cleanup
41+
run: dotnet clean
5642
- name: Restore dependencies
5743
run: dotnet restore
5844
- name: Build
@@ -63,12 +49,11 @@ jobs:
6349
echo "${{secrets.REDIS_USER_CRT}}" > tests/NRedisStack.Tests/bin/Debug/net6.0/redis_user.crt
6450
echo "${{secrets.REDIS_USER_PRIVATE_KEY}}" > tests/NRedisStack.Tests/bin/Debug/net6.0/redis_user_private.key
6551
ls -R
66-
dotnet test -f ${{inputs.clr_version}} --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
52+
dotnet test --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
6753
- name: Codecov
6854
uses: codecov/codecov-action@v3
6955
with:
7056
token: ${{secrets.CODECOV_TOKEN}}
7157
verbose: true
7258
- name: Build
7359
run: dotnet pack -c Release
74-

.github/workflows/spellcheck.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55

66
concurrency:
7-
group: ${{ github.event.pull_request.number || github.ref }}
7+
group: ${{ github.event.pull_request.number || github.ref }}-spellcheck
88
cancel-in-progress: true
99

1010
jobs:

src/NRedisStack/NRedisStack.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Nullable>enable</Nullable>
5-
<TargetFrameworks>netstandard2.0;net6.0;net7.0</TargetFrameworks>
5+
<TargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0</TargetFrameworks>
66
<LangVersion>latest</LangVersion>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<Authors>Redis Open Source</Authors>

tests/Doc/Doc.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<IsWindows>$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::get_Windows())))</IsWindows>
4-
<TargetFrameworks Condition=" '$(IsWindows)' == 'true'">net6.0;net7.0;net481</TargetFrameworks>
5-
<TargetFrameworks Condition=" '$(IsWindows)' != 'true'">net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks Condition=" '$(IsWindows)' == 'true'">net6.0;net7.0;net8.0;net481</TargetFrameworks>
5+
<TargetFrameworks Condition=" '$(IsWindows)' != 'true'">net6.0;net7.0;net8.0</TargetFrameworks>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<LangVersion>latest</LangVersion>

tests/NRedisStack.Tests/NRedisStack.Tests.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<IsWindows>$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::get_Windows())))</IsWindows>
4-
<TargetFrameworks Condition=" '$(IsWindows)' == 'true'">net6.0;net7.0;net481</TargetFrameworks>
5-
<TargetFrameworks Condition=" '$(IsWindows)' != 'true'">net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks Condition=" '$(IsWindows)' == 'true'">net6.0;net7.0;net8.0;net481</TargetFrameworks>
5+
<TargetFrameworks Condition=" '$(IsWindows)' != 'true'">net6.0;net7.0;net8.0</TargetFrameworks>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<LangVersion>latest</LangVersion>

0 commit comments

Comments
 (0)