├── .buildkite └── pipeline.yml ├── .editorconfig ├── .gitignore ├── .prettierrc ├── CODEOWNERS ├── LICENSE ├── README.md ├── contributing.md ├── schema.json ├── test ├── .gitignore ├── .node-version ├── .nvmrc ├── Dockerfile ├── docker-compose.yml ├── package-lock.json ├── package.json ├── schema.test.js └── valid-pipelines │ ├── block.yml │ ├── command.yml │ ├── env.yml │ ├── extra-properties.yml │ ├── group.yml │ ├── if-changed.yml │ ├── input.yml │ ├── matrix.yml │ ├── notify.yml │ ├── secrets.yml │ ├── trigger.yml │ └── wait.yml └── vscode-screenshot.png /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/.buildkite/pipeline.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | test/node_modules -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | @buildkite/agent-stewards 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/contributing.md -------------------------------------------------------------------------------- /schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/schema.json -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /test/.node-version: -------------------------------------------------------------------------------- 1 | .nvmrc -------------------------------------------------------------------------------- /test/.nvmrc: -------------------------------------------------------------------------------- 1 | 18.13.0 2 | -------------------------------------------------------------------------------- /test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/Dockerfile -------------------------------------------------------------------------------- /test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/docker-compose.yml -------------------------------------------------------------------------------- /test/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/package-lock.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/package.json -------------------------------------------------------------------------------- /test/schema.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/schema.test.js -------------------------------------------------------------------------------- /test/valid-pipelines/block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/valid-pipelines/block.yml -------------------------------------------------------------------------------- /test/valid-pipelines/command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/valid-pipelines/command.yml -------------------------------------------------------------------------------- /test/valid-pipelines/env.yml: -------------------------------------------------------------------------------- 1 | env: 2 | AN_ENV: "A value" 3 | 4 | steps: [] 5 | -------------------------------------------------------------------------------- /test/valid-pipelines/extra-properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/valid-pipelines/extra-properties.yml -------------------------------------------------------------------------------- /test/valid-pipelines/group.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/valid-pipelines/group.yml -------------------------------------------------------------------------------- /test/valid-pipelines/if-changed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/valid-pipelines/if-changed.yml -------------------------------------------------------------------------------- /test/valid-pipelines/input.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/valid-pipelines/input.yml -------------------------------------------------------------------------------- /test/valid-pipelines/matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/valid-pipelines/matrix.yml -------------------------------------------------------------------------------- /test/valid-pipelines/notify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/valid-pipelines/notify.yml -------------------------------------------------------------------------------- /test/valid-pipelines/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/valid-pipelines/secrets.yml -------------------------------------------------------------------------------- /test/valid-pipelines/trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/valid-pipelines/trigger.yml -------------------------------------------------------------------------------- /test/valid-pipelines/wait.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/test/valid-pipelines/wait.yml -------------------------------------------------------------------------------- /vscode-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildkite/pipeline-schema/HEAD/vscode-screenshot.png --------------------------------------------------------------------------------