361b37592a
* build: add publishing workflow for GHActions * build: add test repo/bucket for uploads * build: clean up conditionals, add macos-14-large, review comments * build: remove host_cpu var from GCLIENT_EXTRA_ARGS
22 lines
No EOL
698 B
Bash
Executable file
22 lines
No EOL
698 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
mv_if_exist() {
|
|
if [ -f "generated_artifacts_${BUILD_TYPE}_${TARGET_ARCH}/$1" ] || [ -d "generated_artifacts_${BUILD_TYPE}_${TARGET_ARCH}/$1" ]; then
|
|
echo Restoring $1 to $2
|
|
mkdir -p $2
|
|
mv generated_artifacts_${BUILD_TYPE_${TARGET_ARCH}}/$1 $2
|
|
else
|
|
echo Skipping $1 - It is not present on disk
|
|
fi
|
|
}
|
|
|
|
mv_if_exist dist.zip src/out/Default
|
|
mv_if_exist node_headers.tar.gz src/out/Default/gen
|
|
mv_if_exist symbols.zip src/out/Default
|
|
mv_if_exist mksnapshot.zip src/out/Default
|
|
mv_if_exist chromedriver.zip src/out/Default
|
|
mv_if_exist ffmpeg.zip src/out/ffmpeg
|
|
mv_if_exist hunspell_dictionaries.zip src/out/Default
|
|
mv_if_exist cross-arch-snapshots src |