master: add workaround if github is not present during boot

This commit is contained in:
Jörg Thalheim 2024-04-29 13:27:35 +02:00
parent f3030e2dac
commit b2ed2ccacc
2 changed files with 12 additions and 4 deletions

View file

@ -65,17 +65,20 @@ To integrate with GitHub:
### Binary caches
To access the build results on other machines there are two options at the moment
To access the build results on other machines there are two options at the
moment
#### Local binary cache (harmonia)
You can set up a binary cache on your buildbot-worker machine to make its nix store
accessible from other machines. Check out the README of the [project](https://github.com/nix-community/harmonia/?tab=readme-ov-file#configuration-for-public-binary-cache-on-nixos),
You can set up a binary cache on your buildbot-worker machine to make its nix
store accessible from other machines. Check out the README of the
[project](https://github.com/nix-community/harmonia/?tab=readme-ov-file#configuration-for-public-binary-cache-on-nixos),
for an example configuration
#### Cachix
Buildbot-nix also supports pushing packages to cachix. Check out the comment out [example configuration](https://github.com/Mic92/buildbot-nix/blob/main/examples/master.nix)
Buildbot-nix also supports pushing packages to cachix. Check out the comment out
[example configuration](https://github.com/Mic92/buildbot-nix/blob/main/examples/master.nix)
in our repository.
### Real-World Deployments

View file

@ -206,6 +206,11 @@ in
"cachix-signing-key:${builtins.toString cfg.cachix.signingKeyFile}"
++ lib.optional (cfg.cachix.authTokenFile != null)
"cachix-auth-token:${builtins.toString cfg.cachix.authTokenFile}";
# Needed because it tries to reach out to github on boot.
# FIXME: if github is not available, we shouldn't fail buildbot, instead it should just try later again in the background
Restart = "on-failure";
RestartSec = "30s";
};
};