Some checks failed
Build Packages / Build libostree Backport (push) Failing after 0s
Build Packages / Build bootc Package (push) Has been skipped
Test Build / Test bootc Build (with existing libostree) (push) Failing after 0s
Build Packages / Create Release (push) Has been skipped
Build Packages / Create Artifacts for README Update (push) Has been skipped
27 lines
No EOL
577 B
YAML
27 lines
No EOL
577 B
YAML
# Forgejo Actions Configuration
|
|
# This file configures the CI/CD environment for building bootc and libostree packages
|
|
|
|
# Enable Actions
|
|
actions:
|
|
enabled: true
|
|
|
|
# Default runner settings
|
|
runners:
|
|
# Use Ubuntu 24.04 for all builds
|
|
ubuntu-24.04:
|
|
image: ubuntu:24.04
|
|
# Enable sudo for package installation
|
|
privileged: true
|
|
|
|
# Workflow settings
|
|
workflows:
|
|
# Allow manual workflow triggers
|
|
manual_trigger: true
|
|
|
|
# Enable workflow reuse
|
|
reusable_workflows: true
|
|
|
|
# Artifact retention settings
|
|
artifacts:
|
|
retention_days: 30
|
|
max_size_mb: 1000 |