From b68a45f95f3f7695239bfa95c74fd8b5c31deab7 Mon Sep 17 00:00:00 2001 From: Stephen Samuel <73913839+sam-pyda@users.noreply.github.com> Date: Wed, 6 Jul 2022 11:11:17 +0100 Subject: [PATCH 1/4] Add .circleci/config.yml --- .circleci/config.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000..6554e1f4e --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,26 @@ +# Use the latest 2.1 version of CircleCI pipeline process engine. +# See: https://circleci.com/docs/2.0/configuration-reference +version: 2.1 + +# Define a job to be invoked later in a workflow. +# See: https://circleci.com/docs/2.0/configuration-reference/#jobs +jobs: + say-hello: + # Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub. + # See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor + docker: + - image: cimg/base:stable + # Add steps to the job + # See: https://circleci.com/docs/2.0/configuration-reference/#steps + steps: + - checkout + - run: + name: "Say hello" + command: "echo Hello, World!" + +# Invoke jobs via workflows +# See: https://circleci.com/docs/2.0/configuration-reference/#workflows +workflows: + say-hello-workflow: + jobs: + - say-hello From ef0fa38b827474cd195f08cd534a6e6fd38c7eaf Mon Sep 17 00:00:00 2001 From: Stephen Samuel <73913839+sam-pyda@users.noreply.github.com> Date: Wed, 6 Jul 2022 11:25:25 +0100 Subject: [PATCH 2/4] Add .circleci/config.yml From fe7a1114787b35c0a85cd64b10c21dcab11fca77 Mon Sep 17 00:00:00 2001 From: Stephen Samuel <73913839+sam-pyda@users.noreply.github.com> Date: Fri, 8 Jul 2022 14:35:46 +0100 Subject: [PATCH 3/4] Add .circleci/config.yml From 46df6f195c2f5846fa836512bbe43c8be786c8cb Mon Sep 17 00:00:00 2001 From: Stephen Samuel <73913839+sam-pyda@users.noreply.github.com> Date: Mon, 11 Jul 2022 17:40:02 +0100 Subject: [PATCH 4/4] Add .circleci/config.yml