We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed16549 commit 275349aCopy full SHA for 275349a
dmoj/executors/GO.py
@@ -42,6 +42,8 @@ def get_compile_env(self):
42
'CGO_ENABLED': '0',
43
# We need GOCACHE to compile on Debian 10.0+.
44
'GOCACHE': os.path.join(self._dir, '.cache'),
45
+ # We need to set GOPATH to something on Go 1.16+.
46
+ 'GOPATH': '/nonexistent-path',
47
}
48
49
def get_compile_args(self):
0 commit comments