istio: bump Go (#9936)

Bumps Go for Istio.

Signed-off-by: AdamKorcz <adam@adalogics.com>
This commit is contained in:
AdamKorcz 2023-03-17 13:05:15 +00:00 committed by GitHub
parent c7463eeb1b
commit 43ec92a973
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View File

@ -17,5 +17,10 @@
# Setup the builder for Istio. The standard Go builder is sufficient.
FROM gcr.io/oss-fuzz-base/base-builder-go
RUN git clone --depth 1 https://github.com/istio/istio
RUN wget https://go.dev/dl/go1.20.2.linux-amd64.tar.gz \
&& mkdir temp-go \
&& rm -rf /root/.go/* \
&& tar -C temp-go/ -xzf go1.20.2.linux-amd64.tar.gz \
&& mv temp-go/go/* /root/.go/
COPY build.sh $SRC/
WORKDIR $SRC/istio

View File

@ -15,6 +15,10 @@
#
################################################################################
# required by Go 1.20
export CXX="${CXX} -lresolv"
# Build fuzzers
if [ -n "${OSS_FUZZ_CI-}" ]
then
echo "Skipping most fuzzers since the OSS-fuzz CI may fail from running out of disk space."