mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-11 11:32:01 +00:00
adb2c82790
https://go.dev/doc/modules/release-workflow#breaking Fixes https://github.com/woodpecker-ci/woodpecker/issues/2913 fixes #2654 ``` runephilosof@fedora:~/code/platform-woodpecker/woodpecker-repo-configurator (master)$ go get go.woodpecker-ci.org/woodpecker@v2.0.0 go: go.woodpecker-ci.org/woodpecker@v2.0.0: invalid version: module contains a go.mod file, so module path must match major version ("go.woodpecker-ci.org/woodpecker/v2") ``` --------- Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
118 lines
3.7 KiB
Go
118 lines
3.7 KiB
Go
// Copyright 2023 Woodpecker Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package exec
|
|
|
|
import (
|
|
"runtime"
|
|
"strings"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/pipeline/frontend/metadata"
|
|
"go.woodpecker-ci.org/woodpecker/v2/pipeline/frontend/yaml/matrix"
|
|
"go.woodpecker-ci.org/woodpecker/v2/version"
|
|
)
|
|
|
|
// return the metadata from the cli context.
|
|
func metadataFromContext(c *cli.Context, axis matrix.Axis) metadata.Metadata {
|
|
platform := c.String("system-platform")
|
|
if platform == "" {
|
|
platform = runtime.GOOS + "/" + runtime.GOARCH
|
|
}
|
|
|
|
fullRepoName := c.String("repo-name")
|
|
repoOwner := ""
|
|
repoName := ""
|
|
if idx := strings.LastIndex(fullRepoName, "/"); idx != -1 {
|
|
repoOwner = fullRepoName[:idx]
|
|
repoName = fullRepoName[idx+1:]
|
|
}
|
|
|
|
return metadata.Metadata{
|
|
Repo: metadata.Repo{
|
|
Name: repoName,
|
|
Owner: repoOwner,
|
|
RemoteID: c.String("repo-remote-id"),
|
|
ForgeURL: c.String("repo-url"),
|
|
CloneURL: c.String("repo-clone-url"),
|
|
CloneSSHURL: c.String("repo-clone-ssh-url"),
|
|
Private: c.Bool("repo-private"),
|
|
Trusted: c.Bool("repo-trusted"),
|
|
},
|
|
Curr: metadata.Pipeline{
|
|
Number: c.Int64("pipeline-number"),
|
|
Parent: c.Int64("pipeline-parent"),
|
|
Created: c.Int64("pipeline-created"),
|
|
Started: c.Int64("pipeline-started"),
|
|
Finished: c.Int64("pipeline-finished"),
|
|
Status: c.String("pipeline-status"),
|
|
Event: c.String("pipeline-event"),
|
|
ForgeURL: c.String("pipeline-url"),
|
|
Target: c.String("pipeline-target"),
|
|
Commit: metadata.Commit{
|
|
Sha: c.String("commit-sha"),
|
|
Ref: c.String("commit-ref"),
|
|
Refspec: c.String("commit-refspec"),
|
|
Branch: c.String("commit-branch"),
|
|
Message: c.String("commit-message"),
|
|
Author: metadata.Author{
|
|
Name: c.String("commit-author-name"),
|
|
Email: c.String("commit-author-email"),
|
|
Avatar: c.String("commit-author-avatar"),
|
|
},
|
|
},
|
|
},
|
|
Prev: metadata.Pipeline{
|
|
Number: c.Int64("prev-pipeline-number"),
|
|
Created: c.Int64("prev-pipeline-created"),
|
|
Started: c.Int64("prev-pipeline-started"),
|
|
Finished: c.Int64("prev-pipeline-finished"),
|
|
Status: c.String("prev-pipeline-status"),
|
|
Event: c.String("prev-pipeline-event"),
|
|
ForgeURL: c.String("prev-pipeline-url"),
|
|
Commit: metadata.Commit{
|
|
Sha: c.String("prev-commit-sha"),
|
|
Ref: c.String("prev-commit-ref"),
|
|
Refspec: c.String("prev-commit-refspec"),
|
|
Branch: c.String("prev-commit-branch"),
|
|
Message: c.String("prev-commit-message"),
|
|
Author: metadata.Author{
|
|
Name: c.String("prev-commit-author-name"),
|
|
Email: c.String("prev-commit-author-email"),
|
|
Avatar: c.String("prev-commit-author-avatar"),
|
|
},
|
|
},
|
|
},
|
|
Workflow: metadata.Workflow{
|
|
Name: c.String("workflow-name"),
|
|
Number: c.Int("workflow-number"),
|
|
Matrix: axis,
|
|
},
|
|
Step: metadata.Step{
|
|
Name: c.String("step-name"),
|
|
Number: c.Int("step-number"),
|
|
},
|
|
Sys: metadata.System{
|
|
Name: c.String("system-name"),
|
|
URL: c.String("system-url"),
|
|
Platform: platform,
|
|
Version: version.Version,
|
|
},
|
|
Forge: metadata.Forge{
|
|
Type: c.String("forge-type"),
|
|
URL: c.String("forge-url"),
|
|
},
|
|
}
|
|
}
|