Add bundled report example
This commit is contained in:
parent
fe0bd8b200
commit
33f6ae7e55
31
garlic/bundleReport.nix
Normal file
31
garlic/bundleReport.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{
|
||||
stdenv
|
||||
, fig
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "report.tar.gz";
|
||||
src = ./report;
|
||||
buildPhase = ''
|
||||
pwd
|
||||
ls -l
|
||||
grep -o '@[^ @]*@' report.tex | sed 's/@//g' | sort -u > list
|
||||
|
||||
echo "fig:" > fun.nix
|
||||
echo "'''" >> fun.nix
|
||||
for line in $(cat list); do
|
||||
localPath=$(echo $line | tr '.' '/')
|
||||
echo "mkdir -p $localPath" >> fun.nix
|
||||
echo "cp -r \''${$line}/* $localPath" >> fun.nix
|
||||
echo "sed -i 's;@$line@;$localPath;g' report.tex" >> fun.nix
|
||||
done
|
||||
echo "'''" >> fun.nix
|
||||
|
||||
echo " ---------- this is the fun.nix -------------"
|
||||
cat fun.nix
|
||||
echo " --------------------------------------------"
|
||||
'';
|
||||
installPhase = ''
|
||||
cp fun.nix $out
|
||||
'';
|
||||
}
|
@ -8,27 +8,17 @@
|
||||
, sedReport
|
||||
}:
|
||||
let
|
||||
# TODO: We can select only which elements we need from fig by using:
|
||||
# echo [ $(grep -o '@[^ @]*@' garlic/report.tex | sed 's/@//g') ]
|
||||
# and them importing as valid nix lang.
|
||||
|
||||
# By now, we require all plots
|
||||
figJSON = writeText "fig.json" (builtins.toJSON fig);
|
||||
sedCmd = (import sedReport) fig;
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "report";
|
||||
src = ./.;
|
||||
name = "report.pdf";
|
||||
src = ./report;
|
||||
buildInputs = [ jq texlive.combined.scheme-basic ];
|
||||
buildPhase = ''
|
||||
${sedCmd}
|
||||
cat report.tex
|
||||
pdflatex report.tex -o report.pdf
|
||||
# Run again to fix figure references
|
||||
pdflatex report.tex -o report.pdf
|
||||
make
|
||||
'';
|
||||
installPhase = ''
|
||||
mkdir $out
|
||||
cp report.* $out
|
||||
cp report.pdf $out
|
||||
'';
|
||||
}
|
||||
|
4
garlic/report/Makefile
Normal file
4
garlic/report/Makefile
Normal file
@ -0,0 +1,4 @@
|
||||
all: report.tex
|
||||
pdflatex report.tex -o report.pdf
|
||||
# Run again to fix figure references
|
||||
pdflatex report.tex -o report.pdf
|
@ -14,8 +14,8 @@ time $t$ is measured, as shown in the figure \ref{fig:nbody.test}.
|
||||
%
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics[width=0.45\textwidth]{@fig.nbody.baseline@/scatter.png}
|
||||
\includegraphics[width=0.45\textwidth]{@fig.nbody.baseline@/box.png}
|
||||
\includegraphics[width=0.45\textwidth]{@fig.nbody.small@/scatter.png}
|
||||
\includegraphics[width=0.45\textwidth]{@fig.nbody.small@/box.png}
|
||||
\caption{Nbody times with varying block size}
|
||||
\label{fig:nbody.test}
|
||||
\end{figure}
|
28
garlic/reportTar.nix
Normal file
28
garlic/reportTar.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{
|
||||
stdenv
|
||||
, fig
|
||||
, writeText
|
||||
, busybox
|
||||
, jq
|
||||
, texlive
|
||||
, bundleReport
|
||||
}:
|
||||
let
|
||||
|
||||
genCmd = (import bundleReport) fig;
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "report.tar.gz";
|
||||
src = ./report;
|
||||
buildInputs = [ jq texlive.combined.scheme-basic ];
|
||||
buildPhase = ''
|
||||
${genCmd}
|
||||
ls -ltR
|
||||
cat report.tex
|
||||
make
|
||||
'';
|
||||
installPhase = ''
|
||||
cd ..
|
||||
tar -czf $out report
|
||||
'';
|
||||
}
|
@ -2,18 +2,18 @@
|
||||
stdenv
|
||||
, fig
|
||||
}:
|
||||
stdenv.mkDerivation {
|
||||
name = "report";
|
||||
src = ./.;
|
||||
buildPhase = ''
|
||||
grep -o '@[^ @]*@' report.tex | sed 's/@//g' | sort -u > list
|
||||
stdenv.mkDerivation {
|
||||
name = "sedReport";
|
||||
src = ./report;
|
||||
buildPhase = ''
|
||||
grep -o '@[^ @]*@' report.tex | sed 's/@//g' | sort -u > list
|
||||
|
||||
echo "fig:" > fun.nix
|
||||
echo "'''" >> fun.nix
|
||||
sed 's:\(^.*\)$:sed -i "s;@\1@;''${\1};g" report.tex:g' list >> fun.nix
|
||||
echo "'''" >> fun.nix
|
||||
'';
|
||||
installPhase = ''
|
||||
cp fun.nix $out
|
||||
'';
|
||||
}
|
||||
echo "fig:" > fun.nix
|
||||
echo "'''" >> fun.nix
|
||||
sed 's:\(^.*\)$:sed -i "s;@\1@;''${\1};g" report.tex:g' list >> fun.nix
|
||||
echo "'''" >> fun.nix
|
||||
'';
|
||||
installPhase = ''
|
||||
cp fun.nix $out
|
||||
'';
|
||||
}
|
||||
|
@ -186,10 +186,19 @@ let
|
||||
report = callPackage ./garlic/report.nix {
|
||||
fig = bsc.garlic.fig;
|
||||
};
|
||||
|
||||
sedReport = callPackage ./garlic/sedReport.nix {
|
||||
fig = bsc.garlic.fig;
|
||||
};
|
||||
|
||||
bundleReport = callPackage ./garlic/bundleReport.nix {
|
||||
fig = bsc.garlic.fig;
|
||||
};
|
||||
|
||||
reportTar = callPackage ./garlic/reportTar.nix {
|
||||
fig = bsc.garlic.fig;
|
||||
};
|
||||
|
||||
# Use the configuration for the following target machine
|
||||
targetMachine = bsc.garlic.machines.mn4;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user