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