Skip to content

Commit

Permalink
conda: build all pythons in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
tvandera committed Jul 4, 2024
1 parent 35f766e commit 3d84b6e
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ on:

jobs:
conda-build:
name: Build Conda Package on ${{ matrix.os }}
name: Build Conda Package on ${{ matrix.os }} for Python ${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
python: [3.8, 3.9, 3.10, 3.11]
defaults:
run:
shell: bash -el {0}
Expand All @@ -26,14 +27,7 @@ jobs:
channels: conda-forge
activate-environment: devtools
environment-file: conda-recipes/devtools.yml
- run: conda info
- run: conda list
- run: conda config --show
- name: Conda Info
run: |
conda info
- run: git describe --tags
- name: Run 'conda build'
run: |
conda build -c vanderaa smurff
conda build -c vanderaa --python ${{ matrix.python }} smurff
working-directory: conda-recipes

0 comments on commit 3d84b6e

Please sign in to comment.