Skip to content

Commit

Permalink
Merge pull request #1108 from bugsnag/maze-2.7.1
Browse files Browse the repository at this point in the history
ci(maze-runner): take maze-runner docker image from releases repo
  • Loading branch information
twometresteve authored Oct 22, 2020
2 parents ceee8bb + eedb3e2 commit 2e01e23
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bin/local-test-util
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,6 @@ async function runTests (args) {
`-v`, `${process.cwd()}/test/browser/:/app/test/browser`,
`-w`, `/app/test/browser`,
`-p`, `9020:9020`,
`855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner:latest-v2-cli`
`855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner-releases:latest-v2-cli`
].concat(args || []))
}
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.browser
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ RUN find . -name package.json -type f -mindepth 2 -maxdepth 3 ! -path "./node_mo
RUN rm -fr **/*/node_modules/

# The maze-runner browser tests
FROM 855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner:latest-v2-cli as browser-maze-runner
FROM 855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner-releases:latest-v2-cli as browser-maze-runner
RUN apk add --no-cache ruby-dev build-base libffi-dev curl-dev
ENV GLIBC_VERSION 2.23-r3

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.expo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# CI test image for unit/lint/type tests
FROM 855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner:latest-v2-cli as expo-maze-runner
FROM 855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner-releases:latest-v2-cli as expo-maze-runner
RUN apk add --no-cache ruby-dev build-base libffi-dev curl-dev curl
COPY /test/expo /app/test/expo
WORKDIR /app/test/expo
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.node
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN npm pack --verbose packages/plugin-koa/
RUN npm pack --verbose packages/plugin-restify/

# The maze-runner node tests
FROM 855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner:latest-v2-cli as node-maze-runner
FROM 855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner-releases:latest-v2-cli as node-maze-runner
WORKDIR /app/
COPY packages/node/ .
COPY test/node test/node
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile.react-native
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# CI test image for unit/lint/type tests
FROM 855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner:latest-v2-cli
FROM 855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner-releases:latest-v2-cli
RUN apk add --no-cache ruby-dev build-base libffi-dev curl-dev curl
COPY /test/react-native /app/test/react-native
WORKDIR /app/test/react-native

ENTRYPOINT ["bundle", "exec", "maze-runner"]
ENTRYPOINT ["bundle", "exec", "maze-runner"]

0 comments on commit 2e01e23

Please sign in to comment.