-
Notifications
You must be signed in to change notification settings - Fork 37
36 lines (33 loc) · 987 Bytes
/
test-conda-build.yml
File metadata and controls
36 lines (33 loc) · 987 Bytes
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
name: conda build test
on:
push:
branches:
- master
- devel
jobs:
build:
name: Build package
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
target-platform: linux-64
- os: ubuntu-24.04-arm
target-platform: linux-aarch64
- os: macos-15
target-platform: osx-64
- os: macos-latest
target-platform: osx-arm64
steps:
- uses: actions/checkout@v4
- name: Build conda package
uses: prefix-dev/rattler-build-action@v0.2.33
with:
# needs to be unique for each matrix entry
recipe-path: recipe/
artifact-name: package-${{ matrix.target-platform }}
build-args: --target-platform ${{ matrix.target-platform }}${{ matrix.target-platform == 'linux-aarch64' && ' --no-test' || '' }}
- name: Show built packages
run: |
ls -lh rattler-build/**/*.conda || true