aboutsummaryrefslogtreecommitdiffstats
path: root/.conda-forge.yml
blob: d0c808eab30ae434355d99e6e63fd368357ffa5a (plain) (blame)
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
# This file defines the configuration for building conda packages with CI.
# The actual files for running the CI are created/updated by "conda-smithy".
# You should edit only this file and the recipe files (in recipe_dir, below)
# and not any of the automatically-generated files in e.g. .ci_support,
# .scripts, or .github/workflows/conda-build.yml.

# To update the generated conda CI files after a change here or in the recipe,
# or because of updates to conda-smithy, run
#
#   conda-smithy rerender --feedstock_config .conda-forge.yml -c auto
#   git rm -f .github/workflows/automerge.yml .github/workflows/webservices.yml .circleci/config.yml
#   git commit --amend -s
#
# which will automatically commit any changes.
# ***** RUN THE ABOVE TO CHECK FOR UPDATES WHENEVER EDITS ARE MADE HERE *****

# The CI will build conda packages for commits and pull requests, and it will
# upload the packages to Anaconda Cloud on commits to the branch specified
# in the configuration below. The channel and label that the packages are
# uploaded to are set in the recipe directory in conda_build_config.yaml.
# Uploads to Anaconda Cloud also require an API token to be set to the
# BINSTAR_TOKEN environment variable. Documentation for token generation:
# https://docs.anaconda.com/anacondaorg/user-guide/tasks/work-with-accounts/#creating-access-tokens
# To populate BINSTAR_TOKEN for CI jobs, add the token as a secret, e.g.:
# https://docs.github.com/en/actions/reference/encrypted-secrets

# See https://conda-forge.org/docs/maintainer/conda_forge_yml.html for
# documentation on possible keys and values.

clone_depth: 0
github_actions:
  store_build_artifacts: true
os_version:
  linux_64: cos7
provider:
  linux: github_actions
  osx: github_actions
  win: github_actions
recipe_dir: .packaging/conda_recipe
# skip unnecessary files since this is not a full-fledged conda-forge feedstock
skip_render:
  - README.md
  - LICENSE.txt
  - .gitattributes
  - .gitignore
  - build-locally.py
  - LICENSE
# enable uploads to Anaconda Cloud from specified branches only
# ***** UPDATE THIS FOR MAINTENANCE BRANCHES ********************************
upload_on_branch: master