File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1616 python -m pip install -e . --no-build-isolation --no-use-pep517 --no-index
1717 shell : bash -el {0}
1818 env :
19- # https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
20- N_JOBS : ${{ runner.os == 'macOS' && 3 || 2 }}
19+ # Cannot use parallel compilation on Windows, see https://github.com/pandas-dev/pandas/issues/30873
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 }}
Original file line number Diff line number Diff line change 3030 environment-name : ${{ inputs.environment-name }}
3131 extra-specs : ${{ inputs.extra-specs }}
3232 channels : conda-forge
33- channel-priority : ' strict'
33+ channel-priority : ${{ runner.os == 'macOS' && 'flexible' || ' strict' }}
3434 condarc-file : ci/condarc.yml
3535 cache-env : true
3636 cache-downloads : true
You can’t perform that action at this time.
0 commit comments