Add log grouping to buildkite
It mostly truncates the log anyway but what are you gonna do
This commit is contained in:
parent
38a24bf4ce
commit
930ac3ae18
|
@ -10,13 +10,16 @@ steps:
|
||||||
- label: ":karma: Tests"
|
- label: ":karma: Tests"
|
||||||
command:
|
command:
|
||||||
# Install chrome
|
# Install chrome
|
||||||
|
- "echo '--- Installing Chrome'"
|
||||||
- "wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -"
|
- "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'"
|
- "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 update"
|
||||||
- "apt-get install -y google-chrome-stable"
|
- "apt-get install -y google-chrome-stable"
|
||||||
# Run tests
|
# Run tests
|
||||||
|
- "echo '--- Fetching Dependencies'"
|
||||||
- "./scripts/fetch-develop.deps.sh --depth 1"
|
- "./scripts/fetch-develop.deps.sh --depth 1"
|
||||||
- "yarn install"
|
- "yarn install"
|
||||||
|
- "echo '+++ Running Tests'"
|
||||||
- "yarn test"
|
- "yarn test"
|
||||||
env:
|
env:
|
||||||
CHROME_BIN: "/usr/bin/google-chrome-stable"
|
CHROME_BIN: "/usr/bin/google-chrome-stable"
|
||||||
|
|
Loading…
Reference in New Issue