Magnus Skjegstad
Magnus Skjegstad
Hm looks like it didn't fix the problem completely... maybe I was just lucky and won the race a few times.
Is anyone working on this at the moment? I may have some time to help
The pipeline doesn't use it at the moment, but the ocurrent docker plugin allows you to specify a [docker context](https://docs.docker.com/engine/context/working-with-contexts/) for all the docker commands. See e.g.https://github.com/ocurrent/ocurrent/blob/master/plugins/docker/current_docker.mli#L35 We could extend...
We're using a setup very similar to what is described here: https://github.com/ocurrent/current-bench#tuning-the-environment -- it's an intel-based server with an isolated core dedicated for benchmarks, with some additional adjustments such as...
This may be easier to implement in the UI when we get support for the github checks API in ocurrent. This is planned, but work has not started yet. This...
Thanks @bjornfor ! I think this looks like a better approach to make sure that we stay in the same environment for all packages. I guess this may also make...
To rebase against master we have to move the example somewhere else - e.g. into `example/default.nix`. We could then build it via callPackage, but it would also be nice if...
I submitted #2238 to fix the conflicts and add support for vmbuild
Perhaps we could use `substituteInPlace` to replace the paths we need in the make files directly. See the solo5 example in https://nixos.org/manual/nixpkgs/stable/#ssec-stdenv-dependencies-overview-example. If we substitute the paths to point to...
Some additional references: - Call to `strdup` from `init_libc`: https://github.com/includeos/IncludeOS/blob/v0.16.0-release/src/platform/x86_pc/init_libc.cpp#L106 - `strdup` implementation: https://github.com/includeos/IncludeOS/blob/v0.16.0-release/src/crt/string.c#L23