-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
GH-41119: [Archery][Packaging][CI] Avoid using --progress flag on Docker on Windows on archery #41120
Conversation
|
@github-actions crossbow submit wheel-windows-* |
Revision: 82d4ade Submitted crossbow builds: ursacomputing/crossbow @ actions-d7303f0760
|
@kou are you ok with this? This is needed for 16.0.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
Or can we remove --progress on Windows? |
…on Windows wheels as --progress flag is not supported on Docker on Windows
@github-actions crossbow submit wheel-windows-* |
Revision: af01e7b Submitted crossbow builds: ursacomputing/crossbow @ actions-28a241eefe
|
@kou I've updated the PR to do that. |
@github-actions crossbow submit wheel-windows-* |
This reverts commit f6580cd.
Revision: f6580cd Submitted crossbow builds: ursacomputing/crossbow @ actions-17855e7166
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
No --progress=plain
:
https://github.com/ursacomputing/crossbow/actions/runs/8637649581/job/23680319104#step:7:72
DEBUG:archery:Executing `['docker', 'build', '--build-arg', 'BUILDKIT_INLINE_CACHE=1', '--build-arg', 'python=3.11', '--build-arg', 'vcpkg=a42af01b72c28a8e1d7b48107b33e4f286a55ef6', '-f', 'D:\\a\\crossbow\\crossbow\\arrow\\ci/docker/python-wheel-windows-vs2019.dockerfile', '-t', 'ghcr.io/ursacomputing/arrow:python-3.11-wheel-windows-vs2019-vcpkg-a42af01b72c28a8e1d7b48107b33e4f286a55ef6-2024-04-11', 'D:\\a\\crossbow\\crossbow\\arrow']`
After merging your PR, Conbench analyzed the 4 benchmarking runs that have been run so far on merge-commit 06f0e0c. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. |
…ker on Windows on archery (#41120) ### Rationale for this change Windows wheels are currently failing due to the change on `ARCHERY_DEBUG=1` by default. This uses `--progress` on `docker build` which is not supported on Windows. ### What changes are included in this PR? Do not use `--progress` on the Windows builds. ### Are these changes tested? Yes on CI via archery. ### Are there any user-facing changes? No * GitHub Issue: #41119 Lead-authored-by: Raúl Cumplido <[email protected]> Co-authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
…on Docker on Windows on archery (apache#41120) ### Rationale for this change Windows wheels are currently failing due to the change on `ARCHERY_DEBUG=1` by default. This uses `--progress` on `docker build` which is not supported on Windows. ### What changes are included in this PR? Do not use `--progress` on the Windows builds. ### Are these changes tested? Yes on CI via archery. ### Are there any user-facing changes? No * GitHub Issue: apache#41119 Lead-authored-by: Raúl Cumplido <[email protected]> Co-authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
…on Docker on Windows on archery (apache#41120) ### Rationale for this change Windows wheels are currently failing due to the change on `ARCHERY_DEBUG=1` by default. This uses `--progress` on `docker build` which is not supported on Windows. ### What changes are included in this PR? Do not use `--progress` on the Windows builds. ### Are these changes tested? Yes on CI via archery. ### Are there any user-facing changes? No * GitHub Issue: apache#41119 Lead-authored-by: Raúl Cumplido <[email protected]> Co-authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
…on Docker on Windows on archery (apache#41120) ### Rationale for this change Windows wheels are currently failing due to the change on `ARCHERY_DEBUG=1` by default. This uses `--progress` on `docker build` which is not supported on Windows. ### What changes are included in this PR? Do not use `--progress` on the Windows builds. ### Are these changes tested? Yes on CI via archery. ### Are there any user-facing changes? No * GitHub Issue: apache#41119 Lead-authored-by: Raúl Cumplido <[email protected]> Co-authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
…on Docker on Windows on archery (apache#41120) ### Rationale for this change Windows wheels are currently failing due to the change on `ARCHERY_DEBUG=1` by default. This uses `--progress` on `docker build` which is not supported on Windows. ### What changes are included in this PR? Do not use `--progress` on the Windows builds. ### Are these changes tested? Yes on CI via archery. ### Are there any user-facing changes? No * GitHub Issue: apache#41119 Lead-authored-by: Raúl Cumplido <[email protected]> Co-authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
…on Docker on Windows on archery (apache#41120) ### Rationale for this change Windows wheels are currently failing due to the change on `ARCHERY_DEBUG=1` by default. This uses `--progress` on `docker build` which is not supported on Windows. ### What changes are included in this PR? Do not use `--progress` on the Windows builds. ### Are these changes tested? Yes on CI via archery. ### Are there any user-facing changes? No * GitHub Issue: apache#41119 Lead-authored-by: Raúl Cumplido <[email protected]> Co-authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
…on Docker on Windows on archery (apache#41120) ### Rationale for this change Windows wheels are currently failing due to the change on `ARCHERY_DEBUG=1` by default. This uses `--progress` on `docker build` which is not supported on Windows. ### What changes are included in this PR? Do not use `--progress` on the Windows builds. ### Are these changes tested? Yes on CI via archery. ### Are there any user-facing changes? No * GitHub Issue: apache#41119 Lead-authored-by: Raúl Cumplido <[email protected]> Co-authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
Rationale for this change
Windows wheels are currently failing due to the change on
ARCHERY_DEBUG=1
by default. This uses--progress
ondocker build
which is not supported on Windows.What changes are included in this PR?
Do not use
--progress
on the Windows builds.Are these changes tested?
Yes on CI via archery.
Are there any user-facing changes?
No
unknown flag: --progress
on docker build #41119