Skip to content

Commit 8f09e13

Browse files
committed
Fix order
1 parent b6e0556 commit 8f09e13

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/ci.yaml

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

28-
- name: Cache python environment
29-
id: cache-python
30-
uses: actions/cache@v4
31-
with:
32-
path: fprime-venv
33-
key: python-packages-${{ runner.os }}-${{ hashFiles('requirements.txt') }}-v3
34-
restore-keys: |
35-
python-packages-${{ runner.os }}-
36-
python-packages-
37-
38-
- name: Setup python environment
39-
if: steps.cache-python.outputs.cache-hit != 'true'
40-
run: |
41-
make fprime-venv
42-
4328
- name: Cache submodules
4429
id: cache-submodules
4530
uses: actions/cache@v4
@@ -58,6 +43,21 @@ jobs:
5843
run: |
5944
make submodules
6045
46+
- name: Cache python environment
47+
id: cache-python
48+
uses: actions/cache@v4
49+
with:
50+
path: fprime-venv
51+
key: python-packages-${{ runner.os }}-${{ hashFiles('requirements.txt') }}-v3
52+
restore-keys: |
53+
python-packages-${{ runner.os }}-
54+
python-packages-
55+
56+
- name: Setup python environment
57+
if: steps.cache-python.outputs.cache-hit != 'true'
58+
run: |
59+
make fprime-venv
60+
6161
- name: Cache Zephyr workspace and SDK
6262
id: cache-zephyr
6363
uses: actions/cache@v4

0 commit comments

Comments
 (0)