From a26cc6db9bf4236b24f7366cfc1edfbbbf0976c8 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Mon, 3 Sep 2018 07:29:22 -0700 Subject: [PATCH] Initial setup for CircleCI (#257) Summary: This is so much faster! This should allow us to more easily publish snapshots. Pull Request resolved: https://github.com/facebook/flipper/pull/257 Reviewed By: danielbuechele Differential Revision: D9630067 Pulled By: passy fbshipit-source-id: 64c633933a971cc15371d2ee90c184e13b98e06a --- .circleci/config.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000..cd4a425da --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,14 @@ +version: 2.0 +jobs: + build: + docker: + - image: circleci/android:api-28-ndk-r17b + steps: + - checkout + - run: ./gradlew :sample:assembleDebug + +workflows: + version: 2 + build: + jobs: + - build