-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
CI: Remove ASAN job #57886
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
CI: Remove ASAN job #57886
Conversation
I think for now can just remove this until we can root cause it |
- name: "ASAN / UBSAN" | ||
env_file: actions-311-sanitizers.yaml | ||
pattern: "not slow and not network and not single_cpu and not skip_ubsan" | ||
asan_options: "ASAN_OPTIONS=detect_leaks=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.
Could you remove these extra GHA args in this file/other files as well that are only used for this job too?
@@ -68,14 +68,6 @@ jobs: | |||
- name: "Pyarrow Nightly" | |||
env_file: actions-311-pyarrownightly.yaml | |||
pattern: "not slow and not network and not single_cpu" | |||
- name: "ASAN / UBSAN" | |||
env_file: actions-311-sanitizers.yaml |
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.
I guess we can remove this file too?
If you want to come back to this at a later time to debug and not completely remove some of the configurations, you could do: --- a/.github/workflows/unit-tests.yml
+++ b/.github/workflows/unit-tests.yml
@@ -160,7 +160,7 @@ jobs:
- name: Test (not single_cpu)
uses: ./.github/actions/run-tests
- if: ${{ matrix.name != 'Pypy' }}
+ if: ${{ matrix.name != 'Pypy' || matrix.name != 'ASAN / UBSAN'}}
with:
preload: ${{ matrix.preload }}
asan_options: ${{ matrix.asan_options }} |
Thanks @WillAyd |
Backport PR #57886: CI: Remove ASAN job Co-authored-by: William Ayd <will_ayd@innobi.io>
No description provided.