Check "v2_alpha" in jenkins

This commit is contained in:
Mark Haines 2015-09-24 16:29:51 +01:00
parent 883105eae6
commit 69298b9612
2 changed files with 6 additions and 1 deletions

View file

@ -100,13 +100,18 @@ paths:
description: |- description: |-
The user ID to download a filter for. The user ID to download a filter for.
x-example: "@alice:example.com" x-example: "@alice:example.com"
required: true
- in: path - in: path
name: filterId name: filterId
type: string
description: |- description: |-
The filter ID to download. The filter ID to download.
x-example: "66696p746572" x-example: "66696p746572"
required: true
responses: responses:
200: 200:
description: |-
"The filter defintion"
examples: examples:
application/json: |- application/json: |-
{ {

View file

@ -5,5 +5,5 @@ set -ex
(cd event-schemas/ && ./check_examples.py) (cd event-schemas/ && ./check_examples.py)
(cd api && ./check_examples.py) (cd api && ./check_examples.py)
(cd scripts && ./gendoc.py) (cd scripts && ./gendoc.py)
(cd api && npm install && node validator.js -s "client-server/v1") (cd api && npm install && node validator.js -s "client-server/v1" && node validator.js -s "client-server/v2_alpha")
(cd event-schemas/ && ./check.sh) (cd event-schemas/ && ./check.sh)