Skip to content

Commit 2cf6c79

Browse files
nashifAnas Nashif
authored andcommitted
ci: remove all AWS operations
This will be done differently using CD and pipelines. Removing from master before we branch 1.9.0. Signed-off-by: Anas Nashif <[email protected]>
1 parent 29a3cce commit 2cf6c79

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

.shippable.yml

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -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
129106
integrations:

0 commit comments

Comments
 (0)