.gitignore: ignore go test artifacts

go test -artifacts writes artifacts to _artifacts. These are outputs
from a specific test and are never intended to be commited.

Change-Id: I6a6a636cd7689e5e664b190c83ccb93060f26d4e
Reviewed-on: https://go-review.googlesource.com/c/go/+/717521
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Michael Pratt <mpratt@google.com>
This commit is contained in:
Michael Pratt 2025-11-03 15:51:27 -05:00 committed by Gopher Robot
parent bf58e7845e
commit a0eb4548cf

1
.gitignore vendored
View file

@ -30,6 +30,7 @@ _testmain.go
/misc/cgo/testso/main /misc/cgo/testso/main
/pkg/ /pkg/
/src/*.*/ /src/*.*/
/src/_artifacts/
/src/cmd/cgo/zdefaultcc.go /src/cmd/cgo/zdefaultcc.go
/src/cmd/dist/dist /src/cmd/dist/dist
/src/cmd/go/internal/cfg/zdefaultcc.go /src/cmd/go/internal/cfg/zdefaultcc.go