From db01076a918e7643f118d9c17fc4865d2d165f15 Mon Sep 17 00:00:00 2001 From: Olivier Tremblay Date: Thu, 14 Apr 2022 09:25:00 -0400 Subject: [PATCH 1/6] some runner hello world thing --- .circleci/config.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6554e1f..4915482 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,17 +6,10 @@ version: 2.1 # 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 + machine: true + resource_class: otremblay/some-runner steps: - - checkout - - run: - name: "Say hello" - command: "echo Hello, World!" + - run: echo "Hi I'm on Runners!" # Invoke jobs via workflows # See: https://circleci.com/docs/2.0/configuration-reference/#workflows From 3002ae279446eda30bcd9ce9732ec32e16a820f2 Mon Sep 17 00:00:00 2001 From: Olivier Tremblay Date: Tue, 26 Apr 2022 09:41:30 -0400 Subject: [PATCH 2/6] now with checkout --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4915482..285096e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,7 +9,7 @@ jobs: machine: true resource_class: otremblay/some-runner steps: - - run: echo "Hi I'm on Runners!" + - checkout # Invoke jobs via workflows # See: https://circleci.com/docs/2.0/configuration-reference/#workflows From 3660f76fe8a6bfd6784db2e14f17325e382185f0 Mon Sep 17 00:00:00 2001 From: Olivier Tremblay Date: Fri, 29 Apr 2022 13:57:40 -0400 Subject: [PATCH 3/6] Do weird stuff --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 285096e..098234a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,8 +6,8 @@ version: 2.1 # See: https://circleci.com/docs/2.0/configuration-reference/#jobs jobs: say-hello: - machine: true - resource_class: otremblay/some-runner + docker: + - image: cimg/base:stable steps: - checkout From 09270323e8dd1c7d72f3e3ce160de117b85a0b07 Mon Sep 17 00:00:00 2001 From: Olivier Tremblay Date: Fri, 29 Apr 2022 13:59:18 -0400 Subject: [PATCH 4/6] Do weird stuff --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 098234a..5591ed9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,8 +7,9 @@ version: 2.1 jobs: say-hello: docker: - - image: cimg/base:stable + - image: alpine:latest steps: + - run:which git - checkout # Invoke jobs via workflows From f01789b5a6efc3f41adde8d9856a89e9dd6e4fbb Mon Sep 17 00:00:00 2001 From: Olivier Tremblay Date: Fri, 29 Apr 2022 13:59:42 -0400 Subject: [PATCH 5/6] Do weird stuff --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5591ed9..f5f28bb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,7 +9,7 @@ jobs: docker: - image: alpine:latest steps: - - run:which git + - run: which git - checkout # Invoke jobs via workflows From f555233aefb163dd0abe5fc58163270c7b1985f8 Mon Sep 17 00:00:00 2001 From: Olivier Tremblay Date: Fri, 29 Apr 2022 14:00:05 -0400 Subject: [PATCH 6/6] Do weird stuff --- .circleci/config.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f5f28bb..51cacb3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,7 +9,6 @@ jobs: docker: - image: alpine:latest steps: - - run: which git - checkout # Invoke jobs via workflows