From 2cf6c79cefff56d996d00aec930a717e580a883c Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Tue, 29 Aug 2017 07:45:01 -0400 Subject: [PATCH] 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 --- .shippable.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.shippable.yml b/.shippable.yml index ec97e37c369..dde9bc0dbdd 100644 --- a/.shippable.yml +++ b/.shippable.yml @@ -34,18 +34,6 @@ build: - ccache -c -s --max-size=2000M - make host-tools - export PREBUILT_HOST_TOOLS=${ZEPHYR_BASE}/bin - - > - if [ "$IS_PULL_REQUEST" = "true" ]; then - S3_PATH="s3://zephyr-logs/pull-requests/${REPO_FULL_NAME}/${PULL_REQUEST}" - else - if [ "$JOB_TRIGGERED_BY_NAME" = "undefined" ]; then - LOG_TYPE="manual"; - else - LOG_TYPE=${JOB_TRIGGERED_BY_NAME}; - fi; - - S3_PATH="s3://zephyr-logs/${LOG_TYPE}/${REPO_FULL_NAME}/${BUILD_NUMBER}"; - fi; - > if [ "$MATRIX_BUILD" = "3" -a "$IS_PULL_REQUEST" = "true" ]; then export COMMIT_RANGE=origin/${PULL_REQUEST_BASE_BRANCH}..HEAD @@ -90,40 +78,29 @@ build: - > if [ -e compliance.xml ]; then cp compliance.xml shippable/testresults/; - aws s3 cp compliance.xml ${S3_PATH}/; fi; - > if [ -e ./scripts/sanity_chk/last_sanity.xml ]; then cp ./scripts/sanity_chk/last_sanity.xml shippable/testresults/; - aws s3 cp ./scripts/sanity_chk/last_sanity.xml ${S3_PATH}/sanitycheck.${MATRIX_BUILD}.xml; fi; - > if [ -e ./modified_tests.xml ]; then cp ./modified_tests.xml shippable/testresults/; - aws s3 cp ./modified_tests.xml ${S3_PATH}/modified_tests.xml; fi; on_success: - rm -rf sanity-out out-2nd-pass - mkdir -p shippable/testresults - - > - if [ "$MATRIX_BUILD" = "3" -a "$IS_PULL_REQUEST" = "true" ]; then - aws s3 sync --quiet doc/_build/html ${S3_PATH}/doc; - aws s3 sync --quiet doc/doxygen/html ${S3_PATH}/api; - fi - > if [ -e compliance.xml ]; then cp compliance.xml shippable/testresults/; - aws s3 cp compliance.xml ${S3_PATH}/; fi; - > if [ -e ./scripts/sanity_chk/last_sanity.xml ]; then cp ./scripts/sanity_chk/last_sanity.xml shippable/testresults/; - aws s3 cp ./scripts/sanity_chk/last_sanity.xml ${S3_PATH}/sanitycheck.${MATRIX_BUILD}..xml; fi; - > if [ -e ./modified_tests.xml ]; then cp ./modified_tests.xml shippable/testresults/; - aws s3 cp ./modified_tests.xml ${S3_PATH}/modified_tests.xml; fi; integrations: