Some checks failed
CI / markdown-lint (push) Failing after 15s
- Added comprehensive hardware research documentation - Created bootloader analysis and driver compatibility research - Set up development environment with cross-compilation tools - Created Q20-specific device tree (simplified version) - Added kernel build scripts and configuration - Set up CI/CD pipeline with Gitea Actions - Added .gitignore for build artifacts
30 lines
680 B
Desktop File
30 lines
680 B
Desktop File
[Unit]
|
|
Description=BBeOS Gitea Actions Runner
|
|
After=network.target
|
|
Wants=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=macpro61
|
|
Group=macpro61
|
|
WorkingDirectory=/home/macpro61/bbeos-runner
|
|
ExecStart=/home/macpro61/bbeos-runner/act_runner daemon --config /home/macpro61/bbeos-runner/config.yaml
|
|
Restart=always
|
|
RestartSec=10
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
SyslogIdentifier=bbeos-runner
|
|
|
|
# Security settings
|
|
NoNewPrivileges=true
|
|
PrivateTmp=true
|
|
ProtectSystem=false
|
|
ProtectHome=false
|
|
ReadWritePaths=/home/macpro61/bbeos-runner
|
|
|
|
# Environment variables
|
|
Environment=HOME=/home/macpro61
|
|
Environment=DOCKER_HOST=unix:///var/run/docker.sock
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |