mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Co-authored-by: spalger <spalger@users.noreply.github.com> Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
6712bc0727
commit
b7a9b84af8
5 changed files with 11 additions and 5 deletions
|
@ -23,6 +23,7 @@ kibanaPipeline(timeoutMinutes: 210) {
|
|||
) {
|
||||
withGcpServiceAccount.fromVaultSecret('secret/kibana-issues/dev/ci-artifacts-key', 'value') {
|
||||
withEnv([
|
||||
'BUILD_TS_REFS_DISABLE=false', // disabled in root config so we need to override that here
|
||||
'BUILD_TS_REFS_CACHE_ENABLE=true',
|
||||
'BUILD_TS_REFS_CACHE_CAPTURE=true',
|
||||
'DISABLE_BOOTSTRAP_VALIDATION=true',
|
||||
|
|
|
@ -21,10 +21,6 @@ cp "src/dev/ci_setup/.bazelrc-ci" "$HOME/.bazelrc";
|
|||
echo "# Appended by src/dev/ci_setup/setup.sh" >> "$HOME/.bazelrc"
|
||||
echo "build --remote_header=x-buildbuddy-api-key=$KIBANA_BUILDBUDDY_CI_API_KEY" >> "$HOME/.bazelrc"
|
||||
|
||||
if [[ "$BUILD_TS_REFS_CACHE_ENABLE" != "true" ]]; then
|
||||
export BUILD_TS_REFS_CACHE_ENABLE=false
|
||||
fi
|
||||
|
||||
###
|
||||
### install dependencies
|
||||
###
|
||||
|
|
|
@ -21,7 +21,7 @@ const CACHE_WORKING_DIR = Path.resolve(REPO_ROOT, 'data/ts_refs_output_cache');
|
|||
const TS_ERROR_REF = /\sTS\d{1,6}:\s/;
|
||||
|
||||
const isTypeFailure = (error: any) =>
|
||||
error.exitCode === 1 &&
|
||||
error.exitCode > 0 &&
|
||||
error.stderr === '' &&
|
||||
typeof error.stdout === 'string' &&
|
||||
TS_ERROR_REF.test(error.stdout);
|
||||
|
|
|
@ -2,5 +2,13 @@
|
|||
|
||||
source src/dev/ci_setup/setup_env.sh
|
||||
|
||||
checks-reporter-with-killswitch "Build TS Refs" \
|
||||
node scripts/build_ts_refs \
|
||||
--ignore-type-failures \
|
||||
--clean \
|
||||
--no-cache \
|
||||
--force \
|
||||
--debug
|
||||
|
||||
checks-reporter-with-killswitch "Check Types" \
|
||||
node scripts/type_check
|
||||
|
|
|
@ -101,6 +101,7 @@ def base(Map params, Closure closure) {
|
|||
"TEST_BROWSER_HEADLESS=1",
|
||||
"GIT_BRANCH=${checkoutInfo.branch}",
|
||||
"TMPDIR=${env.WORKSPACE}/tmp", // For Chrome and anything else that respects it
|
||||
"BUILD_TS_REFS_DISABLE=true", // no need to build ts refs in bootstrap
|
||||
]) {
|
||||
withCredentials([
|
||||
string(credentialsId: 'vault-addr', variable: 'VAULT_ADDR'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue