From 77e80a26207735130006a2ee77ebc92ec71f8936 Mon Sep 17 00:00:00 2001 From: Brandon Sneed Date: Thu, 15 Apr 2021 11:22:39 -0700 Subject: [PATCH] Remove circleci config --- .circleci/config.yml | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index f63ff7930..000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,43 +0,0 @@ -version: 2.1 -jobs: - build_and_test: - macos: - xcode: "11.5.0" - steps: - - checkout - - run: xcrun simctl list - - run: - name: Install build dependencies - command: | - sudo gem install xcpretty - - - run: make build-ios - - run: make test-ios - - run: make build-tvos - - run: make test-tvos - - run: make build-macos - - run: make test-macos - - run: make lint - - run: make carthage - - - store_test_results: - # relies on xcpretty --report junit - path: build/reports - - run: bash <(curl -s https://codecov.io/bash) - -workflows: - version: 2 - build_and_test: - jobs: - - build_and_test - scheduled_e2e_test: - triggers: - - schedule: - cron: "30 * * * *" - filters: - branches: - only: - - master - - scheduled_e2e_testing - jobs: - - build_and_test