@@ -34,18 +34,6 @@ build:
34
34
- ccache -c -s --max-size=2000M
35
35
- make host-tools
36
36
- 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;
49
37
- >
50
38
if [ "$MATRIX_BUILD" = "3" -a "$IS_PULL_REQUEST" = "true" ]; then
51
39
export COMMIT_RANGE=origin/${PULL_REQUEST_BASE_BRANCH}..HEAD
@@ -90,40 +78,29 @@ build:
90
78
- >
91
79
if [ -e compliance.xml ]; then
92
80
cp compliance.xml shippable/testresults/;
93
- aws s3 cp compliance.xml ${S3_PATH}/;
94
81
fi;
95
82
- >
96
83
if [ -e ./scripts/sanity_chk/last_sanity.xml ]; then
97
84
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;
99
85
fi;
100
86
- >
101
87
if [ -e ./modified_tests.xml ]; then
102
88
cp ./modified_tests.xml shippable/testresults/;
103
- aws s3 cp ./modified_tests.xml ${S3_PATH}/modified_tests.xml;
104
89
fi;
105
90
on_success :
106
91
- rm -rf sanity-out out-2nd-pass
107
92
- 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
113
93
- >
114
94
if [ -e compliance.xml ]; then
115
95
cp compliance.xml shippable/testresults/;
116
- aws s3 cp compliance.xml ${S3_PATH}/;
117
96
fi;
118
97
- >
119
98
if [ -e ./scripts/sanity_chk/last_sanity.xml ]; then
120
99
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;
122
100
fi;
123
101
- >
124
102
if [ -e ./modified_tests.xml ]; then
125
103
cp ./modified_tests.xml shippable/testresults/;
126
- aws s3 cp ./modified_tests.xml ${S3_PATH}/modified_tests.xml;
127
104
fi;
128
105
129
106
integrations :
0 commit comments