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,34 +287,37 @@
}; };
# herc # herc
herculesCI.onPush = { herculesCI = {
lang.outputs = { ciSystems = [ hciSystem ];
squiggle-lang-lint = checks.${hciSystem}.lang-lint; onPush = {
squiggle-lang-test = checks.${hciSystem}.lang-test; lang.outputs = {
squiggle-lang-build = lang-build; squiggle-lang-lint = checks.${hciSystem}.lang-lint;
squiggle-lang-bundle = packages.${hciSystem}.lang-bundle; squiggle-lang-test = checks.${hciSystem}.lang-test;
squiggle-lang-build = lang-build;
squiggle-lang-bundle = packages.${hciSystem}.lang-bundle;
};
components.outputs = {
squiggle-components = packages.${hciSystem}.components;
squiggle-components-lint = checks.${hciSystem}.components-lint;
squiggle-components-storybook = packages.${hciSystem}.storybook;
};
docs-site.outputs = {
squiggle-website = packages.${hciSystem}.docs-site;
docusaurus-lint = checks.${hciSystem}.docusaurus-lint;
};
}; };
components.outputs = { devShells.${system}.default = pkgs.mkShell {
squiggle-components = packages.${hciSystem}.components; name = "squiggle-wasm-development-shell";
squiggle-components-lint = checks.${hciSystem}.components-lint; buildInputs = with pkgs; [
squiggle-components-storybook = packages.${hciSystem}.storybook; wasm-pack
cargo
cargo-generate
yarn
rustup
pkg-config
openssl
];
}; };
docs-site.outputs = {
squiggle-website = packages.${hciSystem}.docs-site;
docusaurus-lint = checks.${hciSystem}.docusaurus-lint;
};
};
devShells.${system}.default = pkgs.mkShell {
name = "squiggle-wasm-development-shell";
buildInputs = with pkgs; [
wasm-pack
cargo
cargo-generate
yarn
rustup
pkg-config
openssl
];
}; };
}); });
} }