summaryrefslogtreecommitdiff
path: root/.circleci/config.yml
diff options
context:
space:
mode:
authorAdam Izraelevitz2020-09-24 10:00:23 -0700
committerGitHub2020-09-24 10:00:23 -0700
commit0e87d8efb8c3a3726796af4a4b8b57e7eeb81be7 (patch)
tree4cf765ee979e71fa76c0e5a2b5c6bc8577a380cf /.circleci/config.yml
parent9c4f14fb7347b5ca6afe777a9a4c5d9d15f9ac0d (diff)
Fix broken mdoc (#1600)
* Fix broken mdoc * Added test-chisel-docs to ci workflow
Diffstat (limited to '.circleci/config.yml')
-rw-r--r--.circleci/config.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 238beb09..cc5c0225 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -141,13 +141,14 @@ jobs:
test-chisel-docs:
executor: chisel-executor
+
steps:
- attach_workspace:
at: /home/chisel
- run:
command: |
- sbt $SBT_ARGS "docs/mdoc"
+ (cd chisel3 && cat /dev/null | sbt $SBT_ARGS "docs/mdoc")
test-chisel-2_11:
executor: chisel-executor
@@ -178,4 +179,7 @@ workflows:
- test-chisel-2_12:
requires:
- build-treadle
+ - test-chisel-docs:
+ requires:
+ - build-treadle