Revert changes, rattler-build is too different #784
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macOS Conda package | |
on: | |
push: | |
branches-ignore: | |
- "ghxyz" | |
paths: | |
- "conanfile.py" | |
- ".github/workflows/macos-conda.yml" | |
- "source/**" | |
- "!source/qa/python/qa/**" | |
- "environment/cmake/**" | |
- "environment/conda/build.sh" | |
- "environment/conda/conda_build_config.yaml" | |
- "environment/conda/meta.yaml" | |
- "environment/conda/run_test.py" | |
- "environment/script/write_conan_profile.py" | |
jobs: | |
build: | |
name: ${{ matrix.os }} / ${{ matrix.target-platform }} / conda | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 120 | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
matrix: | |
include: | |
- os: "macos-13" | |
target-platform: osx-64 | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
miniforge-version: latest | |
auto-update-conda: false | |
- run: | | |
conda install boa | |
conda mambabuild environment/conda |