-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed configs relevant to test not to reference eln.
- Loading branch information
Showing
4 changed files
with
106 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
--- | ||
# This configuration file defines a "Workload" in Feedback Pipeline. | ||
# https://tiny.distro.builders | ||
# | ||
# Workload is a set of packages with a purpouse that someone cares about. | ||
# They might want to monitor it for the install size, dependencies that get | ||
# pulled in, etc. | ||
|
||
document: feedback-pipeline-workload | ||
version: 1 | ||
data: | ||
# id is the filename — that automatically prevents collisions for free! | ||
|
||
|
||
### MANDATORY FIELDS ### | ||
|
||
# Name is an identifier for humans | ||
# | ||
# (mandatory field) | ||
name: Bash | ||
|
||
# A short description, perhaps hinting the purpose | ||
# | ||
# (mandatory field) | ||
description: Bash | ||
|
||
# Who maintains it? This is just a freeform string | ||
# for humans to read. In Fedora, a FAS nick is recommended. | ||
# | ||
# (mandatory field) | ||
maintainer: asamalik | ||
|
||
# Packages defining this workload. | ||
# This list includes packages for all | ||
# architectures — that's the one to use by default. | ||
# | ||
# (mandatory field) | ||
packages: | ||
- bash | ||
|
||
# Labels connect things together. | ||
# Workloads get installed in environments with the same label. | ||
# They also get included in views with the same label. | ||
# | ||
# (mandatory field) | ||
labels: | ||
- test | ||
options: | ||
- strict | ||
|
||
|
||
### OPTIONAL FIELDS ### | ||
|
||
# Architecture-specific packages. | ||
# | ||
# (optional field) | ||
#arch_packages: | ||
# x86_64: | ||
# - arch-specific-package | ||
|
||
# Extra installation options. | ||
# The following are now supported: | ||
# - "include-docs" - include documentation packages | ||
# - "include-weak-deps" - automatically pull in "recommends" weak dependencies | ||
# | ||
# (optional field) | ||
#options: | ||
#- option |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters