Skip to content
Snippets Groups Projects
Commit 039e82c0 authored by Allan Blanchard's avatar Allan Blanchard
Browse files

[ci] Cleaner nix packages

parent 9f9b43b7
No related branches found
No related tags found
No related merge requests found
{ lib { mk_tests } :
, stdenv
, frama-c
, perl
, time
, which
}:
stdenv.mkDerivation rec { mk_tests {
pname = "default-config-tests"; tests-name = "default-config-tests";
version = frama-c.version; tests-command = ''
slang = frama-c.slang;
build_dir = frama-c.build_dir;
src = build_dir + "/dir.tar";
sourceRoot = ".";
buildInputs = frama-c.buildInputs ++ [
frama-c
perl
time
which
];
postPatch = ''
patchShebangs .
'' ;
# Keep main configuration
configurePhase = ''
true
'';
buildPhase = ''
dune exec -- frama-c-ptests tests src/plugins/*/tests dune exec -- frama-c-ptests tests src/plugins/*/tests
dune build -j1 --display short @ptests_config dune build -j1 --display short @ptests_config
''; '';
# No installation required
installPhase = ''
touch $out
'';
} }
{ lib { mk_tests } :
, stdenvNoCC
, frama-c
, perl
, pkgs
, time
, which
}:
stdenvNoCC.mkDerivation rec { mk_tests {
pname = "e-acsl-tests"; tests-name = "e-acsl-tests";
version = frama-c.version; tests-command = ''
slang = frama-c.slang; dune exec -- frama-c-ptests tests src/plugins/e-acsl/tests
build_dir = frama-c.build_dir;
src = build_dir + "/dir.tar";
sourceRoot = ".";
buildInputs = frama-c.buildInputs ++ [
frama-c
perl
pkgs.getopt
time
which
];
postPatch = ''
patchShebangs .
'' ;
# Keep main configuration
configurePhase = ''
true
'';
buildPhase = ''
dune exec -- frama-c-ptests tests src/plugins/*/tests
dune build -j1 --display short @src/plugins/e-acsl/tests/ptests dune build -j1 --display short @src/plugins/e-acsl/tests/ptests
''; '';
# No installation required
installPhase = ''
touch $out
'';
} }
{ lib { mk_tests } :
, stdenvNoCC # for E-ACSL
, frama-c
, perl
, time
, which
}:
stdenvNoCC.mkDerivation rec { mk_tests {
pname = "eva-tests"; tests-name = "eva-tests";
version = frama-c.version; tests-command = ''
slang = frama-c.slang;
build_dir = frama-c.build_dir;
src = build_dir + "/dir.tar";
sourceRoot = ".";
buildInputs = frama-c.buildInputs ++ [
frama-c
perl
time
which
];
postPatch = ''
patchShebangs .
'' ;
# Keep main configuration
configurePhase = ''
true
'';
buildPhase = ''
dune exec -- frama-c-ptests tests dune exec -- frama-c-ptests tests
dune build -j1 --display short \ dune build -j1 --display short \
@tests/builtins/ptests \ @tests/builtins/ptests \
...@@ -39,9 +10,4 @@ stdenvNoCC.mkDerivation rec { ...@@ -39,9 +10,4 @@ stdenvNoCC.mkDerivation rec {
@tests/idct/ptests \ @tests/idct/ptests \
@tests/value/ptests @tests/value/ptests
''; '';
# No installation required
installPhase = ''
touch $out
'';
} }
{ lib # Not meant to be used in CI: uses maximum parallelism
, stdenvNoCC
, frama-c
, alt-ergo
, perl
, pkgs
, time
, which
}:
stdenvNoCC.mkDerivation rec { { mk_tests } :
pname = "full-tests";
version = frama-c.version;
slang = frama-c.slang;
build_dir = frama-c.build_dir; mk_tests {
src = build_dir + "/dir.tar"; tests-name = "full-tests";
wp_cache = fetchGit "git@git.frama-c.com:frama-c/wp-cache.git"; tests-command = ''
sourceRoot = ".";
buildInputs = frama-c.buildInputs ++ [
alt-ergo
frama-c
perl
pkgs.getopt
time
which
];
postPatch = ''
patchShebangs .
'' ;
# Keep main configuration
# But configure Why3
configurePhase = ''
mkdir home
HOME=$(pwd)/home
why3 config detect
'';
buildPhase = ''
export FRAMAC_WP_CACHEDIR=$wp_cache
dune exec -- frama-c-ptests tests src/plugins/*/tests dune exec -- frama-c-ptests tests src/plugins/*/tests
dune build @ptests dune build @ptests
''; '';
has-wp-proofs = true ;
# No installation required
installPhase = ''
touch $out
'';
} }
{ lib { mk_tests } :
, stdenv
, frama-c
, perl
, time
, which
}:
stdenv.mkDerivation rec { mk_tests {
pname = "kernel-tests"; tests-name = "kernel-tests";
version = frama-c.version; tests-command = ''
slang = frama-c.slang;
build_dir = frama-c.build_dir;
src = build_dir + "/dir.tar";
sourceRoot = ".";
buildInputs = frama-c.buildInputs ++ [
frama-c
perl
time
which
];
postPatch = ''
patchShebangs .
'' ;
# Keep main configuration
configurePhase = ''
true
'';
buildPhase = ''
dune exec -- frama-c-ptests tests dune exec -- frama-c-ptests tests
dune build -j1 --display short \ dune build -j1 --display short \
@tests/cil/ptests \ @tests/cil/ptests \
...@@ -45,9 +16,4 @@ stdenv.mkDerivation rec { ...@@ -45,9 +16,4 @@ stdenv.mkDerivation rec {
@tests/syntax/ptests \ @tests/syntax/ptests \
@tests/test/ptests @tests/test/ptests
''; '';
# No installation required
installPhase = ''
touch $out
'';
} }
{ lib
, alt-ergo
, frama-c
, perl
, pkgs
, stdenvNoCC
, time
, which
} :
{ tests-name
, tests-command
, has-wp-proofs ? false
} :
stdenvNoCC.mkDerivation {
pname = tests-name ;
version = frama-c.version;
slang = frama-c.slang;
src = frama-c.build_dir + "/dir.tar";
sourceRoot = ".";
buildInputs = frama-c.buildInputs ++ [
frama-c
perl
pkgs.getopt
time
which
] ++
(if has-wp-proofs then [ alt-ergo ] else []);
postPatch = ''
patchShebangs .
'' ;
# Keep main configuration
configurePhase = ''
true
'';
wp_cache =
if has-wp-proofs
then fetchGit "git@git.frama-c.com:frama-c/wp-cache.git"
else "" ;
preBuild =
if has-wp-proofs
then ''
mkdir home
HOME=$(pwd)/home
why3 config detect
export FRAMAC_WP_CACHEDIR=$wp_cache
''
else "" ;
buildPhase = ''
runHook preBuild
'' +
tests-command + ''
runHook postBuild
'';
# No installation required
installPhase = ''
touch $out
'';
}
...@@ -9,6 +9,8 @@ let ...@@ -9,6 +9,8 @@ let
ocp-indent = oself.callPackage ./ocp-indent.nix {}; ocp-indent = oself.callPackage ./ocp-indent.nix {};
psmt2-frontend = oself.callPackage ./psmt2-frontend.nix {}; psmt2-frontend = oself.callPackage ./psmt2-frontend.nix {};
why3 = oself.callPackage ./why3.nix {}; why3 = oself.callPackage ./why3.nix {};
# Helpers
mk_tests = oself.callPackage ./mk_tests.nix {};
# Builds # Builds
frama-c = oself.callPackage ./frama-c.nix {}; frama-c = oself.callPackage ./frama-c.nix {};
lint = oself.callPackage ./lint.nix {}; lint = oself.callPackage ./lint.nix {};
......
{ lib { mk_tests } :
, stdenvNoCC
, frama-c
, alt-ergo
, perl
, time
, which
}:
stdenvNoCC.mkDerivation rec { mk_tests {
pname = "plugins-tests"; tests-name = "plugins-tests";
version = frama-c.version; tests-command = ''
slang = frama-c.slang;
build_dir = frama-c.build_dir;
src = build_dir + "/dir.tar";
wp_cache = fetchGit "git@git.frama-c.com:frama-c/wp-cache.git"; # for Aorai
sourceRoot = ".";
buildInputs = frama-c.buildInputs ++ [
alt-ergo # only for Aorai
frama-c
perl
time
which
];
postPatch = ''
patchShebangs .
'' ;
# Keep main configuration
# But for Aorai, configure Why3
configurePhase = ''
mkdir home
HOME=$(pwd)/home
why3 config detect
'';
buildPhase = ''
export FRAMAC_WP_CACHEDIR=$wp_cache # for Aorai
dune exec -- frama-c-ptests tests src/plugins/*/tests dune exec -- frama-c-ptests tests src/plugins/*/tests
dune build -j1 --display short \ dune build -j1 --display short \
@tests/callgraph/ptests \ @tests/callgraph/ptests \
...@@ -62,9 +26,5 @@ stdenvNoCC.mkDerivation rec { ...@@ -62,9 +26,5 @@ stdenvNoCC.mkDerivation rec {
@src/plugins/server/tests/ptests \ @src/plugins/server/tests/ptests \
@src/plugins/variadic/tests/ptests @src/plugins/variadic/tests/ptests
''; '';
has-wp-proofs = true ;
# No installation required
installPhase = ''
touch $out
'';
} }
{ lib { mk_tests } :
, stdenv
, frama-c
, alt-ergo
, perl
, time
, which
}:
stdenv.mkDerivation rec { mk_tests {
pname = "wp-tests"; tests-name = "wp-tests";
version = frama-c.version; tests-command = ''
slang = frama-c.slang;
build_dir = frama-c.build_dir;
src = build_dir + "/dir.tar";
wp_cache = fetchGit "git@git.frama-c.com:frama-c/wp-cache.git";
sourceRoot = ".";
buildInputs = frama-c.buildInputs ++ [
alt-ergo
frama-c
perl
time
which
];
postPatch = ''
patchShebangs .
'' ;
configurePhase = ''
mkdir home
HOME=$(pwd)/home
why3 config detect
'';
buildPhase = ''
export FRAMAC_WP_CACHEDIR=$wp_cache
dune exec -- frama-c-ptests src/plugins/wp/tests dune exec -- frama-c-ptests src/plugins/wp/tests
dune build -j1 --display short @src/plugins/wp/tests/ptests dune build -j1 --display short @src/plugins/wp/tests/ptests
''; '';
has-wp-proofs = true ;
# No installation required
installPhase = ''
touch $out
'';
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment