ci: add `./v doc clipboard` steps in the windows-tcc job too

pull/9379/head
Delyan Angelov 2021-03-19 17:22:27 +02:00
parent 644fdd0248
commit 79a8e34e33
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 21 additions and 5 deletions

View File

@ -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