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

cgen: sort const array init order (fix #14748) (#14749)

This commit is contained in:
yuyi
2022-06-14 02:09:24 +08:00
committed by GitHub
parent 3535927bcd
commit 5efa67906c
5 changed files with 122 additions and 33 deletions

View File

@@ -14,7 +14,11 @@ pub mut:
// They have their own specialized CI runner.
const github_job = os.getenv('GITHUB_JOB')
const should_skip = github_job != '' && github_job != 'websocket_tests'
const should_skip = get_should_skip()
fn get_should_skip() bool {
return github_job != '' && github_job != 'websocket_tests'
}
// tests with internal ws servers
fn test_ws_ipv6() {