From 6d5fc16f7270aa9729b6287f66a255792eac30ae Mon Sep 17 00:00:00 2001 From: Isaac Shabtay Date: Sun, 14 Jun 2020 15:56:49 -0700 Subject: [PATCH] Updates --- .circleci/config.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..74ad0dd --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,33 @@ +version: 2.1 +description: test inline job + +orbs: + cloudify: + jobs: + cloudify_job: + parameters: + blueprint_path: + description: Path to blueprint + type: string + executor: test_executor + steps: + - test_inline_command: + path: <> + commands: + test_inline_command: + parameters: + path: + type: string + steps: + - run: echo "Hello <>" + executors: + test_executor: + docker: + - image: circleci/python:3.8.2 + +workflows: + build-test-deploy: + jobs: + - cloudify/cloudify_job: + name: test_job_1 +