Comment on Replacement for Docker Content Trust (DCT)
maltfield@slrpnk.net 1 day ago Open-Source Software.
Can I install nix to run inside the free CI runners provided by GitHub, GitLab, and Codeberg?
Comment on Replacement for Docker Content Trust (DCT)
maltfield@slrpnk.net 1 day ago Open-Source Software.
Can I install nix to run inside the free CI runners provided by GitHub, GitLab, and Codeberg?
moonshine69@lemmy.nz 19 hours ago
Maybe not apt…but
sudo dnf install nix nix-daemonmoonpiedumplings@programming.dev 19 hours ago
Nix is also packaged in debian as nix-bin.
We do our pre-releases on CI runners for convenience. GitHub automatically kicks-off a build when we
git push.When it comes time to do a real release, we can just run the job locally on our build machines (this is easier thanks to docker). Because our builds are reproducible, we can just check that the hash matches on our local build and the one from the free GitHub CI runners. That way we don’t have to trust the infrastructure, but we can use it for free & easy iteration before our final release.