File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -137,6 +137,7 @@ jobs:
137137 uses : actions/cache@v4
138138 with :
139139 path : config.cache
140+ # Include env.pythonLocation in key to avoid changes in environment when setup-python updates Python
140141 key : ${{ github.job }}-${{ runner.os }}-${{ env.IMAGE_VERSION }}-${{ needs.check_source.outputs.config_hash }}-${{ env.pythonLocation }}
141142 - name : Install Dependencies
142143 run : sudo ./.github/workflows/posix-deps-apt.sh
Original file line number Diff line number Diff line change 5050 uses : actions/cache@v4
5151 with :
5252 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 }}
5455 - name : " Configure build Python"
5556 run : python3 Tools/wasm/wasi.py configure-build-python -- --config-cache --with-pydebug
5657 - name : " Make build Python"
5960 uses : actions/cache@v4
6061 with :
6162 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 }}
6365 - name : " Configure host"
6466 # `--with-pydebug` inferred from configure-build-python
6567 run : python3 Tools/wasm/wasi.py configure-host -- --config-cache
You can’t perform that action at this time.
0 commit comments