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 d1b7158 commit 385400dCopy full SHA for 385400d
1 file changed
.github/workflows/cache_maintenance.yml
@@ -15,6 +15,13 @@ name: Repository cache maintenance
15
16
on:
17
workflow_call:
18
+ inputs:
19
+ variants:
20
+ description: |-
21
+ Newline-separated variant specs in the form <platform>|<targets>,
22
+ forwarded to repository-cache-refresh.
23
+ required: true
24
+ type: string
25
26
jobs:
27
repository_cache_maintenance:
@@ -71,9 +78,5 @@ jobs:
71
78
if: ${{ steps.check.outputs.should_refresh_cache == 'true' }}
72
79
uses: eclipse-score/cicd-actions/repository-cache-refresh@use-lurtz-setup-bazel
73
80
with:
74
- variants: |
75
- x86_64-linux|//...
76
- aarch64-linux|//...
77
- x86_64-qnx|//src/... //tests/...
- aarch64-qnx|//src/... //tests/...
81
+ variants: ${{ inputs.variants }}
82
old-caches-json: ${{ env.OLD_CACHES_JSON }}
0 commit comments