From 613385fcc6ba6a6493f03fd6b5ca1adf696758c0 Mon Sep 17 00:00:00 2001 From: Stefano Cunego <93382903+kukkok3@users.noreply.github.com> Date: Wed, 27 Sep 2023 09:29:05 +0200 Subject: [PATCH] fix: Earthly path for vit-testing and vitss artifacts (#578) # Description Fixing a path in Earthfile ## Type of change Please delete options that are not relevant. - [x] Bug fix (non-breaking change which fixes an issue) ## How Has This Been Tested? Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration - [ ] Test A - [ ] Test B **Test Configuration**: _if applicable_ - Firmware version: - Hardware: - Toolchain: - SDK: **List of new dependencies**: _if applicable_ Provide a list of newly added dependencies in this PR, with the description of what are they doing and why do we need them. - Crate A: description - Crate B: description ## Checklist - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules --- src/vit-servicing-station/Earthfile | 4 ++-- src/vit-testing/Earthfile | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/vit-servicing-station/Earthfile b/src/vit-servicing-station/Earthfile index 29b91d13f5..44a2902a2d 100644 --- a/src/vit-servicing-station/Earthfile +++ b/src/vit-servicing-station/Earthfile @@ -5,6 +5,6 @@ build: RUN cargo build --locked --release -p vit-servicing-station-cli -p vit-servicing-station-server # Store the artifacts - SAVE ARTIFACT /src/target/release/vit-servicing-station-cli vit-servicing-station-cli - SAVE ARTIFACT /src/target/release/vit-servicing-station-server vit-servicing-station-server + SAVE ARTIFACT target/release/vit-servicing-station-cli vit-servicing-station-cli + SAVE ARTIFACT target/release/vit-servicing-station-server vit-servicing-station-server SAVE IMAGE --cache-hint \ No newline at end of file diff --git a/src/vit-testing/Earthfile b/src/vit-testing/Earthfile index cc6399be51..05191fced4 100644 --- a/src/vit-testing/Earthfile +++ b/src/vit-testing/Earthfile @@ -5,8 +5,8 @@ build: RUN cargo build --locked --release -p iapyx -p valgrind -p vitup # Store the artifact - SAVE ARTIFACT /src/target/release/iapyx iapyx - SAVE ARTIFACT /src/target/release/iapyx-load iapyx-load - SAVE ARTIFACT /src/target/release/valgrind valgrind - SAVE ARTIFACT /src/target/release/vitup vitup + SAVE ARTIFACT target/release/iapyx iapyx + SAVE ARTIFACT target/release/iapyx-load iapyx-load + SAVE ARTIFACT target/release/valgrind valgrind + SAVE ARTIFACT target/release/vitup vitup SAVE IMAGE --cache-hint \ No newline at end of file