|
12 | 12 | - cron: "0 1 * * *"
|
13 | 13 |
|
14 | 14 | concurrency:
|
15 |
| - group: ${{ github.event.pull_request.number || github.ref }} |
| 15 | + group: ${{ github.event.pull_request.number || github.ref }}-integration |
16 | 16 | cancel-in-progress: true
|
17 | 17 |
|
18 | 18 | 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 |
| - |
65 | 19 | dotnet_8_cluster:
|
66 | 20 | name: .NET 8 on [redis-stack cluster]
|
67 | 21 | uses: ./.github/workflows/reusable.yml
|
68 | 22 | with:
|
69 | 23 | redis_stack_type: cluster
|
70 |
| - clr_version: net8.0 |
71 | 24 | dotenv_file: .github/cluster.env
|
72 | 25 | secrets: inherit
|
73 | 26 |
|
|
81 | 34 | redis-stack-type: ['edge', '6.2.6', '7.2.0-RC3']
|
82 | 35 | with:
|
83 | 36 | redis_stack_type: ${{matrix.redis-stack-type}}
|
84 |
| - clr_version: net8.0 |
85 | 37 | dotenv_file: .github/standalone.env
|
86 | 38 | secrets: inherit
|
87 | 39 |
|
|
109 | 61 | sudo apt-get install curl -y && sudo apt-get install gpg -y && apt-get install lsb-release -y && apt-get install libgomp1 -y
|
110 | 62 | curl https://packages.redis.io/redis-stack/redis-stack-server-${{env.redis_stack_version}}.jammy.x86_64.tar.gz -o redis-stack.tar.gz
|
111 | 63 | tar xf redis-stack.tar.gz
|
| 64 | + - name: Clean |
| 65 | + run: dotnet clean |
112 | 66 | - name: Restore dependencies
|
113 | 67 | run: dotnet restore
|
114 | 68 | - name: Build
|
|
0 commit comments