riot-web/.buildkite/pipeline.yaml

55 lines
1.6 KiB
YAML
Raw Normal View History

2019-03-14 01:25:06 +01:00
steps:
- label: ":eslint: Lint"
command:
- "yarn install"
- "yarn lint"
plugins:
- docker#v3.0.1:
image: "node:10"
- label: ":karma: Tests"
agents:
# We use a medium sized instance instead of the normal small ones because
# webpack loves to gorge itself on resources.
queue: "medium"
2019-03-14 01:25:06 +01:00
command:
2019-03-14 02:46:52 +01:00
# Install chrome
- "echo '--- Installing Chrome'"
2019-03-14 02:46:52 +01:00
- "wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -"
- "sh -c 'echo \"deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main\" >> /etc/apt/sources.list.d/google.list'"
- "apt-get update"
- "apt-get install -y google-chrome-stable"
# Run tests
- "echo '--- Fetching Dependencies'"
2019-03-14 01:25:06 +01:00
- "./scripts/fetch-develop.deps.sh --depth 1"
- "yarn install"
- "echo '+++ Running Tests'"
2019-03-14 01:25:06 +01:00
- "yarn test"
2019-03-14 02:46:52 +01:00
env:
CHROME_BIN: "/usr/bin/google-chrome-stable"
2019-03-14 01:25:06 +01:00
plugins:
- docker#v3.0.1:
image: "node:10"
2019-03-14 05:23:28 +01:00
propagate-environment: true
2019-04-26 13:21:21 +02:00
- label: ":hammer: Package"
2019-04-26 13:21:21 +02:00
command:
- "echo '--- Fetching Dependencies'"
- "./scripts/fetch-develop.deps.sh --depth 1"
- "yarn install"
- "echo '+++ Packaging'"
- "./scripts/ci_package.sh"
branches: "develop"
2019-04-26 13:21:21 +02:00
artifact_paths: "dist/riot-*.tar.gz"
plugins:
- docker#v3.0.1:
image: "node:10"
2019-07-11 20:45:06 +02:00
- label: "🌐 i18n"
command:
# Do the things needed to actually run the i18n stuff
- "yarn install"
- "yarn diff-i18n"
plugins:
- docker#v3.0.1:
image: "node:10"