From 1b0754e4f333893d1f28046ad68fe0cca12f29ea Mon Sep 17 00:00:00 2001 From: Joe Conigliaro Date: Wed, 29 Jun 2022 21:15:46 +1000 Subject: [PATCH] gen.golang: correct use of const github_job --- vlib/v/gen/golang/tests/golang_test.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/gen/golang/tests/golang_test.v b/vlib/v/gen/golang/tests/golang_test.v index 7ac9051ccc..6482a5b288 100644 --- a/vlib/v/gen/golang/tests/golang_test.v +++ b/vlib/v/gen/golang/tests/golang_test.v @@ -9,7 +9,7 @@ const is_verbose = os.getenv('VTEST_SHOW_CMD') != '' // TODO some logic copy pasted from valgrind_test.v and compiler_test.v, move to a module fn test_golang() { // this was failing on ubuntu-docker-musl, skip it for now - if testing.github_job == 'ubuntu-docker-musl' { + if github_job == 'ubuntu-docker-musl' { eprintln('Skipping Go tests') exit(0) }