ci: change exec name for parallel cc

This commit is contained in:
Alexander Medvednikov 2024-12-19 12:32:52 +03:00
parent bc90058b9e
commit 394f3b1aae

View File

@ -97,10 +97,10 @@ fn v_self_compilation_usecache() {
} }
fn v_self_compilation_parallel_cc() { fn v_self_compilation_parallel_cc() {
exec('v -o v2 -parallel-cc cmd/v') exec('v -o vp -parallel-cc cmd/v')
// exec('./v2 -o v3 -usecache cmd/v') // exec('./v2 -o v3 -usecache cmd/v')
exec('./v2 version') exec('./vp version')
exec('./v2 -o tetris examples/tetris/tetris.v') exec('./vp -o tetris examples/tetris/tetris.v')
} }
fn test_password_input() { fn test_password_input() {