From d23e90a7b44b62b0d3b116a6d30849ce66051529 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 14 Mar 2019 14:17:31 +0100 Subject: all: switch to Go 1.12 Differences in code formatting between Go versions cause constant problems for us (https://github.com/golang/go/issues/25161). Currently we support 1.9 and 1.10. Switch to newer 1.11 and 1.12. Fixes #1013 --- docs/fuchsia/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/fuchsia') diff --git a/docs/fuchsia/README.md b/docs/fuchsia/README.md index dd5243f91..3c06cf704 100644 --- a/docs/fuchsia/README.md +++ b/docs/fuchsia/README.md @@ -77,7 +77,7 @@ Then run FIDL compiler backend `fidlgen` with syzkaller generator, which compile To run `syz-ci` locally for Fuchsia, you need: -- Go 1.10 toolchain (in `/go1.10` dir in the example below) +- Go 1.12 toolchain (in `/go1.12` dir in the example below) - bootstrapped Fuchsia checkout (in `/bootstrap/fuchsia` dir in the example below) - bootstrap `syz-ci` binary (in the current dir, build with `make ci`) - `syz-ci` config similar to the one below (in `ci.cfg` file in the current dir) @@ -87,7 +87,7 @@ To run `syz-ci` locally for Fuchsia, you need: "name": "testci", "http": ":50000", "manager_port_start": 50001, - "goroot": "/go1.10", + "goroot": "/go1.12", "syzkaller_repo": "https://github.com/google/syzkaller.git", "managers": [ { -- cgit mrf-deployment