From 5d926a80114cbf0eef8b542a748a478f3493945e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sat, 1 Oct 2022 23:13:07 +0100 Subject: [PATCH] add support for the latest gotip A new runtime package was added. --- .github/workflows/test.yml | 2 +- shared.go | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a8aa6db..2101d8c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -78,7 +78,7 @@ jobs: steps: - name: Install Go env: - GO_COMMIT: e5deb1556b230642d544c451a83cb79f641727a3 # 2022-09-24 + GO_COMMIT: 5f566d35bf7d590c95f4d1b685b995deeb9ba957 # 2022-10-01 run: | cd $HOME mkdir $HOME/gotip diff --git a/shared.go b/shared.go index d387339..bdbc7b5 100644 --- a/shared.go +++ b/shared.go @@ -344,7 +344,7 @@ func listPackage(path string) (*listedPackage, error) { panic(fmt.Sprintf("package %q still missing after go list call", path)) } startTime := time.Now() - // Obtained via scripts/runtime-linknamed-nodeps.sh as of June 29th. + // Obtained via scripts/runtime-linknamed-nodeps.sh as of 2022-10-01. runtimeLinknamed := []string{ "crypto/internal/boring", "crypto/internal/boring/bcache", @@ -357,6 +357,7 @@ func listPackage(path string) (*listedPackage, error) { "os/signal", "plugin", "reflect", + "runtime/coverage", "runtime/debug", "runtime/metrics", "runtime/pprof",