You've already forked woodpecker
							
							
				mirror of
				https://github.com/woodpecker-ci/woodpecker.git
				synced 2025-10-30 23:27:39 +02:00 
			
		
		
		
	CLI: remove step-id and add step-number as option to logs (#3927)
This commit is contained in:
		| @@ -166,12 +166,10 @@ func ParseKeyPair(p []string) map[string]string { | ||||
| ParseStep parses the step id form a string which may either be the step PID (step number) or a step name. | ||||
| These rules apply: | ||||
|  | ||||
| - Step ID take precedence over step name when searching for a match. | ||||
| - Step PID take precedence over step name when searching for a match. | ||||
| - First match is used, when there are multiple steps with the same name. | ||||
|  | ||||
| Strictly speaking, this is not parsing, but a lookup. | ||||
|  | ||||
| TODO: Use PID instead of StepID | ||||
| */ | ||||
| func ParseStep(client woodpecker.Client, repoID, number int64, stepArg string) (stepID int64, err error) { | ||||
| 	pipeline, err := client.Pipeline(repoID, number) | ||||
| @@ -179,20 +177,15 @@ func ParseStep(client woodpecker.Client, repoID, number int64, stepArg string) ( | ||||
| 		return 0, err | ||||
| 	} | ||||
|  | ||||
| 	stepID, err = strconv.ParseInt(stepArg, 10, 64) | ||||
| 	// TODO: for 3.0 do "stepPID, err := strconv.ParseInt(stepArg, 10, 64)" | ||||
| 	stepPID, err := strconv.ParseInt(stepArg, 10, 64) | ||||
| 	if err == nil { | ||||
| 		return stepID, nil | ||||
| 		/* | ||||
| 			// TODO: for 3.0 | ||||
| 			for _, wf := range pipeline.Workflows { | ||||
| 				for _, step := range wf.Children { | ||||
| 					if int64(step.PID) == stepPID { | ||||
| 						return step.ID, nil | ||||
| 					} | ||||
| 		for _, wf := range pipeline.Workflows { | ||||
| 			for _, step := range wf.Children { | ||||
| 				if int64(step.PID) == stepPID { | ||||
| 					return step.ID, nil | ||||
| 				} | ||||
| 			} | ||||
| 		*/ | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	for _, wf := range pipeline.Workflows { | ||||
|   | ||||
| @@ -30,9 +30,8 @@ import ( | ||||
| var pipelineLogsCmd = &cli.Command{ | ||||
| 	Name:      "logs", | ||||
| 	Usage:     "show pipeline logs", | ||||
| 	ArgsUsage: "<repo-id|repo-full-name> <pipeline> [step-id|step-name]", | ||||
| 	// TODO: for v3.0 do `ArgsUsage: "<repo-id|repo-full-name> <pipeline> [step-number|step-name]",` | ||||
| 	Action: pipelineLogs, | ||||
| 	ArgsUsage: "<repo-id|repo-full-name> <pipeline> [step-number|step-name]", | ||||
| 	Action:    pipelineLogs, | ||||
| } | ||||
|  | ||||
| func pipelineLogs(ctx context.Context, c *cli.Command) error { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user