зеркало из https://github.com/electron/electron.git
75 строки
2.1 KiB
Bash
Executable File
75 строки
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
buildtools=$HOME/.electron_build_tools
|
|
gclient_root=/workspaces/gclient
|
|
buildtools_configs=/workspaces/buildtools-configs
|
|
|
|
export PATH="$PATH:$buildtools/src"
|
|
|
|
# Create the persisted buildtools config folder
|
|
mkdir -p $buildtools_configs
|
|
rm -f $buildtools/configs
|
|
ln -s $buildtools_configs $buildtools/configs
|
|
|
|
# Write the gclient config if it does not already exist
|
|
if [ ! -f $gclient_root/.gclient ]; then
|
|
echo "solutions = [
|
|
{ \"name\" : \"src/electron\",
|
|
\"url\" : \"https://github.com/electron/electron\",
|
|
\"deps_file\" : \"DEPS\",
|
|
\"managed\" : False,
|
|
\"custom_deps\" : {
|
|
},
|
|
\"custom_vars\": {},
|
|
},
|
|
]
|
|
" >$gclient_root/.gclient
|
|
fi
|
|
|
|
# Write the default buildtools config file if it does
|
|
# not already exist
|
|
if [ ! -f $buildtools/configs/evm.testing.json ]; then
|
|
write_config() {
|
|
echo "
|
|
{
|
|
\"root\": \"/workspaces/gclient\",
|
|
\"goma\": \"$1\",
|
|
\"gen\": {
|
|
\"args\": [
|
|
\"import(\\\"//electron/build/args/testing.gn\\\")\",
|
|
\"import(\\\"/home/builduser/.electron_build_tools/third_party/goma.gn\\\")\"
|
|
],
|
|
\"out\": \"Testing\"
|
|
},
|
|
\"env\": {
|
|
\"CHROMIUM_BUILDTOOLS_PATH\": \"/workspaces/gclient/src/buildtools\",
|
|
\"GIT_CACHE_PATH\": \"/workspaces/gclient/.git-cache\"
|
|
},
|
|
\"remotes\": {
|
|
\"electron\": {
|
|
\"origin\": \"https://github.com/electron/electron.git\"
|
|
}
|
|
}
|
|
}
|
|
" >$buildtools/configs/evm.testing.json
|
|
}
|
|
|
|
# Start out as cache only
|
|
write_config cache-only
|
|
|
|
e use testing
|
|
|
|
# Attempt to auth to the goma service via codespaces tokens
|
|
# if it works we can use the goma cluster
|
|
export NOTGOMA_CODESPACES_TOKEN=$GITHUB_TOKEN
|
|
if e d goma_auth login; then
|
|
write_config cluster
|
|
fi
|
|
else
|
|
# Even if the config file existed we still need to re-auth with the goma
|
|
# cluster
|
|
NOTGOMA_CODESPACES_TOKEN=$GITHUB_TOKEN e d goma_auth login || true
|
|
fi
|