mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:51:59 +00:00
* 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>
12 lines
332 B
Bash
Executable File
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'
|