Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove redis5 in CI pipeline #6379

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# yamllint disable rule:line-length
---
name: CI tests

on:
Expand Down Expand Up @@ -25,8 +27,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
fail-fast: true
# This workflow isn't designed to be run as a pipeline, several issues:
#
# - contains golangci-lint jobs, sonarcloud (would duplicate)
# - cache config not suitable for multiple pipelines
# - python tests should be separate job, or no job
#
# Keep it to a single job run from the matrix as configured
# until we get a chance to redesign the pipeline properly.
matrix:
redis-version: [5, 7]
redis-version: [7]
python-version: ["3.11"]
go-version: [1.21.x]

Expand Down Expand Up @@ -117,7 +127,7 @@ jobs:
golangci-lint run --out-format checkstyle --issues-exit-code=0 ./... > golanglint.xml

- name: SonarCloud Scan
if: always() && matrix.redis-version == 7
if: always()
uses: sonarsource/sonarcloud-github-action@master
with:
args: >
Expand Down
Loading