Skip to content

Commit 13166da

Browse files
committed
Stop caching everything?
1 parent 5997380 commit 13166da

File tree

2 files changed

+34
-56
lines changed

2 files changed

+34
-56
lines changed

.devcontainer/devcontainer.json

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/ci.yaml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -25,34 +25,34 @@ jobs:
2525
submodules: false # We'll handle submodules with smart caching
2626
fetch-depth: 0
2727

28-
- name: Cache bin
29-
id: cache-bin
30-
uses: actions/cache@v4
31-
with:
32-
path: |
33-
bin
34-
key: bin-${{ hashFiles('Makefile') }}-v3
35-
restore-keys: |
36-
bin-${{ hashFiles('Makefile') }}-
37-
bin-
28+
# - name: Cache bin
29+
# id: cache-bin
30+
# uses: actions/cache@v4
31+
# with:
32+
# path: |
33+
# bin
34+
# key: bin-${{ hashFiles('Makefile') }}-v3
35+
# restore-keys: |
36+
# bin-${{ hashFiles('Makefile') }}-
37+
# bin-
3838

3939
- name: Download bin tools
4040
if: steps.cache-bin.outputs.cache-hit != 'true'
4141
run: |
4242
make download-bin
4343
44-
- name: Cache submodules
45-
id: cache-submodules
46-
uses: actions/cache@v4
47-
with:
48-
path: |
49-
lib/fprime
50-
lib/fprime-zephyr
51-
lib/zephyr-workspace/zephyr
52-
key: submodules-${{ hashFiles('.gitmodules') }}-v3
53-
restore-keys: |
54-
submodules-${{ hashFiles('.gitmodules') }}-
55-
submodules-
44+
# - name: Cache submodules
45+
# id: cache-submodules
46+
# uses: actions/cache@v4
47+
# with:
48+
# path: |
49+
# lib/fprime
50+
# lib/fprime-zephyr
51+
# lib/zephyr-workspace/zephyr
52+
# key: submodules-${{ hashFiles('.gitmodules') }}-v3
53+
# restore-keys: |
54+
# submodules-${{ hashFiles('.gitmodules') }}-
55+
# submodules-
5656

5757
- name: Setup submodules
5858
if: steps.cache-submodules.outputs.cache-hit != 'true'
@@ -74,18 +74,18 @@ jobs:
7474
run: |
7575
make fprime-venv
7676
77-
- name: Cache Zephyr workspace and SDK
78-
id: cache-zephyr
79-
uses: actions/cache@v4
80-
with:
81-
path: |
82-
lib/zephyr-workspace/modules
83-
lib/zephyr-workspace/bootloader
84-
~/zephyr-sdk-0.17.2
85-
key: zephyr-${{ hashFiles('west.yml') }}-${{ runner.os }}-v3
86-
restore-keys: |
87-
zephyr-${{ hashFiles('west.yml') }}-${{ runner.os }}-
88-
zephyr-
77+
# - name: Cache Zephyr workspace and SDK
78+
# id: cache-zephyr
79+
# uses: actions/cache@v4
80+
# with:
81+
# path: |
82+
# lib/zephyr-workspace/modules
83+
# lib/zephyr-workspace/bootloader
84+
# ~/zephyr-sdk-0.17.2
85+
# key: zephyr-${{ hashFiles('west.yml') }}-${{ runner.os }}-v3
86+
# restore-keys: |
87+
# zephyr-${{ hashFiles('west.yml') }}-${{ runner.os }}-
88+
# zephyr-
8989

9090
- name: Setup Zephyr
9191
if: steps.cache-zephyr.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)