Skip to content

Commit fd1d4f1

Browse files
committed
fix
1 parent 3eed59b commit fd1d4f1

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/workflows/daos.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,28 @@ name: DAOS
77
on:
88
push:
99

10+
permissions: {}
11+
1012
jobs:
13+
clear_caches:
14+
name: Clear caches
15+
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
ref: [master, release/2.6]
19+
permissions:
20+
actions: write
21+
steps:
22+
- run: |
23+
curl -L \
24+
-X DELETE \
25+
-H "Accept: application/vnd.github+json" \
26+
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
27+
-H "X-GitHub-Api-Version: 2022-11-28" \
28+
"https://api.github.com/repos/pmem/pmdk/actions/caches?key=opt_daos-${{ matrix.ref }}"
1129
daos_tests:
1230
name: DAOS
31+
needs: clear_caches
1332
strategy:
1433
matrix:
1534
ref: [master, release/2.6]

.github/workflows/daos_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Clone the PMDK repo
4545
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
4646
with:
47-
repository: janekmi/pmdk # XXX
47+
repository: pmem/pmdk
4848
path: pmdk
4949

5050
- name: Restore ${{ env.DAOS_PATH }} from cache

0 commit comments

Comments
 (0)