forked from M-Labs/it-infra
nixbld: publish msys2 repos on web
This commit is contained in:
parent
7a14264be4
commit
61c008ff43
|
@ -382,6 +382,11 @@ in
|
||||||
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-conda-channel-archives/$(jq -r '.build' < $HYDRA_JSON)
|
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/artiq-conda-channel-archives/$(jq -r '.build' < $HYDRA_JSON)
|
||||||
</runcommand>
|
</runcommand>
|
||||||
|
|
||||||
|
<runcommand>
|
||||||
|
job = artiq:artiq-nac3:msys2-repos
|
||||||
|
command = [ $(jq '.buildStatus' < $HYDRA_JSON) = 0 ] && ln -sfn $(jq -r '.outputs[0].path' < $HYDRA_JSON) ${hydraWwwOutputs}/msys2
|
||||||
|
</runcommand>
|
||||||
|
|
||||||
|
|
||||||
<githubstatus>
|
<githubstatus>
|
||||||
jobs = artiq:fast.*:extended-tests
|
jobs = artiq:fast.*:extended-tests
|
||||||
|
@ -608,13 +613,19 @@ in
|
||||||
"m-labs.hk" = mainWebsite;
|
"m-labs.hk" = mainWebsite;
|
||||||
"www.m-labs.hk" = mainWebsite;
|
"www.m-labs.hk" = mainWebsite;
|
||||||
"lab.m-labs.hk" = {
|
"lab.m-labs.hk" = {
|
||||||
addSSL = true;
|
forceSSL = true;
|
||||||
useACMEHost = "nixbld.m-labs.hk";
|
useACMEHost = "nixbld.m-labs.hk";
|
||||||
locations."/munin/".alias = "/var/www/munin/";
|
locations."/munin/".alias = "/var/www/munin/";
|
||||||
locations."/munin".extraConfig = ''
|
locations."/munin".extraConfig = ''
|
||||||
auth_basic "Munin";
|
auth_basic "Munin";
|
||||||
auth_basic_user_file /etc/nixos/secret/muninpasswd;
|
auth_basic_user_file /etc/nixos/secret/muninpasswd;
|
||||||
'';
|
'';
|
||||||
|
locations."/msys2/" = {
|
||||||
|
alias = "${hydraWwwOutputs}/msys2/";
|
||||||
|
extraConfig = ''
|
||||||
|
autoindex on;
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
"nixbld.m-labs.hk" = {
|
"nixbld.m-labs.hk" = {
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
|
|
Loading…
Reference in New Issue