From 834dacb9ffaead63b626489d22aab2f8263e9f16 Mon Sep 17 00:00:00 2001 From: xengineering Date: Fri, 25 Jul 2025 22:46:44 +0200 Subject: artifacts: Remove this folder This was just a trick to provide a folder in the build tree where only artifacts are stored. These artifacts are moved to the root of the build tree. This has the disadvantage that they are mixed with other files inside this folder. Nevertheless they should soon be added by Meson to the file archive used for deployment which solves this issue because it contains by definition only artifacts. --- README.md | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index a6dfe0a..c8b6b1a 100644 --- a/README.md +++ b/README.md @@ -27,15 +27,3 @@ The project is built with the Meson build system. meson setup build ninja -C build ``` - -The resulting artifacts can be listed with `tree`. - -``` -tree build/artifacts -``` - -These artifacts are organized as static website. It can be opened with Firefox. - -``` -firefox build/artifacts/index.html -``` -- cgit v1.2.3-70-g09d2 From 376a2f91964527bfb6b57661a9e81a4d5544f288 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 26 Jul 2025 19:08:56 +0200 Subject: README: Document tar archive and deploy script --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index c8b6b1a..356feeb 100644 --- a/README.md +++ b/README.md @@ -27,3 +27,15 @@ The project is built with the Meson build system. meson setup build ninja -C build ``` + +All artifacts of the build are bundled in a tar archive file. + +``` +tar -tf build/iot-contact-v*.tar.zst +``` + +This archive file can be deployed with the `deploy.py` script. + +``` +./build/tools/deploy.py +``` -- cgit v1.2.3-70-g09d2