Skip to content

Commit 4adf204

Browse files
committed
cicd: run integration on the same version as cpp-driver
1 parent 9387c06 commit 4adf204

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build-lint-and-test.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454

5555
strategy:
5656
matrix:
57-
scylla-version: [ENTERPRISE-RELEASE, ENTERPRISE-PRIOR-RELEASE, OSS-RELEASE, OSS-PRIOR-RELEASE]
57+
scylla-version: [ENTERPRISE-RELEASE, ENTERPRISE-PRIOR-RELEASE, OSS-RELEASE, OSS-PRIOR-RELEASE, 5.4.8]
5858
fail-fast: false
5959

6060
steps:
@@ -85,8 +85,10 @@ jobs:
8585
echo "value=$(python3 ci/version_fetch.py --version-index 2 scylla-oss-stable:2 | tr -d '\"')" | tee -a $GITHUB_OUTPUT
8686
elif [[ "${{ matrix.scylla-version }}" == "OSS-RC" ]]; then
8787
echo "value=$(python3 ci/version_fetch.py --version-index 1 scylla-oss-rc | tr -d '\"')" | tee -a $GITHUB_OUTPUT
88+
elif echo "${{ matrix.scylla-version }}" | grep -P '^[0-9\.]+'; then # If you want to run specific version do just that
89+
echo "value=${{ matrix.scylla-version }}" | tee -a $GITHUB_OUTPUT
8890
else
89-
echo "Unknown scylla version name `${{ matrix.scylla-version }}`"
91+
echo "value=$(python3 ci/version_fetch.py --version-index 1 scylla-oss-rc | tr -d '\"')" | tee -a $GITHUB_OUTPUT
9092
exit 1
9193
fi
9294

0 commit comments

Comments
 (0)