Skip to content

Commit 32d46d9

Browse files
committed
update cockroachdb and chaosd used in e2e tests
1 parent 6b6f8f1 commit 32d46d9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build-test.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -285,8 +285,8 @@ jobs:
285285
if: "steps.cache-binaries.outputs.cache-hit != 'true'"
286286
working-directory: "e2e/newenemy"
287287
run: |
288-
curl https://binaries.cockroachdb.com/cockroach-v22.1.5.linux-amd64.tgz | tar -xz && mv cockroach-v22.1.5.linux-amd64/cockroach ./cockroach
289-
curl -fsSL https://mirrors.chaos-mesh.org/chaosd-v1.1.1-linux-amd64.tar.gz | tar -xz && mv chaosd-v1.1.1-linux-amd64/chaosd ./chaosd
288+
curl https://binaries.cockroachdb.com/cockroach-v23.1.30.linux-amd64.tgz | tar -xz && mv cockroach-v23.1.30.linux-amd64/cockroach ./cockroach
289+
curl -fsSL https://mirrors.chaos-mesh.org/chaosd-v1.4.0-linux-amd64.tar.gz | tar -xz && mv chaosd-v1.4.0-linux-amd64/chaosd ./chaosd
290290
- name: "Build SpiceDB"
291291
run: |
292292
go get -d ./...

internal/datastore/crdb/version/version.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package version
22

33
// MinimumSupportedCockroachDBVersion is the minimum version of CockroachDB supported for this driver.
4+
// If you update this, please also update the E2E step in the Github workflow.
45
//
56
// NOTE: must match a tag on DockerHub for the `cockroachdb/cockroach` image, without the `v` prefix.
67
const MinimumSupportedCockroachDBVersion = "23.1.30"

0 commit comments

Comments
 (0)