Skip to content

Commit

Permalink
CI: Align MacOS dependencies with other builds (pandas-dev#46118)
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke authored Feb 26, 2022
1 parent 0aa9614 commit d4f48a9
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 112 deletions.
1 change: 0 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ variables:
PANDAS_CI: 1

jobs:
# Mac and Linux use the same template
- template: ci/azure/posix.yml
parameters:
name: macOS
Expand Down
6 changes: 3 additions & 3 deletions ci/azure/posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
strategy:
matrix:
py38:
ENV_FILE: ci/deps/azure-macos-38.yaml
ENV_FILE: ci/deps/actions-38.yaml
CONDA_PY: "38"

py39:
ENV_FILE: ci/deps/azure-macos-39.yaml
ENV_FILE: ci/deps/actions-39.yaml
CONDA_PY: "39"

py310:
ENV_FILE: ci/deps/azure-macos-310.yaml
ENV_FILE: ci/deps/actions-310.yaml
CONDA_PY: "310"

steps:
Expand Down
36 changes: 0 additions & 36 deletions ci/deps/azure-macos-310.yaml

This file was deleted.

36 changes: 0 additions & 36 deletions ci/deps/azure-macos-38.yaml

This file was deleted.

36 changes: 0 additions & 36 deletions ci/deps/azure-macos-39.yaml

This file was deleted.

8 changes: 8 additions & 0 deletions ci/setup_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ echo
echo "mamba env create -q --file=${ENV_FILE}"
time mamba env create -q --file="${ENV_FILE}"

# From pyarrow on MacOS
# ImportError: 2): Library not loaded: @rpath/libssl.1.1.dylib
# Referenced from: /Users/runner/miniconda3/envs/pandas-dev/lib/libthrift.0.13.0.dylib
# Reason: image not found
if [[ "$(uname)" == 'Darwin' ]]; then
echo "Update pyarrow for pyarrow on MacOS"
conda install -n pandas-dev -c conda-forge --no-update-deps pyarrow=6
fi

if [[ "$BITS32" == "yes" ]]; then
# activate 32-bit compiler
Expand Down

0 comments on commit d4f48a9

Please sign in to comment.