We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d504914 commit 83b36eaCopy full SHA for 83b36ea
.github/workflows/_request_cache_bazel.yml
@@ -89,11 +89,12 @@ jobs:
89
cd /source
90
git clone "$GITHUB_WORKSPACE" .
91
92
- echo "Fetching: ${{ inputs.targets }}"
+ targets=$(echo "${{ inputs.targets }}" | sed 's/ / + /g')
93
+ echo "Fetching: ${targets}"
94
# ironically the repository_cache is just about the only thing you dont want to cache
95
bazel --output_user_root=/build/bazel_root \
96
--output_base=/build/bazel_root/base \
- aquery "deps(${{ inputs.targets }})" \
97
+ aquery "deps(${targets})" \
98
--config=ci \
99
--repository_cache=/tmp/cache \
100
${{ inputs.bazel-extra }} \
0 commit comments