Skip to content
Snippets Groups Projects
Commit 48404dfa authored by Maël Madon's avatar Maël Madon
Browse files

nix: use latest batsim and simgrid because the bug of issue#2 was fixed in simgrid-3.32

parent 0ad71bc6
No related branches found
No related tags found
1 merge request!3nix: use latest batsim and simgrid because the bug of issue#2 was fixed in simgrid-3.32
Pipeline #4524 passed
...@@ -44,27 +44,13 @@ let ...@@ -44,27 +44,13 @@ let
''; '';
}); });
simgrid-pinned = kapack.simgrid.overrideAttrs(old: rec {
version = "e95fe51a7a87a360f8e6c1b27e14fbf60b0078b8";
src = kapack.pkgs.fetchgit rec {
url = "https://framagit.org/simgrid/simgrid.git";
rev = version;
sha256 = "1psksbw8kp3lxax0161sikk455svhabgby4xwbm5kj83ivlyrz8q";
};
patches = [];
doCheck = false;
});
batsim_sg-pinned = kapack.batsim.override { simgrid = simgrid-pinned; };
batsim_sg330 = kapack.batsim.override { simgrid = kapack.simgrid-330light; };
# Batmen integration tests. # Batmen integration tests.
test = pkgs.mkShell rec { test = pkgs.mkShell rec {
shellHook = '' shellHook = ''
export PATH="./build:$PATH" export PATH="./build:$PATH"
''; '';
buildInputs = with pythonPackages; [ buildInputs = with pythonPackages; [
batsim_sg330 batsim
batexpe batexpe
pytest pytest
pytest-html # for html export of test results pytest-html # for html export of test results
...@@ -74,11 +60,12 @@ let ...@@ -74,11 +60,12 @@ let
test_rebuild = pkgs.mkShell rec { test_rebuild = pkgs.mkShell rec {
buildInputs = with pythonPackages; [ buildInputs = with pythonPackages; [
batsim_sg330
batmen batmen
batsim
batexpe batexpe
pytest pytest
pytest-html pytest-html
pandas
]; ];
}; };
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment