From 34f6bc4501c08dd9807a8b6b2afc645a51d82037 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Tue, 1 Oct 2024 08:18:55 -0700 Subject: [PATCH] misc,tests: Fix caching in daily tests --- .github/workflows/daily-tests.yaml | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/.github/workflows/daily-tests.yaml b/.github/workflows/daily-tests.yaml index 7c7c1a4aab..f36e722b8f 100644 --- a/.github/workflows/daily-tests.yaml +++ b/.github/workflows/daily-tests.yaml @@ -44,13 +44,13 @@ jobs: - uses: actions/checkout@v4 - name: Restore build/NULL cache - uses: actions/cache/restore@v4 + uses: actions/cache@v4 with: path: build/NULL key: testlib-build-null-${{ hashFiles('src/**') }} - name: Restore build/ALL cache - uses: actions/cache/restore@v4 + uses: actions/cache@v4 with: path: build/ALL key: testlib-build-all-${{ hashFiles('src/**') }} @@ -68,20 +68,6 @@ jobs: path: tests/testing-results retention-days: 7 - - name: Save build/NULL cache - uses: actions/cache/save@v4 - if: ${{ hashFiles('build/NULL/') != '' }} - with: - path: build/NULL - key: testlib-build-null-${{ hashFiles('src/**') }} - - - name: Save build/ALL cache - uses: actions/cache/save@v4 - if: ${{ hashFiles('build/ALL/') != '' }} - with: - path: build/ALL - key: testlib-build-all-${{ hashFiles('src/**') }} - - run: echo "This job's status is ${{ job.status }}." # split library example tests into runs based on Suite UID