ci/android: fix pulling results from Android device
Add a trailing dot to the remote directoyy in the `adb pull` command to make sure to recursively pull only the **content** of the directory and not the directory itself. This prevents having `results/results/` in the artifacts. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33261>
This commit is contained in:
committed by
Marge Bot
parent
1c96335d01
commit
d0b00a63a7
@@ -207,7 +207,7 @@ EXIT_CODE=$?
|
||||
set -e
|
||||
section_switch cuttlefish_results "cuttlefish: gathering the results"
|
||||
|
||||
$ADB pull $AOSP_RESULTS $RESULTS_DIR
|
||||
$ADB pull "$AOSP_RESULTS/." "$RESULTS_DIR"
|
||||
|
||||
section_end cuttlefish_results
|
||||
exit $EXIT_CODE
|
||||
|
||||
Reference in New Issue
Block a user