CI #6823
ci.yml
on: schedule
linux
/
setup
1m 51s
macos
/
setup
2m 51s
windows
/
setup
40s
lint
/
fmt
1m 50s
lint
/
vet
0s
linux
/
build
0s
macos
/
build
1m 34s
windows
/
build
0s
Annotations
4 errors and 6 warnings
|
windows / setup
Command failed: make
./vc/v.c:1960:2: error: #error VERROR_MESSAGE Header file <sys/mman.h>, needed for module `builtin.closure` was not found. Please install the corresponding development headers.
1960 | #error VERROR_MESSAGE Header file <sys/mman.h>, needed for module `builtin.closure` was not found. Please install the corresponding development headers.
| ^~~~~
./vc/v.c:2011:2: error: #error VERROR_MESSAGE Header file <sys/mman.h>, needed for module `builtin.closure` was not found. Please install the corresponding development headers.
2011 | #error VERROR_MESSAGE Header file <sys/mman.h>, needed for module `builtin.closure` was not found. Please install the corresponding development headers.
| ^~~~~
./vc/v.c:2231:2: error: #error VERROR_MESSAGE Header file <termios.h>, needed for module `term.termios` was not found. Please install the corresponding development headers.
2231 | #error VERROR_MESSAGE Header file <termios.h>, needed for module `term.termios` was not found. Please install the corresponding development headers.
| ^~~~~
./vc/v.c:2248:2: error: #error VERROR_MESSAGE Header file <sys/ioctl.h>, needed for module `term.termios` was not found. Please install the corresponding development headers.
2248 | #error VERROR_MESSAGE Header file <sys/ioctl.h>, needed for module `term.termios` was not found. Please install the corresponding development headers.
| ^~~~~
./vc/v.c:15421:2: error: #error VERROR_MESSAGE Header file <sys/ptrace.h>, needed for module `os` was not found. Please install the corresponding development headers.
15421 | #error VERROR_MESSAGE Header file <sys/ptrace.h>, needed for module `os` was not found. Please install the corresponding development headers.
| ^~~~~
./vc/v.c:15643:2: error: #error VERROR_MESSAGE Header file <sys/utsname.h>, needed for module `os` was not found. Please install the corresponding development headers.
15643 | #error VERROR_MESSAGE Header file <sys/utsname.h>, needed for module `os` was not found. Please install the corresponding development headers.
| ^~~~~
./vc/v.c:15677:2: error: #error VERROR_MESSAGE Header file <sys/statvfs.h>, needed for module `os` was not found. Please install the corresponding development headers.
15677 | #error VERROR_MESSAGE Header file <sys/statvfs.h>, needed for module `os` was not found. Please install the corresponding development headers.
| ^~~~~
./vc/v.c:15694:2: error: #error VERROR_MESSAGE Header file <sys/wait.h>, needed for module `os` was not found. Please install the corresponding development headers.
15694 | #error VERROR_MESSAGE Header file <sys/wait.h>, needed for module `os` was not found. Please install the corresponding development headers.
| ^~~~~
./vc/v.c: In function 'v_os_execute_set_cloexec':
./vc/v.c:15729:31: error: 'F_GETFD' undeclared (first use in this function)
15729 | int flags = fcntl(fd, F_GETFD, 0);
| ^~~~~~~
./vc/v.c:15729:31: note: each undeclared identifier is reported only once for each function it appears in
./vc/v.c:15731:27: error: 'F_SETFD' undeclared (first use in this function)
15731 | fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
| ^~~~~~~
./vc/v.c:15731:44: error: 'FD_CLOEXEC' undeclared (first use in this function); did you mean 'FD_CLOSE'?
15731 | fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
| ^~~~~~~~~~
| FD_CLOSE
./vc/v.c: At top level:
./vc/v.c:16239:2: error: #error VERROR_MESSAGE Header file <sys/ioctl.h>, needed for module `term` was not found. Please install the corresponding development headers.
16239 | #error VERROR_MESSAGE Header file <sys/ioctl.h>, needed for module `term` was not found. Please install the corresponding development headers.
| ^~~~~
./vc/v.c: In function 'builtin__closure__closure_alloc_platform':
./vc/v.c:40869:57: error: 'PROT_READ' undeclared (first use in this function); did you mean 'OF_READ'?
40869 |
|
|
macos / build
Process completed with exit code 1.
|
|
lint / fmt
Command failed: make
vlib/v3/transform/array.v:6081:2: notice: variable `c_name` shadows a function declaration
6079 | j_name := t.new_temp('sort_j')
6080 | k_name := t.new_temp('sort_k')
6081 | c_name := t.new_temp('sort_c')
| ~~~~~~
6082 | t.set_var_type(n_name, 'int')
6083 | t.set_var_type(buf_name, array_type)
vlib/v3/transform/ast_snapshot_default.c.v:3:24: notice: unused parameter: `data`
1 | module transform
2 |
3 | fn snapshot_ast_buffer(data voidptr, len u64, capacity u64) ?AstBufferSnapshot {
| ~~~~
4 | return none
5 | }
vlib/v3/transform/ast_snapshot_default.c.v:3:38: notice: unused parameter: `len`
1 | module transform
2 |
3 | fn snapshot_ast_buffer(data voidptr, len u64, capacity u64) ?AstBufferSnapshot {
| ~~~
4 | return none
5 | }
vlib/v3/transform/ast_snapshot_default.c.v:3:47: notice: unused parameter: `capacity`
1 | module transform
2 |
3 | fn snapshot_ast_buffer(data voidptr, len u64, capacity u64) ?AstBufferSnapshot {
| ~~~~~~~~
4 | return none
5 | }
vlib/v3/transform/ast_snapshot_default.c.v:7:32: notice: unused parameter: `snapshot`
5 | }
6 |
7 | fn release_ast_buffer_snapshot(snapshot AstBufferSnapshot) {
| ~~~~~~~~
8 | }
error: v3 compiler memory usage reached 10342 MiB RSS during compilation (limit: 10176 MiB); use `-no-memory-limit` to disable this limit
make: *** [GNUmakefile:219: all] Error 1
|
|
linux / setup
Command failed: make
vlib/v3/transform/array.v:6081:2: notice: variable `c_name` shadows a function declaration
6079 | j_name := t.new_temp('sort_j')
6080 | k_name := t.new_temp('sort_k')
6081 | c_name := t.new_temp('sort_c')
| ~~~~~~
6082 | t.set_var_type(n_name, 'int')
6083 | t.set_var_type(buf_name, array_type)
vlib/v3/transform/ast_snapshot_default.c.v:3:24: notice: unused parameter: `data`
1 | module transform
2 |
3 | fn snapshot_ast_buffer(data voidptr, len u64, capacity u64) ?AstBufferSnapshot {
| ~~~~
4 | return none
5 | }
vlib/v3/transform/ast_snapshot_default.c.v:3:38: notice: unused parameter: `len`
1 | module transform
2 |
3 | fn snapshot_ast_buffer(data voidptr, len u64, capacity u64) ?AstBufferSnapshot {
| ~~~
4 | return none
5 | }
vlib/v3/transform/ast_snapshot_default.c.v:3:47: notice: unused parameter: `capacity`
1 | module transform
2 |
3 | fn snapshot_ast_buffer(data voidptr, len u64, capacity u64) ?AstBufferSnapshot {
| ~~~~~~~~
4 | return none
5 | }
vlib/v3/transform/ast_snapshot_default.c.v:7:32: notice: unused parameter: `snapshot`
5 | }
6 |
7 | fn release_ast_buffer_snapshot(snapshot AstBufferSnapshot) {
| ~~~~~~~~
8 | }
error: v3 compiler memory usage reached 10316 MiB RSS during compilation (limit: 10176 MiB); use `-no-memory-limit` to disable this limit
make: *** [GNUmakefile:219: all] Error 1
|
|
windows / setup
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: vlang/setup-v@v1.3. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
macos / setup
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache/save@v3, actions/checkout@v4, vlang/setup-v@v1.3. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
macos / setup
Cache save failed.
|
|
macos / build
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: actions/cache/restore@v3, vlang/setup-v@v1.3. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
lint / fmt
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: vlang/setup-v@v1.3. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
linux / setup
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: vlang/setup-v@v1.3. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|