-
Notifications
You must be signed in to change notification settings - Fork 11
55 lines (50 loc) · 1.22 KB
/
package_macos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: "Package macOS"
on:
workflow_dispatch:
pull_request:
paths-ignore:
- "docs/**"
- "examples/**"
- "*.md"
branches:
- main
push:
paths-ignore:
- "docs/**"
- "examples/**"
- "*.md"
branches:
- main
jobs:
#############################################################################
# Conda
#############################################################################
conda-cpu-py312:
name: "Conda: py3.12"
uses: ./.github/workflows/_conda_cpu_build.yml
with:
os: macos-latest
python-version: "3.12"
artifact: conda-cpu-py312
conda-cpu-py311:
name: "Conda: py3.11"
uses: ./.github/workflows/_conda_cpu_build.yml
with:
os: macos-latest
python-version: "3.11"
artifact: conda-cpu-py311
conda-cpu-py310:
name: "Conda: py3.10"
uses: ./.github/workflows/_conda_cpu_build.yml
with:
os: macos-latest
python-version: "3.10"
artifact: conda-cpu-py310
conda-cpu-py310-test:
name: "Test Conda: py3.10"
needs: [ "conda-cpu-py310" ]
uses: ./.github/workflows/_conda_cpu_test.yml
with:
os: macos-latest
python-version: "3.10"
artifact: conda-cpu-py310