mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 15:31:48 +00:00
These are more frequently erroneous than helpful. See https://sourcegraph.slack.com/archives/C04MYFW01NV/p1719209633005499. This eliminates a source of frustration and flakiness in pull requests and removes a lot of code and Bazel complexity. If we want to revive them, we can revert this commit. Note that `client/web-sveltekit` does not use Percy, and if we want it to, we can always revert this commit or start over from scratch if that's easier. <!-- PR description tips: https://www.notion.so/sourcegraph/Write-a-good-pull-request-description-610a7fd3e613496eb76f450db5a49b6e --> ## Test plan CI Co-authored-by: Jean-Hadrien Chabran <jean-hadrien.chabran@sourcegraph.com>
14 lines
319 B
Bash
Executable File
14 lines
319 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
echo "--- Download pre-built client artifact"
|
|
buildkite-agent artifact download 'client.tar.gz' . --step 'puppeteer:prep'
|
|
tar -xf client.tar.gz -C .
|
|
|
|
echo "--- Pnpm install in root"
|
|
./dev/ci/pnpm-install-with-retry.sh
|
|
|
|
echo "--- Run integration test suite"
|
|
pnpm pnpm _test-integration "$@"
|