...

Text file src/cmd/go/testdata/script/build_cache_arch_mode.txt

Documentation: cmd/go/testdata/script

     1# Issue 9737: verify that GOARM affects the computed build ID
     2
     3[short] skip
     4
     5# arm
     6env GOOS=linux
     7env GOARCH=arm
     8env GOARM=5
     9go install mycmd
    10env GOARM=7
    11stale mycmd
    12
    13
    14-- go.mod --
    15module mycmd
    16
    17go 1.16
    18-- x.go --
    19package main
    20
    21func main() {}

View as plain text