We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4b2a9c commit 43c2db1Copy full SHA for 43c2db1
.github/workflows/test-build-mcux-sdk-manifests.yml
@@ -85,7 +85,17 @@ jobs:
85
run: |
86
sudo apt-get install -y gcc-arm-none-eabi
87
88
+ - name: Cache MCUXpresso SDK
89
+ id: cache-mcuxpresso
90
+ uses: actions/cache@v4
91
+ with:
92
+ path: |
93
+ mcuxpresso-sdk
94
+ venv
95
+ key: mcuxpresso-sdk-${{inputs.config-file}}-${{hashFiles('.github/workflows/test-build-mcux-sdk-manifests.yml')}}
96
+
97
- name: Setup MCUXpresso SDK
98
+ if: steps.cache-mcuxpresso.outputs.cache-hit != 'true'
99
100
python -m venv venv
101
source venv/bin/activate
0 commit comments