diff --git a/.github/workflows/linux_ci.yml b/.github/workflows/linux_ci.yml index fd1180d63b..acd90eb2ab 100644 --- a/.github/workflows/linux_ci.yml +++ b/.github/workflows/linux_ci.yml @@ -72,13 +72,13 @@ jobs: # - name: Self tests (-cstrict) # run: V_CI_CSTRICT=1 ./v -cstrict test-self vlib - name: Build examples - run: ./v -W build-examples + run: ./v -N -W build-examples - name: Run the submodule example, using a relative path run: ./v -W run examples/submodule - name: Build v tools - run: ./v -W build-tools + run: ./v -N -W build-tools - name: Build v binaries - run: ./v build-vbinaries + run: ./v -N -W build-vbinaries - name: Build benches run: ./v should-compile-all vlib/v/tests/bench/ - name: Run a VSH script @@ -133,7 +133,7 @@ jobs: # - name: Test V # run: ./v test-all # - name: Test v binaries - # run: ./v build-vbinaries + # run: ./v -N -W build-vbinaries # - name: Test v->js # run: ./v -o hi.js examples/hello_v_js.v && node hi.js # - name: Build Vorum @@ -166,7 +166,7 @@ jobs: - name: Self tests (-cstrict) run: VTEST_JUST_ESSENTIAL=1 V_CI_CSTRICT=1 ./v -cc gcc -cstrict test-self vlib - name: Build examples - run: ./v build-examples + run: ./v -N -W build-examples - name: Build tetris with -autofree run: ./v -autofree -o tetris examples/tetris/tetris.v - name: Build blog tutorial with -autofree @@ -208,11 +208,11 @@ jobs: - name: compile vup.v with -skip-unused and -prod run: ./v -showcc -skip-unused -cc gcc -prod cmd/tools/vup.v - # - run: cd examples/native && ../../v -native hello_world.v && ./hello_world - # - name: Coveralls GitHub Action - # uses: coverallsapp/github-action@v1.0.1 - # with: - # github-token: ${{ secrets.GITHUB_TOKEN }} + # - run: cd examples/native && ../../v -native hello_world.v && ./hello_world + # - name: Coveralls GitHub Action + # uses: coverallsapp/github-action@v1.0.1 + # with: + # github-token: ${{ secrets.GITHUB_TOKEN }} clang: runs-on: ubuntu-20.04 @@ -269,7 +269,7 @@ jobs: run: VTEST_JUST_ESSENTIAL=1 V_CI_CSTRICT=1 ./vprod -cstrict test-self vlib - name: Build examples - run: ./v build-examples + run: ./v -N -W build-examples - name: Build examples with -autofree run: | ./v -autofree -experimental -o tetris examples/tetris/tetris.v @@ -329,7 +329,7 @@ jobs: # - name: Build v # run: echo $VFLAGS && make -j4 && ./v -cg -o v cmd/v # # - name: Test v binaries - # # run: ./v build-vbinaries + # # run: ./v -N -W build-vbinaries # # - name: Test v->js # # run: ./v -o hi.js examples/hello_v_js.v && node hi.js # - name: quick debug diff --git a/cmd/tools/vtest-all.v b/cmd/tools/vtest-all.v index 408920d192..d75448f426 100644 --- a/cmd/tools/vtest-all.v +++ b/cmd/tools/vtest-all.v @@ -326,11 +326,11 @@ fn get_all_commands() []Command { okmsg: 'There are no _test.v file regressions.' } res << Command{ - line: '${vexe} ${vargs} -progress -W build-tools' + line: '${vexe} ${vargs} -progress -N -W build-tools' okmsg: 'All tools can be compiled.' } res << Command{ - line: '${vexe} ${vargs} -progress -W build-examples' + line: '${vexe} ${vargs} -progress -N -W build-examples' okmsg: 'All examples can be compiled.' } res << Command{