From 98e0df5ee98922ef8b0049f917372e1803b5af0a Mon Sep 17 00:00:00 2001 From: MohameddFarh94 Date: Sat, 14 Jan 2023 15:59:57 +0200 Subject: [PATCH 1/7] first commit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0df1cbc75..fb526fa91 100644 --- a/README.md +++ b/README.md @@ -151,3 +151,4 @@ The starter kit includes a working example app that puts all of the above to use ## Questions? Check out the [FAQ](./docs/FAQ.md) +Mohamed Farh From 118bf40291329b9ca10c7d4f6008b0d6dec48f55 Mon Sep 17 00:00:00 2001 From: MohameddFarh94 Date: Sat, 14 Jan 2023 16:04:56 +0200 Subject: [PATCH 2/7] test --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fb526fa91..4ab51e745 100644 --- a/README.md +++ b/README.md @@ -151,4 +151,4 @@ The starter kit includes a working example app that puts all of the above to use ## Questions? Check out the [FAQ](./docs/FAQ.md) -Mohamed Farh +Mohamed Farh from ci branch From 73cc569229e2fb460541ed684f56b0285650b418 Mon Sep 17 00:00:00 2001 From: MohameddFarh94 Date: Sat, 14 Jan 2023 16:11:52 +0200 Subject: [PATCH 3/7] test2 --- test.txt | 1 + text.txt | 0 2 files changed, 1 insertion(+) create mode 100644 test.txt create mode 100644 text.txt diff --git a/test.txt b/test.txt new file mode 100644 index 000000000..748536090 --- /dev/null +++ b/test.txt @@ -0,0 +1 @@ +hello test diff --git a/text.txt b/text.txt new file mode 100644 index 000000000..e69de29bb From 6ac774963b311bab3ce9ddb3985d8905e16eaf01 Mon Sep 17 00:00:00 2001 From: MohameddFarh94 Date: Sat, 14 Jan 2023 16:23:38 +0200 Subject: [PATCH 4/7] test another branch circle ci --- test.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test.txt b/test.txt index 748536090..385671c7d 100644 --- a/test.txt +++ b/test.txt @@ -1 +1,3 @@ hello test +farh farh farh:wq! + From 7eef421e59390f2e4d89f8a599faa3e9163be3a4 Mon Sep 17 00:00:00 2001 From: MohameddFarh94 Date: Sat, 14 Jan 2023 16:27:11 +0200 Subject: [PATCH 5/7] deleted files --- test.txt | 3 --- text.txt | 0 2 files changed, 3 deletions(-) delete mode 100644 test.txt delete mode 100644 text.txt diff --git a/test.txt b/test.txt deleted file mode 100644 index 385671c7d..000000000 --- a/test.txt +++ /dev/null @@ -1,3 +0,0 @@ -hello test -farh farh farh:wq! - diff --git a/text.txt b/text.txt deleted file mode 100644 index e69de29bb..000000000 From 726d1c05b51369f27bdcd9076f48e6c4374d139e Mon Sep 17 00:00:00 2001 From: Mohamed Farh Date: Sat, 14 Jan 2023 16:46:00 +0200 Subject: [PATCH 6/7] 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 16749e739b2d9fa43ccb61b28ed8fe3d01f8ecc5 Mon Sep 17 00:00:00 2001 From: MohameddFarh94 Date: Sat, 14 Jan 2023 16:52:00 +0200 Subject: [PATCH 7/7] test pipline --- .circleci/config.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6554e1f4e..f8755a7f6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,25 +1,16 @@ -# 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: