Ensure the event examples and matrix.org assets are tested
Otherwise we go nearly a week without realizing the build is failing due to bad schemas/examples. This also helps us ensure a PR is up to par. This commit is expected to cause a build failure at this time. A future commit will actually fix the project and address concerns raised by the testing.
This commit is contained in:
parent
32ce676eb6
commit
0a6c1c4dda
1 changed files with 20 additions and 0 deletions
|
@ -23,9 +23,29 @@ buildswaggerui: &buildswaggerui
|
||||||
wget https://raw.githubusercontent.com/matrix-org/matrix.org/master/scripts/swagger-ui.patch
|
wget https://raw.githubusercontent.com/matrix-org/matrix.org/master/scripts/swagger-ui.patch
|
||||||
patch api/client-server/index.html swagger-ui.patch
|
patch api/client-server/index.html swagger-ui.patch
|
||||||
|
|
||||||
|
checkexamples: &checkexamples
|
||||||
|
name: Check Event Examples
|
||||||
|
command: |
|
||||||
|
source /env/bin/activate
|
||||||
|
cd event-schemas
|
||||||
|
./check_examples.py
|
||||||
|
|
||||||
|
genmatrixassets: &genmatrixassets
|
||||||
|
name: Generate/Verify matrix.org assets
|
||||||
|
command: |
|
||||||
|
source /env/bin/activate
|
||||||
|
./scripts/generate-matrix-org-assets
|
||||||
|
|
||||||
|
|
||||||
version: 2
|
version: 2
|
||||||
jobs:
|
jobs:
|
||||||
|
check-docs:
|
||||||
|
docker:
|
||||||
|
- image: uhoreg/matrix-doc-build
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run: *checkexamples
|
||||||
|
- run: *genmatrixassets # We don't actually use the assets, but we do want to make sure they build
|
||||||
build-docs:
|
build-docs:
|
||||||
docker:
|
docker:
|
||||||
- image: uhoreg/matrix-doc-build
|
- image: uhoreg/matrix-doc-build
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue