Skip to content

Commit

Permalink
Revert changes to if in github.linux.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lysnikolaou committed Sep 17, 2024
1 parent 8a24b39 commit 2a62d37
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions dev/tasks/python-wheels/github.linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ jobs:

# TODO(kszucs): auditwheel show
- name: Test wheel
if: '{{ python_abi_tag }}' != 'cp313t'
if: |
'{{ python_abi_tag }}' != 'cp313t'
shell: bash
run: |
source arrow/ci/scripts/util_enable_core_dumps.sh
Expand All @@ -67,7 +68,8 @@ jobs:
# Free-threaded wheels need to be tested using a different docker-compose service
- name: Test free-threaded wheel
if: '{{ python_abi_tag }}' == 'cp313t'
if: |
'{{ python_abi_tag }}' == 'cp313t'
shell: bash
run: |
source arrow/ci/scripts/util_enable_core_dumps.sh
Expand All @@ -76,7 +78,8 @@ jobs:
- name: Test wheel on AlmaLinux 8
shell: bash
if: '{{ python_version }}' == '3.9'
if: |
'{{ python_version }}' == '3.9'
env:
ALMALINUX: "8"
run: |
Expand All @@ -91,7 +94,8 @@ jobs:
- name: Test wheel on Ubuntu 20.04
shell: bash
if: '{{ python_version }}' == '3.9'
if: |
'{{ python_version }}' == '3.9'
env:
UBUNTU: "20.04"
run: |
Expand All @@ -105,7 +109,8 @@ jobs:
- name: Test wheel on Ubuntu 22.04
shell: bash
if: '{{ python_version }}' == '3.10'
if: |
'{{ python_version }}' == '3.10'
env:
UBUNTU: "22.04"
run: |
Expand Down

0 comments on commit 2a62d37

Please sign in to comment.