From ae71f2ebd7c7bc2e01c81f5b04b134ade8aa0dfc Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Fri, 2 Mar 2018 10:49:44 +0100 Subject: [PATCH] ci: build doc preview on circleci --- .circleci/config.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000000..deac19aa24 --- /dev/null +++ b/.circleci/config.yml @@ -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