-
Notifications
You must be signed in to change notification settings - Fork 1.3k
100 lines (92 loc) · 3.93 KB
/
Copy pathconda.yaml
File metadata and controls
100 lines (92 loc) · 3.93 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# This is a basic workflow to help you get started with Actions
name: conda
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
pull_request:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build-pytest-package-ubuntu:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v1
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: "3.11"
auto-update-conda: true
- name: install-conda-build
run: conda install -y python=3.11 conda-build anaconda-client
- name: conda-config
run: |
conda config --prepend channels conda-forge
conda config --prepend channels nusdbsystem
conda config --set anaconda_upload no
conda config --show channels
- name: build-pytest
run: conda-build tool/conda/singa --python 3.11 -c nusdbsystem -c conda-forge
env:
TEST_COMMAND: pytest --ignore=test/python/test_onnx_backend.py --cov=$PREFIX/lib/python3.11/site-packages/singa --cov-report=xml && codecov --flags singa-python || exit 1
- name: upload-package
env:
ANACONDA_UPLOAD_TOKEN: ${{ secrets.ANACONDA_UPLOAD_TOKEN }}
if: ${{ env.ANACONDA_UPLOAD_TOKEN }}
run: |
CONDA_BASE=$(conda info --base)
shopt -s nullglob
packages=("$CONDA_BASE"/conda-bld/linux-64/singa-*.conda "$CONDA_BASE"/conda-bld/linux-64/singa-*.tar.bz2)
test ${#packages[@]} -gt 0
"$CONDA_BASE/bin/anaconda" -t $ANACONDA_UPLOAD_TOKEN upload -u nusdbsystem -l main "${packages[@]}" --force
#
build-pytest-package-macos:
runs-on: macos-15-intel
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v1
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: "3.11"
auto-update-conda: true
- name: install-conda-build
run: conda install -y python=3.11 conda-build anaconda-client
- name: conda-config
run: |
conda config --prepend channels conda-forge
conda config --prepend channels nusdbsystem
conda config --set anaconda_upload no
conda config --show channels
- name: build-pytest
run: conda-build tool/conda/singa --python 3.11 -c nusdbsystem -c conda-forge
env:
TEST_COMMAND: pytest --ignore=test/python/test_onnx_backend.py --cov=$PREFIX/lib/python3.11/site-packages/singa --cov-report=xml && codecov --flags singa-python || exit 1
- name: upload-package
env:
ANACONDA_UPLOAD_TOKEN: ${{ secrets.ANACONDA_UPLOAD_TOKEN }}
if: ${{ env.ANACONDA_UPLOAD_TOKEN }}
run: |
CONDA_BASE=$(conda info --base)
shopt -s nullglob
packages=("$CONDA_BASE"/conda-bld/osx-*/singa-*.conda "$CONDA_BASE"/conda-bld/osx-*/singa-*.tar.bz2)
test ${#packages[@]} -gt 0
"$CONDA_BASE/bin/anaconda" -t $ANACONDA_UPLOAD_TOKEN upload -u nusdbsystem -l main "${packages[@]}" --force