Petr Pučil
Petr Pučil
@probonopd: > Unofortunately the C++ code is missing on the page for this particular file format, and trying to compile it with https://github.com/kaitai-io/kaitai_struct_compiler throws an error: > > ``` >...
@hwhsu1231: > However in these runs with as many as 30 strategies, there are always 1 or 2 runs that encounter this error when acquiring the job id. This sounds...
@p0fi: > It seems that there is a difference in the context if the job in question is triggered via a direct push or via a `workflow_call` event. Our release...
@p0fi Could you check with the latest version [`1.3.0`](https://github.com/Tiryoh/gha-jobid-action/releases/tag/v1.3.0)? I think there's a good chance that it fixes the problem you were reporting (i.e. worked in `0.1.2`, didn't work in...
@p0fi Any updates?
I think the most important fix is `echo ${JOBINFO}` -> `echo "${JOBINFO}"`. The `JOBINFO` variable is the full JSON response from the GitHub REST API endpoint. The existing unquoted version...
FYI, this has been fixed in our upstream repo https://github.com/kaitai-io/kaitai_struct_cpp_stl_runtime (https://github.com/kaitai-io/kaitai_struct_cpp_stl_runtime/pull/73), so you may want to update your copy.
The explanation is here (https://github.com/freetype/freetype/blob/09195a82a4a39afb0f8281563f48ce4493455b4e/src/pcf/pcfread.c#L179-L198): ```c /* * We now check whether the `size' and `offset' values are reasonable: * `offset' + `size' must not exceed the stream size. *...
Yeah, this issue is also reported by RuboCop: ```ruby lib/kaitai/struct/struct.rb:692:27: W: [Correctable] Lint/InheritException: Inherit from StandardError instead of Exception. class KaitaiStructError < Exception ^^^^^^^^^ ``` We should adopt https://github.com/kaitai-io/kaitai_struct_visualizer/issues/38 for...
@roded: > Is there a reason for using the concrete `java.util.ArrayList` in the generated class instead of the `java.util.List` interface (short of the `_read()` method's initialization of said field)? No...