Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): move playwright install to +deps #10293

Merged
merged 4 commits into from
Dec 3, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions yarn-project/Earthfile
Original file line number Diff line number Diff line change
@@ -30,6 +30,9 @@ deps:
# by initialising the module more than once. So at present I don't see a viable alternative.
RUN ln -s /usr/src/yarn-project/node_modules /usr/src/node_modules

ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
RUN npx playwright install && npx playwright install-deps

build:
# Prefetch targets to not wait for +deps.
BUILD ../barretenberg/cpp/+build
@@ -49,9 +52,8 @@ build:

WORKDIR /usr/src/yarn-project
COPY . .
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
RUN ./bootstrap.sh full
RUN cd ivc-integration && chmod +x run_browser_tests.sh && npx playwright install && npx playwright install-deps
RUN cd ivc-integration && chmod +x run_browser_tests.sh
TomAFrench marked this conversation as resolved.
Show resolved Hide resolved


build-dev: