aboutsummaryrefslogtreecommitdiff
path: root/analysis/Justfile
diff options
context:
space:
mode:
authorAria Shrimpton <me@aria.rip>2024-03-06 16:41:31 +0000
committerAria Shrimpton <me@aria.rip>2024-03-06 16:41:31 +0000
commited6c0ecd686ce6b423afe4b79091e25f314a4c0f (patch)
treec12e158d258a79e7188de29e47b6f93bc9243346 /analysis/Justfile
parent7648d719cc9da481e4c42a92a428f507699249d1 (diff)
plot cost model observations also
Diffstat (limited to 'analysis/Justfile')
-rw-r--r--analysis/Justfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/analysis/Justfile b/analysis/Justfile
index 4fa628c..837a79e 100644
--- a/analysis/Justfile
+++ b/analysis/Justfile
@@ -1,7 +1,7 @@
default:
livebook server
-fetch job: (download-log job) (download-criterion job)
+fetch job: (download-log job) (download-other job)
download-log job:
mkdir -p {{justfile_directory()}}/{{job}}
@@ -9,8 +9,9 @@ download-log job:
./split-log.py {{justfile_directory()}}/{{job}}/log
grep -R -H -i 'error' {{justfile_directory()}}/{{job}}/sections/
-download-criterion job:
+download-other job:
rsync -ravP candelabra:/opt/candelabra/src/tests/target/criterion/ {{justfile_directory()}}/{{job}}/criterion
+ rsync -ravP candelabra:/opt/candelabra/src/target/candelabra/ {{justfile_directory()}}/{{job}}/candelabra
rm -rf {{justfile_directory()}}/{{job}}/criterion/report
find {{justfile_directory()}}/{{job}}/criterion -iname '*.svg' -exec rm '{}' \;
find {{justfile_directory()}}/{{job}}/criterion -iname '*.html' -exec rm '{}' \;