-
Notifications
You must be signed in to change notification settings - Fork 4
48 lines (39 loc) · 1.22 KB
/
macos-conda.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
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:
strategy:
matrix:
os: ["macos-13"]
python-version: ["3.9"]
fail-fast: true
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} / python - ${{ matrix.python-version }} / conda
steps:
- name: Checkout LUE
uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
auto-update-conda: true
python-version: ${{ matrix.python-version }}
channels: conda-forge
- name: Build
shell: bash -l {0}
run: |
conda install boa
conda mambabuild environment/conda --override-channels --channel conda-forge