Skip to content

Commit

Permalink
Disable JSON module tests for redis 6.2.4. (#980)
Browse files Browse the repository at this point in the history
This happens due to a consistent crash -
RedisJSON/RedisJSON#1124
  • Loading branch information
nihohit committed Oct 31, 2023
1 parent a6b3916 commit fb8a327
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
run: make test

- name: Checkout RedisJSON
if: steps.cache-redisjson.outputs.cache-hit != 'true'
if: steps.cache-redisjson.outputs.cache-hit != 'true' && matrix.redis != '6.2.4'
uses: actions/checkout@v4
with:
repository: "RedisJSON/RedisJSON"
Expand All @@ -94,7 +94,7 @@ jobs:
# This shouldn't cause issues in the future so long as no profiles or patches
# are applied to the workspace Cargo.toml file
- name: Compile RedisJSON
if: steps.cache-redisjson.outputs.cache-hit != 'true'
if: steps.cache-redisjson.outputs.cache-hit != 'true' && matrix.redis != '6.2.4'
run: |
cp ./Cargo.toml ./Cargo.toml.actual
echo $'\nexclude = [\"./__ci/redis-json\"]' >> Cargo.toml
Expand All @@ -104,6 +104,7 @@ jobs:
rm -rf ./__ci/redis-json
- name: Run module-specific tests
if: matrix.redis != '6.2.4'
run: make test-module

- name: Check features
Expand Down

0 comments on commit fb8a327

Please sign in to comment.