From 9c84bc0925532694f74f827316aa14094bd79bca Mon Sep 17 00:00:00 2001 From: Matt Creaser Date: Tue, 7 Feb 2023 11:29:34 -0400 Subject: [PATCH] Remove circleci configuration file We no longer user circleci so this can be removed --- .circleci/config.yml | 56 -------------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 5922170e88..0000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,56 +0,0 @@ -# Use the latest 2.1 version of CircleCI pipeline process engine. -# See: https://circleci.com/docs/2.0/configuration-reference -version: 2.1 - -orbs: - getting-started-smoke-test: - orbs: - android: circleci/android@2.0.0 - aws-cli: circleci/aws-cli@3.1.1 - - commands: - send-metric-on-fail: - description: Send failure datapoint to cloudwatch - steps: - - run: - name: Send failure datapoint to cloudwatch - command: | - payload="{\"jobName\": \"${CIRCLE_JOB}\", \"projectRepoName\": \"${CIRCLE_PROJECT_REPONAME}\"}" - echo $payload - aws lambda invoke --function-name CircleCIWorkflowFailureHandler --payload "$payload" --cli-binary-format raw-in-base64-out response.json - when: on_fail - jobs: - android: - working_directory: ~/android-canaries/canaries/example - executor: - name: android/android-machine - resource-class: xlarge - tag: 2022.03.1 - steps: - - checkout: - path: ~/android-canaries - - aws-cli/setup: - role-session-name: ${CIRCLE_WORKFLOW_JOB_ID} - role-arn: ${AWS_ROLE_ARN} - session-duration: '2000' - - android/create-avd: - avd-name: myavd - install: true - system-image: system-images;android-29;default;x86 - - android/start-emulator: - avd-name: myavd - - android/run-tests - - send-metric-on-fail - - - -workflows: - canaries: - when: - and: - - equal: [ scheduled_pipeline, << pipeline.trigger_source >> ] - - equal: [ "Canaries", << pipeline.schedule.name >> ] - jobs: - - getting-started-smoke-test/android: - context: - - cloudwatch-monitoring \ No newline at end of file