From bf7074cad44489d0d840e80038e2a9fb265dcc7d Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 22 Nov 2021 22:05:09 +0200 Subject: [PATCH] ci: disable the tcc32 windows tasks for now --- .github/workflows/ci.yml | 80 ++++++++++++++++++++-------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca7418ccc9..8715efb065 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -336,7 +336,7 @@ jobs: - name: Build V UI examples run: | - git clone --depth 1 https://github.com/vlang/ui + git clone --depth 1 https://github.com/vlang/ui cd ui mkdir -p ~/.vmodules ln -s $(pwd) ~/.vmodules/ui @@ -734,45 +734,45 @@ jobs: - name: v2 self compilation run: .\v.exe -o v2.exe cmd/v && .\v2.exe -o v3.exe cmd/v - ## tcc32 - - name: Build with make.bat -tcc32 - run: | - Remove-Item -Recurse -Force .\thirdparty\tcc - .\v.exe wipe-cache - .\make.bat -tcc32 - - name: Test new v.c - run: .\v.exe -o v.c cmd/v && .\thirdparty\tcc\tcc.exe -I ./thirdparty/stdatomic/win -Werror -w -ladvapi32 -bt10 v.c - - name: v doctor - run: ./v doctor - - - name: Verify `v test` works - run: | - .\v.exe cmd/tools/test_if_v_test_system_works.v - .\cmd\tools\test_if_v_test_system_works.exe - - - name: Verify `v vlib/v/gen/c/coutput_test.v` works - run: | - .\v.exe vlib/v/gen/c/coutput_test.v - - - name: Make sure running TCC32 instead of TCC64 - run: ./v -stats .github\workflows\make_sure_ci_run_with_32bit_compiler_test.v - - - name: Test v build-tools - run: ./v -W build-tools - - - name: Test ./v doc clipboard - run: ./v doc clipboard - - - name: Self tests - run: ./v test-self - - name: Test v->js - run: ./v -o hi.js examples/hello_v_js.v && node hi.js - - name: Test v binaries - run: ./v build-vbinaries - - name: Build examples - run: ./v build-examples - - name: v2 self compilation - run: .\v.exe -o v2.exe cmd/v && .\v2.exe -o v3.exe cmd/v + ## ## tcc32 + ## - name: Build with make.bat -tcc32 + ## run: | + ## Remove-Item -Recurse -Force .\thirdparty\tcc + ## .\v.exe wipe-cache + ## .\make.bat -tcc32 + ## - name: Test new v.c + ## run: .\v.exe -o v.c cmd/v && .\thirdparty\tcc\tcc.exe -I ./thirdparty/stdatomic/win -Werror -g -w -ladvapi32 -bt10 v.c + ## - name: v doctor + ## run: ./v doctor + ## + ## - name: Verify `v test` works + ## run: | + ## .\v.exe cmd/tools/test_if_v_test_system_works.v + ## .\cmd\tools\test_if_v_test_system_works.exe + ## + ## - name: Verify `v vlib/v/gen/c/coutput_test.v` works + ## run: | + ## .\v.exe vlib/v/gen/c/coutput_test.v + ## + ## - name: Make sure running TCC32 instead of TCC64 + ## run: ./v -stats .github\workflows\make_sure_ci_run_with_32bit_compiler_test.v + ## + ## - name: Test v build-tools + ## run: ./v -W build-tools + ## + ## - name: Test ./v doc clipboard + ## run: ./v doc clipboard + ## + ## - name: Self tests + ## run: ./v test-self + ## - name: Test v->js + ## run: ./v -o hi.js examples/hello_v_js.v && node hi.js + ## - name: Test v binaries + ## run: ./v build-vbinaries + ## - name: Build examples + ## run: ./v build-examples + ## - name: v2 self compilation + ## run: .\v.exe -o v2.exe cmd/v && .\v2.exe -o v3.exe cmd/v parser-silent: needs: no-scheduling