currently OpenTelemetry cache does not include os name. it does not
allow to distinguish, for example between ubuntu-24.04 and
ubuntu-24.04-arm
---
.github/workflows/vtest.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/vtest.yml b/.github/workflows/vtest.yml
index 8f4c58bfd..236358946 100644
--- a/.github/workflows/vtest.yml
+++ b/.github/workflows/vtest.yml
@@ -76,7 +76,7 @@ jobs:
uses: actions/cache@v4
with:
path: '~/opt-ot/'
- key: ot-${{ matrix.CC }}-${{ env.OT_CPP_VERSION }}-${{
contains(matrix.name, 'ASAN') }}
+ key: ${{ matrix.os }}-ot-${{ matrix.CC }}-${{ env.OT_CPP_VERSION
}}-${{ contains(matrix.name, 'ASAN') }}
- name: Install apt dependencies
if: ${{ startsWith(matrix.os, 'ubuntu-') }}
run: |
--
2.46.0.windows.1