Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,15 @@
"stacks/nodejs/**",
"stacks/go/1.0.2/**",
"stacks/go/1.1.0/**",
"stacks/go/1.2.0/**",
"stacks/go/1.2.1/**",
"stacks/go/1.3.0/**",
"stacks/go/1.3.1/**",
"stacks/go/2.0.0/**",
"stacks/go/2.1.0/**",
"stacks/go/2.2.0/**",
"stacks/go/2.3.0/**",
"stacks/go/2.4.0/**",
"stacks/nodejs/2.1.1/**",
"stacks/nodejs-angular/2.0.2/**",
"stacks/nodejs-nextjs/1.0.3/**",
Expand Down
1 change: 1 addition & 0 deletions stacks/go/1.2.0/devfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
icon: https://raw.githubusercontent.com/devfile-samples/devfile-stack-icons/main/golang.svg
tags:
- Go
- Deprecated
projectType: Go
language: Go
provider: Red Hat
Expand Down
1 change: 1 addition & 0 deletions stacks/go/1.2.1/devfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
icon: https://raw.githubusercontent.com/devfile-samples/devfile-stack-icons/main/golang.svg
tags:
- Go
- Deprecated
projectType: Go
language: Go
provider: Red Hat
Expand Down
1 change: 1 addition & 0 deletions stacks/go/1.3.0/devfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
icon: https://raw.githubusercontent.com/devfile-samples/devfile-stack-icons/main/golang.svg
tags:
- Go
- Deprecated
projectType: Go
language: Go
provider: Red Hat
Expand Down
1 change: 1 addition & 0 deletions stacks/go/1.3.1/devfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
icon: https://raw.githubusercontent.com/devfile-samples/devfile-stack-icons/main/golang.svg
tags:
- Go
- Deprecated
projectType: Go
language: Go
provider: Red Hat
Expand Down
1 change: 1 addition & 0 deletions stacks/go/2.2.0/devfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
icon: https://raw.githubusercontent.com/devfile-samples/devfile-stack-icons/main/golang.svg
tags:
- Go
- Deprecated
projectType: Go
language: Go
provider: Red Hat
Expand Down
1 change: 1 addition & 0 deletions stacks/go/2.3.0/devfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
icon: https://raw.githubusercontent.com/devfile-samples/devfile-stack-icons/main/golang.svg
tags:
- Go
- Deprecated
projectType: Go
language: Go
provider: Red Hat
Expand Down
1 change: 1 addition & 0 deletions stacks/go/2.4.0/devfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
icon: https://raw.githubusercontent.com/devfile-samples/devfile-stack-icons/main/golang.svg
tags:
- Go
- Deprecated
projectType: Go
language: Go
provider: Red Hat
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@ var _ = Describe("validate stacks follow the schema", func() {
It(fmt.Sprintf("stack: %s", dir), func() {
path := filepath.Join(stacksPath, dir, "devfile.yaml")

convertKubernetesContentInUri := false
parserArgs := parser.ParserArgs{
Path: path,
Path: path,
ConvertKubernetesContentInUri: &convertKubernetesContentInUri,
}

GinkgoWriter.Println(parserArgs)
Expand Down
Loading