Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
jobs:
deploy-conda:
strategy:
fail-fast: false
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

helps us to identify if only one job in the matrix fails or all.

matrix:
include:
- os: ubuntu-latest
Expand All @@ -24,7 +25,7 @@ jobs:
# Required for conda-incubator/setup-miniconda@v3
shell: bash -el {0}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

drive-by

with:
fetch-depth: 0
- name: Get conda
Expand All @@ -43,7 +44,8 @@ jobs:
if [ "${{ matrix.target-platform }}" == "osx-arm64" ]; then
conda build --user microsoft . -m conda_build_config_osx_arm64.yaml
elif [ "${{ matrix.target-platform }}" == "linux-aarch64" ]; then
conda install cross-python_linux-aarch64
# Needs to be pinned until https://github.com/conda-forge/cross-python-feedstock/issues/93 is resolved.
conda install cross-python_linux-aarch64=3.12=47_cpython
conda build --user microsoft . -m conda_build_config_linux_aarch64.yaml
else
conda build --user microsoft .
Expand Down
Loading