Add log grouping to buildkite
parent
324781005d
commit
8b1e05542d
|
@ -22,6 +22,7 @@ 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"
|
||||||
|
@ -30,7 +31,9 @@ steps:
|
||||||
# TODO: Remove hacky chmod for BuildKite
|
# TODO: Remove hacky chmod for BuildKite
|
||||||
- "chmod +x ./scripts/ci/*.sh"
|
- "chmod +x ./scripts/ci/*.sh"
|
||||||
- "chmod +x ./scripts/*"
|
- "chmod +x ./scripts/*"
|
||||||
|
- "echo '--- Installing Dependencies'"
|
||||||
- "./scripts/ci/install-deps.sh"
|
- "./scripts/ci/install-deps.sh"
|
||||||
|
- "echo '+++ Running Tests'"
|
||||||
- "./scripts/ci/unit-tests.sh"
|
- "./scripts/ci/unit-tests.sh"
|
||||||
env:
|
env:
|
||||||
CHROME_BIN: "/usr/bin/google-chrome-stable"
|
CHROME_BIN: "/usr/bin/google-chrome-stable"
|
||||||
|
@ -42,6 +45,7 @@ steps:
|
||||||
- label: "🔧 Riot Tests"
|
- label: "🔧 Riot 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"
|
||||||
|
@ -50,7 +54,9 @@ steps:
|
||||||
# TODO: Remove hacky chmod for BuildKite
|
# TODO: Remove hacky chmod for BuildKite
|
||||||
- "chmod +x ./scripts/ci/*.sh"
|
- "chmod +x ./scripts/ci/*.sh"
|
||||||
- "chmod +x ./scripts/*"
|
- "chmod +x ./scripts/*"
|
||||||
|
- "echo '--- Installing Dependencies'"
|
||||||
- "./scripts/ci/install-deps.sh"
|
- "./scripts/ci/install-deps.sh"
|
||||||
|
- "echo '+++ Running Tests'"
|
||||||
- "./scripts/ci/riot-unit-tests.sh"
|
- "./scripts/ci/riot-unit-tests.sh"
|
||||||
env:
|
env:
|
||||||
CHROME_BIN: "/usr/bin/google-chrome-stable"
|
CHROME_BIN: "/usr/bin/google-chrome-stable"
|
||||||
|
|
Loading…
Reference in New Issue