jenkins is dead, long live buildkite
This commit is contained in:
parent
c230c2fd2f
commit
6cdc8982fa
3 changed files with 17 additions and 5 deletions
11
.buildkite/pipeline.yaml
Normal file
11
.buildkite/pipeline.yaml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
steps:
|
||||||
|
- label: ":books: Build spec"
|
||||||
|
command:
|
||||||
|
- python3 -m venv env
|
||||||
|
- env/bin/pip install -r scripts/requirements.txt
|
||||||
|
- ". env/bin/activate; scripts/generate-matrix-org-assets"
|
||||||
|
artifact_paths:
|
||||||
|
- assets.tar.gz
|
||||||
|
plugins:
|
||||||
|
- docker#v3.0.1:
|
||||||
|
image: "python:3.6"
|
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
exec ./scripts/test-and-build.sh
|
|
|
@ -4,7 +4,11 @@
|
||||||
docutils >= 0.14
|
docutils >= 0.14
|
||||||
pygments >= 2.2.0
|
pygments >= 2.2.0
|
||||||
Jinja2 >= 2.9.6
|
Jinja2 >= 2.9.6
|
||||||
jsonschema >= 2.6.0
|
|
||||||
|
# jsonschema 3.0.0 objects to the $refs in our schema file. TODO: figure out
|
||||||
|
# why.
|
||||||
|
jsonschema >= 2.6.0, < 3.0.0
|
||||||
|
|
||||||
PyYAML >= 3.12
|
PyYAML >= 3.12
|
||||||
requests >= 2.18.4
|
requests >= 2.18.4
|
||||||
towncrier == 18.6.0
|
towncrier == 18.6.0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue