From efaf69e66c77fd33474a203131d0f6e00a7bdb89 Mon Sep 17 00:00:00 2001 From: andreas Date: Sat, 2 Sep 2023 11:50:13 +0200 Subject: [PATCH] 1st circle ci build --- .circleci/config.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4175da6..65bbd2c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,7 +5,7 @@ version: 2.1 # Define a job to be invoked later in a workflow. # See: https://circleci.com/docs/configuration-reference/#jobs jobs: - say-hello: + pio-build: # Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub. # See: https://circleci.com/docs/configuration-reference/#executor-job docker: @@ -15,12 +15,15 @@ jobs: steps: - checkout - run: - name: "Say hello" - command: "echo Hello, World!" + name: "platformio install" + command: "python3 -m pip install platformio" + - run: + name: "build" + command: "pip run" # Orchestrate jobs using workflows # See: https://circleci.com/docs/configuration-reference/#workflows workflows: - say-hello-workflow: + build-workflow: jobs: - - say-hello + - pio-build