We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ceda56 commit c4726d9Copy full SHA for c4726d9
2 files changed
ci/cloudbuild/builds/bazel-oldest.sh
@@ -33,5 +33,7 @@ args+=(
33
--enable_workspace
34
# Only run the unit tests, no need to waste time running everything.
35
--test_tag_filters=-integration-test
36
+ # Disable warnings as errors for boringssl.
37
+ --per_file_copt=boringssl//@-Wno-error
38
)
39
io::run bazel test "${args[@]}" -- "${BAZEL_TARGETS[@]}"
ci/cloudbuild/dockerfiles/fedora-latest-bazel.Dockerfile
@@ -64,3 +64,6 @@ RUN go version
64
WORKDIR /var/tmp/downloads/cloud-bigtable-clients-test
65
RUN curl -fsSL https://github.com/googleapis/cloud-bigtable-clients-test/archive/v0.0.4.tar.gz | \
66
tar -xzf - --strip-components=1
67
+
68
+# Fedora 44 changed where it stores CA certs.
69
+RUN ln -sf /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem /etc/pki/tls/certs/ca-certificates.crt
0 commit comments