Skip to content

Commit a14b821

Browse files
committed
Another attempt
1 parent f3f07d1 commit a14b821

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/integration.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -57,24 +57,24 @@ jobs:
5757
pip install -r dev_requirements.txt
5858
invoke linters
5959
60-
current_version:
60+
redis_version:
6161
runs-on: ubuntu-latest
6262
outputs:
63-
CURRENT_REDIS_VERSION: ${{ env.CURRENT_REDIS_VERSION }}
63+
CURRENT: ${{ env.CURRENT_REDIS_VERSION }}
6464
steps:
6565
- name: Compute outputs
6666
run: |
67-
echo "CURRENT_REDIS_VERSION=${{ env.CURRENT_REDIS_VERSION }}" >> $GITHUB_OUTPUT
67+
echo "CURRENT=${{ env.CURRENT_REDIS_VERSION }}" >> $GITHUB_OUTPUT
6868
6969
tests:
7070
runs-on: ubuntu-latest
7171
timeout-minutes: 60
72-
needs: current_version
72+
needs: redis_version
7373
strategy:
7474
max-parallel: 15
7575
fail-fast: false
7676
matrix:
77-
redis-version: [ ${{ needs.current_version.outputs.CURRENT_REDIS_VERSION }} ] #, '8.0-M01', '7.2.6', '6.2.16']
77+
redis-version: [ "${{ needs.redis_version.outputs.CURRENT }}" ] #, '8.0-M01', '7.2.6', '6.2.16']
7878
python-version: ['3.8', '3.12']
7979
parser-backend: ['plain']
8080
event-loop: ['asyncio']
@@ -92,13 +92,13 @@ jobs:
9292

9393
python-compatibility-tests:
9494
runs-on: ubuntu-latest
95-
needs: [ current_version, tests ]
95+
needs: [ redis_version, tests ]
9696
timeout-minutes: 60
9797
strategy:
9898
max-parallel: 15
9999
fail-fast: false
100100
matrix:
101-
redis-version: [ ${{ needs.current_version.outputs.CURRENT_REDIS_VERSION }} ]
101+
redis-version: [ "${{ needs.redis_version.outputs.CURRENT }}" ]
102102
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.9', 'pypy-3.10']
103103
parser-backend: [ 'plain' ]
104104
event-loop: [ 'asyncio' ]
@@ -116,13 +116,13 @@ jobs:
116116

117117
hiredis-tests:
118118
runs-on: ubuntu-latest
119-
needs: [current_version, tests]
119+
needs: [redis_version, tests]
120120
timeout-minutes: 60
121121
strategy:
122122
max-parallel: 15
123123
fail-fast: false
124124
matrix:
125-
redis-version: [ ${{ needs.current_version.outputs.CURRENT_REDIS_VERSION }} ]
125+
redis-version: [ "${{ needs.redis_version.outputs.CURRENT }}" ]
126126
python-version: [ '3.8', '3.12']
127127
parser-backend: [ 'hiredis' ]
128128
event-loop: [ 'asyncio' ]
@@ -149,13 +149,13 @@ jobs:
149149

150150
uvloop-tests:
151151
runs-on: ubuntu-latest
152-
needs: [current_version, tests]
152+
needs: [redis_version, tests]
153153
timeout-minutes: 60
154154
strategy:
155155
max-parallel: 15
156156
fail-fast: false
157157
matrix:
158-
redis-version: [ ${{ needs.current_version.outputs.CURRENT_REDIS_VERSION }} ]
158+
redis-version: [ "${{ needs.redis_version.outputs.CURRENT }}" ]
159159
python-version: [ '3.8', '3.12' ]
160160
parser-backend: [ 'plain' ]
161161
event-loop: [ 'uvloop' ]

0 commit comments

Comments
 (0)