From a606cb9b1e86ec238b035bafee33d639641532c9 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Tue, 1 Jun 2021 07:42:08 -0400 Subject: [PATCH] Chore: Add Circle CI empty config (#35020) (#35032) * Fix Circle CI check with adding an empty config * Add version * Add empty jobs and workflows * Add job with docker image * Add step (cherry picked from commit ec29c3b84f7feb781185fa9caa645405a9c5d085) Co-authored-by: idafurjes <36131195+idafurjes@users.noreply.github.com> --- .circleci/config.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000000..0afd96e1c3f --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,11 @@ +version: 2.1 +jobs: + build: + docker: + - image: alpine:3.7 + steps: + - run: + name: The First Step + command: | + echo 'Fake step!' +