@@ -34,18 +34,6 @@ build:
3434 - ccache -c -s --max-size=2000M
3535 - make host-tools
3636 - export PREBUILT_HOST_TOOLS=${ZEPHYR_BASE}/bin
37- - >
38- if [ "$IS_PULL_REQUEST" = "true" ]; then
39- S3_PATH="s3://zephyr-logs/pull-requests/${REPO_FULL_NAME}/${PULL_REQUEST}"
40- else
41- if [ "$JOB_TRIGGERED_BY_NAME" = "undefined" ]; then
42- LOG_TYPE="manual";
43- else
44- LOG_TYPE=${JOB_TRIGGERED_BY_NAME};
45- fi;
46-
47- S3_PATH="s3://zephyr-logs/${LOG_TYPE}/${REPO_FULL_NAME}/${BUILD_NUMBER}";
48- fi;
4937 - >
5038 if [ "$MATRIX_BUILD" = "3" -a "$IS_PULL_REQUEST" = "true" ]; then
5139 export COMMIT_RANGE=origin/${PULL_REQUEST_BASE_BRANCH}..HEAD
@@ -90,40 +78,29 @@ build:
9078 - >
9179 if [ -e compliance.xml ]; then
9280 cp compliance.xml shippable/testresults/;
93- aws s3 cp compliance.xml ${S3_PATH}/;
9481 fi;
9582 - >
9683 if [ -e ./scripts/sanity_chk/last_sanity.xml ]; then
9784 cp ./scripts/sanity_chk/last_sanity.xml shippable/testresults/;
98- aws s3 cp ./scripts/sanity_chk/last_sanity.xml ${S3_PATH}/sanitycheck.${MATRIX_BUILD}.xml;
9985 fi;
10086 - >
10187 if [ -e ./modified_tests.xml ]; then
10288 cp ./modified_tests.xml shippable/testresults/;
103- aws s3 cp ./modified_tests.xml ${S3_PATH}/modified_tests.xml;
10489 fi;
10590 on_success :
10691 - rm -rf sanity-out out-2nd-pass
10792 - mkdir -p shippable/testresults
108- - >
109- if [ "$MATRIX_BUILD" = "3" -a "$IS_PULL_REQUEST" = "true" ]; then
110- aws s3 sync --quiet doc/_build/html ${S3_PATH}/doc;
111- aws s3 sync --quiet doc/doxygen/html ${S3_PATH}/api;
112- fi
11393 - >
11494 if [ -e compliance.xml ]; then
11595 cp compliance.xml shippable/testresults/;
116- aws s3 cp compliance.xml ${S3_PATH}/;
11796 fi;
11897 - >
11998 if [ -e ./scripts/sanity_chk/last_sanity.xml ]; then
12099 cp ./scripts/sanity_chk/last_sanity.xml shippable/testresults/;
121- aws s3 cp ./scripts/sanity_chk/last_sanity.xml ${S3_PATH}/sanitycheck.${MATRIX_BUILD}..xml;
122100 fi;
123101 - >
124102 if [ -e ./modified_tests.xml ]; then
125103 cp ./modified_tests.xml shippable/testresults/;
126- aws s3 cp ./modified_tests.xml ${S3_PATH}/modified_tests.xml;
127104 fi;
128105
129106integrations :
0 commit comments