v build-binaries: build v -g v.v and v -g -prod v.v

pull/3016/head
Alexander Medvednikov 2019-12-08 21:16:06 +03:00
parent 874ff42687
commit ef821379da
2 changed files with 2 additions and 7 deletions

View File

@ -54,8 +54,6 @@ jobs:
run: ./v symlink && v -o v2 v.v
- name: Test vsh
run: ./v examples/v_script.vsh
- name: Test v -g v.v
run: ./v -g -o v2 v.v
- name: Test vid
run: |
git clone --depth 1 https://github.com/vlang/vid.git

View File

@ -154,13 +154,10 @@ pub fn building_any_v_binaries_failed() bool {
mut failed := false
v_build_commands := [
// '$vexe -o v_g -g v.v',
// '$vexe -o v_prod_g -prod -g v.v',
'$vexe -o v_g -g v.v',
'$vexe -o v_prod_g -prod -g v.v',
'$vexe -o v_cg -cg v.v',
'$vexe -o v_prod_cg -prod -cg v.v',
'$vexe -o v_prod -prod v.v',
]