Chore: Temp allow verify-i18n step to fail (#80371)

allow verify-i18n to fail
This commit is contained in:
Josh Hunt
2024-01-11 14:50:01 +00:00
committed by GitHub
parent 77db6a9ca4
commit c9dd12851f
2 changed files with 4 additions and 1 deletions

View File

@@ -247,6 +247,7 @@ steps:
- yarn run i18n:compile - yarn run i18n:compile
depends_on: depends_on:
- yarn-install - yarn-install
failure: ignore
image: node:20.9.0-alpine image: node:20.9.0-alpine
name: verify-i18n name: verify-i18n
trigger: trigger:
@@ -1549,6 +1550,7 @@ steps:
- yarn run i18n:compile - yarn run i18n:compile
depends_on: depends_on:
- yarn-install - yarn-install
failure: ignore
image: node:20.9.0-alpine image: node:20.9.0-alpine
name: verify-i18n name: verify-i18n
trigger: trigger:
@@ -4629,6 +4631,6 @@ kind: secret
name: gcr_credentials name: gcr_credentials
--- ---
kind: signature kind: signature
hmac: d7e383e4bf37190a97d695ef8f91755cb8cb70fb8088a5c1f63262adcf8e4f5e hmac: 013b133b2c65edbc2220813ae96f6b55478f6b67643639ed54ddfc347de4cb55
... ...

View File

@@ -585,6 +585,7 @@ def verify_i18n_step():
"depends_on": [ "depends_on": [
"yarn-install", "yarn-install",
], ],
"failure": "ignore",
"commands": [ "commands": [
"apk add --update git", "apk add --update git",
"yarn run i18n:extract || (echo \"{}\" && false)".format(extract_error_message), "yarn run i18n:extract || (echo \"{}\" && false)".format(extract_error_message),