From b29120807753cb08e5579c3b8f231291edb68afe Mon Sep 17 00:00:00 2001 From: avichai kaykov <81909274+avichaip@users.noreply.github.com> Date: Sun, 19 Jun 2022 15:27:44 +0300 Subject: [PATCH 01/33] Update requirements.txt --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 2834515..0ed2f1a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,4 @@ pylint == 2.4.3 pytest == 5.2.2 pytest-html == 2.0.0 flask == 1.0.0 - +test_hello_world.py From cdeea8ff2b9c7fcb6cac9388f942f2b86b3facbf Mon Sep 17 00:00:00 2001 From: avichai kaykov <81909274+avichaip@users.noreply.github.com> Date: Sun, 19 Jun 2022 15:30:12 +0300 Subject: [PATCH 02/33] Update requirements.txt --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0ed2f1a..7d0a62f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,3 @@ pylint == 2.4.3 pytest == 5.2.2 pytest-html == 2.0.0 flask == 1.0.0 -test_hello_world.py From 6709f2aca204ddf3d5cb7e85747b41b5db2f992d Mon Sep 17 00:00:00 2001 From: avichai kaykov <81909274+avichaip@users.noreply.github.com> Date: Sun, 19 Jun 2022 16:04:43 +0300 Subject: [PATCH 03/33] version 2 --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0125257..6a0a532 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:3.8.4 steps: - checkout - run: @@ -13,11 +13,11 @@ jobs: - run: name: Run unit tests command: | - pytest --junitxml=test-reports/junit.xml --html=test-reports/pytest_report.html --self-contained-html - - store_test_results: - path: test-reports - - store_artifacts: - path: test-reports + + from jinja2.utils import markupsafe + + markupsafe.Markup() + Markup('') workflows: build_test: jobs: From 181b39fbf7683b64b9c4e14b05f67ad5e1a7b3e6 Mon Sep 17 00:00:00 2001 From: avichai kaykov <81909274+avichaip@users.noreply.github.com> Date: Sun, 19 Jun 2022 16:34:21 +0300 Subject: [PATCH 04/33] 2yes --- .circleci/config.yml | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6a0a532..8eb22ef 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,7 @@ version: 2.1 + jobs: - run_tests: + build: docker: - image: circleci/python:3.8.4 steps: @@ -13,13 +14,33 @@ jobs: - run: name: Run unit tests command: | - - from jinja2.utils import markupsafe - markupsafe.Markup() - Markup('') + build2: + docker: + - image: circleci/python:3.8.4 + steps: + - checkout + - run: + name: Install Python dependencies + command: | + echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV + pip install --user -r requirements.txt + - run: + name: Run unit tests + command: | workflows: build_test: jobs: - run_tests + +workflows: + version: 2 + + my_workflow: + jobs: + -build + -build2: + requires: + -build + From 968d66c19366a507fa60e0285115a7780680081a Mon Sep 17 00:00:00 2001 From: avichai kaykov <81909274+avichaip@users.noreply.github.com> Date: Mon, 20 Jun 2022 09:56:51 +0300 Subject: [PATCH 05/33] Create Dockerfile --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5e4023e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM python:3.8-alpine + +COPY ./requirements.txt . + +RUN pip install --user -r requirements.txt + +CMD ["python3","server.py"] From 7e89349e8284b64a8854fddea8f1b216c60c0ce5 Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Mon, 20 Jun 2022 12:08:37 +0300 Subject: [PATCH 06/33] test1 --- .circleci/config.yml | 50 ++++++++++++++++++++++---------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8eb22ef..7448e38 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,32 +15,32 @@ jobs: name: Run unit tests command: | - build2: - docker: - - image: circleci/python:3.8.4 - steps: - - checkout - - run: - name: Install Python dependencies - command: | - echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV - pip install --user -r requirements.txt - - run: - name: Run unit tests - command: | -workflows: - build_test: - jobs: - - run_tests +# build2: +# docker: +# - image: circleci/python:3.8.4 +# steps: +# - checkout +# - run: +# name: Install Python dependencies +# command: | +# echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV +# pip install --user -r requirements.txt +# - run: +# name: Run unit tests +# command: | +# workflows: +# build_test: +# jobs: +# - run_tests -workflows: - version: 2 +# workflows: +# version: 2 - my_workflow: - jobs: - -build - -build2: - requires: - -build +# my_workflow: +# jobs: +# -build +# -build2: +# requires: +# -build From f59c8a671bc0ca6e8474e1727ced96acd26f84c7 Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Mon, 20 Jun 2022 12:13:30 +0300 Subject: [PATCH 07/33] name change From d345a5262c4be325a6f1f409439a3737cd3026b1 Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Mon, 20 Jun 2022 12:17:43 +0300 Subject: [PATCH 08/33] avi From f5f6538865ad402a81415811e6f9ad36540960bc Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Mon, 20 Jun 2022 12:21:30 +0300 Subject: [PATCH 09/33] test2 --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7448e38..a72de46 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,6 +14,8 @@ jobs: - run: name: Run unit tests command: | + afafds + # build2: # docker: From 0d1c7d4c6ae8d7e374538f6657c0dacc18843a1b Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Mon, 20 Jun 2022 12:25:17 +0300 Subject: [PATCH 10/33] test234 --- .circleci/config.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a72de46..069ba8d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,12 +14,14 @@ jobs: - run: name: Run unit tests command: | - afafds - + aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa + afafa + affaa + # build2: # docker: -# - image: circleci/python:3.8.4 +# - image: circleci/python:3.8.4s # steps: # - checkout # - run: From 273c1473dfb4eb60b4bb313808b822f4c908776b Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Mon, 20 Jun 2022 12:32:43 +0300 Subject: [PATCH 11/33] avi2 --- .circleci/config.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 069ba8d..521fd30 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,9 +14,7 @@ jobs: - run: name: Run unit tests command: | - aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa - afafa - affaa + # build2: From 674801d0dac6a4cc35eb97ad18aae37f0f43866a Mon Sep 17 00:00:00 2001 From: avichai kaykov <81909274+avichaip@users.noreply.github.com> Date: Mon, 20 Jun 2022 13:49:50 +0300 Subject: [PATCH 12/33] Updated config.yml --- .circleci/config.yml | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 521fd30..8c97f03 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,9 +1,8 @@ version: 2.1 - jobs: - build: + run_tests: docker: - - image: circleci/python:3.8.4 + - image: circleci/python:3.7.4 steps: - checkout - run: @@ -14,6 +13,33 @@ jobs: - run: name: Run unit tests command: | + pytest --junitxml=test-reports/junit.xml --html=test-reports/pytest_report.html --self-contained-html + - store_test_results: + path: test-reports + - store_artifacts: + path: test-reports +workflows: + build_test: + jobs: + - run_tests + + + +# version: 2.1 +# jobs: +# build: +# docker: +# - image: circleci/python:3.8.4 +# steps: +# - checkout +# - run: +# name: Install Python dependencies +# command: | +# echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV +# pip install --user -r requirements.txt +# - run: +# name: Run unit tests +# command: | From 02d5df1857b36b085a5305485ff6ea7505352d57 Mon Sep 17 00:00:00 2001 From: avichai kaykov <81909274+avichaip@users.noreply.github.com> Date: Mon, 20 Jun 2022 14:01:36 +0300 Subject: [PATCH 13/33] Update requirements.txt --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 7d0a62f..0305fa7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,3 +2,4 @@ pylint == 2.4.3 pytest == 5.2.2 pytest-html == 2.0.0 flask == 1.0.0 +Jinja2>=2.10.1 From c1ce2d411d57f7a904fdf366f6c026c6674256b5 Mon Sep 17 00:00:00 2001 From: avichai kaykov <81909274+avichaip@users.noreply.github.com> Date: Mon, 20 Jun 2022 14:07:45 +0300 Subject: [PATCH 14/33] Update Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5e4023e..7ad0be7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,4 +4,6 @@ COPY ./requirements.txt . RUN pip install --user -r requirements.txt +RUN pip install Jinja2 + CMD ["python3","server.py"] From b9ab4fe8f47e3ddc1d943e708362f7fee6490477 Mon Sep 17 00:00:00 2001 From: avichai kaykov <81909274+avichaip@users.noreply.github.com> Date: Mon, 20 Jun 2022 14:15:45 +0300 Subject: [PATCH 15/33] Updated config.yml --- .circleci/config.yml | 64 ++++++-------------------------------------- 1 file changed, 8 insertions(+), 56 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8c97f03..d24264f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,65 +10,17 @@ jobs: command: | echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV pip install --user -r requirements.txt - - run: - name: Run unit tests - command: | - pytest --junitxml=test-reports/junit.xml --html=test-reports/pytest_report.html --self-contained-html - - store_test_results: - path: test-reports - - store_artifacts: - path: test-reports + # - run: + # name: Run unit tests + # command: | + # pytest --junitxml=test-reports/junit.xml --html=test-reports/pytest_report.html --self-contained-html + # - store_test_results: + # path: test-reports + # - store_artifacts: + # path: test-reports workflows: build_test: jobs: - run_tests - - - -# version: 2.1 -# jobs: -# build: -# docker: -# - image: circleci/python:3.8.4 -# steps: -# - checkout -# - run: -# name: Install Python dependencies -# command: | -# echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV -# pip install --user -r requirements.txt -# - run: -# name: Run unit tests -# command: | - - - -# build2: -# docker: -# - image: circleci/python:3.8.4s -# steps: -# - checkout -# - run: -# name: Install Python dependencies -# command: | -# echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV -# pip install --user -r requirements.txt -# - run: -# name: Run unit tests -# command: | -# workflows: -# build_test: -# jobs: -# - run_tests - -# workflows: -# version: 2 - -# my_workflow: -# jobs: -# -build -# -build2: -# requires: -# -build From 9f3a7be3cd83c3bb49220acf0e291255f46c8a27 Mon Sep 17 00:00:00 2001 From: avichai kaykov <81909274+avichaip@users.noreply.github.com> Date: Mon, 20 Jun 2022 16:00:11 +0300 Subject: [PATCH 16/33] Updated config.yml --- .circleci/config.yml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d24264f..1c22e0e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,5 +1,6 @@ version: 2.1 jobs: + description: "run my first docker image" run_tests: docker: - image: circleci/python:3.7.4 @@ -10,17 +11,22 @@ jobs: command: | echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV pip install --user -r requirements.txt - # - run: - # name: Run unit tests - # command: | - # pytest --junitxml=test-reports/junit.xml --html=test-reports/pytest_report.html --self-contained-html - # - store_test_results: - # path: test-reports - # - store_artifacts: - # path: test-reports + + +jobs1: + description: "run my first docker image" + aviavi: + deploy: + docker: + - image: 'cimg/node:16.15.0-browsers' + steps: + - checkout + + workflows: - build_test: + build_test_number2: jobs: - run_tests + From 0c61e794198ad0497d21b6789fd043e9924af94f Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Mon, 20 Jun 2022 18:19:56 +0300 Subject: [PATCH 17/33] gabi test --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1c22e0e..f3ec6de 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,6 +11,7 @@ jobs: command: | echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV pip install --user -r requirements.txt + echo "gabi was here" jobs1: From 68b4cee69bba18c135c3e2cce378893caeaf76d7 Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Mon, 20 Jun 2022 18:21:29 +0300 Subject: [PATCH 18/33] gabi test --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f3ec6de..daa19a5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,7 +11,7 @@ jobs: command: | echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV pip install --user -r requirements.txt - echo "gabi was here" + echo "gabi was here2\" jobs1: From c4c1f805515b69c881a8e774268e5f42798b2dba Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Mon, 20 Jun 2022 18:22:46 +0300 Subject: [PATCH 19/33] gabi test1 --- .circleci/config.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index daa19a5..c195fdf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,7 +11,6 @@ jobs: command: | echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV pip install --user -r requirements.txt - echo "gabi was here2\" jobs1: @@ -27,7 +26,4 @@ jobs1: workflows: build_test_number2: jobs: - - run_tests - - - + - run_tests \ No newline at end of file From 919849755832f6ab9a0290efdebcc5e9c8f83d00 Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Mon, 20 Jun 2022 18:24:00 +0300 Subject: [PATCH 20/33] gabi test me --- .circleci/config.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c195fdf..2628f6c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,6 +11,17 @@ jobs: command: | echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV pip install --user -r requirements.txt + description: "run my first docker image" + run_tests2: + docker: + - image: circleci/python:3.7.4 + steps: + - checkout + - run: + name: Install Python dependencies + command: | + echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV + pip install --user -r requirements.txt jobs1: @@ -26,4 +37,5 @@ jobs1: workflows: build_test_number2: jobs: - - run_tests \ No newline at end of file + - run_tests + - run_tests2 \ No newline at end of file From 66c90c289dd8f84f1c76673f60ad390a612d21be Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Mon, 20 Jun 2022 18:24:46 +0300 Subject: [PATCH 21/33] gabi test me --- .circleci/config.yml | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2628f6c..9eb9988 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,27 +1,27 @@ version: 2.1 jobs: - description: "run my first docker image" - run_tests: - docker: - - image: circleci/python:3.7.4 - steps: - - checkout - - run: - name: Install Python dependencies - command: | - echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV - pip install --user -r requirements.txt - description: "run my first docker image" - run_tests2: - docker: - - image: circleci/python:3.7.4 - steps: - - checkout - - run: - name: Install Python dependencies - command: | - echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV - pip install --user -r requirements.txt + - description: "run my first docker image" + run_tests: + docker: + - image: circleci/python:3.7.4 + steps: + - checkout + - run: + name: Install Python dependencies + command: | + echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV + pip install --user -r requirements.txt + - description: "run my first docker image" + run_tests2: + docker: + - image: circleci/python:3.7.4 + steps: + - checkout + - run: + name: Install Python dependencies + command: | + echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV + pip install --user -r requirements.txt jobs1: From c0bda1ff16dd03ded1ecf6ee3821940cb55c8e25 Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Mon, 20 Jun 2022 18:25:26 +0300 Subject: [PATCH 22/33] gabi test me --- .circleci/config.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9eb9988..6b04679 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,6 @@ version: 2.1 jobs: - - description: "run my first docker image" - run_tests: + - run_tests: docker: - image: circleci/python:3.7.4 steps: @@ -11,8 +10,7 @@ jobs: command: | echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV pip install --user -r requirements.txt - - description: "run my first docker image" - run_tests2: + - run_tests2: docker: - image: circleci/python:3.7.4 steps: From c4d38b3ef6ba067a3615aa4ac43361527b54b56a Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Mon, 20 Jun 2022 18:26:55 +0300 Subject: [PATCH 23/33] gabi test me --- .circleci/config.yml | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6b04679..992e2cb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,25 +1,25 @@ version: 2.1 jobs: - - run_tests: - docker: - - image: circleci/python:3.7.4 - steps: - - checkout - - run: - name: Install Python dependencies - command: | - echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV - pip install --user -r requirements.txt - - run_tests2: - docker: - - image: circleci/python:3.7.4 - steps: - - checkout - - run: - name: Install Python dependencies - command: | - echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV - pip install --user -r requirements.txt + run_tests: + docker: + - image: circleci/python:3.7.4 + steps: + - checkout + - run: + name: Install Python dependencies + command: | + echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV + pip install --user -r requirements.txt + run_tests2: + docker: + - image: circleci/python:3.7.4 + steps: + - checkout + - run: + name: Install Python dependencies + command: | + echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV + pip install --user -r requirements.txt jobs1: From 110604b4bf3383012078209bc58a9220ce32a987 Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Mon, 20 Jun 2022 18:39:59 +0300 Subject: [PATCH 24/33] gogo --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 992e2cb..e12457d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,6 +34,8 @@ jobs1: workflows: build_test_number2: + requires: + - build jobs: - run_tests - - run_tests2 \ No newline at end of file + - run_tests2 From af2216144d76193bdd22c5505044192dd9e3162e Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Thu, 23 Jun 2022 16:07:36 +0300 Subject: [PATCH 25/33] first trakc cocmmit --- .circleci/config.yml | 4 ++-- trackme | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 trackme diff --git a/.circleci/config.yml b/.circleci/config.yml index e12457d..3895abc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -23,6 +23,7 @@ jobs: jobs1: + lalal: description: "run my first docker image" aviavi: deploy: @@ -34,8 +35,7 @@ jobs1: workflows: build_test_number2: - requires: - - build jobs: - run_tests - run_tests2 + diff --git a/trackme b/trackme new file mode 100644 index 0000000..a1b78e2 --- /dev/null +++ b/trackme @@ -0,0 +1 @@ +first commit \ No newline at end of file From c86e96e618a490bb0bca08927d7ee4ad81a18644 Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Thu, 23 Jun 2022 16:07:51 +0300 Subject: [PATCH 26/33] first trakc cocmmit --- trackme | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/trackme b/trackme index a1b78e2..aab983c 100644 --- a/trackme +++ b/trackme @@ -1 +1,2 @@ -first commit \ No newline at end of file +first commit +second commit \ No newline at end of file From 169cdfff3ac2886fb824b436b6fda9140cd025c8 Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Thu, 23 Jun 2022 16:08:11 +0300 Subject: [PATCH 27/33] first trakc cocmmit --- srcfolderfile | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 srcfolderfile diff --git a/srcfolderfile b/srcfolderfile new file mode 100644 index 0000000..eac4042 --- /dev/null +++ b/srcfolderfile @@ -0,0 +1,3 @@ +projects + +files \ No newline at end of file From 5c63820edb763d1ad815e41d9ccf8b7b337c3600 Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Thu, 23 Jun 2022 16:08:32 +0300 Subject: [PATCH 28/33] first trakc cocmmit --- srcfolderfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcfolderfile b/srcfolderfile index eac4042..2d73205 100644 --- a/srcfolderfile +++ b/srcfolderfile @@ -1,3 +1,4 @@ projects -files \ No newline at end of file +files +another change \ No newline at end of file From 218397ace3c332454ceeed4cecf6ac062eeffc95 Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Thu, 23 Jun 2022 16:08:50 +0300 Subject: [PATCH 29/33] first trakc cocmmit --- trackme | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/trackme b/trackme index aab983c..11d56fe 100644 --- a/trackme +++ b/trackme @@ -1,2 +1,3 @@ first commit -second commit \ No newline at end of file +second commit +third commit msut trigger build \ No newline at end of file From 35e73a677c36bfb2759f6a118c8cbc39d91155cb Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Thu, 23 Jun 2022 16:29:22 +0300 Subject: [PATCH 30/33] aviavi --- srcfolderfile | 5 ++++- trackme | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/srcfolderfile b/srcfolderfile index 2d73205..45f6449 100644 --- a/srcfolderfile +++ b/srcfolderfile @@ -1,4 +1,7 @@ projects files -another change \ No newline at end of file +another change + + +sdfdsdfs \ No newline at end of file diff --git a/trackme b/trackme index 11d56fe..0f9451c 100644 --- a/trackme +++ b/trackme @@ -1,3 +1,6 @@ first commit second commit -third commit msut trigger build \ No newline at end of file +third commit msut trigger build + + +אם זה שונה שידווח בגיט \ No newline at end of file From 69d8854115ced01c8e4cad875b97be36a7399858 Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Thu, 23 Jun 2022 16:31:50 +0300 Subject: [PATCH 31/33] alo1 --- srcfolderfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/srcfolderfile b/srcfolderfile index 45f6449..99cea89 100644 --- a/srcfolderfile +++ b/srcfolderfile @@ -4,4 +4,5 @@ files another change -sdfdsdfs \ No newline at end of file +sdfdsdfs +afaf \ No newline at end of file From 5de334f8c8ac80dc8e925dd2dbb3008fb69ecb47 Mon Sep 17 00:00:00 2001 From: avichai kaykov Date: Thu, 23 Jun 2022 16:40:12 +0300 Subject: [PATCH 32/33] aaaa --- srcfolderfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srcfolderfile b/srcfolderfile index 99cea89..5e50b86 100644 --- a/srcfolderfile +++ b/srcfolderfile @@ -5,4 +5,6 @@ another change sdfdsdfs -afaf \ No newline at end of file +afaf +asdasda +afsa From 7f7618c132b1c60bed0d898d9eb42f55ee4a7aa6 Mon Sep 17 00:00:00 2001 From: avichai kaykov <81909274+avichaip@users.noreply.github.com> Date: Sun, 24 Jul 2022 10:54:36 +0300 Subject: [PATCH 33/33] Delete config.yml --- .circleci/config.yml | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 3895abc..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,41 +0,0 @@ -version: 2.1 -jobs: - run_tests: - docker: - - image: circleci/python:3.7.4 - steps: - - checkout - - run: - name: Install Python dependencies - command: | - echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV - pip install --user -r requirements.txt - run_tests2: - docker: - - image: circleci/python:3.7.4 - steps: - - checkout - - run: - name: Install Python dependencies - command: | - echo 'export PATH=~$PATH:~/.local/bin' >> $BASH_ENV && source $BASH_ENV - pip install --user -r requirements.txt - - -jobs1: - lalal: - description: "run my first docker image" - aviavi: - deploy: - docker: - - image: 'cimg/node:16.15.0-browsers' - steps: - - checkout - - -workflows: - build_test_number2: - jobs: - - run_tests - - run_tests2 -