1st circle ci build
This commit is contained in:
parent
d5cae7d9d3
commit
efaf69e66c
|
@ -5,7 +5,7 @@ version: 2.1
|
||||||
# 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:
|
||||||
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.
|
# 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
|
# See: https://circleci.com/docs/configuration-reference/#executor-job
|
||||||
docker:
|
docker:
|
||||||
|
@ -15,12 +15,15 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- run:
|
- run:
|
||||||
name: "Say hello"
|
name: "platformio install"
|
||||||
command: "echo Hello, World!"
|
command: "python3 -m pip install platformio"
|
||||||
|
- run:
|
||||||
|
name: "build"
|
||||||
|
command: "pip run"
|
||||||
|
|
||||||
# Orchestrate jobs using workflows
|
# Orchestrate jobs using workflows
|
||||||
# See: https://circleci.com/docs/configuration-reference/#workflows
|
# See: https://circleci.com/docs/configuration-reference/#workflows
|
||||||
workflows:
|
workflows:
|
||||||
say-hello-workflow:
|
build-workflow:
|
||||||
jobs:
|
jobs:
|
||||||
- say-hello
|
- pio-build
|
||||||
|
|
Loading…
Reference in New Issue