Skip to content

Commit

Permalink
Updated script path typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
1Copenut committed Nov 16, 2023
1 parent cb30066 commit 0c9234b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions .buildkite/pipelines/pipeline_pull_request_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
steps:
- label: ":docker: Cached container"
key: "build-test-container"
command: ./buildkite/scripts/pipelines/pipeline_docker_build.sh
command: .buildkite/scripts/pipelines/pipeline_docker_build.sh
agents:
provider: "gcp"
if: build.branch != "main" # This job is triggered by the combined test and deploy docs for every PR
Expand All @@ -12,7 +12,7 @@ steps:
command: .buildkite/scripts/pipelines/pipeline_test.sh
depends_on: "build-test-container" # The depends_on creates an implicit "wait" while the container builds
agents:
image: "docker-staging/eui/ci:latest"
image: "container-registry-test.elastic.co/eui/ci:latest"
env:
TEST_TYPE: 'lint'
if: build.branch != "main"
Expand All @@ -21,7 +21,7 @@ steps:
command: .buildkite/scripts/pipelines/pipeline_test.sh
depends_on: "build-test-container"
agents:
image: "docker-staging/eui/ci:latest"
image: "container-registry-test.elastic.co/eui/ci:latest"
env:
TEST_TYPE: 'unit:ts'
if: build.branch != "main"
Expand All @@ -30,7 +30,7 @@ steps:
command: .buildkite/scripts/pipelines/pipeline_test.sh
depends_on: "build-test-container"
agents:
image: "docker-staging/eui/ci:latest"
image: "container-registry-test.elastic.co/eui/ci:latest"
env:
TEST_TYPE: 'unit:tsx:16'
if: build.branch != "main"
Expand All @@ -39,7 +39,7 @@ steps:
command: .buildkite/scripts/pipelines/pipeline_test.sh
depends_on: "build-test-container"
agents:
image: "docker-staging/eui/ci:latest"
image: "container-registry-test.elastic.co/eui/ci:latest"
env:
TEST_TYPE: 'unit:tsx:17'
if: build.branch != "main"
Expand All @@ -48,7 +48,7 @@ steps:
command: .buildkite/scripts/pipelines/pipeline_test.sh
depends_on: "build-test-container"
agents:
image: "docker-staging/eui/ci:latest"
image: "container-registry-test.elastic.co/eui/ci:latest"
env:
TEST_TYPE: 'unit:tsx'
if: build.branch != "main"
Expand All @@ -57,7 +57,7 @@ steps:
command: .buildkite/scripts/pipelines/pipeline_test.sh
depends_on: "build-test-container"
agents:
image: "docker-staging/eui/ci:latest"
image: "container-registry-test.elastic.co/eui/ci:latest"
env:
TEST_TYPE: 'cypress:16'
if: build.branch != "main"
Expand All @@ -69,7 +69,7 @@ steps:
command: .buildkite/scripts/pipelines/pipeline_test.sh
depends_on: "build-test-container"
agents:
image: "docker-staging/eui/ci:latest"
image: "container-registry-test.elastic.co/eui/ci:latest"
env:
TEST_TYPE: 'cypress:17'
if: build.branch != "main"
Expand All @@ -81,7 +81,7 @@ steps:
command: .buildkite/scripts/pipelines/pipeline_test.sh
depends_on: "build-test-container"
agents:
image: "docker-staging/eui/ci:latest"
image: "container-registry-test.elastic.co/eui/ci:latest"
env:
TEST_TYPE: 'cypress:18'
if: build.branch != "main"
Expand All @@ -93,7 +93,7 @@ steps:
command: .buildkite/scripts/pipelines/pipeline_test.sh
depends_on: "build-test-container"
agents:
image: "docker-staging/eui/ci:latest"
image: "container-registry-test.elastic.co/eui/ci:latest"
env:
TEST_TYPE: 'cypress:a11y'
if: build.branch != "main"
Expand Down
2 changes: 1 addition & 1 deletion .buildkite/scripts/lifecycle/pre_command.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export GITHUB_TOKEN
# ======================================== #
# Known values
# ======================================== #
DOCKER_STAGING_IMAGE=docker-staging/eui/ci
DOCKER_STAGING_IMAGE=container-registry-test.elastic.co/eui/ci
export DOCKER_STAGING_IMAGE

GPROJECT=elastic-bekitzur
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker-ci/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
- '/app/node_modules'

app:
image: docker-staging/eui/ci
image: container-registry-test.elastic.co/eui/ci
build:
dockerfile: ./Dockerfile.app
working_dir: /app
Expand Down

0 comments on commit 0c9234b

Please sign in to comment.