From 1b67b538433a1d4269dbc9ec8f080890bff9b031 Mon Sep 17 00:00:00 2001 From: IBRAHIM-1453 <77534354+IBRAHIM-1453@users.noreply.github.com> Date: Tue, 10 May 2022 00:20:28 +0300 Subject: [PATCH 1/3] 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 403591b72c0d2d3eca2179a0c316a44de78ccc9c Mon Sep 17 00:00:00 2001 From: IBRAHIM-1453 <77534354+IBRAHIM-1453@users.noreply.github.com> Date: Tue, 10 May 2022 00:20:29 +0300 Subject: [PATCH 2/3] Add .circleci/config.yml From 585e7d627650bb840b8f88d9eec245592e3be60d Mon Sep 17 00:00:00 2001 From: IBRAHIM-1453 <77534354+IBRAHIM-1453@users.noreply.github.com> Date: Tue, 10 May 2022 00:20:31 +0300 Subject: [PATCH 3/3] Add .circleci/config.yml