Skip to content
Snippets Groups Projects
Commit 832794b9 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

fix: write a pdf summary report as artifact

parent 5bc48369
No related branches found
No related tags found
1 merge request!214feat: produce pdf report
......@@ -124,6 +124,13 @@ summary:
- "backgrounds:results"
script:
- collect_benchmarks.py
- |
cat templates/report_header.tex > report.tex ;
find results -name "*.png" -exec echo "\result{{}}" \; >> report.tex ;
cat templates/report_footer.tex >> report.tex ;
pdflatex report.tex ;
pdflatex report.tex ;
mv report.pdf results
artifacts:
paths:
- results/*
......
\end{document}
\documentclass[11pt]{book}
\usepackage[margin=0.5in]{geometry}
\usepackage{graphicx}
\title{Physics Benchmarks}
\author{EICweb}
\date{\today}
\newcommand{\result}[1] {
\includegraphics[width=0.8\textwidth]{#1}
\\
}
\begin{document}
\maketitle
\tableofcontents
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment