File tree Expand file tree Collapse file tree 12 files changed +13
-13
lines changed
presubmit_test/pr_perf_test
containerize_gcsfuse_docker Expand file tree Collapse file tree 12 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1717# Mount the gcsfuse to /mnt/gcs:
1818# > docker run --privileged --device /fuse -v /mnt/gcs:/gcs:rw,rshared gcsfuse
1919
20- FROM golang:1.24.10 -alpine AS builder
20+ FROM golang:1.24.11 -alpine AS builder
2121
2222RUN apk add git
2323
Original file line number Diff line number Diff line change 1313# limitations under the License.
1414
1515substitutions :
16- _GOLANG_VERSION : ' 1.24'
16+ _GOLANG_VERSION : ' 1.24.11 '
1717 _GCSFUSE_VERSION : ' v4'
1818 _CSI_VERSION : ' main'
1919 _BUILD_ARM : ' false'
Original file line number Diff line number Diff line change 11module github.com/googlecloudplatform/gcsfuse/v3
22
3- go 1.24.10
3+ go 1.24.11
44
55require (
66 cloud.google.com/go/auth v0.16.5
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ set -euo pipefail
2222if [[ $# -ne 1 ]]; then
2323 echo " This script requires exactly one argument."
2424 echo " Usage: $0 <go-version>"
25- echo " Example: $0 1.24.10 "
25+ echo " Example: $0 1.24.11 "
2626 exit 1
2727fi
2828
Original file line number Diff line number Diff line change @@ -23,9 +23,9 @@ sudo apt-get update
2323echo " Installing git"
2424sudo apt-get install git
2525# Install Golang.
26- # wget -O go_tar.tar.gz https://go.dev/dl/go1.24.10 .linux-amd64.tar.gz -q
26+ # wget -O go_tar.tar.gz https://go.dev/dl/go1.24.11 .linux-amd64.tar.gz -q
2727architecture=$( dpkg --print-architecture)
28- wget -O go_tar.tar.gz https://go.dev/dl/go1.24.10 .linux-${architecture} .tar.gz -q
28+ wget -O go_tar.tar.gz https://go.dev/dl/go1.24.11 .linux-${architecture} .tar.gz -q
2929sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go_tar.tar.gz
3030export PATH=$PATH :/usr/local/go/bin
3131
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ readonly EXECUTE_INTEGRATION_TEST_LABEL_ON_ZB="execute-integration-tests-on-zb"
2121readonly EXECUTE_PACKAGE_BUILD_TEST_LABEL=" execute-package-build-tests"
2222readonly EXECUTE_CHECKPOINT_TEST_LABEL=" execute-checkpoint-test"
2323readonly BUCKET_LOCATION=us-west4
24- readonly GO_VERSION=" 1.24.10 "
24+ readonly GO_VERSION=" 1.24.11 "
2525readonly REQUIRED_BASH_VERSION_FOR_E2E_SCRIPT=" 5.1"
2626readonly INSTALL_BASH_VERSION=" 5.3" # Using 5.3 for installation as bash 5.1 has an installation bug.
2727
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ sed -i 's/define \+FIO_IO_U_PLAT_GROUP_NR \+\([0-9]\+\)/define FIO_IO_U_PLAT_GRO
6464cd -
6565
6666# Install and validate go.
67- version=1.24.10
67+ version=1.24.11
6868wget -O go_tar.tar.gz https://go.dev/dl/go${version} .linux-amd64.tar.gz -q
6969sudo rm -rf /usr/local/go
7070tar -xzf go_tar.tar.gz && sudo mv go /usr/local
Original file line number Diff line number Diff line change 253253fi
254254
255255# install go
256- wget -O go_tar.tar.gz https://go.dev/dl/go1.24.10 .linux-${architecture}.tar.gz
256+ wget -O go_tar.tar.gz https://go.dev/dl/go1.24.11 .linux-${architecture}.tar.gz
257257sudo tar -C /usr/local -xzf go_tar.tar.gz
258258export PATH=${PATH}:/usr/local/go/bin
259259#Write gcsfuse and go version to log file
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ ARG OS_VERSION
3434ARG OS_NAME
3535
3636# Image with gcsfuse installed and its package (.deb)
37- FROM golang:1.24.10 as gcsfuse-package
37+ FROM golang:1.24.11 as gcsfuse-package
3838
3939RUN apt-get update -qq && apt-get install -y ruby ruby-dev rubygems build-essential rpm fuse && gem install --no-document bundler
4040
Original file line number Diff line number Diff line change 5252log_info " Bash version: ${BASH_VERSINFO[0]} .${BASH_VERSINFO[1]} "
5353
5454# Constants
55- readonly GO_VERSION=" 1.24.10 "
55+ readonly GO_VERSION=" 1.24.11 "
5656readonly DEFAULT_PROJECT_ID=" gcs-fuse-test-ml"
5757readonly TPCZERO_PROJECT_ID=" tpczero-system:gcsfuse-test-project"
5858readonly TPC_BUCKET_LOCATION=" u-us-prp1"
You can’t perform that action at this time.
0 commit comments