From b4c969e62a0c3d56ef8b73d38896aa645aefc6e5 Mon Sep 17 00:00:00 2001 From: retoor Date: Sat, 23 Nov 2024 20:05:45 +0000 Subject: [PATCH] chore: remove clean step from all target and update dataset export path in readme The clean step was removed from the default build pipeline to preserve historic statistics across builds, as deleted data still consumes git storage. Additionally, the dataset export filename was changed from dataset.txt to 0_dataset.txt, and the corresponding link in the README was updated to reflect this new path. --- Makefile | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index aa50cc9..c5a4178 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all: build clean sync_excempt export_dataset export_stats merge_images +all: build sync_excempt export_dataset export_stats merge_images build: pip install build @@ -25,7 +25,7 @@ export_stats: export_dataset: @echo "Make sure you have ran 'make sync' first." @echo "Exporting dataset to be used for LLM embedding. Result will be ./export/0_dataset.txt" - dr.dataset > export/dataset.txt + dr.dataset > export/0_dataset.txt merge_images: @echo "Merging images to one big image. Result will be ./export/1_graphs_compliation.png." diff --git a/README.md b/README.md index 5ab67be..899ad91 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Generating these statistics takes quite some steps. Look at the build log under ## Generated statistics by last build -Click here for latest [dataset](https://retoor.molodetz.nl/retoor/drstats/src/branch/main/export/dataset.txt). +Click here for latest [dataset](https://retoor.molodetz.nl/retoor/drstats/src/branch/main/export/0_dataset.txt). Click here for latest [graphs compilaiton](https://retoor.molodetz.nl/retoor/drstats/src/branch/main/export/1_graphs_compliation.png).