From 64a60a296276c8183cb71000d3863ce99b01087d Mon Sep 17 00:00:00 2001 From: deepalidevops <45748139+deepalidevops@users.noreply.github.com> Date: Tue, 3 Dec 2019 09:45:11 +0530 Subject: [PATCH 01/15] Update config.yml --- .circleci/config.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3a4b53d..9f74597 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,7 +18,10 @@ jobs: path: test-reports - store_artifacts: path: test-reports -workflows: - build_test: - jobs: - - run_tests \ No newline at end of file + - run: + name: Build Application + command: pybuilder run build + - persist_to_workspace: + root: venv + paths: + - ./ From 6435d344cd5fcf5d1a62c2e9a531bf7e9d4ac353 Mon Sep 17 00:00:00 2001 From: deepalidevops <45748139+deepalidevops@users.noreply.github.com> Date: Tue, 3 Dec 2019 09:47:18 +0530 Subject: [PATCH 02/15] Update config.yml --- .circleci/config.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9f74597..9cff507 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,6 +18,12 @@ jobs: path: test-reports - store_artifacts: path: test-reports +jobs: + build: + docker: + - image: circleci/python:3.7.4 + steps: + - checkout - run: name: Build Application command: pybuilder run build From 11eb314c387415e18e50f27d6fc73674ff59cb8f Mon Sep 17 00:00:00 2001 From: deepalidevops <45748139+deepalidevops@users.noreply.github.com> Date: Tue, 3 Dec 2019 09:48:15 +0530 Subject: [PATCH 03/15] Update config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9cff507..1fc4a4f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,7 +18,7 @@ jobs: path: test-reports - store_artifacts: path: test-reports -jobs: + build: docker: - image: circleci/python:3.7.4 From 1f4cf9ae0c2fb68d536a11e75f2197a9c66f4dc4 Mon Sep 17 00:00:00 2001 From: deepalidevops <45748139+deepalidevops@users.noreply.github.com> Date: Tue, 3 Dec 2019 09:53:49 +0530 Subject: [PATCH 04/15] Update config.yml --- .circleci/config.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1fc4a4f..6c982d0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -24,9 +24,15 @@ jobs: - image: circleci/python:3.7.4 steps: - checkout + - run: + name: Install Python Dependencies + command: pip install --user -r requirements.txt + - run: + name: install pybuilder + command: PyBuilder install - run: name: Build Application - command: pybuilder run build + command: PyBuilder run build - persist_to_workspace: root: venv paths: From 5bcb96ad4571433507aa03755afa2dc52e190b87 Mon Sep 17 00:00:00 2001 From: deepalidevops <45748139+deepalidevops@users.noreply.github.com> Date: Tue, 3 Dec 2019 09:54:47 +0530 Subject: [PATCH 05/15] Update config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6c982d0..1bcd362 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,7 +29,7 @@ jobs: command: pip install --user -r requirements.txt - run: name: install pybuilder - command: PyBuilder install + command: pip install PyBuilder - run: name: Build Application command: PyBuilder run build From e2f054c0b09a2060366c075f3008cc5cf307b39f Mon Sep 17 00:00:00 2001 From: deepalidevops <45748139+deepalidevops@users.noreply.github.com> Date: Tue, 3 Dec 2019 09:56:45 +0530 Subject: [PATCH 06/15] Update config.yml --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1bcd362..292a85e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 jobs: run_tests: docker: - - image: circleci/python:3.7.4 + - image: circleci/python steps: - checkout - run: @@ -21,7 +21,7 @@ jobs: build: docker: - - image: circleci/python:3.7.4 + - image: circleci/python steps: - checkout - run: From b25eb5c11f33ddc3f8df2498fa4549195384165c Mon Sep 17 00:00:00 2001 From: deepalidevops <45748139+deepalidevops@users.noreply.github.com> Date: Tue, 3 Dec 2019 09:59:04 +0530 Subject: [PATCH 07/15] Update config.yml --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 292a85e..3899451 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 jobs: run_tests: docker: - - image: circleci/python + - image: circleci/python:3.7 steps: - checkout - run: @@ -21,7 +21,7 @@ jobs: build: docker: - - image: circleci/python + - image: circleci/python:3.7 steps: - checkout - run: @@ -29,7 +29,7 @@ jobs: command: pip install --user -r requirements.txt - run: name: install pybuilder - command: pip install PyBuilder + command: pip install -U --pre PyBuilder - run: name: Build Application command: PyBuilder run build From 91d1aa1e24f0a68342960ed5ec57f540dadcda6b Mon Sep 17 00:00:00 2001 From: deepalidevops <45748139+deepalidevops@users.noreply.github.com> Date: Tue, 3 Dec 2019 10:00:04 +0530 Subject: [PATCH 08/15] Update config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3899451..d9d6631 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,7 +29,7 @@ jobs: command: pip install --user -r requirements.txt - run: name: install pybuilder - command: pip install -U --pre PyBuilder + command: sudo pip install -U --pre PyBuilder - run: name: Build Application command: PyBuilder run build From 1f2636013c3ce17b39b183ae3a5e31f3e339ccb4 Mon Sep 17 00:00:00 2001 From: deepalidevops <45748139+deepalidevops@users.noreply.github.com> Date: Tue, 3 Dec 2019 10:04:17 +0530 Subject: [PATCH 09/15] Update config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d9d6631..b7cd9c5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -32,7 +32,7 @@ jobs: command: sudo pip install -U --pre PyBuilder - run: name: Build Application - command: PyBuilder run build + command: PyB run build - persist_to_workspace: root: venv paths: From 901a09feb2d13df5f7dc1054c497252f37e34394 Mon Sep 17 00:00:00 2001 From: deepalidevops <45748139+deepalidevops@users.noreply.github.com> Date: Tue, 3 Dec 2019 10:06:48 +0530 Subject: [PATCH 10/15] Update config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b7cd9c5..fdbf6ba 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -32,7 +32,7 @@ jobs: command: sudo pip install -U --pre PyBuilder - run: name: Build Application - command: PyB run build + command: echo building - persist_to_workspace: root: venv paths: From 43864f2110b3e79ba92fbbbef0b9488411a3d186 Mon Sep 17 00:00:00 2001 From: deepalidevops <45748139+deepalidevops@users.noreply.github.com> Date: Tue, 3 Dec 2019 10:09:15 +0530 Subject: [PATCH 11/15] Create venv --- venv | 1 + 1 file changed, 1 insertion(+) create mode 100644 venv diff --git a/venv b/venv new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/venv @@ -0,0 +1 @@ + From 8badbd07ea238ea99bef6ac4d4e64243054f8ca0 Mon Sep 17 00:00:00 2001 From: deepalidevops <45748139+deepalidevops@users.noreply.github.com> Date: Tue, 3 Dec 2019 10:10:10 +0530 Subject: [PATCH 12/15] Delete venv --- venv | 1 - 1 file changed, 1 deletion(-) delete mode 100644 venv diff --git a/venv b/venv deleted file mode 100644 index 8b13789..0000000 --- a/venv +++ /dev/null @@ -1 +0,0 @@ - From 5d8e651ece5bb6b2de52245e07fa1d8b3c44be09 Mon Sep 17 00:00:00 2001 From: Suryawal Date: Tue, 3 Dec 2019 10:19:44 +0530 Subject: [PATCH 13/15] file added --- test_hello_world.py => file1/test_hello_world.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename test_hello_world.py => file1/test_hello_world.py (100%) diff --git a/test_hello_world.py b/file1/test_hello_world.py similarity index 100% rename from test_hello_world.py rename to file1/test_hello_world.py From 3073a0eb74ecc049a19e9cffa0cbe74046be6a42 Mon Sep 17 00:00:00 2001 From: deepalidevops <45748139+deepalidevops@users.noreply.github.com> Date: Tue, 3 Dec 2019 10:21:18 +0530 Subject: [PATCH 14/15] Update config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fdbf6ba..bf886af 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,6 +34,6 @@ jobs: name: Build Application command: echo building - persist_to_workspace: - root: venv + root: file1 paths: - ./ From 071735aec52a2e7fecce240910bc20ad6912eecb Mon Sep 17 00:00:00 2001 From: Suryawal Date: Tue, 3 Dec 2019 10:30:31 +0530 Subject: [PATCH 15/15] added --- file1/test_hello_world.py => test_hello_world.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename file1/test_hello_world.py => test_hello_world.py (100%) diff --git a/file1/test_hello_world.py b/test_hello_world.py similarity index 100% rename from file1/test_hello_world.py rename to test_hello_world.py