Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
batmen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sepia-pub
mael
batmen
Merge requests
!3
nix: use latest batsim and simgrid because the bug of issue#2 was fixed in simgrid-3.32
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
nix: use latest batsim and simgrid because the bug of issue#2 was fixed in simgrid-3.32
issue#2
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Ghost User
requested to merge
issue#2
into
master
2 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Viewing commit
48404dfa
Show latest version
1 file
+
3
−
16
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
48404dfa
nix: use latest batsim and simgrid because the bug of issue#2 was fixed in simgrid-3.32
· 48404dfa
Maël Madon
authored
2 years ago
default.nix
+
3
−
16
Options
@@ -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.
test
=
pkgs
.
mkShell
rec
{
shellHook
=
''
export PATH="./build:$PATH"
''
;
buildInputs
=
with
pythonPackages
;
[
batsim
_sg330
batsim
batexpe
pytest
pytest-html
# for html export of test results
@@ -74,11 +60,12 @@ let
test_rebuild
=
pkgs
.
mkShell
rec
{
buildInputs
=
with
pythonPackages
;
[
batsim_sg330
batmen
batsim
batexpe
pytest
pytest-html
pandas
];
};
};
Loading