Barabas
Barabas
Could you please leave these bug reports open so people that come across the project can see them easier? I think this will make it more likely to get a...
This is working for me. I build and run the test in a container like this: ``` ctest: runs-on: ubuntu-latest container: barabas5532/shrapnel:3 ``` The input lcov file paths, and verbose...
I'm running into a similar issue on Linux. In the first run the cache is loaded correctly: ``` Run actions/cache@v2 with: path: /ccache key: ccache-build-firmware env: CMAKE_C_COMPILER_LAUNCHER: ccache CMAKE_CXX_COMPILER_LAUNCHER: ccache...
My issue is probably due to this restriction: https://docs.github.com/en/actions/advanced-guides/caching-dependencies-to-speed-up-workflows#restrictions-for-accessing-a-cache
I have found the same issue. We do not want to push an empty directory. We want the deleted directory and all of its contents to be deleted from the...
`vvp_options` doesn't seem to do what you describe. Adding `-vcd` to it results in the following invocation of vvp: `vvp -n -M. -l icarus.log -vcd spdif_rx_0.0.1 -fst`. The `-vcd` and...
#108 is related
Seems like docker support is available in this version of the plugin: https://gitlab.com/incoresemi/riscof-plugins/-/commit/2305fbf12a0fdc44a0a26821e53f445471a93cc5 Why is there a separate copy of the plugin being maintained elsewhere?
Hmm, it seems this actually does sign extension on the data, so only the comment is wrong. 8-bits per sample (always unsigned) will be broken after sign extension though.
I've just noticed that this also happens if the function returns `void`, and there are existing tests that expect no `MissingStubError`: ``` test('a method which returns Future can be called...