Skip to content

Commit e755311

Browse files
authored
devops: fix conda release pipeline (linux-arm64) (#2637)
1 parent 6ef181b commit e755311

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
jobs:
77
deploy-conda:
88
strategy:
9+
fail-fast: false
910
matrix:
1011
include:
1112
- os: ubuntu-latest
@@ -24,7 +25,7 @@ jobs:
2425
# Required for conda-incubator/setup-miniconda@v3
2526
shell: bash -el {0}
2627
steps:
27-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2829
with:
2930
fetch-depth: 0
3031
- name: Get conda
@@ -43,7 +44,8 @@ jobs:
4344
if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then
4445
conda build --user microsoft . -m conda_build_config_osx_arm64.yaml
4546
elif [ "${{ matrix.target-platform }}" == "linux-aarch64" ]; then
46-
conda install cross-python_linux-aarch64
47+
# Needs to be pinned until https://github.com/conda-forge/cross-python-feedstock/issues/93 is resolved.
48+
conda install cross-python_linux-aarch64=3.12=47_cpython
4749
conda build --user microsoft . -m conda_build_config_linux_aarch64.yaml
4850
else
4951
conda build --user microsoft .

0 commit comments

Comments
 (0)