diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c426a396..c48819fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -114,7 +114,7 @@ jobs: path: | bin.tar.xz src/cpython - key: gam-${{ matrix.jid }}-20230626 + key: gam-${{ matrix.jid }}-20231020 - name: Untar Cache archive if: matrix.goal == 'build' && steps.cache-python-ssl.outputs.cache-hit == 'true' @@ -343,11 +343,11 @@ jobs: git clone https://github.com/python/cpython.git cd "${PYTHON_SOURCE_PATH}" # Pin Windows to 3.11.6 for the moment - if [[ "${RUNNER_OS}" == "Windows" ]]; then - export LATEST_STABLE_TAG="v3.11.6" - else - export LATEST_STABLE_TAG=$(git tag --list | grep -v a | grep -v rc | grep -v b | sort -Vr | head -n1) - fi + # if [[ "${RUNNER_OS}" == "Windows" ]]; then + # export LATEST_STABLE_TAG="v3.11.6" + # else + export LATEST_STABLE_TAG=$(git tag --list | grep -v a | grep -v rc | grep -v b | sort -Vr | head -n1) + # fi git checkout "${LATEST_STABLE_TAG}" export COMPILED_PYTHON_VERSION=${LATEST_STABLE_TAG:1} # Trim the "v" prefix echo "COMPILED_PYTHON_VERSION=${COMPILED_PYTHON_VERSION}" >> $GITHUB_ENV @@ -487,6 +487,8 @@ jobs: #V6.0.0 causes errors on staticx if [[ "${staticx}" == "yes" ]]; then git checkout "v5.13.2" + elif [[ "${RUNNER_OS}" == "Windows" ]]; then + git checkout "v5.13.2" else git checkout "${latest_release}" fi