Some checks are pending
Checks / Spelling (push) Waiting to run
Checks / Python Linters (push) Waiting to run
Checks / Shell Linters (push) Waiting to run
Checks / 📦 Packit config lint (push) Waiting to run
Checks / 🔍 Check for valid snapshot urls (push) Waiting to run
Checks / 🔍 Check JSON files for formatting consistency (push) Waiting to run
Generate / Documentation (push) Waiting to run
Generate / Test Data (push) Waiting to run
Tests / Unittest (push) Waiting to run
Tests / Assembler test (legacy) (push) Waiting to run
Tests / Smoke run: unittest as normal user on default runner (push) Waiting to run
- Add build status tracking with state machine - Implement build logging and monitoring system - Add build progress tracking and cancellation support - Create artifact management system with SQLite database - Fix stage file extensions for proper Python imports - Enhance resource allocation with actual resource tracking - Add comprehensive testing for all components
43 lines
1.1 KiB
JSON
Executable file
43 lines
1.1 KiB
JSON
Executable file
{
|
|
"version": "2",
|
|
"pipelines": [
|
|
{
|
|
"name": "debian-base",
|
|
"build": "name:debian-base",
|
|
"stages": [
|
|
{
|
|
"name": "org.osbuild.debootstrap",
|
|
"options": {
|
|
"suite": "bookworm",
|
|
"mirror": "http://deb.debian.org/debian",
|
|
"arch": "amd64",
|
|
"variant": "minbase",
|
|
"apt_proxy": "http://192.168.1.101:3142"
|
|
}
|
|
},
|
|
{
|
|
"name": "org.osbuild.apt",
|
|
"options": {
|
|
"packages": ["systemd", "systemd-sysv", "dbus", "udev"],
|
|
"recommends": false,
|
|
"update": true,
|
|
"apt_proxy": "http://192.168.1.101:3142"
|
|
}
|
|
},
|
|
{
|
|
"name": "org.osbuild.ostree.commit",
|
|
"options": {
|
|
"repository": "debian-atomic",
|
|
"branch": "debian/bookworm",
|
|
"subject": "Debian Bookworm base system",
|
|
"metadata": {
|
|
"version": "12",
|
|
"variant": "minbase",
|
|
"arch": "amd64"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|