-
Notifications
You must be signed in to change notification settings - Fork 1
58 lines (48 loc) · 1.47 KB
/
conda-build.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
name: Conda Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Miniconda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: 3.8
channels: conda-forge,defaults,bioconda
- name: Create conda environment
run: conda env create -f environment.yml
- name: Install mamba, boa and conda-build
run: |
source $CONDA/etc/profile.d/conda.sh
conda activate quantmsutils
conda install conda-forge::mamba
conda install conda-forge::boa
mamba install conda-build anaconda-client
shell: bash -l {0}
- name: Activate conda environment and build package
run: |
source $CONDA/etc/profile.d/conda.sh
conda activate quantmsutils
conda mambabuild recipe
shell: bash -l {0}
- name: Install the built package
run: |
source $CONDA/etc/profile.d/conda.sh
conda activate quantmsutils
mamba install --use-local quantms-utils
shell: bash -l {0}
- name: Output package info
run: |
source $CONDA/etc/profile.d/conda.sh
conda activate quantmsutils
conda list
shell: bash -l {0}
- name: Test the installed package
run: |
conda activate quantmsutils
quantmsutilsc --help
quantmsutilsc --version
shell: bash -l {0}