From 222660a5c6facaab1c5edb4137e271da50e11acf Mon Sep 17 00:00:00 2001 From: Rob Zienert Date: Thu, 19 Sep 2019 11:42:31 -0700 Subject: [PATCH] chore(build): Delete circleci config (#4040) We're not going to be moving forward with CircleCI. For now, we'll be revisiting TravisCI alternatives again soon in Q4. --- .circleci/config.yml | 69 -------------------------------------------- 1 file changed, 69 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 1194f882c0f..00000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,69 +0,0 @@ -#CircleCI config schema is versioned. -version: 2.1 - -# orbs are config packages to include. -orbs: - gradle: circleci/gradle@1.0.11 - slack: circleci/slack@3.3.0 - -workflows: - build_and_test: - jobs: - - build - -jobs: - build: - machine: true - parallelism: 12 - resource_class: xlarge - steps: - - checkout - - run: - name: Open permissions on cache dir - command: sudo chmod -R a+rwx /root - - run: - name: Generate Cache Checksum - command: find . -name 'build.gradle' | sort | xargs cat | shasum | awk '{print - $1}' > /tmp/gradle_cache_seed - - restore_cache: - keys: - - gradle-{{ checksum "/tmp/gradle_cache_seed" }} - - gradle- - - run: - name: Install - command: | - GRADLE="./gradlew -PenablePublishing=true --no-daemon --max-workers=12" - export GRADLE_OPTS="-Xmx16g -Xms16g" - - if [ "x$CIRCLE_PULL_REQUEST" != "x" ]; then - echo -e "Assemble Pull Request #$CIRCLE_PULL_REQUEST => Branch [$CIRCLE_BRANCH]" - $GRADLE assemble - else - echo -e 'WARN: Only building on CircleCI' - $GRADLE assemble - fi - - - - run: - name: Build - command: | - GRADLE="./gradlew -PenablePublishing=true --no-daemon --max-workers=12" - #export GRADLE_OPTS="-XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap" - export GRADLE_OPTS="-Xmx16g -Xms16g" - - if [ "x$CIRCLE_PULL_REQUEST" != "x" ]; then - echo -e "Build Pull Request #$CIRCLE_PULL_REQUEST => Branch [$CIRCLE_BRANCH]" - $GRADLE build javadoc - else - echo -e 'WARN: Only building on CircleCI' - $GRADLE build - fi - - save_cache: - when: always - paths: - - ~/.gradle/caches - - ~/.gradle/wrapper - key: gradle-{{ checksum "/tmp/gradle_cache_seed" }} - #- slack/notify - -