ci: be more verbose when running make.bat on the CI
parent
07b15a209a
commit
554a689213
|
@ -416,6 +416,7 @@ jobs:
|
||||||
timeout-minutes: 121
|
timeout-minutes: 121
|
||||||
env:
|
env:
|
||||||
VFLAGS: -cc gcc
|
VFLAGS: -cc gcc
|
||||||
|
VERBOSE_MAKE: 1
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
|
@ -426,7 +427,9 @@ jobs:
|
||||||
gcc --version
|
gcc --version
|
||||||
.\make.bat -gcc
|
.\make.bat -gcc
|
||||||
- name: Test new v.c
|
- name: Test new v.c
|
||||||
run: .\v.exe -o v.c cmd/v && gcc -Werror -I ./thirdparty/stdatomic/win -municode -w v.c
|
run: |
|
||||||
|
.\v.exe -o v.c cmd/v
|
||||||
|
gcc -Werror -I ./thirdparty/stdatomic/win -municode -w v.c
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
.\v.exe setup-freetype
|
.\v.exe setup-freetype
|
||||||
|
@ -441,8 +444,8 @@ jobs:
|
||||||
./cmd/tools/test_if_v_test_system_works
|
./cmd/tools/test_if_v_test_system_works
|
||||||
- name: Self tests
|
- name: Self tests
|
||||||
run: .\v.exe test-self
|
run: .\v.exe test-self
|
||||||
# - name: Test
|
# - name: Test
|
||||||
# run: .\v.exe test-all
|
# run: .\v.exe test-all
|
||||||
- name: Test v->js
|
- name: Test v->js
|
||||||
run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
run: ./v -o hi.js examples/hello_v_js.v && node hi.js
|
||||||
- name: Test v binaries
|
- name: Test v binaries
|
||||||
|
@ -457,6 +460,7 @@ jobs:
|
||||||
timeout-minutes: 121
|
timeout-minutes: 121
|
||||||
env:
|
env:
|
||||||
VFLAGS: -cc msvc
|
VFLAGS: -cc msvc
|
||||||
|
VERBOSE_MAKE: 1
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
|
@ -502,6 +506,7 @@ jobs:
|
||||||
VFLAGS: -cc tcc -no-retry-compilation
|
VFLAGS: -cc tcc -no-retry-compilation
|
||||||
VJOBS: 1
|
VJOBS: 1
|
||||||
VTEST_SHOW_START: 1
|
VTEST_SHOW_START: 1
|
||||||
|
VERBOSE_MAKE: 1
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
|
@ -511,7 +516,9 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
.\make.bat -tcc
|
.\make.bat -tcc
|
||||||
- name: Test new v.c
|
- 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
|
run: |
|
||||||
|
.\v.exe -o v.c cmd/v
|
||||||
|
.\thirdparty\tcc\tcc.exe -I ./thirdparty/stdatomic/win -Werror -w -ladvapi32 -bt10 v.c
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
.\v.exe setup-freetype
|
.\v.exe setup-freetype
|
||||||
|
|
Loading…
Reference in New Issue