Merge pull request #8729 from aabadie/pr/circleci

ci: use circleci to get a preview of the generated documentation
This commit is contained in:
Martine Lenders 2020-06-24 22:20:11 +02:00 committed by GitHub
commit 6b3e68a7e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

19
.circleci/config.yml Normal file
View File

@ -0,0 +1,19 @@
# 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:
build:
docker:
- image: riot/riotbuild
steps:
- checkout
- run: make doc
- run:
command: |
cp -R doc/doxygen/html /doc
- store_artifacts:
path: /doc