diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 44ec421..d6d4459 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,11 +15,3 @@ jobs: steps: - name: Check format run: cargo fmt --check - cache: - runs-on: [self-hosted, linux] - needs: build - steps: - - uses: actions/cache@v4 - with: - path: disk - key: integration-tests diff --git a/.github/workflows/fetch.yml b/.github/workflows/fetch.yml deleted file mode 100644 index 852399a..0000000 --- a/.github/workflows/fetch.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: "Fetch integration tests" -on: [workflow_call] -jobs: - fetch: - runs-on: [self-hosted, linux] - steps: - - uses: actions/checkout@v4 - with: - path: maestro-test/ - - id: fetch - uses: actions/cache@v4 - with: - path: qemu_disk - key: integration-tests - - name: Build tests image - if: steps.fetch.outputs.cache-hit != 'true' - run: ./build.sh - - name: - if: steps.fetch.outputs.cache-hit != 'true' - uses: actions/cache@v4 - with: - path: disk - key: integration-tests