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"
|
2019-03-21 18:00:06 +01:00
|
|
|
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
|
2019-03-20 22:33:25 +01:00
|
|
|
- "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
|
2019-03-20 22:33:25 +01:00
|
|
|
- "echo '--- Fetching Dependencies'"
|
2019-03-14 01:25:06 +01:00
|
|
|
- "./scripts/fetch-develop.deps.sh --depth 1"
|
|
|
|
- "yarn install"
|
2019-03-20 22:33:25 +01:00
|
|
|
- "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
|
|
|
|
2019-04-26 16:09:01 +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"
|
2019-04-26 15:38:36 +02:00
|
|
|
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:
|
2019-07-11 20:47:50 +02:00
|
|
|
- "echo '--- Fetching Dependencies'"
|
|
|
|
- "./scripts/fetch-develop.deps.sh --depth 1"
|
2019-07-11 20:45:06 +02:00
|
|
|
- "yarn install"
|
2019-07-11 20:47:50 +02:00
|
|
|
- "echo '+++ Testing i18n output'"
|
2019-07-11 20:45:06 +02:00
|
|
|
- "yarn diff-i18n"
|
|
|
|
plugins:
|
|
|
|
- docker#v3.0.1:
|
|
|
|
image: "node:10"
|