Skip to content

Commit

Permalink
Use boa to build conda packages. (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtilly authored Aug 7, 2023
1 parent 1ba081d commit 693b105
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/conda-build-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ jobs:
- name: Build conda package
shell: pwsh
run: |
mamba install -n base -y conda-build
conda build -m .ci_support/${{ matrix.CONDA_BUILD_YML }}.yaml conda.recipe
mamba install -n base -y conda-build boa
conda mambabuild -m .ci_support/${{ matrix.CONDA_BUILD_YML }}.yaml conda.recipe
4 changes: 2 additions & 2 deletions .github/workflows/macos-conda-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -exo pipefail

mamba install -y conda-build
mamba install -y conda-build boa

# Don't test cross-compiled result (there is no emulation) and use the latest MacOS SDK.
if grep -q "osx-arm64" .ci_support/${CONDA_BUILD_YML}.yaml; then
Expand All @@ -13,4 +13,4 @@ CONDA_BUILD_SYSROOT:
- "${CONDA_BUILD_SYSROOT}"
EOF
fi
conda build -m .ci_support/${CONDA_BUILD_YML}.yaml conda.recipe ${CONDA_BUILD_ARGS:-}
conda mambabuild -m .ci_support/${CONDA_BUILD_YML}.yaml conda.recipe ${CONDA_BUILD_ARGS:-}

0 comments on commit 693b105

Please sign in to comment.