From 79a8e34e33a5137a1e94dc8628096b5d809ad447 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 19 Mar 2021 17:22:27 +0200 Subject: [PATCH] ci: add `./v doc clipboard` steps in the windows-tcc job too --- .github/workflows/ci.yml | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7614297a65..0259ddcf53 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -814,8 +814,17 @@ jobs: .\v.exe cmd/tools/test_if_v_test_system_works.v .\cmd\tools\test_if_v_test_system_works.exe - name: Make sure running TCC64 instead of TCC32 - run : | - .\v.exe test .github\workflows\make_sure_ci_run_with_64bit_compiler_test.v + run : .\v.exe test .github\workflows\make_sure_ci_run_with_64bit_compiler_test.v + + - name: Test ./v doc -v clipboard *BEFORE building tools* + run: ./v doc -v clipboard + + - name: Test v build-tools + run: ./v -W build-tools + + - name: Test ./v doc clipboard + run: ./v doc clipboard + - name: Self tests run: | .\v.exe -silent test-self @@ -846,9 +855,16 @@ jobs: run: | .\v.exe cmd/tools/test_if_v_test_system_works.v .\cmd\tools\test_if_v_test_system_works.exe - - name: Make sure running TCC32 instead of TCC64 - run : | - .\v.exe test .github\workflows\make_sure_ci_run_with_32bit_compiler_test.v + + - name: Make sure running TCC32 instead of TCC64 + run : .\v.exe test .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.exe -silent test-self