Skip to content

Commit 0f0a7cf

Browse files
authored
ci: update bigtable conformance tests version (#15765)
1 parent 291effb commit 0f0a7cf

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

ci/cloudbuild/dockerfiles/fedora-latest-bazel.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ RUN curl -o /usr/bin/bazelisk -sSL "https://github.com/bazelbuild/bazelisk/relea
5656

5757
# Download the packages needed to run Bigtable conformance tests.
5858
WORKDIR /var/tmp/downloads
59-
RUN wget -O go.tgz https://go.dev/dl/go1.20.5.linux-amd64.tar.gz
59+
RUN wget -O go.tgz https://go.dev/dl/go1.25.4.linux-amd64.tar.gz
6060
RUN tar -C /usr/local/ -xzf go.tgz
6161
ENV GO_LOCATION=/usr/local/go
6262
ENV PATH=${GO_LOCATION}/bin:${PATH}
6363
RUN go version
6464
WORKDIR /var/tmp/downloads/cloud-bigtable-clients-test
65-
RUN curl -fsSL https://github.com/googleapis/cloud-bigtable-clients-test/archive/v0.0.2.tar.gz | \
65+
RUN curl -fsSL https://github.com/googleapis/cloud-bigtable-clients-test/archive/v0.0.4.tar.gz | \
6666
tar -xzf - --strip-components=1

google/cloud/bigtable/ci/run_conformance_tests_proxy_bazel.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ popd >/dev/null
4141

4242
# Run the test
4343
pushd /var/tmp/downloads/cloud-bigtable-clients-test/tests >/dev/null
44-
go test -v -skip Generic_CloseClient -proxy_addr=:9999
44+
# Run all non ExecuteQuery tests with skips for non ExecuteQuery tests.
45+
go test -v \
46+
-skip "Generic_CloseClient|Generic_DeadlineExceeded|NoRetry_OutOfOrderError_Reverse|Retry_LastScannedRow_Reverse|Retry_WithRetryInfo_OverallDedaline|TestExecuteQuery" \
47+
-proxy_addr=:9999
4548
exit_status=$?
4649
# Remove the entire module cache, including unpacked source code of versioned
4750
# dependencies.

0 commit comments

Comments
 (0)