File tree 2 files changed +5
-2
lines changed 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -137,6 +137,7 @@ jobs:
137
137
uses : actions/cache@v4
138
138
with :
139
139
path : config.cache
140
+ # Include env.pythonLocation in key to avoid changes in environment when setup-python updates Python
140
141
key : ${{ github.job }}-${{ runner.os }}-${{ env.IMAGE_VERSION }}-${{ needs.check_source.outputs.config_hash }}-${{ env.pythonLocation }}
141
142
- name : Install Dependencies
142
143
run : sudo ./.github/workflows/posix-deps-apt.sh
Original file line number Diff line number Diff line change 50
50
uses : actions/cache@v4
51
51
with :
52
52
path : ${{ env.CROSS_BUILD_PYTHON }}/config.cache
53
- key : ${{ github.job }}-${{ runner.os }}-${{ env.IMAGE_VERSION }}-${{ inputs.config_hash }}
53
+ # Include env.pythonLocation in key to avoid changes in environment when setup-python updates Python
54
+ key : ${{ github.job }}-${{ runner.os }}-${{ env.IMAGE_VERSION }}-${{ inputs.config_hash }}-${{ env.pythonLocation }}
54
55
- name : " Configure build Python"
55
56
run : python3 Tools/wasm/wasi.py configure-build-python -- --config-cache --with-pydebug
56
57
- name : " Make build Python"
59
60
uses : actions/cache@v4
60
61
with :
61
62
path : ${{ env.CROSS_BUILD_WASI }}/config.cache
62
- key : ${{ github.job }}-${{ runner.os }}-${{ env.IMAGE_VERSION }}-wasi-sdk-${{ env.WASI_SDK_VERSION }}-${{ inputs.config_hash }}
63
+ # Include env.pythonLocation in key to avoid changes in environment when setup-python updates Python
64
+ key : ${{ github.job }}-${{ runner.os }}-${{ env.IMAGE_VERSION }}-wasi-sdk-${{ env.WASI_SDK_VERSION }}-${{ inputs.config_hash }}-${{ env.pythonLocation }}
63
65
- name : " Configure host"
64
66
# `--with-pydebug` inferred from configure-build-python
65
67
run : python3 Tools/wasm/wasi.py configure-host -- --config-cache
You can’t perform that action at this time.
0 commit comments