Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Nov 8, 2024
1 parent c75a117 commit 59a657d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions ci/docker/python-wheel-windows-vs2019.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ ENV GITHUB_REPOSITORY_OWNER="${GITHUB_REPOSITORY_OWNER}" \
GITHUB_TOKEN="${GITHUB_TOKEN}" \
VCPKG_BINARY_SOURCES="clear;nuget,GitHub,readwrite" \
VCPKG_ROOT=C:\\vcpkg
# TODO: Use --mount=type=secret for GITHUB_TOKEN
RUN bash arrow/ci/scripts/install_vcpkg.sh /c/vcpkg %vcpkg% && \
setx PATH "%PATH%;%VCPKG_ROOT%"

Expand Down
6 changes: 3 additions & 3 deletions dev/archery/archery/docker/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def _execute_docker(self, *args, **kwargs):

def pull(self, service_name, pull_leaf=True, ignore_pull_failures=True):
def _pull(service):
args = ['pull']
args = ['pull', '--quiet']
if service['image'] in self.pull_memory:
return

Expand Down Expand Up @@ -427,9 +427,9 @@ def run(self, service_name, command=None, *, env=None, volumes=None,
def push(self, service_name, user=None, password=None):
def _push(service):
if self.config.using_docker:
return self._execute_docker('push', service['image'])
return self._execute_docker('push', '--quiet', service['image'])
else:
return self._execute_compose('push', service['name'])
return self._execute_compose('push', '--quiet', service['name'])

if user is not None:
try:
Expand Down

0 comments on commit 59a657d

Please sign in to comment.