1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

gen.golang: correct use of const github_job

This commit is contained in:
Joe Conigliaro 2022-06-29 21:15:46 +10:00
parent c3866bb7b1
commit 1b0754e4f3
No known key found for this signature in database
GPG Key ID: C12F7136C08206F1

View File

@ -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)
}