From 397f412f9eca6378f6bf3e82609086b6c0702302 Mon Sep 17 00:00:00 2001 From: Dhruv Jain <33181026+DhruvJ22@users.noreply.github.com> Date: Wed, 7 Feb 2024 11:00:52 -0500 Subject: [PATCH 1/2] CircleCI Commit --- .circleci/config.yml | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..fec6260 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,43 @@ +# Couldn't automatically generate a config from your source code. +# This is a generic template to serve as a base for your custom config +# See: https://circleci.com/docs/configuration-reference +version: 2.1 +jobs: + test: + docker: + - image: cimg/base:stable + steps: + - checkout + # Replace this with a real test runner invocation + - run: + name: Run tests + command: echo 'replace me with real tests!' && false + build: + docker: + - image: cimg/base:stable + steps: + - checkout + # Replace this with steps to build a package, or executable + - run: + name: Build an artifact + command: touch example.txt + - store_artifacts: + path: example.txt + deploy: + docker: + - image: cimg/base:stable + steps: + # Replace this with steps to deploy to users + - run: + name: deploy + command: '#e.g. ./deploy.sh' +workflows: + example: + jobs: + - test + - build: + requires: + - test + - deploy: + requires: + - test From 54b9972d6edb7afcb8a3d5b9c2aff5a3d21cbcb6 Mon Sep 17 00:00:00 2001 From: Dhruv Jain <33181026+DhruvJ22@users.noreply.github.com> Date: Wed, 7 Feb 2024 11:05:18 -0500 Subject: [PATCH 2/2] Update config.yml Disable tests --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fec6260..d12f7e4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,9 +9,9 @@ jobs: steps: - checkout # Replace this with a real test runner invocation - - run: - name: Run tests - command: echo 'replace me with real tests!' && false + #- run: + # name: Run tests + # command: echo 'replace me with real tests!' && false build: docker: - image: cimg/base:stable