circle ci build

This commit is contained in:
andreas 2023-09-02 11:52:48 +02:00
parent efaf69e66c
commit 2a83077844
1 changed files with 5 additions and 5 deletions

View File

@ -2,21 +2,21 @@
# See: https://circleci.com/docs/configuration-reference # See: https://circleci.com/docs/configuration-reference
version: 2.1 version: 2.1
orbs:
python: circleci/python@1.4.0
# Define a job to be invoked later in a workflow. # Define a job to be invoked later in a workflow.
# See: https://circleci.com/docs/configuration-reference/#jobs # See: https://circleci.com/docs/configuration-reference/#jobs
jobs: jobs:
pio-build: 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. executor: python/default
# See: https://circleci.com/docs/configuration-reference/#executor-job
docker:
- image: cimg/base:stable
# Add steps to the job # Add steps to the job
# See: https://circleci.com/docs/configuration-reference/#steps # See: https://circleci.com/docs/configuration-reference/#steps
steps: steps:
- checkout - checkout
- run: - run:
name: "platformio install" name: "platformio install"
command: "python3 -m pip install platformio" command: "pip install --upgrade platformio"
- run: - run:
name: "build" name: "build"
command: "pip run" command: "pip run"