made it so that herc only runs on x86_64-linux

This commit is contained in:
Quinn Dougherty 2022-08-15 19:50:30 -07:00
parent a635219f46
commit d75e272768

View File

@ -287,7 +287,9 @@
}; };
# herc # herc
herculesCI.onPush = { herculesCI = {
ciSystems = [ hciSystem ];
onPush = {
lang.outputs = { lang.outputs = {
squiggle-lang-lint = checks.${hciSystem}.lang-lint; squiggle-lang-lint = checks.${hciSystem}.lang-lint;
squiggle-lang-test = checks.${hciSystem}.lang-test; squiggle-lang-test = checks.${hciSystem}.lang-test;
@ -316,5 +318,6 @@
openssl openssl
]; ];
}; };
};
}); });
} }