From 7100469be5332357a2d6afd4a444c33f26f1524e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Wed, 11 Dec 2024 12:19:50 +0100 Subject: [PATCH] ci: remove caching --- .github/workflows/ci.yml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f8ef066b5..60dec20df1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,6 @@ name: CI on: - push: - branches: - - main pull_request: merge_group: @@ -19,7 +16,6 @@ defaults: jobs: check: name: Check - if: github.ref != 'refs/heads/main' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -33,7 +29,6 @@ jobs: clippy: name: Clippy - if: github.ref != 'refs/heads/main' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -43,7 +38,6 @@ jobs: format: name: Format - if: github.ref != 'refs/heads/main' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -53,7 +47,6 @@ jobs: typos: name: Typos - if: github.ref != 'refs/heads/main' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -61,7 +54,6 @@ jobs: doc: name: Doc - if: github.ref != 'refs/heads/main' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -70,7 +62,6 @@ jobs: build: name: Build - if: github.ref != 'refs/heads/main' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -82,7 +73,6 @@ jobs: test: name: Test - if: github.ref != 'refs/heads/main' runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -157,15 +147,6 @@ jobs: - uses: mkroening/rust-toolchain-toml@main with: toolchain-file: 'kernel/rust-toolchain.toml' - - uses: Swatinem/rust-cache@v2 - with: - key: ${{ matrix.arch }}-${{ matrix.profile }} - save-if: ${{ github.ref == 'refs/heads/main' }} - lookup-only: ${{ github.ref == 'refs/heads/main' }} - workspaces: | - . - kernel - kernel/hermit-builtins - name: Download loader run: gh release download --repo hermit-os/loader --pattern 'hermit-loader-${{ matrix.arch }}*' - name: Dowload OpenSBI