Skip to content

Commit cd9f4ee

Browse files
committed
build: update Go to 1.26.5
1 parent 55b2acf commit cd9f4ee

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/DEVELOPMENT.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This guide covers how to build, test, and contribute to this project.
44

55
## Prerequisites
66

7-
- Go 1.26 or higher
7+
- Go 1.26.5 or higher
88
- [LimaVM](https://lima-vm.io) (for e2e testing)
99
- [Remoteproc Simulator](https://github.com/arm/remoteproc-simulator) (for e2e testing and manual testing without hardware)
1010

@@ -57,7 +57,7 @@ go test -v -race ./internal/...
5757
If you're developing on a non-Linux operating system, you can run the tests using Docker:
5858

5959
```bash
60-
docker run --rm -v $(pwd):/app -w /app golang:1.26 go test -v ./internal/...
60+
docker run --rm -v $(pwd):/app -w /app golang:1.26.5 go test -v ./internal/...
6161
```
6262

6363
To improve feedback loop performance, you can use Docker volumes to cache Go modules and build artifacts:
@@ -73,7 +73,7 @@ docker run --rm \
7373
-w /app \
7474
-v go-mod-cache:/go/pkg/mod \
7575
-v go-build-cache:/root/.cache/go-build \
76-
golang:1.26 \
76+
golang:1.26.5 \
7777
go test -v ./internal/...
7878
```
7979

go.mod

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

3-
go 1.26.3
3+
go 1.26.5
44

55
require (
66
github.com/containerd/containerd/api v1.11.1

0 commit comments

Comments
 (0)