|
|
@ -1,9 +1,9 @@
|
|
|
|
package gitlabcivalidator
|
|
|
|
package gitflamecivalidator
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"fmt"
|
|
|
|
"gopkg.in/yaml.v3"
|
|
|
|
"gopkg.in/yaml.v3"
|
|
|
|
"tea.gitpark.ru/Azaki/CI_VALIDATOR/errors"
|
|
|
|
"tea.gitpark.ru/Azaki/ci_validator/errors"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
// ParseGitLabCIConfig parses the YAML and returns the GitLabCIConfig structure.
|
|
|
|
// ParseGitLabCIConfig parses the YAML and returns the GitLabCIConfig structure.
|
|
|
@ -88,7 +88,6 @@ func ParseGitLabCIConfig(data []byte, ve *errors.ValidationError) (*GitLabCIConf
|
|
|
|
if depVal.Kind == yaml.SequenceNode {
|
|
|
|
if depVal.Kind == yaml.SequenceNode {
|
|
|
|
for k := 0; k < len(depVal.Content); k++ {
|
|
|
|
for k := 0; k < len(depVal.Content); k++ {
|
|
|
|
depNode := depVal.Content[k]
|
|
|
|
depNode := depVal.Content[k]
|
|
|
|
job.Dependencies = append(job.Dependencies, depNode.Value)
|
|
|
|
|
|
|
|
job.DependencyLines[depNode.Value] = struct {
|
|
|
|
job.DependencyLines[depNode.Value] = struct {
|
|
|
|
Line int
|
|
|
|
Line int
|
|
|
|
Column int
|
|
|
|
Column int
|