Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/soerenschneider/batch-nfpm
Allows batch building multiple releases using NFPM
https://github.com/soerenschneider/batch-nfpm
batch-processing nfpm release-automation releases
Last synced: 13 days ago
JSON representation
Allows batch building multiple releases using NFPM
- Host: GitHub
- URL: https://github.com/soerenschneider/batch-nfpm
- Owner: soerenschneider
- License: apache-2.0
- Created: 2020-01-24T17:57:35.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-03T18:16:54.000Z (over 4 years ago)
- Last Synced: 2024-10-25T10:01:51.776Z (2 months ago)
- Topics: batch-processing, nfpm, release-automation, releases
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# batch nfpm
## Problem statement
## Run example
```bash
DIR=/tmp/batchnfpm
if [ ! -d ${DIR} ]; then
mkdir ${DIR}
chcon -Rt svirt_sandbox_file_t ${DIR} || true
chmod 777 -R ${DIR}
fiNFPM_CONFIG=https://gitlab.com/soerenschneider/batch-nfpm/raw/master/example-config.yaml
podman run -v ${DIR}:${DIR} -e NFPM_CONFIG="${NFPM_CONFIG}" registry.gitlab.com/soerenschneider/batch-nfpm
```## Example config
```yaml
builds:
artifacts_path: /tmp/batchnfpm
clone_path: /tmp/repositories
nfpm_config:
local_path: /tmp/nfpm-configs
fetch_resource: https://gitlab.com/soerenschneider/nfpm-configs.git
build_configurations:
- hoster: github
owner: prometheus
project: prometheus
commands:
- make build
```## Config parameters
## How does it work