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

[ci] Fix shebangs

parent a03a21a9
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ stdenv.mkDerivation rec {
buildPhase = ''
make config.sed
dune build -j2 --display short @install
dune build --display short @install
'';
installFlags = [
......
......@@ -22,6 +22,10 @@ stdenv.mkDerivation rec {
which
];
postPatch = ''
patchShebangs .
'' ;
# Keep main configuration
configurePhase = ''
true
......@@ -31,7 +35,7 @@ stdenv.mkDerivation rec {
make ptests/ptests.exe
make ptests/wtests.exe
dune exec --root ptests -- frama-c-ptests tests
dune build -j1 --display short @tests/ptests
dune build --display short @tests/ptests
'';
# No installation required
......
......@@ -26,6 +26,10 @@ stdenv.mkDerivation rec {
which
];
postPatch = ''
patchShebangs .
'' ;
# Keep main configuration
# Only for WP qualif -> replace with true after split
configurePhase = ''
......
out 0 → 100644
This diff is collapsed.
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