diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 053ad047c7..a9edbc19bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/tools/modules/testing/common.v b/tools/modules/testing/common.v index 519e41f5c2..d479d33d71 100644 --- a/tools/modules/testing/common.v +++ b/tools/modules/testing/common.v @@ -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', ]