Skip to content

Commit

Permalink
apacheGH-44253: [CI][Release][Python] Do not verify Python on Ubuntu …
Browse files Browse the repository at this point in the history
…20.04
  • Loading branch information
raulcd committed Sep 30, 2024
1 parent 6f64af5 commit 5b3fbd0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions dev/tasks/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -922,6 +922,9 @@ tasks:
"js",
"python",
"ruby"] %}
# Skip verification for python and integration on Ubuntu 20.04
# GH-44253. Remove once we drop support for 20.04
{% if not (target in ["python", "integration"] and version == "20.04") %}
verify-rc-source-{{ target }}-linux-{{ distribution }}-{{ version }}-amd64:
ci: github
template: verify-rc/github.linux.amd64.docker.yml
Expand All @@ -930,15 +933,20 @@ tasks:
{{ distribution.upper() }}: "{{ version }}"
target: {{ target }}
distro: {{ distribution }}
{% endif %}
{% endfor %}

{% for target in ["jars", "wheels"] %}
# Skip verification for wheels on Ubuntu 20.04
# GH-44253. Remove once we drop support for 20.04
{% if not (target == "wheels" and version == "20.04") %}
verify-rc-binaries-{{ target }}-linux-{{ distribution }}-{{ version }}-amd64:
ci: github
template: verify-rc/github.linux.amd64.docker.yml
params:
target: {{ target }}
distro: {{ distribution }}
{% endif %}
{% endfor %}

{% endfor %}
Expand Down

0 comments on commit 5b3fbd0

Please sign in to comment.