-
Notifications
You must be signed in to change notification settings - Fork 18
63 lines (51 loc) · 1.34 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Conda
on:
workflow_dispatch:
# pull_request:
push:
branches:
- master
paths-ignore:
- '**.md'
- '**.rst'
- '**.sh'
jobs:
build:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, windows-2019, macos-latest]
runs-on: ${{ matrix.platform }}
# The setup-miniconda action needs this to activate miniconda
defaults:
run:
shell: "bash -l {0}"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cache conda
uses: actions/cache@v3
with:
path: ~/conda_pkgs_dir
key: ${{matrix.os}}-conda-pkgs-${{hashFiles('**/conda/meta.yaml')}}
- name: Get conda
uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.9
channels: conda-forge
channel-priority: strict
use-only-tar-bz2: true
auto-activate-base: true
- name: Prepare
run: conda install conda-build conda-verify
- name: Build and test
run: conda build conda/
- name: Install
run: conda install -c ${CONDA_PREFIX}/conda-bld/ cccc
- name: Test install (posix)
if: runner.os != 'Windows'
run: cccc
- name: Test install (windows)
if: runner.os == 'Windows'
run: cccc.exe