Skip to content

Commit 555d703

Browse files
committed
Remove frogbot-config.yml functionality - use only environment variables
1 parent e68e3ae commit 555d703

20 files changed

+54
-272
lines changed

docs/templates/jfrog-pipelines/pipelines-dotnet.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ pipelines:
9595
# JF_AVOID_EXTRA_MESSAGES: "TRUE"
9696

9797
###########################################################################
98-
## If your project uses a 'frogbot-config.yml' file, you should define ##
99-
## the following variables inside the file, instead of here. ##
98+
## All configuration is now done via environment variables ##
10099
###########################################################################
101100

102101
# [Mandatory]
@@ -109,7 +108,7 @@ pipelines:
109108

110109
# [Mandatory if the two conditions below are met]
111110
# 1. The project uses yarn 2, NuGet or .NET Core to download its dependencies
112-
# 2. The `installCommand` variable isn't set in your frogbot-config.yml file.
111+
# 2. The `installCommand` variable isn't set via the JF_INSTALL_DEPS_CMD environment variable.
113112
#
114113
# The command that installs the project dependencies (e.g "nuget restore")
115114
# JF_INSTALL_DEPS_CMD: ""
@@ -144,8 +143,7 @@ pipelines:
144143

145144
# [Optional]
146145
# Frogbot will download the project dependencies if they're not cached locally. To download the
147-
# dependencies from a virtual repository in Artifactory, set the name of the repository. There's no
148-
# need to set this value, if it is set in the frogbot-config.yml file.
146+
# dependencies from a virtual repository in Artifactory, set the name of the repository.
149147
# JF_DEPS_REPO: ""
150148

151149
# [Optional]

docs/templates/jfrog-pipelines/pipelines-go.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ pipelines:
9595
# JF_AVOID_EXTRA_MESSAGES: "TRUE"
9696

9797
###########################################################################
98-
## If your project uses a 'frogbot-config.yml' file, you should define ##
99-
## the following variables inside the file, instead of here. ##
98+
## All configuration is now done via environment variables ##
10099
###########################################################################
101100

102101
# [Mandatory]
@@ -137,8 +136,7 @@ pipelines:
137136

138137
# [Optional]
139138
# Frogbot will download the project dependencies if they're not cached locally. To download the
140-
# dependencies from a virtual repository in Artifactory, set the name of the repository. There's no
141-
# need to set this value, if it is set in the frogbot-config.yml file.
139+
# dependencies from a virtual repository in Artifactory, set the name of the repository.
142140
# JF_DEPS_REPO: ""
143141

144142
# [Optional, default: "."]

docs/templates/jfrog-pipelines/pipelines-gradle.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ pipelines:
9595
# JF_AVOID_EXTRA_MESSAGES: "TRUE"
9696

9797
###########################################################################
98-
## If your project uses a 'frogbot-config.yml' file, you should define ##
99-
## the following variables inside the file, instead of here. ##
98+
## All configuration is now done via environment variables ##
10099
###########################################################################
101100

102101
# [Mandatory]
@@ -133,8 +132,7 @@ pipelines:
133132

134133
# [Optional]
135134
# Frogbot will download the project dependencies if they're not cached locally. To download the
136-
# dependencies from a virtual repository in Artifactory, set the name of the repository. There's no
137-
# need to set this value, if it is set in the frogbot-config.yml file.
135+
# dependencies from a virtual repository in Artifactory, set the name of the repository.
138136
# JF_DEPS_REPO: ""
139137

140138
# [Optional, default: "."]

docs/templates/jfrog-pipelines/pipelines-maven.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ pipelines:
9595
# JF_AVOID_EXTRA_MESSAGES: "TRUE"
9696

9797
###########################################################################
98-
## If your project uses a 'frogbot-config.yml' file, you should define ##
99-
## the following variables inside the file, instead of here. ##
98+
## All configuration is now done via environment variables ##
10099
###########################################################################
101100

102101
# [Mandatory]
@@ -117,8 +116,7 @@ pipelines:
117116

118117
# [Optional]
119118
# Frogbot will download the project dependencies if they're not cached locally. To download the
120-
# dependencies from a virtual repository in Artifactory, set the name of the repository. There's no
121-
# need to set this value, if it is set in the frogbot-config.yml file.
119+
# dependencies from a virtual repository in Artifactory, set the name of the repository.
122120
# JF_DEPS_REPO: ""
123121

124122
# [Optional, default: "."]

docs/templates/jfrog-pipelines/pipelines-npm.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ pipelines:
9595
# JF_AVOID_EXTRA_MESSAGES: "TRUE"
9696

9797
###########################################################################
98-
## If your project uses a 'frogbot-config.yml' file, you should define ##
99-
## the following variables inside the file, instead of here. ##
98+
## All configuration is now done via environment variables ##
10099
###########################################################################
101100

102101
# [Mandatory]
@@ -109,7 +108,7 @@ pipelines:
109108

110109
# [Mandatory if the two conditions below are met]
111110
# 1. The project uses yarn 2, NuGet or .NET Core to download its dependencies
112-
# 2. The `installCommand` variable isn't set in your frogbot-config.yml file.
111+
# 2. The `installCommand` variable isn't set via the JF_INSTALL_DEPS_CMD environment variable.
113112
#
114113
# The command that installs the project dependencies (e.g "nuget restore")
115114
# JF_INSTALL_DEPS_CMD: ""
@@ -144,8 +143,7 @@ pipelines:
144143

