jenkins: rm tools copy in release tests (#29273)

* jenkins: rm tools copy in release tests

* rm that too
This commit is contained in:
Adeeb Shihadeh
2023-08-07 19:14:45 -07:00
committed by GitHub
parent 9bb7eba2d3
commit 7f02cb9faf
2 changed files with 1 additions and 4 deletions

2
Jenkinsfile vendored
View File

@@ -189,7 +189,7 @@ pipeline {
}
steps {
phone_steps("tici-needs-can", [
["build master-ci", "cd $SOURCE_DIR/release && TARGET_DIR=$TEST_DIR EXTRA_FILES='tools/' ./build_devel.sh"],
["build master-ci", "cd $SOURCE_DIR/release && TARGET_DIR=$TEST_DIR ./build_devel.sh"],
["build openpilot", "cd selfdrive/manager && ./build.py"],
["check dirty", "release/check-dirty.sh"],
["onroad tests", "cd selfdrive/test/ && ./test_onroad.py"],

View File

@@ -44,9 +44,6 @@ git clean -xdff
echo "[-] copying files T=$SECONDS"
cd $SOURCE_DIR
cp -pR --parents $(cat release/files_*) $TARGET_DIR/
if [ ! -z "$EXTRA_FILES" ]; then
cp -pR --parents $EXTRA_FILES $TARGET_DIR/
fi
# in the directory
cd $TARGET_DIR