Skip to content

Commit 9664752

Browse files
committed
GH-41119: [Archery][Packaging][CI] Avoid using ARCHERY_DEBUG=1 on Windows wheels as --progress flag is not supported on Docker on Windows
1 parent 376a271 commit 9664752

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

dev/tasks/macros.jinja

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
{%- macro github_header() -%}
18+
{%- macro github_header(archery_debug=True) -%}
1919
# NOTE: must set "Crossbow" as name to have the badge links working in the
2020
# github comment reports!
2121
name: Crossbow
@@ -25,7 +25,9 @@ on:
2525
- "*-github-*"
2626

2727
env:
28+
{% if archery_debug %}
2829
ARCHERY_DEBUG: 1
30+
{% endif %}
2931
ARCHERY_USE_DOCKER_CLI: 1
3032
{% endmacro %}
3133

dev/tasks/python-wheels/github.windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
{% import 'macros.jinja' as macros with context %}
1919

20-
{{ macros.github_header() }}
20+
{{ macros.github_header(archery_debug=False) }}
2121

2222
jobs:
2323
build:

0 commit comments

Comments
 (0)