2018-03-02 10:49:44 +01:00
|
|
|
# CircleCI configuration file used to build and get a preview of the generated
|
|
|
|
# Doxygen documentation.
|
|
|
|
# Note that the job on CircleCI takes around 30 minutes to complete because
|
|
|
|
# copying +19k individual files to their cloud storage is very slow.
|
|
|
|
|
|
|
|
version: 2
|
|
|
|
|
|
|
|
jobs:
|
2020-06-26 09:34:37 +02:00
|
|
|
doc-build:
|
2018-03-02 10:49:44 +01:00
|
|
|
docker:
|
|
|
|
- image: riot/riotbuild
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: make doc
|
|
|
|
- run:
|
|
|
|
command: |
|
|
|
|
cp -R doc/doxygen/html /doc
|
|
|
|
- store_artifacts:
|
|
|
|
path: /doc
|
2020-06-26 09:34:37 +02:00
|
|
|
|
|
|
|
workflows:
|
|
|
|
version: 2
|
|
|
|
doc-build:
|
|
|
|
jobs:
|
|
|
|
- doc-build
|