You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if upload_metadata.run_environment == RunEnvironment::Local{
151
-
"Run `codspeed auth login` to authenticate the CLI"
152
-
}else{
149
+
let additional_message = match upload_metadata.run_environment{
150
+
RunEnvironment::GithubActions => {
151
+
"Check that the workflow is correctly authenticated. View more at https://codspeed.io/docs/integrations/ci/github-actions/configuration#authentication"
152
+
}
153
+
RunEnvironment::GitlabCi => {
154
+
"Check that the CI job is correctly authenticated. View more at https://codspeed.io/docs/integrations/ci/gitlab-ci/configuration#authentication"
155
+
}
156
+
RunEnvironment::Buildkite => {
153
157
"Check that CODSPEED_TOKEN is set and has the correct value"
154
-
};
158
+
}
159
+
RunEnvironment::Local => {
160
+
"Run `codspeed auth login` to authenticate the CLI"
0 commit comments