sourcegraph/dev/ci/create-client-artifact.sh
Valery Bugakov 96994c8cd8
web: make web integration tests great again! (#25027)
* test-integration

* test-integration

* web: update naming convention for constants

Co-authored-by: Jean Hadrien Chabran <jh@chabran.fr>

* web: update naming convention for constants

* Update enterprise/dev/ci/internal/ci/pipeline-steps.go

Co-authored-by: Tom Ross <tom@umpox.com>

* web: dont skip git clone step in test agents

* web: update web integration splitting logic

* web: update percy executable

* web: update executable path for storyshots

* web: download browser in async pipeline

* web: timebox localStorage reset

* web: update min func

Co-authored-by: Jean Hadrien Chabran <jh@chabran.fr>
Co-authored-by: Tom Ross <tom@umpox.com>
2021-09-23 16:32:25 +02:00

12 lines
332 B
Bash
Executable File

#!/usr/bin/env bash
set -e
echo "--- Pack ./ui ./client ./dev/ci/*.sh and root files"
mkdir -p client-pack
find . -maxdepth 1 -type f -print0 | xargs echo ui client dev/ci/*.sh | xargs tar -czf 'client-pack/client.tar.gz'
echo "--- Upload pre-built client artifact"
cd client-pack
buildkite-agent artifact upload 'client.tar.gz'