raulcd commented on issue #47819: URL: https://github.com/apache/arrow/issues/47819#issuecomment-3402238735
It seems like both the PR and the tag use the same commit and triggers the jobs. The tag ones get cancelled due to a "high priority task" on the same commit. The PR one does not contain ARROW_VERSION on the environment, [see for the PR](https://github.com/apache/arrow/actions/runs/18499234357/job/52711311440#step:4:79): ``` + echo YUM_TARGETS=almalinux-9 + echo TARGET=almalinux-9 + '[' branch = tag ']' ... env: DOCKER_VOLUME_PREFIX: .docker/ DISTRIBUTION: almalinux ARCHITECTURE: amd64 TASK_NAMESPACE: yum DISTRIBUTION_VERSION: 9 YUM_TARGETS: almalinux-9 TARGET: almalinux-9 ``` but the PR one does: ``` + '[' tag = tag ']' + version=22.0.0-rc0 + echo ARROW_VERSION=22.0.0-rc0 ... env: DOCKER_VOLUME_PREFIX: .docker/ DISTRIBUTION: almalinux ARCHITECTURE: arm64 TASK_NAMESPACE: yum DISTRIBUTION_VERSION: 9 YUM_TARGETS: almalinux-9-aarch64 TARGET: almalinux-9-aarch64 ARROW_VERSION: 22.0.0-rc0 ``` I am currently re-running the tag cancelled jobs here: https://github.com/apache/arrow/actions/runs/18499225752 We should prevent the PR to cancel the tag jobs -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
