CLD-8147 Fix typo (#28856)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
3ecded7387
Коммит
afbdfd9281
8
.github/workflows/e2e-fulltests-ci.yml
поставляемый
8
.github/workflows/e2e-fulltests-ci.yml
поставляемый
@@ -11,11 +11,11 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
PR_NUMBER:
|
PR_NUMBER:
|
||||||
type: string
|
type: string
|
||||||
description: The PR number that the ref to test belongs to. Required, If testing a PR.
|
description: PR number (if applicable)
|
||||||
required: false
|
required: false
|
||||||
ROLLING_RELEASE_FROM_TAG:
|
ROLLING_RELEASE_FROM_TAG:
|
||||||
type: string
|
type: string
|
||||||
description: Mattermost release git tag to perform a RollingRelease from, before upgrading to the tested ref and perform the full E2E test. Optional.
|
description: Mattermost release git tag for RollingRelease tests. Optional.
|
||||||
required: false
|
required: false
|
||||||
MM_ENV:
|
MM_ENV:
|
||||||
type: string
|
type: string
|
||||||
@@ -133,7 +133,7 @@ jobs:
|
|||||||
COMPUTED_REPORT_TYPE="${REPORT_TYPE}"
|
COMPUTED_REPORT_TYPE="${REPORT_TYPE}"
|
||||||
### Run sanity assertions after variable generations
|
### Run sanity assertions after variable generations
|
||||||
[ "$REF" = "${_COMMIT_SHA_COMPUTED}" ] # 'inputs.ref' must be a full commit hash, and the commit must exist
|
[ "$REF" = "${_COMMIT_SHA_COMPUTED}" ] # 'inputs.ref' must be a full commit hash, and the commit must exist
|
||||||
[ "$REPORT_TYPE" != "PR" -o "$PR_NUMBER" -gt "0" ] # If report type is PR, then PR_NUMBER must be set to a number
|
[ "$REPORT_TYPE" != "PR" ] || [ "$PR_NUMBER" -gt "0" ] # If report type is PR, then PR_NUMBER must be set to a number
|
||||||
;;
|
;;
|
||||||
MASTER | MASTER_UNSTABLE | CLOUD | CLOUD_UNSTABLE)
|
MASTER | MASTER_UNSTABLE | CLOUD | CLOUD_UNSTABLE)
|
||||||
### Populate support variables
|
### Populate support variables
|
||||||
@@ -184,7 +184,7 @@ jobs:
|
|||||||
git show-ref --verify "refs/tags/${ROLLING_RELEASE_FROM_TAG}" # 'inputs.ROLLING_RELEASE_FROM_TAG' must be a tag, for release report types
|
git show-ref --verify "refs/tags/${ROLLING_RELEASE_FROM_TAG}" # 'inputs.ROLLING_RELEASE_FROM_TAG' must be a tag, for release report types
|
||||||
fi
|
fi
|
||||||
ENABLED_DOCKER_SERVICES="postgres inbucket minio openldap elasticsearch keycloak"
|
ENABLED_DOCKER_SERVICES="postgres inbucket minio openldap elasticsearch keycloak"
|
||||||
for SVC_OP in $(tr , ' '<<"$MM_SERVICE_OVERRIDES"); do
|
for SVC_OP in $(tr , ' '<<<"$MM_SERVICE_OVERRIDES"); do
|
||||||
OP=$(cut -c1 <<<$SVC_OP)
|
OP=$(cut -c1 <<<$SVC_OP)
|
||||||
SVC=$(cut -c2- <<<$SVC_OP)
|
SVC=$(cut -c2- <<<$SVC_OP)
|
||||||
case "$OP" in
|
case "$OP" in
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user