Skip to content

Commit f6ff30d

Browse files
authored
Do not skip fetching sources.
Since that step is removed, we need to run this step while building This used to happen while building plugin before
1 parent bd95382 commit f6ff30d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

infra/ansible/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ COPY . /ansible
1010
ARG ansible_vars
1111
# HACK: install build dependencies only, but skip build step
1212
RUN ansible-playbook -vvv playbook.yaml -e "stage=build" -e "${ansible_vars}" --tags "bazel,configure_env,install_deps"
13-
RUN ansible-playbook -vvv playbook.yaml -e "stage=build" -e "${ansible_vars}" --skip-tags=fetch_srcs,install_deps
13+
RUN ansible-playbook -vvv playbook.yaml -e "stage=build" -e "${ansible_vars}" --skip-tags=install_deps
1414

1515
FROM python:${python_version}-${debian_version} AS release
1616

0 commit comments

Comments
 (0)