Skip to content

Commit 726cd01

Browse files
mroeschkeyehoshuadimarsky
authored andcommitted
CI: Temporarily build pandas with N_JOBS=1 to avoid flakiness (pandas-dev#47341)
* CI: Temporary build pandas with N_JOBS=1 to avoid flakiness * Check again
1 parent 4318a58 commit 726cd01

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/build_pandas/action.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,6 @@ runs:
1717
shell: bash -el {0}
1818
env:
1919
# Cannot use parallel compilation on Windows, see https://github.com/pandas-dev/pandas/issues/30873
20-
N_JOBS: ${{ runner.os == 'Windows' && 1 || 2 }}
20+
# GH 47305: Parallel build causes flaky ImportError: /home/runner/work/pandas/pandas/pandas/_libs/tslibs/timestamps.cpython-38-x86_64-linux-gnu.so: undefined symbol: pandas_datetime_to_datetimestruct
21+
N_JOBS: 1
22+
#N_JOBS: ${{ runner.os == 'Windows' && 1 || 2 }}

0 commit comments

Comments
 (0)