mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 01:38:32 +00:00
ci: Remove unused Foundry cache steps (#431)
Summary - drop the Foundry library and build artifact cache restores from the e2e workflow - also remove the Foundry build cache from the dedicated Foundry tests workflow since it wasn’t providing value Testing - Not run (not requested)
This commit is contained in:
parent
265581182a
commit
a8df6aae95
2 changed files with 0 additions and 27 deletions
17
.github/workflows/task-e2e.yml
vendored
17
.github/workflows/task-e2e.yml
vendored
|
|
@ -118,23 +118,6 @@ jobs:
|
|||
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-bun-
|
||||
- name: Cache Foundry libraries
|
||||
uses: actions/cache/restore@v4
|
||||
with:
|
||||
path: ../contracts/lib
|
||||
key: ${{ runner.os }}-foundry-libs-${{ hashFiles('.gitmodules') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-foundry-libs-
|
||||
|
||||
- name: Cache Foundry build artifacts
|
||||
uses: actions/cache/restore@v4
|
||||
with:
|
||||
path: |
|
||||
../contracts/out
|
||||
../contracts/cache
|
||||
key: ${{ runner.os }}-foundry-build-${{ hashFiles('contracts/foundry.toml', 'contracts/**/*.sol') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-foundry-build-
|
||||
- uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
|
|
|
|||
10
.github/workflows/task-foundry-tests.yml
vendored
10
.github/workflows/task-foundry-tests.yml
vendored
|
|
@ -38,16 +38,6 @@ jobs:
|
|||
with:
|
||||
version: v1.4.3
|
||||
|
||||
- name: Cache Foundry build artifacts
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
contracts/out
|
||||
contracts/cache
|
||||
key: ${{ runner.os }}-foundry-build-${{ hashFiles('contracts/foundry.toml', 'contracts/**/*.sol') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-foundry-build-
|
||||
|
||||
- run: forge --version
|
||||
- run: forge fmt --check
|
||||
- run: forge build --sizes
|
||||
|
|
|
|||
Loading…
Reference in a new issue