From 2e06a0bc15fd0f927afca7ca67c74d3a3303feb5 Mon Sep 17 00:00:00 2001 From: 1Copenut Date: Thu, 16 Nov 2023 13:33:12 -0600 Subject: [PATCH] Typo in the push location. --- .buildkite/scripts/pipelines/pipeline_docker_build.sh | 2 +- .buildkite/scripts/pipelines/pipeline_test.sh | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.buildkite/scripts/pipelines/pipeline_docker_build.sh b/.buildkite/scripts/pipelines/pipeline_docker_build.sh index 87286ade55c..73ac83ae0ae 100644 --- a/.buildkite/scripts/pipelines/pipeline_docker_build.sh +++ b/.buildkite/scripts/pipelines/pipeline_docker_build.sh @@ -12,7 +12,7 @@ echo "${DOCKER_STAGING_PASSWORD}" | docker login -u "${DOCKER_STAGING_USERNAME}" echo "[DOCKER]: Build and push container to registry" docker-compose -f ./scripts/docker-ci/docker-compose.yml build app -docker push "${DOCKER_STAGING_REGISTRY}":latest +docker push "${DOCKER_STAGING_REGISTRY}"/eui/ci:latest echo "[DOCKER]: Log out of registry" docker logout diff --git a/.buildkite/scripts/pipelines/pipeline_test.sh b/.buildkite/scripts/pipelines/pipeline_test.sh index 2152cabef9a..d9d533968d7 100644 --- a/.buildkite/scripts/pipelines/pipeline_test.sh +++ b/.buildkite/scripts/pipelines/pipeline_test.sh @@ -59,12 +59,6 @@ case $TEST_TYPE in echo "[TASK]: Running Cypress accessibility tests against React 18" yarn cypress install && yarn run test-cypress-a11y --node-options=--max_old_space_size=2048 ;; - - cypress:a11y) - echo "[TASK]: Running Cypress accessibility tests against React 18" - yarn cypress install && yarn run test-cypress-a11y --node-options=--max_old_space_size=2048 - ;; - *) echo "[ERROR]: Unknown task" echo "Exit code: 1"