145144
# [Optional]
146145
# Frogbot will download the project dependencies if they're not cached locally. To download the
147-
# dependencies from a virtual repository in Artifactory, set the name of the repository. There's no
148-
# need to set this value, if it is set in the frogbot-config.yml file.
146+
# dependencies from a virtual repository in Artifactory, set the name of the repository.
149147
# JF_DEPS_REPO: ""
150148

151149
# [Optional, default: "."]

docs/templates/jfrog-pipelines/pipelines-pip.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pipelines:
3434
environmentVariables:
3535
# [Mandatory if the two conditions below are met]
3636
# 1. The project uses yarn 2, NuGet or .NET Core to download its dependencies
37-
# 2. The `installCommand` variable isn't set in your frogbot-config.yml file.
37+
# 2. The `installCommand` variable isn't set via the JF_INSTALL_DEPS_CMD environment variable.
3838
#
3939
# The command that installs the project dependencies (e.g "nuget restore")
4040
# JF_INSTALL_DEPS_CMD: ""
@@ -102,8 +102,7 @@ pipelines:
102102
# JF_AVOID_EXTRA_MESSAGES: "TRUE"
103103

104104
###########################################################################
105-
## If your project uses a 'frogbot-config.yml' file, you should define ##
106-
## the following variables inside the file, instead of here. ##
105+
## All configuration is now done via environment variables ##
107106
###########################################################################
108107

109108
# [Mandatory]
@@ -120,8 +119,7 @@ pipelines:
120119

121120
# [Optional]
122121
# Frogbot will download the project dependencies if they're not cached locally. To download the
123-
# dependencies from a virtual repository in Artifactory, set the name of the repository. There's no
124-
# need to set this value, if it is set in the frogbot-config.yml file.
122+
# dependencies from a virtual repository in Artifactory, set the name of the repository.
125123
# JF_DEPS_REPO: ""
126124

127125
# [Optional, default: "."]

docs/templates/jfrog-pipelines/pipelines-pipenv.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ pipelines:
9595
# JF_AVOID_EXTRA_MESSAGES: "TRUE"
9696

9797
###########################################################################
98-
## If your project uses a 'frogbot-config.yml' file, you should define ##
99-
## the following variables inside the file, instead of here. ##
98+
## All configuration is now done via environment variables ##
10099
###########################################################################
101100

102101
# [Mandatory]
@@ -125,8 +124,7 @@ pipelines:
125124

126125
# [Optional]
127126
# Frogbot will download the project dependencies if they're not cached locally. To download the
128-
# dependencies from a virtual repository in Artifactory, set the name of the repository. There's no
129-
# need to set this value, if it is set in the frogbot-config.yml file.
127+
# dependencies from a virtual repository in Artifactory, set the name of the repository.
130128
# JF_DEPS_REPO: ""
131129

132130
# [Optional, default: "FALSE"]

docs/templates/jfrog-pipelines/pipelines-poetry.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ pipelines:
9595
# JF_AVOID_EXTRA_MESSAGES: "TRUE"
9696

9797
###########################################################################
98-
## If your project uses a 'frogbot-config.yml' file, you should define ##
99-
## the following variables inside the file, instead of here. ##
98+
## All configuration is now done via environment variables ##
10099
###########################################################################
101100

102101
# [Mandatory]
@@ -113,8 +112,7 @@ pipelines:
113112

114113
# [Optional]
115114
# Frogbot will download the project dependencies if they're not cached locally. To download the
116-
# dependencies from a virtual repository in Artifactory, set the name of the repository. There's no
117-
# need to set this value, if it is set in the frogbot-config.yml file.
115+
# dependencies from a virtual repository in Artifactory, set the name of the repository.
118116
# JF_DEPS_REPO: ""
119117

120118
# [Optional, default: "."]

docs/templates/jfrog-pipelines/pipelines-yarn2.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pipelines:
3434
environmentVariables:
3535
# [Mandatory if the two conditions below are met]
3636
# 1. The project uses yarn 2, NuGet or .NET Core to download its dependencies
37-
# 2. The `installCommand` variable isn't set in your frogbot-config.yml file.
37+
# 2. The `installCommand` variable isn't set via the JF_INSTALL_DEPS_CMD environment variable.
3838
#
3939
# The command that installs the project dependencies (e.g "nuget restore")
4040
# JF_INSTALL_DEPS_CMD: ""
@@ -102,8 +102,7 @@ pipelines:
102102
# JF_AVOID_EXTRA_MESSAGES: "TRUE"
103103

104104
###########################################################################
105-
## If your project uses a 'frogbot-config.yml' file, you should define ##
106-
## the following variables inside the file, instead of here. ##
105+
## All configuration is now done via environment variables ##
107106
###########################################################################
108107

109108
# [Mandatory]
@@ -120,8 +119,7 @@ pipelines:
120119

121120
# [Optional]
122121
# Frogbot will download the project dependencies if they're not cached locally. To download the
123-
# dependencies from a virtual repository in Artifactory, set the name of the repository. There's no
124-
# need to set this value, if it is set in the frogbot-config.yml file.
122+
# dependencies from a virtual repository in Artifactory, set the name of the repository.
125123
# JF_DEPS_REPO: ""
126124

127125
# [Optional, default: "."]

go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ require (
2020
github.com/urfave/cli/v2 v2.27.4
2121
github.com/xeipuuv/gojsonschema v1.2.0
2222
golang.org/x/exp v0.0.0-20250911091902-df9299821621
23-
gopkg.in/yaml.v2 v2.4.0
2423
gopkg.in/yaml.v3 v3.0.1
2524
)
2625

0 commit comments

Comments
 (0)