mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
os: implement os.fd_is_pending/1, os.Process.pipe_read/1, os.Process.is_pending/1 (#19787)
This commit is contained in:
parent
a92700e93b
commit
50c22b5a12
15 changed files with 288 additions and 136 deletions
6
.github/workflows/windows_ci.yml
vendored
6
.github/workflows/windows_ci.yml
vendored
|
@ -20,7 +20,7 @@ jobs:
|
|||
- name: Test new v.c
|
||||
run: |
|
||||
.\v.exe -o v.c cmd/v
|
||||
gcc -Werror -municode -w v.c
|
||||
gcc -Werror -municode -w v.c -lws2_32
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
.\v.exe setup-freetype
|
||||
|
@ -119,7 +119,7 @@ jobs:
|
|||
- name: Test new v.c
|
||||
run: |
|
||||
.\v.exe -o v.c cmd/v
|
||||
.\thirdparty\tcc\tcc.exe -Werror -w -ladvapi32 -bt10 v.c
|
||||
.\thirdparty\tcc\tcc.exe -Werror -w -ladvapi32 -lws2_32 -bt10 v.c
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
.\v.exe setup-freetype
|
||||
|
@ -163,7 +163,7 @@ jobs:
|
|||
# .\v.exe wipe-cache
|
||||
# .\make.bat -tcc32
|
||||
# - name: Test new v.c
|
||||
# run: .\v.exe -o v.c cmd/v && .\thirdparty\tcc\tcc.exe -Werror -g -w -ladvapi32 -bt10 v.c
|
||||
# run: .\v.exe -o v.c cmd/v && .\thirdparty\tcc\tcc.exe -Werror -g -w -ladvapi32 -lws2_32 -bt10 v.c
|
||||
# - name: v doctor
|
||||
# run: ./v doctor
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue