Don't generate matrix assets on CircleCI (#3034)

We already do this in the buildkite pipeline, so doing so in CircleCI is just
duplicate work.
pull/977/head
Andrew Morgan 3 years ago committed by Richard van der Hoff
parent 5d275ab79e
commit 25605b65a3

@ -30,12 +30,6 @@ checkexamples: &checkexamples
source /env/bin/activate
scripts/check-event-schema-examples.py
genmatrixassets: &genmatrixassets
name: Generate/Verify matrix.org assets
command: |
source /env/bin/activate
./scripts/generate-matrix-org-assets
validateapi: &validateapi
name: Validate OpenAPI specifications
command: |
@ -69,7 +63,6 @@ jobs:
steps:
- checkout
- run: *checkexamples
- run: *genmatrixassets # We don't actually use the assets, but we do want to make sure they build
build-docs:
docker:
- image: uhoreg/matrix-doc-build

@ -8,11 +8,8 @@ cd `dirname $0`/..
mkdir -p assets
if [ "$CIRCLECI" != "true" ]
then
# generate specification/proposals.rst
./scripts/proposals.py
fi
# generate specification/proposals.rst
./scripts/proposals.py
# generate the spec docs
./scripts/gendoc.py -d assets/spec

Loading…
Cancel
Save