2
0

chore: Fix linter issues and update copyrights
Some checks failed
CI / build-and-test (push) Failing after 55s
Release / build (amd64, darwin) (push) Has been cancelled
Release / build (amd64, linux) (push) Has been cancelled
Release / build (amd64, windows) (push) Has been cancelled
Release / build (arm64, darwin) (push) Has been cancelled
Release / build (arm64, linux) (push) Has been cancelled
Release / release (push) Has been cancelled

- Format Go files with gofmt
- Update copyrights to include MarketAlly
- Add MarketAlly copyright to files we created

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
GitCaddy
2026-01-14 09:41:16 +00:00
parent f5b22c4149
commit 0db86bc6a4
5 changed files with 13 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
// Copyright 2022 The Gitea Authors. All rights reserved. // Copyright 2022 The Gitea Authors and MarketAlly. All rights reserved.
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
package cmd package cmd
@@ -80,7 +80,6 @@ func Execute(ctx context.Context) {
cacheCmd.Flags().Uint16VarP(&cacheArgs.Port, "port", "p", 0, "Port of the cache server") cacheCmd.Flags().Uint16VarP(&cacheArgs.Port, "port", "p", 0, "Port of the cache server")
rootCmd.AddCommand(cacheCmd) rootCmd.AddCommand(cacheCmd)
// ./gitcaddy-runner cleanup // ./gitcaddy-runner cleanup
cleanupCmd := &cobra.Command{ cleanupCmd := &cobra.Command{
Use: "cleanup", Use: "cleanup",

View File

@@ -1,4 +1,4 @@
// Copyright 2023 The Gitea Authors. All rights reserved. // Copyright 2023 The Gitea Authors and MarketAlly. All rights reserved.
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
package poll package poll

View File

@@ -114,7 +114,7 @@ func (u *UploadHelper) doUpload(client *http.Client, url, token, filepath string
if err != nil { if err != nil {
return fmt.Errorf("failed to create form file: %w", err) return fmt.Errorf("failed to create form file: %w", err)
} }
if _, err := io.Copy(part, file); err != nil { if _, err := io.Copy(part, file); err != nil {
return fmt.Errorf("failed to copy file to form: %w", err) return fmt.Errorf("failed to copy file to form: %w", err)
} }
@@ -124,7 +124,7 @@ func (u *UploadHelper) doUpload(client *http.Client, url, token, filepath string
if err != nil { if err != nil {
return fmt.Errorf("failed to create request: %w", err) return fmt.Errorf("failed to create request: %w", err)
} }
req.Header.Set("Authorization", fmt.Sprintf("token %s", token)) req.Header.Set("Authorization", fmt.Sprintf("token %s", token))
req.Header.Set("Content-Type", writer.FormDataContentType()) req.Header.Set("Content-Type", writer.FormDataContentType())
req.Header.Set("Connection", "keep-alive") req.Header.Set("Connection", "keep-alive")

View File

@@ -261,7 +261,6 @@ func dirSize(path string) int64 {
return size return size
} }
// cleanBuildCaches removes old build tool caches that accumulate from CI jobs // cleanBuildCaches removes old build tool caches that accumulate from CI jobs
// These are cleaned more aggressively (files older than 7 days) since they can grow very large // These are cleaned more aggressively (files older than 7 days) since they can grow very large
func cleanBuildCaches(maxAge time.Duration) (int64, int, error) { func cleanBuildCaches(maxAge time.Duration) (int64, int, error) {

View File

@@ -1,4 +1,4 @@
// Copyright 2026 The Gitea Authors. All rights reserved. // Copyright 2026 MarketAlly. All rights reserved.
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
package envcheck package envcheck
@@ -19,7 +19,7 @@ import (
// DiskInfo holds disk space information // DiskInfo holds disk space information
type DiskInfo struct { type DiskInfo struct {
Path string `json:"path,omitempty"` // Path being checked (working directory) Path string `json:"path,omitempty"` // Path being checked (working directory)
Total uint64 `json:"total_bytes"` Total uint64 `json:"total_bytes"`
Free uint64 `json:"free_bytes"` Free uint64 `json:"free_bytes"`
Used uint64 `json:"used_bytes"` Used uint64 `json:"used_bytes"`
@@ -28,11 +28,11 @@ type DiskInfo struct {
// CPUInfo holds CPU load information // CPUInfo holds CPU load information
type CPUInfo struct { type CPUInfo struct {
NumCPU int `json:"num_cpu"` // Number of logical CPUs NumCPU int `json:"num_cpu"` // Number of logical CPUs
LoadAvg1m float64 `json:"load_avg_1m"` // 1-minute load average LoadAvg1m float64 `json:"load_avg_1m"` // 1-minute load average
LoadAvg5m float64 `json:"load_avg_5m"` // 5-minute load average LoadAvg5m float64 `json:"load_avg_5m"` // 5-minute load average
LoadAvg15m float64 `json:"load_avg_15m"` // 15-minute load average LoadAvg15m float64 `json:"load_avg_15m"` // 15-minute load average
LoadPercent float64 `json:"load_percent"` // (load_avg_1m / num_cpu) * 100 LoadPercent float64 `json:"load_percent"` // (load_avg_1m / num_cpu) * 100
} }
// DistroInfo holds Linux distribution information // DistroInfo holds Linux distribution information
@@ -46,7 +46,7 @@ type DistroInfo struct {
type XcodeInfo struct { type XcodeInfo struct {
Version string `json:"version,omitempty"` Version string `json:"version,omitempty"`
Build string `json:"build,omitempty"` Build string `json:"build,omitempty"`
SDKs []string `json:"sdks,omitempty"` // e.g., ["iOS 17.0", "macOS 14.0"] SDKs []string `json:"sdks,omitempty"` // e.g., ["iOS 17.0", "macOS 14.0"]
Simulators []string `json:"simulators,omitempty"` // Available iOS simulators Simulators []string `json:"simulators,omitempty"` // Available iOS simulators
} }
@@ -61,7 +61,7 @@ type RunnerCapabilities struct {
ContainerRuntime string `json:"container_runtime,omitempty"` ContainerRuntime string `json:"container_runtime,omitempty"`
Shell []string `json:"shell,omitempty"` Shell []string `json:"shell,omitempty"`
Tools map[string][]string `json:"tools,omitempty"` Tools map[string][]string `json:"tools,omitempty"`
BuildTools []string `json:"build_tools,omitempty"` // Available build/installer tools BuildTools []string `json:"build_tools,omitempty"` // Available build/installer tools
PackageManagers []string `json:"package_managers,omitempty"` PackageManagers []string `json:"package_managers,omitempty"`
Features *CapabilityFeatures `json:"features,omitempty"` Features *CapabilityFeatures `json:"features,omitempty"`
Limitations []string `json:"limitations,omitempty"` Limitations []string `json:"limitations,omitempty"`