Marlin/.gitlab-ci.yml
2021-09-13 16:48:15 -05:00

20 lines
308 B
YAML

image: python:3.9
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.pip-cache"
PLATFORMIO_CACHE_DIR: "$CI_PROJECT_DIR/.platformio-cache"
cache:
paths:
- .pip-cache/
- .platformio-cache/
stages:
- build
before_script:
- "pip install -U platformio"
build_all:
stage: build
script: "pio run"