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
1 change: 1 addition & 0 deletions eval.google-cicd-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ defaults:
base: cicd-evals:latest
env:
GOOGLE_APPLICATION_CREDENTIALS: ~/.config/gcloud/application_default_credentials.json
GEMINI_CLI_TRUST_WORKSPACE: true
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

In YAML, the value true is interpreted as a boolean. Environment variables are typically expected to be strings. Some YAML parsers will fail to unmarshal a boolean value into a string field, which can lead to configuration errors. It is recommended to wrap the value in quotes to ensure it is treated as a string.

    GEMINI_CLI_TRUST_WORKSPACE: "true"

trialConfig:
setup: |
mkdir -p /tmp/skill-activation
Expand Down
1 change: 1 addition & 0 deletions eval.google-cicd-pipeline-design.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ defaults:
base: cicd-evals:latest
env:
GOOGLE_APPLICATION_CREDENTIALS: ~/.config/gcloud/application_default_credentials.json
GEMINI_CLI_TRUST_WORKSPACE: true
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

In YAML, the value true is interpreted as a boolean. Environment variables are typically expected to be strings. Some YAML parsers will fail to unmarshal a boolean value into a string field, which can lead to configuration errors. It is recommended to wrap the value in quotes to ensure it is treated as a string.

    GEMINI_CLI_TRUST_WORKSPACE: "true"

trialConfig:
setup: |
mkdir -p /tmp/skill-activation
Expand Down