File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 6
6
jobs :
7
7
deploy-conda :
8
8
strategy :
9
+ fail-fast : false
9
10
matrix :
10
11
include :
11
12
- os : ubuntu-latest
24
25
# Required for conda-incubator/setup-miniconda@v3
25
26
shell : bash -el {0}
26
27
steps :
27
- - uses : actions/checkout@v3
28
+ - uses : actions/checkout@v4
28
29
with :
29
30
fetch-depth : 0
30
31
- name : Get conda
43
44
if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then
44
45
conda build --user microsoft . -m conda_build_config_osx_arm64.yaml
45
46
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
47
49
conda build --user microsoft . -m conda_build_config_linux_aarch64.yaml
48
50
else
49
51
conda build --user microsoft .
You can’t perform that action at this time.
0 commit comments