From caa2d3d0f7e4745e156f9fd2ea80c6bd16d4cb47 Mon Sep 17 00:00:00 2001 From: Victoria Kafati Date: Mon, 16 Jun 2025 15:19:05 -0600 Subject: [PATCH 1/2] update circleci config to include jobs and workflows --- circle.yml | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/circle.yml b/circle.yml index d939d89..8d19005 100644 --- a/circle.yml +++ b/circle.yml @@ -1,6 +1,20 @@ -machine: - ruby: - version: - 2.4.2 - environment: - AWS_DEFAULT_REGION: us-west-2 +version: 2.1 + +jobs: + build: + machine: + ruby: + version: 3.3.0 + environment: + AWS_DEFAULT_REGION: us-west-2 + steps: + - checkout + - run: + name: Confirm Ruby version + command: ruby -v + +workflows: + version: 2 + default: + jobs: + - build From 125b8ca05ce569b20519be8a96a9afdd3d34a52d Mon Sep 17 00:00:00 2001 From: Victoria Kafati Date: Mon, 16 Jun 2025 15:22:22 -0600 Subject: [PATCH 2/2] use docker in config --- circle.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/circle.yml b/circle.yml index 8d19005..e6a038c 100644 --- a/circle.yml +++ b/circle.yml @@ -2,9 +2,8 @@ version: 2.1 jobs: build: - machine: - ruby: - version: 3.3.0 + docker: + - image: cimg/ruby:3.3.0 environment: AWS_DEFAULT_REGION: us-west-2 steps: