-
-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (56 loc) · 1.82 KB
/
conda_package_dependencies.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
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Conda Package Dependencies
on:
workflow_dispatch
jobs:
build:
name: ${{ matrix.recipe }} for py${{ matrix.python }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
python: [ '3.8', '3.9', '3.10', '3.11' ]
recipe: [ 'tardis-client', 'tardis-dev', 'ray' ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup miniconda3
uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
auto-update-conda: true
python-version: ${{ matrix.python }}
activate-environment: test
channels: conda-forge, mesonomics
- name: configure recipe conda environment
run: |
conda create -n recipe python=${{ matrix.python }}
conda install -y -n recipe conda-build anaconda-client
- name: conda info
run: |
conda info
conda list
- name: conda build for ${{ matrix.os }}
run: |
conda activate recipe
conda build --output-folder . -c conda-forge --python ${{ matrix.python }} conda/${{ matrix.recipe }}
- name: upload windows
if: ${{ matrix.os == 'windows-latest' }}
run: |
conda activate recipe
anaconda upload win-64/*.tar.bz2
- name: upload linux
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
conda activate recipe
anaconda upload linux-64/*.tar.bz2
- name: upload macos
if: ${{ matrix.os == 'macos-latest' }}
run: |
conda activate recipe
anaconda upload osx-64/*.tar.bz2