Bas Zalmstra
Bas Zalmstra
Users often find strange corners of our code by trying out stuff. We can use a continuous fuzzing service like https://fuzzit.dev/ maybe we can ask them for help when we...
Our code has been setup to do incremental compilation but we notice that sometimes this breaks. However, we have no (or very little) tests to validate that we don't break...
When a value struct type directly or indirectly references itself this can cause an infinite recursion. ``` struct(value) Foo { a: Bar } struct(value) Bar { b:Foo } ``` This...
- [ ] claim this issue (assign yourself or comment below) - [ ] [setup repository on your local machine](https://github.com/mun-lang/mun) and make sure all tests pass (`cargo test`) - [...
- [ ] claim this issue (assign yourself or comment below) - [ ] [setup repository on your local machine](https://github.com/mun-lang/mun) and make sure all tests pass (`cargo test`) - [...
We want to add the functionality to be able to cast from primitive types to other primitives through the use of the `as` keyword. This should world: ```mun pub fn...
We are building all our software targeting macOS with osxcross in docker containers on linux. However, Apple requires notarization of apps starting with macOS 10.15. I cant figure out whether...
As far as I understand the native backend is much slower than the other two available backends. Im trying to figure out how to use them though. My end-goal would...
https://github.com/mamba-org/boa/blob/3213180564e51b72a27efed5183d21f97f630692/boa/schemas/model.py#L166 The model for `script_env` defines an `Optional[Dict[str, str]]`. This differs from `conda build` (also noted in the comment above it). However, currently, I don't know how to use pass-through...
I have a project which uses the Multiple SCMs plugin to checkout two repositories. One of the repositories has "Don't trigger a build on commit notifications" set. However, when a...