-
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.
Add test that checks repo-test workload and view
- Loading branch information
Showing
5 changed files
with
190 additions
and
7 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
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,76 @@ | ||
--- | ||
# This configuration file defines an "Environment" in Feedback Pipeline. | ||
# https://tiny.distro.builders | ||
# | ||
# Environments influence how a workload looks like when installed. | ||
# That's achieved by including specific packages — like coreutils-single — that | ||
# influence the result. | ||
# Environments can also act as base images when monitoring container sizes. | ||
|
||
document: feedback-pipeline-environment | ||
version: 1 | ||
data: | ||
# id is the filename — that automatically prevents collisions for free! | ||
|
||
|
||
### MANDATORY FIELDS ### | ||
|
||
# Name is an identifier for humans | ||
# | ||
# (mandatory field) | ||
name: Test F34 Environment | ||
|
||
# A short description, perhaps hinting the purpose | ||
# | ||
# (mandatory field) | ||
description: A base environment on top of which all test workloads are analyzed. | ||
|
||
# Who maintains it? This is just a freeform string | ||
# for humans to read. In Fedora, a FAS nick is recommended. | ||
# | ||
# (mandatory field) | ||
maintainer: asamalik | ||
|
||
# Different instances of the environment, one per repository. | ||
# | ||
# (mandatory field) | ||
repositories: | ||
- repo-test | ||
|
||
# Packages defining this environment. | ||
# This list includes packages for all | ||
# architectures — that's the one to use by default. | ||
# | ||
# (mandatory field) | ||
packages: | ||
- fedora-repos-eln | ||
- fedora-release-eln | ||
|
||
# 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: | ||
- eln | ||
- eln-but-not-included | ||
- eln-extras | ||
|
||
### 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
document: feedback-pipeline-compose-view | ||
version: 1 | ||
data: | ||
name: Test Package Set | ||
description: Test package set based on F34 | ||
maintainer: bakery | ||
labels: | ||
- eln | ||
repository: repo-test | ||
buildroot_strategy: dep_tracker | ||
|
||
|
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