Skip to content

Commit 00dc139

Browse files
committed
fix: Upgrade Go. Fix tests.
1 parent d7c1e38 commit 00dc139

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/cluster_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121

2222
- name: Run cluster tests
2323
run: NUM_ITER=100 SAME_PROCESS_MOUNT=1 make run-cluster-test
24-
timeout-minutes: 12
24+
timeout-minutes: 20

core/goofys_fs_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func (s *GoofysTest) TestIssue69Fuse(t *C) {
7171

7272
// don't really care about error code, but it should be a PathError
7373
_, err = os.Stat("dir1")
74-
t.Assert(err, IsNil)
74+
t.Assert(err, NotNil)
7575
_, err = os.Stat("dir1")
7676
t.Assert(err, NotNil)
7777
}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/tigrisdata/tigrisfs
22

3-
go 1.23
3+
go 1.24
44

55
require (
66
cloud.google.com/go/storage v1.50.0

scripts/install_go.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@
1515

1616
set -e
1717

18-
VERSION=1.23.6
18+
VERSION=1.24.0
1919
ARCH=$(dpkg --print-architecture)
2020
FN="go${VERSION}.linux-${ARCH}.tar.gz"
2121

2222
case "$ARCH" in
2323
"amd64")
24-
SHA256="9379441ea310de000f33a4dc767bd966e72ab2826270e038e78b2c53c2e7802d"
24+
SHA256="dea9ca38a0b852a74e81c26134671af7c0fbe65d81b0dc1c5bfe22cf7d4c8858"
2525
;;
2626
"arm64")
27-
SHA256="561c780e8f4a8955d32bf72e46af0b5ee5e0debe1e4633df9a03781878219202"
27+
SHA256="c3fa6d16ffa261091a5617145553c71d21435ce547e44cc6dfb7470865527cc7"
2828
;;
2929
*)
3030
echo "No supported architecture."

0 commit comments

Comments
 (0)