Manlio Perillo
Manlio Perillo
Currently, when some exercises have been solved, `zig build` will print, as an example: ``` Compiling 001_hello.zig... Checking 001_hello.zig... PASSED: Hello world! Compiling 002_std.zig... Checking 002_std.zig... PASSED: Standard Library. Compiling...
Today was merged commit ziglang/zig@13eb7251d. This will break `build.zig` and `test/tests.zig`. I will write a fix, so that when the Github Actions fail I will push it.
DRAFT
**WARNING**: THIS IS A DRAFT I want to test if it is possible to reproduce the freeze on Windows when running the Eowyn workflow, when `zig fmt --check` fails.
#19079 improved how filtering works, but there is still an issue. The problem is that there are two test types: normal *test* (where the test name is a string literal)...
There is a Docker image at https://hub.docker.com/r/i386/ubuntu/ Thanks.
### Zig Version 0.13.0-dev.44+9d64332a5 ### Steps to Reproduce and Observed Behavior I found this issue while reading 8a36a1f and running `zig std`. The file documentation is not added. This issue...
Here is a simple example: ```yaml test: time: 04:30 ``` ```sh $ zig build run -- test.yaml debug(tokenizer): Tokenizer.Token{ .id = Tokenizer.Token.Id.literal, .start = 0, .end = 4 } debug(tokenizer):...
This example is from https://yaml.org/spec/1.2.2/#document-markers, example 9.2 "Document Markers": ```yaml %YAML 1.2 --- Document ... # Suffix ``` This is the output: ```sh debug(tokenizer): Tokenizer.Token{ .id = Tokenizer.Token.Id.literal, .start =...
With the latest Zig master (2023-11-21) I'm unable to build zig-yaml. There are two issues: 1. ```sh $ zig build [0] build.zig.zon:1:2: error: missing top-level 'paths' field .{ ^ ```...
These schemas are new in YAML 1.2, and finally(?) solve the non portable behavior of different implementations: - https://yaml.org/spec/1.2.2/#102-json-schema - https://yaml.org/spec/1.2.2/#103-core-schema One issue with the Core Schema is that the...