From e6cf9f0d1d4b29a1c46c050a2c01748307053172 Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Wed, 6 Mar 2019 18:40:34 +0300 Subject: [PATCH] Add a fake project shared to workaround CI crash TeamCity runs :shared:clean as a first step of the build process. But now shared is removed from K/N and CI crashes on this step. At the same time we need this step to build branches with undetached shared. This patch adds an empty project to workaround this crash. TODO: Remove this build step and revert this patch when shared detaching is merged. --- shared/build.gradle | 3 +++ shared/settings.gradle | 0 2 files changed, 3 insertions(+) create mode 100644 shared/build.gradle create mode 100644 shared/settings.gradle diff --git a/shared/build.gradle b/shared/build.gradle new file mode 100644 index 00000000000..7dc17f5d62e --- /dev/null +++ b/shared/build.gradle @@ -0,0 +1,3 @@ +plugins { + id 'base' +} \ No newline at end of file diff --git a/shared/settings.gradle b/shared/settings.gradle new file mode 100644 index 00000000000..e69de29bb2d