From 49e18610c52d9c98c695cc0d69528efb497c25dd Mon Sep 17 00:00:00 2001 From: Henna <62267575+HennaAbbas@users.noreply.github.com> Date: Mon, 14 Apr 2025 10:47:08 -0700 Subject: [PATCH 1/4] Update config.yml --- .circleci/config.yml | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b7ce550..f6aa76f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,29 +7,29 @@ jobs: steps: - checkout - # Your main steps here - - run: - name: Run Tests - command: | - # Simulate test execution - pytest tests/ || echo "Tests failed" + # # Your main steps here + # - run: + # name: Run Tests + # command: | + # # Simulate test execution + # pytest tests/ || echo "Tests failed" - # Always persist to workspace, even if the previous step fails - - run: - name: Persist Workspace - command: | - echo "Persisting workspace..." - # You can add any commands needed to prepare your workspace here - - run: - name: Upload CodeCov.io Data - command: bash <(curl -s https://codecov.io/bash) -F unittests - when: always # Uploads code coverage results, pass or fail + # # Always persist to workspace, even if the previous step fails + # - run: + # name: Persist Workspace + # command: | + # echo "Persisting workspace..." + # # You can add any commands needed to prepare your workspace here + # - run: + # name: Upload CodeCov.io Data + # command: bash <(curl -s https://codecov.io/bash) -F unittests + # when: always # Uploads code coverage results, pass or fail - - persist_to_workspace: - root: /home/circleci/project - paths: - - path/to/persist + # - persist_to_workspace: + # root: /home/circleci/project + # paths: + # - path/to/persist workflows: version: 2 From 1949fdf8de7558081dc9c9c8dabe872dcfe70211 Mon Sep 17 00:00:00 2001 From: Henna <62267575+HennaAbbas@users.noreply.github.com> Date: Mon, 14 Apr 2025 11:04:48 -0700 Subject: [PATCH 2/4] Update config.yml --- .circleci/config.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f6aa76f..ad8211c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,9 +3,16 @@ version: 2.1 jobs: example_job: docker: - - image: circleci/python:3.8 + - image: cimg/python:3.11.12 steps: - checkout + - run: python3 --version + other_job: + docker: + - image: cimg/python:3.11.11 + steps: + - checkout + - run: python3 --version # # Your main steps here # - run: @@ -36,3 +43,4 @@ workflows: build: jobs: - example_job + - other_job From 640c89c935c17c54113fa3705f2dfe7a5039c5d2 Mon Sep 17 00:00:00 2001 From: Henna <62267575+HennaAbbas@users.noreply.github.com> Date: Mon, 14 Apr 2025 11:07:35 -0700 Subject: [PATCH 3/4] Update config.yml --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index ad8211c..34ba133 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,6 +7,8 @@ jobs: steps: - checkout - run: python3 --version + - run: pwd + - run: cd project other_job: docker: - image: cimg/python:3.11.11 From 3d51f15dcb34c892865673d409085445e7daecff Mon Sep 17 00:00:00 2001 From: Henna <62267575+HennaAbbas@users.noreply.github.com> Date: Mon, 14 Apr 2025 11:09:25 -0700 Subject: [PATCH 4/4] Update config.yml --- .circleci/config.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 34ba133..8ffd39a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,8 +7,7 @@ jobs: steps: - checkout - run: python3 --version - - run: pwd - - run: cd project + - run: ls other_job: docker: - image: cimg/python:3.11.11