-
Notifications
You must be signed in to change notification settings - Fork 4
41 lines (37 loc) · 1.11 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
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: prefix-dev/[email protected]
with:
recipe-path: environment/conda/meta.yaml
artifact-name: lue-${{ matrix.target-platform }}
build-args: --target-platform ${{ matrix.target-platform }}