conda-forge / conda-forge-feedstock-ops

A package of containerized feedstock maintenance operations
BSD 3-Clause "New" or "Revised" License
0 stars 1 forks source link

conda-forge-feedstock-ops

tests pre-commit.ci status

A package of containerized feedstock maintenance operations

Getting Started & Usage

To use this package, you should run it through the corresponding Python package.

First, install the package:

conda install -c conda-forge conda-forge-feedstock-ops

Then for your feedstock, you can call commands like this:

from conda_forge_feedstock_ops.rerender import rerender

commit_msg = rerender(path_to_feedstock)

Container Setup

This package works by running commands inside of a container on-the-fly in order to perform operations on feedstocks in the presence of sensitive data.

Input

Data can be input into the container via one of three mechanisms

  1. Passing data as arguments over the command line.
  2. Passing data via stdin.
  3. Mounting a directory on the host to /cf_feedstock_ops_dir in the container. This mount is read-only by default.

Output

Data is returned to the calling process via one of two ways

  1. The container can print a json blob to stdout. This json blob must have only two top-level keys, error and data. Any output data should be put in the data key. The error key is discussed below.
  2. The container can put data in the /cf_feedstock_ops_dir if it is not mounted as read-only.

IMPORTANT: The container can only print a valid json blob to stdout. All other output should be sent to stderr.

Error Handling

Errors can be handled via

  1. Exiting the container process with a non-zero exit code.
  2. Setting the error key in the json blob sent to stdout.

Errors in running the container raise a ContainerRuntimeError error.

Building Your Own Container

In order to make your own container that uses this package, you should copy and edit the Dockerfile in this repo.

There are a few important points to keep in mind when doing this.