From df3871d3668e764130b5faedbc44f7d49b14aea8 Mon Sep 17 00:00:00 2001 From: Andrew Brenner Date: Mon, 11 Oct 2021 12:44:45 -0400 Subject: [PATCH 01/12] .yml config added --- config.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 config.yml diff --git a/config.yml b/config.yml new file mode 100644 index 0000000..6554e1f --- /dev/null +++ b/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 82ad0441723a6dc162a283c5fae67a23e7cb40da Mon Sep 17 00:00:00 2001 From: Andrew Brenner Date: Mon, 11 Oct 2021 12:44:59 -0400 Subject: [PATCH 02/12] config added From 7ff677a9cec5ca2bc739f3c84366535a7d7eb62e Mon Sep 17 00:00:00 2001 From: Andrew Brenner Date: Mon, 11 Oct 2021 12:45:49 -0400 Subject: [PATCH 03/12] deleted config --- config.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 config.yml diff --git a/config.yml b/config.yml deleted file mode 100644 index 6554e1f..0000000 --- a/config.yml +++ /dev/null @@ -1,26 +0,0 @@ -# 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 cf6b2547108f4985b542cf3ef5cff441320544b9 Mon Sep 17 00:00:00 2001 From: Andrew Brenner Date: Mon, 11 Oct 2021 12:47:40 -0400 Subject: [PATCH 04/12] config added --- .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 0000000..6554e1f --- /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 63acb0f0e80711ffb43d060556195c64b1dde36b Mon Sep 17 00:00:00 2001 From: Andrew Brenner Date: Mon, 11 Oct 2021 12:55:15 -0400 Subject: [PATCH 05/12] update config.yml - added validations --- .circleci/config.yml | 38 ++++++++++++++++---------------------- 1 file changed, 16 insertions(+), 22 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6554e1f..c423173 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,26 +1,20 @@ -# 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 +version: 2 +jobs: + build: docker: - - image: cimg/base:stable - # Add steps to the job - # See: https://circleci.com/docs/2.0/configuration-reference/#steps + - image: circleci/ruby:2.4.1-node-browsers + 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 + name: build dependencies + command: bundle install + + - run: + name: build the jekyll site + command: bundle exec jekyll build + + - run: + name: Print the Current Time + command: date From 9711c22f32c34433d8f66f6931c2960232c2f085 Mon Sep 17 00:00:00 2001 From: Andrew Brenner Date: Mon, 11 Oct 2021 13:14:26 -0400 Subject: [PATCH 06/12] Update config.yml --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c423173..65cb907 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,7 +14,7 @@ jobs: - run: name: build the jekyll site command: bundle exec jekyll build - - - run: - name: Print the Current Time - command: date + + - run: + name: Print the Current Time + command: date From 728d885c71cdfe6b2f8fa37d80a3b7d8dca9c19b Mon Sep 17 00:00:00 2001 From: Andrew Brenner Date: Mon, 11 Oct 2021 13:15:07 -0400 Subject: [PATCH 07/12] Delete config.yml --- .circleci/config.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 65cb907..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,20 +0,0 @@ -version: 2 -jobs: - build: - docker: - - image: circleci/ruby:2.4.1-node-browsers - - steps: - - checkout - - - run: - name: build dependencies - command: bundle install - - - run: - name: build the jekyll site - command: bundle exec jekyll build - - - run: - name: Print the Current Time - command: date From a949fea9bc82fe3bebb0e964289992c352507036 Mon Sep 17 00:00:00 2001 From: Andrew Brenner Date: Mon, 11 Oct 2021 13:16:45 -0400 Subject: [PATCH 08/12] Create config.yml --- .circleci/config.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..65cb907 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,20 @@ +version: 2 +jobs: + build: + docker: + - image: circleci/ruby:2.4.1-node-browsers + + steps: + - checkout + + - run: + name: build dependencies + command: bundle install + + - run: + name: build the jekyll site + command: bundle exec jekyll build + + - run: + name: Print the Current Time + command: date From 6159e6a69600bc4e7e76563d035df756b52d5157 Mon Sep 17 00:00:00 2001 From: Andrew Brenner Date: Mon, 11 Oct 2021 14:25:30 -0400 Subject: [PATCH 09/12] 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 65cb907..6fbadbb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,5 +16,5 @@ jobs: command: bundle exec jekyll build - run: - name: Print the Current Time + name: Print the Current Time command: date From e227fee0a63f30a73cea28439a0de383fa427bb1 Mon Sep 17 00:00:00 2001 From: Andrew Brenner Date: Mon, 11 Oct 2021 14:25:55 -0400 Subject: [PATCH 10/12] 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 6fbadbb..26be103 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,5 +16,5 @@ jobs: command: bundle exec jekyll build - run: - name: Print the Current Time + name: Print the Current Time command: date From 5ae191cecc62173d3360cabb989fa5d2d3e59fd7 Mon Sep 17 00:00:00 2001 From: Andrew Brenner Date: Mon, 11 Oct 2021 14:26:36 -0400 Subject: [PATCH 11/12] 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 26be103..65cb907 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,5 +16,5 @@ jobs: command: bundle exec jekyll build - run: - name: Print the Current Time + name: Print the Current Time command: date From b4109c02c6d0cdbcc1855fb1f9293a011e72b6ff Mon Sep 17 00:00:00 2001 From: Andrew Brenner Date: Mon, 11 Oct 2021 14:29:18 -0400 Subject: [PATCH 12/12] Update config.yml --- .circleci/config.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 65cb907..e4bb1f0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,20 +1,20 @@ version: 2 -jobs: +jobs: build: docker: - image: circleci/ruby:2.4.1-node-browsers - + steps: - checkout - run: - name: build dependencies - command: bundle install - - - run: - name: build the jekyll site - command: bundle exec jekyll build - + name: build dependencies + command: bundle install + + - run: + name: build the jekyll site + command: bundle exec jekyll build + - run: - name: Print the Current Time - command: date + name: Print the Current Time + command: date